/*@font-face {
    font-family: Lato_Regular;
    src: url('../assets/fonts/lato/Lato-Regular.ttf');
}

@font-face {
    font-family: Josefinsans_Regular;
    src: url('../assets/fonts/josefinsans/JosefinSans-Regular.ttf');
}
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    width: 100%;
    margin: auto;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

img {
    width: 100%;
}



.top-banner {
    width: 100%;
    padding: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.5rem;
    color: #003594;
    background: #ffc300;
    text-align: center;
    text-transform: uppercase;

    @media (max-width: 1024px) {
        padding: 1rem;
    }
}

header{
    padding: 1rem 10rem;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

header .logo {
    width: 200px;
}

header .quote {
    position: relative;
    padding-top: .45rem;
}

.quoteLink{
    color: #005BA7;
}

header .quote a {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    text-decoration: none;
    padding-left: 2.5rem;
}
header .quote a::before {
    content: url(../assets/images/phone-solid_35.png);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    margin-top: .45rem;
}
header span {
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    color: #000;
    font-weight: 700;
}

@media (max-width: 1100px) {
    header {
        padding: 1rem 3rem;
    }
}

@media (max-width: 700px) {
    
    .top-banner {
        font-size: 1.2rem;
        line-height: 1.2rem;
    }
    
    header {
        padding: 1rem 0;
        text-align: center;
        display: block;
    }
    
    header .logo {
        width: 200px;
        margin: auto auto 1rem auto;
    }
    
    header .quote {
        width: 275px;
        margin: 0 auto;
        position: relative;
        padding-top: .45rem;
    }
    
    header .quote a {
        font-size: 1.5rem;
        padding-left: .5rem;
    }
        
    header span {
        font-family: 'Montserrat', sans-serif;
        font-size: .6rem;
        color: #000;
        font-weight: 700;
    }
    
}














.requestSection{
    width: 100%;
    background-image: url('../assets/images/FirstImage.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
}

@media (max-width: 1124px) {
    .requestSection {
        display: block;
    }
    .requestSection .container {
        display: block;
    }
    
    .requestSection .container .requestPart {
        display: block;
    }
}

.inputDiv{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: .5rem auto;

}

.controlInput{
    font-family: 'Roboto', sans-serif;
    padding: 14px 0 14px 16px;
    color: #000;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.43px;
    border-radius: .25rem;
    border: 1px solid rgba(255, 255, 255, 0.60);
    background: rgba(255, 255, 255, 1);
    width: 100%;
    margin: 0 .25rem;
}

.controlInput::placeholder{
    color: rgba(0, 0, 0, 0.60);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.43px;
}

footer{
    width: 100%;
    background-color: #005ba7;
    padding: 3.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .container {
    max-width: 1400px !important;
}

footer hr {
    width: 95%;
    border: none;
    height: 2px;
    background: rgba(255,255,255,.25);
    margin: auto auto 1.25rem auto;
}

footer p {
    text-align: center;
    color: #fff;
    font-size: .88rem;
    line-height: 1.35rem;
    margin: .5rem 0;
    width: 100%;
    padding: 0;
}

footer p a {
    text-decoration: underline;
    color: inherit;
}

.footer-logo {
    width: 180px;
    margin-bottom: 2rem;
}

.agree{
    border-radius: 12px;
    color: #005ba7;
    background: #FFC72C;
    border: 3px solid #FFC72C;
    padding: 1.2rem 0;
    margin: .75em 0 .25rem 0;
    width: 100%;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family:  'Poppins', sans-serif;
    font-size: 24px;
    line-height: 24px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.43px;
    text-transform: capitalize;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s;
}
.agree:hover{
    color: #005ba7;
    background: #fff;
    border: 3px solid #FFC72C;
}

.agree-sent{
    border-radius: 12px;
    color: #005ba7;
    background: #FFC72C;
    border: 3px solid #FFC72C;
    padding: 1.2rem 0;
    margin: .75em 0 .25rem 0;
    width: 100%;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family:  'Poppins', sans-serif;
    font-size: 24px;
    line-height: 24px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.43px;
    cursor: not-allowed;
    text-transform: uppercase;
}

.legal {
    width: 100%;
    padding: .75rem .25rem;
    color: white;
    font-size: .9rem;
    line-height: 1.2rem;
    font-family: 'Roboto', sans-serif;
}

.legal a {
    color: inherit;
    text-decoration: underline;
}


.why-choose-icons {
    width: 100%;
    padding: 4rem 0 2rem 0;
}

.iconStyle{
    width: 100px;
    height: 100px;
}

.row {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .row {
        display: block;
    }
}

.column {
    width: 100%;
}

.column p {
    padding: 2rem;
}

hr {
    width: 150px;
    border: 0;
    height: 1px;
    background: rgba(0,0,0,.5);
    margin: 3rem auto auto auto;
}

h1 {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    line-height: 4rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
h2 {
    color: #005ba7;
    padding: 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.75rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
        line-height: 2rem;
    }
    h2 {
        font-size: .88rem;
        line-height: .88rem;
    }    
}















.whole{
    display: flex;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}
.container{
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1390px;
    width: 100%;

    @media (max-width: 1124px) {
        padding-left: 5px;
        padding-right: 5px; 
    }
}
.upPart{
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.callPart{
    display: flex;
}
.number{
    color: #FFF;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.43px;
}
.call{
    color: #FFC72C;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
}
.requestPart{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.requestLeft{
    margin-top: 65px;
    max-width: 600px;
    width: 100%;
}

@media (max-width: 1124px) {
    .requestLeft {
        margin: 0 auto;
    }
}

.requestLeft h1 {
    color: #fff;
    font-size: 3rem;
}

.requestLeft h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 8rem;
    line-height: 10rem;
    margin: 0;
    padding: 0;
    text-align: left;
    text-indent: 0;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 1.6px;
    color: #ffc300;
}

@media (max-width: 800px) {
    .requestLeft h1 {
        font-size: 2rem;
        line-height: 2rem;
        text-align: center;
    }    
    
    .requestLeft h2 {
        font-size: 5rem;
        line-height: 6.5rem;
        text-align: center;
    }
    
}

@media (max-width: 600px) {
    .requestLeft h1 {
        font-size: 1.8rem;
        line-height: 2rem;
        text-align: center;
    }    
    
    .requestLeft h2 {
        font-size: 3.75rem;
        line-height: 6.5rem;
        text-align: center;
    }
    
}

.offerTimer {
    border: 4px solid #ffc300;
    padding: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: white;
    max-width: 600px;
    margin: 20px auto;
    background-color: #ffffff30;
}

.offerTimer p {
    font-size: 1.5rem;
    margin: 5px 0;
}

#countdown {
    font-size: 1.8rem;
}

.timer-span {
    color: #ffc300;
}



ul{
    padding-left: 10px;
    padding-top: 31px;
}

    @media (max-width: 1024px) {
        ul {
            padding: 10px 0 50px 0;
        }
    }

li {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    list-style-type: none;
}
li::before {
    content: '✔';
    width: 30px;
    margin-right: 1rem;
    color: #4cb4e7;
}

li .mobile-break {
    display: none;
}

.requestRight{
    max-width: 548px;
    width: 100%;
}
.successRight{
    max-width: 548px;
    width: 100%;
    display: none;
}
.requestRightUp{
    border-radius: 0;
    background: #005ba7;
    padding: 30px 30px 24px 30px;
    box-shadow: 0 6px 12px rgba(0,0,0,.75);
}
.successRightUp{
    border-radius: 0;
    background: #005ba7;
    padding: 30px 30px 24px 30px;
    box-shadow: 0 6px 12px rgba(0,0,0,.75);
}
.requestTitle{
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}
.successTitle {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #FFF;
    font-size: 4em;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5rem;
    text-align: center;
}
.successSmallerTitle{
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2rem;
    text-align: center;
}
.checkIcon {
    width: 100%;
    margin-bottom: 24px;
    height: 120px;
    fill: #ffc300;
    margin-left: auto;
    margin-right: auto;
}

    @media (max-width: 1124px) {
        
        .requestRight{
            width: 100%;
            margin: 0 auto;
        }

        .successRight{
            width: 100%;
            margin: 0 auto;
            display: none;
        }
        
        ul {
            padding: 10px 0 40px 0;
            width: 320px;
            margin: 0 auto;
        }
        li {
            color: #FFF;
            font-size: 14px;
            line-height: 24px;
            font-style: normal;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            list-style-type: none;
            text-align: center;
        }
        li::before {
        }
        
        li .mobile-break {
            display: block;
        }
        
        .requestRightUp{
            padding: 20px 20px 14px 20px;
        }
    }


.requestRightDown{
    margin-top: 12px;
    border-radius: 20px;
    border: 2px solid #FFC72C;
    background: rgba(255, 199, 44, 0.20);
    padding: 24px;
    color: #FFF;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.43px;
    font-feature-settings: 'clig' off, 'liga' off;
}
.underLined{
    color: #FFF;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.43px;
    text-decoration-line: underline;
}

.whyChooseWindowNation {
    width: 1400px;
    margin: 0 auto;
    padding: 5rem 0 4rem 0;
    text-align: center;
}
    @media (max-width: 1400px) {
        .whyChooseWindowNation {
            width: 100%;
        }
    }
    @media (max-width: 600px) {
        .whyChooseWindowNation {
            padding: 2rem 0;
        }
    }







.whyChoose{
    border-radius: 20px;
    background: #0066B3;
    padding: 24px 16px;
    color: #FFF;
    font-family: Josefinsans_Regular,sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    width: 50%;
}
.right{
    width: 50%;
    border: 2px solid #FFC72C;
    background: rgba(255, 199, 44, 0.03);
    padding: 16px;
    border-radius: 20px;
}
.iconDiv{
    display: flex;
    gap: 8px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 40px;
}
.iconDiv:last-child{
    margin-bottom: 0;
}
.middlePart{
    width: 100%;
    /*! margin-bottom: 160px; */
    background-image: url('../assets/images/SecondImage.png');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
}
.middleUp{
    display: flex;
    width: 100%;
    border-bottom: 4px solid #FFF;
}
.middleDown{
    width: 100%;
    display: flex;
}

    @media (max-width: 1100px) {
        .middleUp, .middleDown {
            display: block;
            border: none;
        }    
    }

