@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

*{
    box-sizing: border-box;
}
body{
    font-family: 'Montserrat', sans-serif;
}
a{
    text-decoration: none;
}
h1, h2, h3, p{
    margin: 0;
    padding: 0;
}
.container{
    margin: 0 auto;
    max-width: 1400px;
}
.mobile__header__contacts{
    display: none;
}
.header__mobile__phone{
    display: none;
}

/* modal */

.overlay {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    z-index: 999;
    background: rgb(0 0 0 / 48%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
}
.overlay.open {
    opacity: 1;
    pointer-events: inherit;
}
.overlay .modal{
    position: absolute !important;
    z-index: 999 !important;
    background: #161925;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
    border-radius: 10px;
}
.overlay .modal.open {
    opacity: 1;
    pointer-events: inherit;
}
.overlay .modal.open .content {
    transform: translate(0, 0px);
    opacity: 1;
}
.overlay .modal .content {
    transform: translate(0, -10px);
    opacity: 0;
    transition: 0.35s ease-in-out;
}
.modal__content{
    padding: 40px;
    height: 410px;
    width: 500px;
    background: #ffffff;
    overflow-y: hidden;
    z-index: 999;
}
.modal__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close__modal{
    position: absolute;
    right: 20px;
    top: 20px;
}
.close-popup{ 
    width: 15px;
    height: 15px !important;
}
.modal-title{
    font-size: 25px;
    color: black;
    font-weight: 600;
}
.modal__form{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-top: 30px;
}
.form-input{
    height: 50px;
    outline: none;
    border: 2px solid #0870E4;
    border-radius: 6px;
    padding-left: 20px;
}
.form-input::placeholder{
    font-weight: 500;
}
.chekbox__wrapper{
    display: flex;
    align-items: center;
    margin-top: -20px;
}
.chekbox-input{
    width: 20px;
}
.chekbox-label{
    margin-left: 10px;
    text-align: left;
    font-size: 14px;
}
label > a{
    color: #0870E4;
}
.form-submit{
    margin: 0 auto;
    width: 250px;
    height: 50px;
    background-color: #0870E4;
    border: none;
    color: white;
    border-radius: 7px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #0870E4;
    transition: all 500ms;
}
.form-submit:hover{
    color: #0870E4;
    background: transparent;
    transition: all 500ms;
}

/* modal end */

/* main section */

.main__section{
    padding-bottom: 80px;
}
.header-logo{
    width: 200px;
}
.header__wrapper{
    height: 50px;
    display: flex;
    align-items: center;
}
.mobile-nav{
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
    width: 100%;
}
.header{
    width: 550px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__contacts{
    padding-top: 10px;
    width: 250px;
    display: flex;
    justify-content: space-between;
}
.header-contact{
    font-size: 18px;
    font-weight: 600;
    color: #0870E4;
    margin-left: 60px;
}
.header-link-w-icon{
    display: flex;
    align-items: center;
    font-weight: 600;
    color: black;
}
.header-phone-icon{
    margin-right: 10px;
}
.navbar__wrap .menu {
    display: none;
  }
  .hamb {
    display: flex;
    align-items: center;
    padding-top: 50px;
    justify-content: flex-end;
  }
  .hamb__field {
    padding: 10px 20px;
    cursor: pointer;
    position: absolute;
    z-index: 999;
  }
  .bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: #0870E4;
    transition: 0.2s;
  }
  .popup {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 550px;
    height: 100%;
    background-color: #0870E4;
    z-index: 100;
    display: flex;
    transition: 0.3s;
  }
  .popup.open {
    left: 0;
    top: 0;
  }
  .popup .menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px 0;
    overflow: auto;
  }
  .popup .menu > li {
    width: 100%;
  }
  .popup .menu > li > a {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: bold;
    color: white;
  }
  .popup .menu > li > a:hover {
    background-color: rgba(122, 82, 179, 0.1);
  }
  .hamb__field.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamb__field.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamb__field.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  body.noscroll {
    overflow: hidden;
  }
  .burger-link{
    color: white !important;
    font-size: 22px !important;
  }