.middleInsideLeft, .middleInsideRight {
    border-right: 4px solid #FFF;
    width: 100%;
    position: relative;
    padding: 5rem;
}

.middleInsideRight {
    border-right: none;
}

    @media (max-width: 1100px) {
        .middleInsideLeft, .middleInsideRight {
            border-right: none;
            padding: 2.5rem 0;
            box-sizing: border-box;
        }
    }

.middleInformationLeft, .middleInformationRight {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    display: block;
    padding: 0 6rem;
    box-sizing: border-box;
}

    @media (max-width: 1100px) {
        .middleInformationLeft, .middleInformationRight {
            padding: 0 2rem;
            box-sizing: border-box;
            width: 100%;
        }
    }



.middleIcon{
    width: 96px;
    height: 96px;
    /*! margin-bottom: 16px; */
}
.middleTitle{
    color: #FFF;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

@media (max-width: 1100px) {
    .middleTitle {
        font-size: 5vw;
        line-height: 5.5vw;
    }
}

.awards{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 4rem 0 5rem 0;
}
.award-row{
    display: flex;
    align-items: center;
    gap: 45px;
    margin-top: 50px;
}

.awardDiv{
    max-width: 200px;
    width: 100%;
    border:none;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1100px) {
    .award-row{
        gap: 5px;
    }
    .awardDiv {
        width: 50px;
    }
}


.verticalLine{
    height: 80px;
    /*! width: 1px; */
    background-color: #CFCFCF;
}

.licenseDiv{
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 12px;
    flex-wrap: wrap;
}
.licenseNumbers{
    padding: 11px 16px;
    color: #fff;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.43px;
    border-radius: 10px;
    border: 2px solid #FFC72C;
    background: rgba(255, 199, 44, 0.10);
}
.singleNumber{
    padding: 11px 16px;
    color: #fff;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.43px;
}
.line{
    height: 22px;
    color: #fff;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.43px;
}

.terms{
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.text{
    max-width: 1130px;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 20px;
}
.text:first-child(1) {
    margin-bottom: 40px;
}
.boldText{
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0.32px;
}

.error-message {
    color: #FFC72C;
    display: none;
    font-weight: 500;
  }

  .floating-container {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    padding: 1.5rem;
    border-radius: 24px 24px 0 24px;
    box-shadow: 3px 5px 8px rgba(0,0,0,.15);
    position: fixed;
    right: 2%;
    bottom: 3%;
    text-align: left;
    font-size: .9rem;
    line-height: 1.5rem;
    width: 540px;
    z-index: 9;
  
    @media(max-width:1024px) {
        width: 75%;
        padding: 1.5rem;
    }
  
    @media(max-width:768px) {
        width: 95%;
    }
  
    a{
        color: #0077b6;
    }
  }
  
  .floating-container-buttons{
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
  
  .floating-button {
    padding: 1rem;
    font-size: 1rem;
    min-width: 140px;
    margin: 0;
    cursor: pointer;
    background-color: #FFC72C;
    color: #005ba7;
    font-weight: bold;
    border-radius: 12px;
  
    @media(max-width:1024px) {
        padding: .75rem;
    }
  }
  
  .floating-fake-button{
    text-decoration: underline;
    cursor: pointer;
    font-size: .95rem;
  }
  
  .declined-content {
    text-align: center;
    color: white;
    margin-top: 30%;
    
    @media (max-width: 1373px) {
        margin-top: 50%;
    }
    
    @media (max-width: 1024px) {
        margin-top: 0;
    }
    
    
  }
  
  .declined-content h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
  
    @media(max-width:1373px) {
        font-size: 2rem;
    }
  
  }
  
  .declined-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 5px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
  
    @media(max-width:1373px) {
        font-size: 1.6rem;
    }
      
  }
  
  .reset-span {
    text-decoration: underline;
    cursor: pointer;
  }


  .not-accepted-disclaimer{
    display: none;

    h2{
        color: white;
        font-size: 3.5rem;
        text-align: center;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
        line-height: 40px;

        @media (max-width: 1024px) {
            font-size: 2.5rem;
        }
    }

    p{
        color: white;
        font-size: 2.5rem;
        text-align: center;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);

        @media (max-width: 1024px) {
            font-size: 2rem;
        }
    }
  }

  .first_new{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .first_new_left{
    width: 49.5%;
    height: 620px;
    background-image: url('../assets/images/new/Mask\ Group\ 7.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;

    @media (max-width: 1124px) {
        height: 480px;
     }

     @media (max-width: 768px) {
        height: 320px;
     }
  }

  .first_new_left_icon{
    position: absolute;
    bottom: 5%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 80px;

    @media (max-width: 768px) {
        transform: translate(-50%, -10%);
        gap: .5;
     }
    
    p{
        font-size: 1.6rem;
        font-weight: 500;
        color: white;
        text-align: center;

        @media (max-width: 1124px) {
            font-size: 1.2rem;
         }

         @media (max-width: 768px) {
            font-size: .8rem;
         }
    }

    svg{
        width: 36px;
        fill: white;

        @media (max-width: 1124px) {
            width: 24px;
         }

         @media (max-width: 768px) {
            width: 20px;
         }
    }
  }

  .first_new_right{
    width: 49.5%;
    height: 620px;
    background-image: url('../assets/images/new/Mask\ Group\ 8.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;

    @media (max-width: 1124px) {
        height: 480px;
     }

     @media (max-width: 768px) {
        height: 320px;
     }
  }

  .first_new_right_icon{
    position: absolute;
    bottom: 5%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 80px;

    @media (max-width: 768px) {
        transform: translate(-50%, -10%);
        gap: .5;
     }
    
    p{
        font-size: 1.6rem;
        font-weight: 500;
        color: white;
        text-align: center;

        @media (max-width: 1124px) {
            font-size: 1.2rem;
         }

         @media (max-width: 768px) {
            font-size: .8rem;
         }
    }

    svg{
        width: 36px;
        fill: white;

        @media (max-width: 1124px) {
            width: 24px;
         }

         @media (max-width: 768px) {
            width: 20px;
         }
    }
  }

  .container-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    text-align: center;
    margin-top: 2rem;


    @media (max-width: 768px) {
        grid-template-columns: 1fr;
    }
}
.feature-new {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 420px;

    @media (max-width: 768px) {
        height: 320px;
    }
}
.feature-new img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;

    @media (max-width: 1124px) {
        width: 56px;
     }

     @media (max-width: 768px) {
        width: 42px;
    }
}
.feature-new h2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 10px 0;
    line-height: 4.5rem;
    color: black;

    @media (max-width: 1124px) {
       font-size: 2rem;
       line-height: 2.5rem;
     }

     @media (max-width: 768px) {
        font-size: 1.6rem;
        line-height: 2rem;
    }
}
.feature-new p {
    font-size: 1.1rem;
    color: #333;
    line-height: 24px;

    @media (max-width: 1124px) {
        font-size: 1rem;
      }

    @media (max-width: 768px) {
        font-size: .9rem;
    }
}