.main__section-body{
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mainSwiper{
    width: 600px;
    height: 400px;
}
.main-slider-img{
    width: 600px;
}
.swiper-pagination-bullet-active{
    background: #0870E4;
}
.main__section-left{
    width: 750px;
    margin-left: 70px;
}
.main-title{
    font-size: 40px;
    font-weight: 600;
}
.main__section-subtitle{
    margin-top: 30px;
}
.main-subtitle{
    font-weight: 400;
    font-size: 22px;
}
.main__section-btn{
    margin-top: 30px;
    width: 340px;
    text-align: center;
    cursor: pointer;
}
.main-btn{
    font-size: 20px;
    padding: 15px 30px;
    background: #0870E4;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    border: 2px solid #0870E4;
    transition: all 500ms;
}
.main-btn:hover{
    background: transparent;
    color: #0870E4;
    transition: all 500ms;
}

/* trust section */

.trust__section{
    padding-bottom: 50px;
}
.trust-title{
    font-size: 40px;
    font-weight: 600;
}
.trust__section-body{
    display: flex;
}
.trust__section-left{
    width: 1000px;
}
.trust__item{
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.trust-icon{
    width: 40px;
}
.trust__text{
    margin-left: 20px;
}
.trust-text{
    font-size: 20px;
    font-weight: 500;
}
.trust__section-right{
    margin-left: 100px;
}
.benefit__item{
    margin-top: 50px;
}
.benefit-item{
    font-size: 20px;
    font-weight: 500;
}

/* about section */

.about__section{
    padding-top: 50px;
    padding-bottom: 50px;
    background: #0870E4;
}
.about__section-title{
    text-align: center;
}
.about-title{
    font-size: 40px;
    color: white;
    font-weight: 600;
}
.about__left-container{
    width: 650px;
}
.about__desc{
    line-height: 1.4;
    margin-top: 50px;
}
.about-desc{
    font-size: 18px;
    color: white;
    font-weight: 500;
}
.about__subtitle{
    margin-top: 50px;
}
.about-subtitle{
    color: white;
    font-weight: 600;
    font-size: 25px;
}
.about__section-body{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.aboutSwiper{
    width: 600px;
    height: 500px;
    margin-top: 50px;
}
.about-slider-img{
    width: 600px;
    height: 600px;
}
.video__container{
    margin-top: 50px;
}

/* experts section */

.experts__section{
    padding: 50px 0px;
}
.experts__section-title{
    text-align: center;
}
.experts-title{
    font-size: 40px;
    color: #0870E4;
    font-weight: 600;
}
.experts__items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}
.expert__item{
    width: 330px;
}
.expert-img{
    border-radius: 10px;
}
.expert__name{
    margin-top: 20px;
}
.expert-name{
    font-size: 22px;
    font-weight: 600;
}
.expert__desc{
    margin-top: 20px;
    line-height: 1.4;
    width: 300px;
}
.expert-desc{
    font-size: 18px;
    font-weight: 400;
    color: #a1a1a1;
}

/* dependent section */

.dependent__section{
    background-color: #0870E4;
    padding: 50px 0px;
}
.dependent__section-title{
    text-align: center;
}
.dependent-title{
    font-size: 40px;
    color: white;
    font-weight: 600;
}
.dependent__section-body{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.dependent__section-subtitle{
    line-height: 1.4;
}
.dependent-subtitle{
    font-size: 22px;
    font-weight: 500;
    color: white;
}
.dependent__section-steps{
    margin-top: 20px;
}
.dependent__step{
    padding-top: 30px;
    width: 650px;
}
.step-name{
    font-size: 20px;
    font-weight: 600;
    color: white;
}
.dependent__step-duration{
    margin-top: 10px;
}
.step-duration{
    color: white;
    font-size: 18px;
    text-decoration: underline;
}
.dependent__step-desc{
    margin-top: 10px;
    line-height: 1.4;
}
.step-desc{
    font-size: 18px;
    color: white;
    font-weight: 400;
}
.dependent-img{
    width: 700px;
}
.dependent__section-btns{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    text-align: center;
}
.dependent-btn{
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
}
.check-reviews-btn{
    margin: 0 auto;
    border-radius: 10px;
    color: white;
    width: 200px;
    background: #0870E4;
    border: 2px solid white;
    transition: all 500ms;
}
.check-reviews-btn:hover{
    background: white;
    color: #0870E4;
    transition: all 500ms;
}
.take-consult-btn{
    margin: 0 auto;
    border-radius: 10px;
    color: #0870E4;
    width: 500px;
    background: white;
    border: 2px solid white;
    transition: all 500ms;
}
.take-consult-btn:hover{
    background: #0870E4;
    color: white;
    transition: all 500ms;
}

/* fromdependent section */

.fromdependent__section{
    padding: 50px 0px;
}
.fromdependent__section-title{
    text-align: center;
}
.fromdependent-title{
    color: #0870E4;
    font-size: 40px;
    font-weight: 600;
}
.fromdependent__section-body{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fromdependent-img{
    width: 650px;
}
.fromdependent__section-right{
    margin-top: 50px;
    width: 770px;
}
.fromdependent__section-subtitle{
    line-height: 1.4;
}
.fromdependent-subtitle{
    font-size: 22px;
    color: black;
    font-weight: 500;
}
.fromdependent__step{
    margin-top: 30px;
}
.fromdependent__step-desc{
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.fromdependent-step-name, .fromdependent-step-desc{
    color: black;
}
.fromdependent-step-desc{
    margin-left: 10px;
    width: 770px;
}
.circle{
    background: #0870E4;
    width: 10px;
    height: 10px;
    border-radius: 20px;
}
.second__fromdependent__section-subtitle{
    margin-top: 30px;
}

/* familyReviews section */

.familyReviews__section{
    padding-bottom: 50px;
}
.familyReviews-title{
    color: #0870E4;
    font-size: 40px;
    font-weight: 600;
}
.reviewsfamilySwiper{
    width: 1400px;
    margin-top: 50px;
}
.reviews-slide{
    padding: 0px 100px;
}
.reviews__text{
    line-height: 1.5;
    width: 1200px;
}
.reviews-text{
    font-size: 18px;
    font-weight: 400;
}
.reviews__name{
    margin-top: 20px;
}
.reviews-name{
    font-size: 20px;
    font-weight: 600;
}
.reviews__city{
    margin-top: 20px;
}
.reviews-city{
    font-size: 17px;
    color: #a1a1a1;
    font-weight: 400;
}
.reviews-slide-btn-prev, .reviews-slide-btn-next{
    border: 2px solid #0870E4;
    background: #0870E4;
    padding: 25px;
    border-radius: 10px;
    transition: all 500ms;
}
.reviews-slide-btn-prev:hover, .reviews-slide-btn-next:hover{
    background: white;
    padding: 25px;
    border-radius: 10px;
    transition: all 500ms;
}
.reviews-slide-btn-prev:hover:after, .reviews-slide-btn-next:hover:after{
    color: #0870E4;
}
.reviews-slide-btn-prev:after, .reviews-slide-btn-next:after{
    font-size: 25px;
    color: white;
    font-weight: 700;
}

/* certificates section */

.certificates__section{
    padding: 50px 0px;
    background-color: #0870E4;
}
.certificates__section-title{
    text-align: center;
}
.certificates__items{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.certificate__item{
    margin-top: 50px;
}
.certificates-title{
    color: white;
    font-size: 40px;
    font-weight: 600;
}
.certificate__item{
    width: 540px;
    text-align: center;
}
.certificate-name{
    color: white;
    font-size: 21px;
    font-weight: 500;
}
.firstCertificateSwiper{
    height: 400px;
    width: 540px;
    margin-top: 20px;
}
.certificates-btn-next, .certificates-btn-prev{
    color: rgb(0, 9, 138);
}

/* clientsReviews section */

.clientsReviews__section{
    padding: 50px 0px;
}
.clientsReviews-title{
    color: #0870E4;
    font-size: 40px;
    font-weight: 600;
}
.reviewsclientsSwiper{
    padding-bottom: 20px;
}

/* footer section */

.footer__section{
    background: #0870E4;
    padding: 50px 0px;
}
.footer__section-container{
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}
.footer__left-column{
    width: 600px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.footer-link{
    align-items: center;
    display: flex;
    font-size: 15px;
    color: white;
    font-weight: 500;
}
.footer-icon{
    margin-right: 20px;
}
.footer__right-column{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.line{
    width: 100%;
    height: 1px;
    border: 1px solid white;
}
.footer__section-bottom{
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
}
.footer-bottom{
    font-size: 15px;
    color: white;
    font-weight: 500;
}

@media (max-width: 1450px) {
    
    .container{
        margin: 0 auto;
        max-width: 1200px;
    }

    /* about section */

    .about__left-container{
        width: 500px;
    }

    /* dependent section */

    .dependent-img{
        width: 500px;
    }

    /* fromdependent section */

    .fromdependent__section-right{
        width: 500px;
    }
    .circle{
        width: 17px;
    }

    /* clientsReviews section */

    .reviewsfamilySwiper{
        width: 1000px;
    }
    .reviews__text{
        width: 800px;
    }
    .reviews-slide{
        padding: 0px 100px;
    }

}

@media (max-width: 1200px) {

    .container{
        max-width: 1000px;
    }

    /* main section */

    .main__section-body{
        flex-direction: column;
        margin-top: 85px;
    }
    .main__section-left{
        margin-left: 0px;
    }
    .main__section-title, .main__section-subtitle{
        text-align: center;
        margin-top: 50px;
    }
    .main__section-btn{
        margin: 0 auto;
        margin-top: 60px;
    }

    /* about section */

    .about__section-body{
        flex-direction: column;
    }
    .about__left-container{
        width: 800px;
    }
    .about__right-container{
        margin: 0 auto;
    }

    /* experts section */

    .experts__items{
        margin-top: 0px;
    }
    .expert__item{
        width: 350px;
        margin-top: 50px;
    }

    /* dependent section */

    .dependent__section-body{
        flex-direction: column;
    }
    .dependent__step{
        width: 800px;
    }
    .dependent__section-img{
        text-align: right;
    }

    /* fromdependent section */

    .fromdependent__section-body{
        flex-direction: column;
    }
    .fromdependent__section-right{
        width: 800px;
    }
    .circle{
        width: 10px;
    }

    /* footer */

    .footer__section-bottom{
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

}

@media (max-width: 1000px) {
    
    .container{
        max-width: 800px;
    }

    /* trust section */

    .trust-text, .benefit-item{
        font-size: 17px;
    }

    /* clientsReviews section */

    .reviewsfamilySwiper{
        width: 800px;
    }
    .reviews__text{
        width: 600px;
    }
    .reviews-text{
        font-size: 16px;
    }
    .reviews-slide{
        padding: 0px 100px;
    }

    /* footer */

    .footer-bottom{
        font-size: 12px;
    }

}

@media (max-width: 800px) {
    
    .wrapper{
        overflow-x: hidden;
    }
    .container{
        max-width: 600px;
    }
    .header__mobile__phone{
        position: absolute;
        left:50%;
        transform:translate(-50%);
        top: 60px;
        display: inherit;
    }
    .header-mobile-phone{
        display: flex;
        align-items: center;
        color: black;
        font-weight: 600;
    }

    /* main section */

    .popup{
        width: 400px;
    }
    .header__contacts{
        display: none;
    }
    .mobile__header__contacts{
        display: inherit;
    }
    .mobile__header__contacts{
        display: flex;
        padding-left: 30px;
        align-items: center;
        padding-top: 10px;
    }
    .header-mobile-icon{
        height: 42px;
        display: flex;
        align-items: center;
        margin-right: 20px;
        color: white;
        font-weight: 600;
    }
    .main__section-left{
        width: 600px;
    }
    .main-title{
        font-size: 35px;
    }
    .main-subtitle{
        font-size: 20px;
    }

    /* trust section */

    .trust__section-body{
        flex-direction: column;
    }
    .trust__section-right{
        margin-left: 0px;
    }
    .trust-text, .benefit-item{
        font-size: 19px;
    }

    /* about section */

    .about__left-container{
        width: 600px;
    }
    .about-subtitle{
        font-size: 23px;
    }

    /* experts section */

    .experts__items{
        align-items: center;
        justify-content: center;
    }
    .expert__img, .expert__name, .expert__desc{
        text-align: center;
    }
    .expert__desc{
        width: unset;
    }
    .expert-desc{
        font-size: 16px;
    }

    /* dependent section */

    .dependent__step{
        width: 600px;
    }
    .dependent__section-img{
        text-align: left;
    }

    /* fromdependent section */

    .fromdependent__section-right{
        width: 600px;
    }
    .circle{
        width: 17px;
    }

    /* clientsReviews section */

    .reviewsfamilySwiper{
        width: 600px;
    }
    .reviews__text{
        width: 400px;
    }
    .reviews-text{
        font-size: 15px;
    }
    .reviews-slide{
        padding: 0px 100px;
    }

    /* footer section */

    .footer__section-bottom{
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    
    .container{
        max-width: 400px;
    }
    .header__mobile__phone{
        top: 130px;
    }

    /* modal */

    .modal__content{
        width: 320px;
        height: 460px;
        padding: 40px 20px;
    }
    .modal-title{
        font-size: 22px;
    }
    .chekbox__wrapper{
        margin-top: -10px;
    }

    /* main section */

    .active > .bar{
        background: white;
    }
    .popup{
        width: 100%;
    }
    .main__section-body{
        flex-direction: column-reverse;
    }
    .mainSwiper{
        width: 400px;
        height: 330px;
        margin-top: 50px;
    }
    .main-slider-img{
        width: 400px;
        height: 300px;
    }
    .main__section-left{
        width: 400px;
    }
    .main__section-title, .main__section-subtitle{
        text-align: center;
        margin-top: 30px;
    }
    .main__section-btn{
        margin: 0 auto;
        margin-top: 60px;
    }
    .main-title{
        font-size: 30px;
    }
    .main-subtitle{
        font-size: 18px;
    }
    .main__section-btn{
        margin-top: 40px;
    }
    .main-btn{
        font-size: 18px;
    }

    /* trust section */

    .trust-title{
        font-size: 30px;
    }
    .trust__section-left{
        width: 400px;
    }
    .trust-text, .benefit-item{
        font-size: 17px;
    }

    /* about section */

    .about-title{
        font-size: 30px;
    }
    .about__left-container{
        width: 400px;
    }
    .about-desc{
        font-size: 16px;
    }
    .aboutSwiper{
        width: 400px;
    }
    .about-slider-img{
        width: 400px;
    }
    .about-video{
        width: 400px;
        height: 250px;
    }

    /* experts section */

    .experts-title{
        font-size: 30px;
    }

    /* dependent section */

    .dependent-title{
        font-size: 30px;
    }
    .dependent__step{
        width: 400px;
    }
    .step-desc{
        font-size: 17px;
    }
    .dependent-img{
        width: 400px;
    }
    .take-consult-btn{
        width: 330px;
    }
    .dependent-btn{
        font-size: 17px;
    }

    /* fromdependent section */

    .fromdependent-title{
        font-size: 30px;
    }
    .fromdependent-img{
        width: 400px;
    }
    .fromdependent__section-right{
        width: 400px;
    }
    .fromdependent-subtitle{
        font-size: 20px;
    }
    .fromdependent-step-desc{
        font-size: 17px;
    }
    .circle {
        width: 22px;
    }

    /* familyReviews section */
    
    .familyReviews-title{
        font-size: 30px;
    }
    /* clientsReviews section */

    .reviewsfamilySwiper{
        width: 400px;
    }
    .reviews__text{
        width: 400px;
    }
    .reviews-text{
        font-size: 15px;
    }
    .reviews-slide{
        padding: 0px 0px;
        padding-bottom: 60px;
    }
    .reviews-slide-btn-prev, .reviews-slide-btn-next{
        display: none;
    }

    /* certificates section */

    .certificates-title{
        font-size: 30px;
    }
    .certificate__item{
        width: 400px;
    }
    .certificate-name{
        font-size: 17px;
    }
    .firstCertificateSwiper{
        width: 400px;
        height: 297px;
    }
    .lg-width{
        width: 400px;
    }
    .lg-height{
        width: 216px;
    }

    /* clientsReviews section */

    .clientsReviews-title{
        font-size: 30px;
    }

    /* footer */

    .footer__section-container{
        flex-direction: column;
    }
    .footer__left-column{
        width: 400px;
    }
    .footer__right-column{
        margin-top: 20px;
    }

}

@media screen and (max-width: 400px){
    
    .container{
        max-width: 330px;
    }

    /* main section */

    .popup .menu > li > a {
        font-size: 16px;
    }
    .mainSwiper{
        width: 330px;
        height: 290px;
    }
    .main-slider-img{
        width: 330px;
        height: 270px;
    }
    .main__section-left{
        width: 330px;
    }
    .main-title{
        font-size: 25px;
    }
    .main-subtitle{
        font-size: 16px;
    }
    .main__section-btn{
        width: 300px;
    }
    .main-btn{
        font-size: 16px;
    }

    /* trust section */

    .trust__section-left{
        width: 330px;
    }
    .trust-text, .benefit-item{
        font-size: 15px;
    }
    .about__left-container{
        width: 330px;
    }
    .about-desc{
        font-size: 15px;
    }
    .aboutSwiper{
        width: 330px;
        height: 330px;
    }
    .about-slider-img{
        width: 330px;
        height: 330px;
    }
    .about-video{
        width: 330px;
        height: 180px;
    }

    /* dependent section */
    
    .dependent__step{
        width: 330px;
    }
    .step-desc{
        font-size: 15px;
    }
    .dependent-img{
        width: 330px;
    }

    /* fromdependent section */

    .fromdependent-img{
        width: 330px;
    }
    .fromdependent__section-right{
        width: 330px;
    }
    .fromdependent-subtitle{
        font-size: 17px;
    }
    .circle{
        width: 27px;
    }
    .familyReviews-title{
        font-size: 30px;
    }

    /* clientsReviews section */

    .reviewsfamilySwiper{
        width: 330px;
    }
    .reviews__text{
        width: 330px;
    }
    .reviews-slide{
        padding: 0px 0px;
        padding-bottom: 30px;
    }

    /* certificates section */

    .firstCertificateSwiper{
        width: 330px;
        height: 245px;
    }
    .lg-width{
        width: 330px;
    }
    .lg-height{
        width: 178px;
    }
    .certificate-name{
        font-size: 20px;
    }

    /* footer section */

    .footer__left-column{
        width: 330px;
    }

}


/* privacy policy */

.privacy__section-container{
    padding-bottom: 50px;
}
.privacy__policty__title{
    text-align: center;
    padding-top: 50px;
}
.privacy-policty-title{
    font-size: 50px;
}
.privacy__policty__subtitle{
    margin-top: 50px;
    line-height: 1.4;
}
.privacy-policty-subtitle{
    font-size: 20px;
    font-weight: 400;
}
.privacy__policy__item{
    margin-top: 50px;
}
.privacy-item-title{
    font-size: 40px;
    font-weight: 500;
}
.privacy__policy__subitem{
    margin-top: 20px;
    line-height: 1.4;
}
.privacy-policy-subitem{
    font-size: 18px;
}
.privacy__policy__btn{
    text-align: center;
    margin-top: 50px;
}
.privacy-policy-btn{
    background: #0870E4;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 5px;
    border: 2px solid #0870E4;
    transition: all 500ms;
}
.privacy-policy-btn:hover{
    color: #0870E4;
    background: transparent;
    transition: all 500ms;
}

@media (max-width: 600px) {

    .privacy-policty-title{
        font-size: 30px;
    }
    .privacy-policty-subtitle{
        font-size: 15px;
    }
    .privacy-item-title{
        font-size: 25px;
    }
    .privacy-policy-subitem{
        font-size: 15px;
    }
    
}

@media (max-width: 400px) {

    .privacy__policty__title{
        text-align: left;
    }
    .privacy-policty-title{
        font-size: 25px;
    }
    .privacy-item-title{
        font-size: 22px;
    }

}

/* privacy policy end */