.third-new{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;

    @media (max-width: 1124px) {
        flex-wrap: wrap;
      }
}

.third-new-left{
    min-height: 920px;
    background-image: url('../assets/images/new/foto\ 3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 20%;
    width: 55%;

    @media (max-width: 1124px) {
        width: 100%;
        min-height: 620px !important;
      }

      @media (max-width: 768px) {
        background-position: center;
    }
}

.third-new-right{
    width: 45%;
    background-color: #eee;
    padding: 2rem;

    @media (max-width: 1124px) {
        width: 100%;
        padding: 2rem;
      }

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.third-new-right-header{
    text-align: center;
    font-weight: 600;
    font-size: 3rem;
    width: 65%;
    overflow: auto;

    @media (max-width: 1420px) {
        font-size: 2rem;
        width: 80%;
    }
}

.step-container { 
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;

    @media (max-width: 1420px) {
        font-size: 2rem;
        width: 80%;
    }

    @media (max-width: 768px) {
       width: 100%;
    }

}

.step-step{
    text-transform: uppercase;
    font-size: 1.1rem;

    @media (max-width: 1420px) {
        font-size: 1rem;
    }

}

.step-header{
    font-weight: 600;
    font-size: 1.2rem;

    @media (max-width: 1420px) {
        font-size: 1rem;
    }
}

.step-text{
    font-size: 1.05rem;
    line-height: 24px;

    @media (max-width: 1420px) {
        font-size: .9rem;
    }

}

.last-new-section{
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
}

.last-new-header{
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: bolder;

    @media (max-width: 1124px) {
        font-size: 2rem;
      }

      @media (max-width: 768px) {
        font-size: 1.6rem;
      }
}

.last-new-main{
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 60%;
    
    margin-left: auto;
    margin-right: auto;
}

.last-new-main-single{
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    img{
        width: 120px;
    }
}

.last-new-main-single-header{
    font-weight: bold;
    font-size: 1.1rem;
}

.last-new-main-single-text{
    line-height: 22px;
    @media (max-width: 768px) {
        font-size: .85rem;
        text-align: center;
      }
}