*,
*::before,
*::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    background: var(--clr-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-blue);
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
    background: var(--clr-grey);
}

footer,
header,
aside {
    display: block;
}


body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--ff);
    -ms-text-size-adjust: 100%;
    background: linear-gradient(to bottom, rgba(49,49,49,0), rgba(0,0,0,0));
    scroll-behavior: smooth;
    line-height: 1.3;
    letter-spacing: 1px;
}

input,
button,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

button::-moz-focus-outer {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ol,
ul {
    padding: 0;
}
ul li {
    list-style: none;
    padding: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

p {
    font-size: var(--fs-normal);
    margin: 0;
    font-family: var(--ff);
    color: var(--clr-desc);
}

h1,
h2,
h3,
h4,
h5,
h3 {
    margin: 0;
}

:root{
      /* Colors */
      --clr-blue:#111111;
      --clr-green:#15C12C;
      --clr-blue-add:#0D4853;
      --clr-blue:#0D4853;
      --clr-grey:#898989;
      --clr-desc:rgba(14, 14, 14, 0.758);
      --clr-desc-white: rgb(255, 255, 255);
  
      /* Font */
      --ff: 'Rubik', sans-serif;
      /* Font size */
      --fs-big: 100px;
      --fs-medium: 40px;
      --fs-normal: 30px;
      --fs-small:16px;
      --fs-smallest:14px;
      /* Font weight */
      --fw-black: 900;
      --fw-medium: 600;
      --fw-regular: 400;
  
      /* Scrollbar */
      --scrollbar-width: 0.4375rem;
  
}
/* main styles start */

.container {
    margin: 0 200px;
}
.nav{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}
.header{
    background-color: var(--clr-blue);
}

.nav__wrap{
   background: #E6E6E6;
    border-radius: 30px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.nav__item{
    font-size: 20px;
    color: var(--clr-blue-add);
    position: relative;
    margin: 0 40px;
    font-weight: 600;
    transition: all ease .4s;
}
.nav__item:hover{
    color: var(--clr-blue);
}
.nav__items-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}
.nav__items{
    display: flex;
    align-items: center;
}
.nav__logo{
    width: auto;
}
.nav__logo img{
    width: 80px;
}
.lang__wrap{
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.lang__wrap-2{
    display: none;
}
.lang__icon img{
    margin: 0 2px;
    height: 35px;
    width: 35px;
}
/* hero styles */

.hero{
    height:100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}


.hero__wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10em;
}
.hero__item-bg{
    position: relative;
}
.hero__item-bg-img{
    width: 1000px;
    max-width: 100%;
}
.rotate-img{
   animation: rotate 30s infinite linear;
    backface-visibility: hidden;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    margin: auto;
    bottom: 0;

}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
        animation-timing-function: linear;
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero__item1{
    width: 50%;
}

.hero__title{
    font-size: var(--fs-big);
    color: var(--clr-blue-add);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
    position: relative;
}
/* .hero__title::after{
    position: absolute;
    content: url('../img/icon/hero-title-shape.svg');
    bottom: 60px;
    right: 200px;
} */
.hero__subtitle{
    color: var(--clr-grey);
    padding: 30px 0 50px;
    letter-spacing: 1px;
    display: inline-block;
    font-size: var(--fs-normal);
}

.hero__btn{
    background: var(--clr-green);
    padding: 20px 60px;
    border-radius: 50px;
    color: var(--clr-blue-add);
    font-size: var(--fs-smallest);
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1.4px;
    border: none;
    position: relative;
    overflow: hidden;
}
.hero__btn img{
    width: 140px;
    height: 37px;
}
.hero__btn2{
    background: transparent;
    border: 1px solid var(--clr-green);
    margin-left: 20px;
}
.hero__btn-2{
    padding: 12px 30px;
    letter-spacing: normal;
}
.hero__btn-2 img{
    width: 90px;
}
.hero__btn-nav-2{
    background: transparent;
    border: 1px solid var(--clr-blue);
    margin-left: 10px;
}
.hero__btn-nav-3{
    background: var(--clr-blue);
}
.hero__btn::before{
        content: "";
        display: block;
        width: 20px;
        height: 300px;
        margin-left: 50px;
        background: #fff;
        background: linear-gradient( to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.7) 100% );
        left: -40px;
        top: -100px;
        z-index: 1;
        transform: rotate(45deg);
        position: absolute;
        -webkit-animation: move-light 3s ease-in-out 0.05s infinite;
        -moz-animation: move-light 3s ease-in-out 0.05s infinite;
        -o-animation: move-light 3s ease-in-out 0.05s infinite;
        animation: move-light 3s ease-in-out 0.05s infinite;
}
@keyframes move-light{
    0% {
        left: -30px;
        margin-left: 0px;
    }
    
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}


/* about styles */
.about{
    padding: 100px 0;
    position: relative;
}

.about__wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.about__img,.about__img-2,.about__item{
    width: 50%;
}
.about__img img{
    width: -webkit-fill-available;
    height: 1000px;
    transition: 300ms ease-in-out;
}
.about__img img:hover{
    transform: scale(1.013);
    transition: 300ms ease-in-out;
}
.about__title{
     font-size: var(--fs-big);
    color: var(--clr-blue-add);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__subdesc{
     color: var(--clr-grey);
    padding: 20px 0 30px;
    letter-spacing: 1px;
    display: inline-block;
    font-size: var(--fs-normal);
}

.program-icon{
    height: 37px;
    width: 37px;
    margin-right: 25px;
    margin-top: 10px;
}

.advantages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 140px;
}
.advantages__icon{
    background: var(--clr-blue);
    border-radius: 50%;
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(107, 107, 107, 0.2);
    -moz-box-shadow: 0px 4px 8px 0px rgba(107, 107, 107, 0.2);
    box-shadow: 0px 4px 8px 0px rgba(107, 107, 107, 0.2);
}
.advantages-item {
    -webkit-box-shadow: 0px 4px 8px 0px rgba(107, 107, 107, 0.2);
    position: relative;
    -moz-box-shadow: 0px 4px 8px 0px rgba(107, 107, 107, 0.2);
    box-shadow: 0px 4px 8px 0px rgba(107, 107, 107, 0.2);
    border-radius: 30px;
    padding:70px 40px 50px 40px;
    width: 24%;
    text-align: center;
    transition: 300ms ease-in-out;
}
.advantages-item:hover{
    transform: scale(1.013);
    transition: 300ms ease-in-out;
    -moz-box-shadow: 0px 4px 8px 0px rgb(107 107 107 / 59%);
    box-shadow: 0px 4px 8px 0px rgb(107 107 107 / 59%);
}
.advantages__title {
    font-size: var(--fs-normal);
    color: var(--clr-blue);
}
.about__btns{
    margin-top: 80px;
    text-align: center;
}
.about__btns p{
    color: var(--clr-blue-add);
    font-size: 25px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 600;
}
.about__subtitle {
    color: #3E9B4B;
    font-weight: 800;
    margin-bottom: 5px;
}

.about__img-2 img{
        width: -webkit-fill-available;
    height: 1000px;
    transition: 300ms ease-in-out;
}
.about__img-2 img:hover{
     transform: scale(1.013);
    transition: 300ms ease-in-out;
}

/* previews styles */

.preview__title {
    color: var(--clr-blue-add);
    font-size: var(--fs-normal);
}
.preview__item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.preview__item p{
    color: var(--clr-grey);
    margin-left: 20px;
    font-size: 25px;

}

/* instruction styles */

.instruction{
    margin: 100px 0;
}
.instruction__wrap {
    text-align: center;
}
.instruction__items{
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.instruction__item{
    width: 33%;
    text-align: center;
     transform: scale(1);
    transition: 300ms ease-in-out;
}
.instruction__item:hover{
         -webkit-transform: translateY(-3px) translateZ(0);
    transform: translateY(-3px) translateZ(0);
    transition: 300ms ease-in-out;
}
.instruction__subtitle {
    color: #3E9B4B;
    font-weight: 600;
    font-size: 25px;
}
.instruction__desc {
    color: var(--clr-blue-add);
    font-size: 25px;
    margin: 20px auto;
    width: 90%;
    font-weight: 700;
}
.instruction__img img {
    width: 600px;
    height: auto;
}

/* faq styles start */

.faq {
    padding: 3em 0 8em;
    position: relative;
}
.faq .about__title,.faq .about__subtitle{
    text-align: center;
}
.faq-wrapper {
    margin: 50px 0;
    position: relative;
}

.faq-item {
   padding: 40px 30px;
    background: #E6E6E6;
    border-radius: 10px;
    margin: 0 auto 10px;
}


.faq-item__title {
   font-weight: 700;
    font-size: var(--fs-normal);
    color: var(--clr-blue-add);
}


.faq-item p {
      line-height: 1.3;
    color: var(--clr-grey);
    font-size: 20px;
    width: 95%;
}

.faq-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-label-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-icon {
    color: #0D4853;
    transform: rotate(0deg);
    transition: 0.3s ease;
}

.faq-answer {
    transition: 0.3s ease;
    height: 0;
    overflow: hidden;
}

.faq-active {
    height: auto;
    transition: all ease 0.3s;
    color: #0D4853;
}

.faq-rotate {
    transform: rotate(180deg);
}

.faq__btn{
    color: white;
    font-size: 20px;
    background: var(--clr-blue);
}
.faq-answer p {
    padding-top: 25px;
}


/* faq styles end */

/* consult styles */

.consult{
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
.consult-item{
    width: 40%;
}
.consult-item .about__title {
    font-size: 40px;
    color: var(--clr-blue-add);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
}
.consult-item .about__btns{
    text-align: left;
}
.consult-item-bg{
       width: 60%;
    background-image: url(../img/bg-download.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    padding-top: 80px;
    display: flex;
    overflow: hidden;
    align-items: flex-end;
    justify-content: center;
}

/* footer styles */

.footer{
    padding: 80px 0 0px;
    background-image: url(../img/bg-download.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.footer__wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer__nav{
    display: flex;
}

.footer a{
        color: var(--clr-desc-white);
    font-size: 20px;
    margin-right: 40px;
    font-weight: 600;
}

.footer__down{
    color: var(--clr-desc-white);
    padding: 10px 0;
    margin-top: 20px;
}
.footer__down-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer__down-item{
    text-transform: uppercase;
    font-size: var(--fs-small);
    color: var(--clr-desc-white);
}


#arrowTop {
    background: #3E9B4B;
    cursor: pointer;
    position: relative;
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    outline: 0;
    cursor: pointer;
    z-index: 10;
    padding: 20px 20px 20px 20px;
    transition: all ease .4s;
}

#arrowTop:hover {
    opacity: 1;
    -webkit-transform: translateY(-3px) translateZ(0);
    transform: translateY(-3px) translateZ(0);
}
#arrowTop.active {
    display: inline-block;
}


/* burger styles start */
.mobile__menu{
    display: none;
}
.burger {
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.small-logo {
    display: none;
}

.burger span {
       display: inline-block;
    height: 4px;
    z-index: 5;
    width: 90%;
    background: var(--clr-blue-add);
    position: relative;
}

.burger span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 100%;
    height: 100%;
    background-color:var(--clr-blue-add);
}

.burger span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    height: 100%;
    background-color:var(--clr-blue-add);
}

.show-menu span:after {
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
     transition: all ease .3s;
}

.show-menu span:before {
    transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
     transition: all ease .3s;
}

.show-menu span:after,
.show-menu span:before {
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all ease .3s;
}
.show-menu span {
    background-color: transparent;
}

/* media queries for mobile  ----------------------------------------------------------------------------------------- */
@media (min-width: 300px) and (max-width: 600px)  {

    :root {
        --fs-big: 30px;
        --fs-medium: 20px;
        --fs-normal: 16px;
        --fs-smallest: 10px;
    }
  
    .hero__title span {
        font-size: 20px;
        position: absolute;
        margin-left: 32px;
        color: #8c2f68;
        font-weight: 800;
        top: 3px;
    }
    .container,.nav__top-wrap{
        width: 97%;
        margin: 0 auto;
    }
    .nav__wrap {
    background: #E6E6E6;
    border-radius: 20px;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
    .nav__top-right{
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    }
    .nav__logo{
        width: 60px;
        z-index: 3;
    }
    .lang__wrap{
        display: none;
    }
.mobile__menu{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.burger{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}
.lang__wrap-2{
    display: flex;
    margin-right: 15px;
}
.nav__items-wrap{
    display: none;
}
.nav__items-wrap.show {
        display: flex;
        padding: 30px 10px 15px 10px;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        background: #1a1a1ac9;
        z-index: 2;
        text-align: left;
        flex-direction: column;
        background: #e6e6e6;
        width: 95%;
        margin: auto;
        border-radius: 0px 0px 20px 20px;
}
.nav__items {
    flex-direction: column;
}
.hero__btn-nav-2 {
   margin: 10px 0 10px 0px;
}
.lang__wrap {
 margin-left: 0px;
}
.nav__item{
    position: relative;
    margin: 0;
    padding-right: 0;
    padding: 10px 0;
}
.nav__item:last-child{
    border-bottom: none;
}

.hero__info {
    margin-left: 0px;
}
.hero__title br{
    display: none;
}
.hero__wrap{
            flex-direction: column;
        padding-top: 8em;
}
.hero__item {
   width: 95%;
   margin: 0 auto 60px;
   text-align: center;
}
.hero__btn2{
    margin-left: 10px;
}

.hero__btn{
    padding: 12px 20px;
}
.hero__btn img{
    width: 100px;
    height: 22px;
}
.hero__title::after{
    display: none;
}
.hero__subtitle{
    padding: 10px 0 20px;
}
.about{
    padding: 30px 0;
}
.about__wrap{
    flex-direction: column;
    gap: 0;
}
.about__item,.about__img{
    width: 95%;
    margin-bottom: 30px;
}
.about__title br{
    display: none;
}
.about__subdesc {
    color: var(--clr-grey);
    padding: 10px 0 0px;
}
.advantages {
   margin-top: 40px;
        flex-direction: column;
        gap: 30px;
        justify-content: center;
}
.advantages-item{
        width: 90%;
        padding: 50px 25px 30px;
}
.advantages__title{
    font-size: var(--fs-normal);
}
.advantages__title br{
    display: none;
}
.advantages__icon {
    top: -20px;
    width: 50px;
    height: 50px;
}
.advantages__icon img{
    width: 18px;
    height: 18px;
}
.about__subdesc-icon,.program-icon{
    height: auto;
    margin-right: 40px;
    width: 30px;
}
.about__btns p {
    color: var(--clr-blue-add);
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}
.about__btns{
    margin-top: 30px;
}
.about__btns p br{
    display: none;
}
.about__img img {
    width: -webkit-fill-available;
    height: auto;
}


.about__subdesc p{
    font-size: 18px;
}
#preview{
    margin-top: 60px;
}
#preview .about__wrap{
    flex-direction: column-reverse;
}
/* ul.preview__list {
    display: inline-block;
    text-align: center;
} */
.about__img, .about__img-2, .about__item {
    width: -webkit-fill-available;
    text-align: center;
}
.about__img-2 img {
    width: -webkit-fill-available;
    height: auto;
}

.preview-wrap {
    margin-top: 20px;
}

.preview__item p {
    color: var(--clr-grey);
    margin-left: 15px;
    font-size: 16px;
}
.preview__img img{
    height: 20px;
    width: 20px;
}
.preview__item {
    margin: 12px 0;
}
#preview .about__item{
    margin-bottom: 0;
}
.instruction__items{
    flex-direction: column;
    margin-top: 0;
}
.instruction__item{
    width: 100%;
    margin-top: 30px;
}
.instruction__desc {
    color: var(--clr-blue-add);
    font-size: 18px;
    margin: 12px auto;
    width: 100%;
    font-weight: 700;
}
.instruction__desc  br{
    display: none;
}
.instruction__subtitle{
    font-size: var(--fs-normal);
}
.instruction__img img {
    width: 400px;
    height: auto;
}
.faq-wrapper {
    margin: 30px 0;
    position: relative;
}
.faq{
    padding: 1em 0 0;
}
.faq-item{
    width: 100%;
    padding: 20px;
}
.faq-item__title {
    font-weight: 700;
    font-size: 15px;
    width: 90%;
}
.faq-item p {
    line-height: 1.3;
    font-size: 14px;
    width: 100%;
}
.faq-answer p {
    padding-top: 10px;
}
.faq-icon img{
    height: 15px;
    width: 15px;
}
.faq__btn {
    color: white;
    font-size: 14px;
    background: var(--clr-blue);
    padding: 15px 30px;
}
.instruction {
    margin: 70px 0;
}
.footer-bg img{
    display: none;
}
.footer__wrap{
    margin-bottom: 0px;
    flex-direction: column;
}
.footer__item{
    width: 100%;
    margin-bottom: 30px;
}
.footer__down {
    color: var(--clr-desc-white);
    padding: 0px 0 15px;
    margin-top: 0;
}
.footer__down-wrap{
    flex-direction: column;
}
.footer__down-item{
    font-size: 10px;
}
.nav__top-item img {
    height: 13px;
    width: 13px;
}

.nav__top span{
    font-size: 10px;
}

.consult {
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 10px;
}

.footer{
    padding: 40px 0 0px;
}
.footer__nav a img{
    height: 25px;
    width: 25px;
}
.footer__nav {
    display: flex;
    justify-content: center;
}
.footer a {
    color: var(--clr-desc-white);
    font-size: 13px;
   margin: 0 10px;  
    font-weight: 400;
}
.consult .hero__btn{
    width: 100%;
}
.consult-item{
    width: 100%;
    text-align: center;
}
.consult-item .about__btns{
    text-align: center;
    display: flex;
    align-items: center;
    margin: 20px auto;
    width: 80%;
    justify-content: center;
}
.consult-item .about__title {
    font-size: 20px;
}
.consult-item-bg {
    padding-top: 30px;
}
.consult-item-bg img{
    width: 300px;
}
main{
    overflow-x: hidden;
}

}


/* media queries for planshet  ----------------------------------------------------------------------------------------- */
@media (min-width: 760px) and (max-width: 1204px){
    :root {
        --fs-big: 30px;
        --fs-medium: 25px;
        --fs-normal: 16px;
        --fs-smallest: 12px;
    }

    .hero__item{
        width: fit-content;
    }
    .hero__title span{
        font-size: 30px;
        top: 10px;
    }
    main{
        overflow-x: hidden;
    }
    .container{
        width: 98%;
        margin: 0 auto;
    }
    .hero{
        height: auto;
    }
    .consult{
       margin-bottom: 30px;
    }
    .mission::before{
        display: none;
    }
    .mission__title{
        font-size: 18px;
    }
   
  
    .mission__desc{
        margin-top: 16px;
        position: relative;
        font-size: 12px;
    }
  
    .hero__title::after{
        display: none;
    }
.nav__wrap {
    padding: 12px;
    margin-top: 10px;
}
    .nav__item{
        font-size: 14px;
        margin: 0 10px;
    }
   
    .hero__title{
        margin: 0;
    }
    .location__item{
        padding: 20px 10px 20px 10px;
    }
    .main__form::before {
        content: url(../img/talk.svg);
        position: absolute;
        bottom: 20px;
        right: -30px;
        width: 59%;
    }
    .hero__subtitle {
        color: var(--clr-grey);
        padding: 20px 0 20px;
    }
 .nav__logo {
    width: 60px;
}
.hero__btn-2 img {
    width: 70px;
    height: auto;
}
.hero__btn-nav-2 {
    margin-left: 5px;
}
    .hero__info {
        margin-left: 2em;
    }
    .hero__btn{
        padding: 10px 14px;
    }
  .nav__items-wrap {
    width: 85%;
}
.lang__icon img {
    margin: 0 2px;
    height: 25px;
    width: 25px;
}
.hero__item-bg-img {
    width: auto;
    max-width: 100%;
}
    .about{
        margin: 80px 0 0px;
        padding: 0;
    }
  .hero__btn img {
    width: 80px;
    height: 18px;
}
.hero__btn2{
    margin-left: 5px;
}

    .nav__top-wrap{
        max-width: 98%;
    }
  
    .about__wrap{
        justify-content: space-between;
        gap: 15px;
    }
    .about__img img {
        width: -webkit-fill-available;
        height: auto;
    }
    .about__subdesc {
        color: var(--clr-grey);
        padding: 10px 0;
        font-size: 14px;
    }
 .advantages {
        margin-top: 70px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
}
.advantages-item{
    width: 45%;
    padding: 50px 30px 30px 30px;
}
.advantages__icon img{
    width: 25px;
    height: 25px;
}
.advantages__icon{
    width: 60px;
    height: 60px;
    top: -30px;
}
.advantages__title br{
    display: none;
}
.about__btns {
    margin-top: 30px;
    text-align: center;
}
.about__btns p {
    color: var(--clr-blue-add);
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}
.about__img-2 img {
    width: -webkit-fill-available;
    height: auto;
}
.about__title br{
    display: none;
}
.preview__item p {
    color: var(--clr-grey);
    margin-left: 10px;
    font-size: 15px;
}
.preview__img img{
    height: 18px;
    width: 18px;
}
.preview__item{
    margin:8px 0;
}
.about__subtitle {
    color: #3E9B4B;
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 12px;
}
.instruction {
    margin: 60px 0;
}
.instruction__items {
    margin-top: 20px;
}
.instruction__desc {
    font-size: 12px;
    margin: 10px auto;
    width: 100%;
}
.instruction__subtitle {
    font-size: 16px;
}

.instruction__img img {
    width: 240px;
    height: auto;
}
.faq {
    padding: 0em 0 2em;
    position: relative;
}
.faq-wrapper {
    margin: 20px 0;
    position: relative;
}
.faq-item {
    padding: 25px;
    margin: 0 auto 10px;
}

.faq-item p {
    font-size: 14px;
}
.faq-answer p {
    padding-top: 18px;
}
.faq__btn {
    color: white;
    font-size: 15px;
}
.consult-item .about__title{
    font-size: 22px;
 }
.consult-item-bg{
    padding-top: 30px;
}
.consult-item-bg img{
    width: 400px;
}
.footer {
    padding: 50px 0 0px;
}

.footer a {
    font-size: 14px;
    margin: 0 14px;
}
.footer__nav a img{
    height: 25px;
    width: 25px;
}

.footer__down{
    margin-top: 0;
}






}

/* media queries for planshet  ----------------------------------------------------------------------------------------- */
@media (min-width: 1210px) and (max-width: 1400px){
    :root {
        --fs-big: 50px;
        --fs-medium: 30px;
        --fs-normal: 20px;
        --fs-smallest: 12px;
    }

    .hero__item{
        width: fit-content;
    }
    .hero__title span{
        font-size: 30px;
        top: 10px;
    }
    main{
        overflow-x: hidden;
    }
    .container{
        width: 98%;
        margin: 0 auto;
    }
    .hero{
        height:100vh;
    }
    .hero__wrap{
        padding-top: 0;
    }
    .consult{
       margin-bottom: 30px;
    }
    .mission::before{
        display: none;
    }
    .mission__title{
        font-size: 18px;
    }
  
    .hero__title::after{
        display: none;
    }
.nav__wrap {
    padding: 12px 20px;
    margin-top: 10px;
}
    .nav__item{
        font-size: 16px;
        margin: 0 15px;
    }
   
    .hero__title{
        margin: 0;
    }
    .location__item{
        padding: 20px 10px 20px 10px;
    }
    .main__form::before {
        content: url(../img/talk.svg);
        position: absolute;
        bottom: 20px;
        right: -30px;
        width: 59%;
    }
    .hero__subtitle {
        color: var(--clr-grey);
        padding: 20px 0 20px;
        width: 90%;
    }
 .nav__logo {
    width: 80px;
}
.hero__btn-2 img {
    width: 70px;
    height: auto;
}
.hero__btn-nav-2 {
    margin-left: 5px;
}
    .hero__info {
        margin-left: 2em;
    }
    .hero__btn{
        padding: 15px 40px;
    }
  
.hero__item-bg-img {
    width: auto;
    max-width: 100%;
}
    .about{
        margin: 0px 0 0px;
        padding: 0;
    }
  .hero__btn img {
        width: 100px;
        height: auto;
}
.hero__btn2{
    margin-left: 5px;
}

    .nav__top-wrap{
        max-width: 98%;
    }
  
    .about__wrap{
        justify-content: space-between;
        gap: 25px;
    }
    .about__img img {
        width: -webkit-fill-available;
        height: auto;
    }
    .about__subdesc {
        color: var(--clr-grey);
        padding: 20px 0;
    }
 .advantages {
        margin-top: 70px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
}
.advantages-item{
    width: 46%;
    padding: 50px 15px 30px 15px;
}
.advantages__title {
    font-size: 18px;
    color: var(--clr-blue);
}
.advantages__icon img{
    width: 25px;
    height: 25px;
}
.advantages__icon{
    width: 60px;
    height: 60px;
    top: -30px;
}
.advantages__title br{
    display: none;
}
.about__btns {
    margin-top: 40px;
    text-align: center;
}
.about__btns p {
    color: var(--clr-blue-add);
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}
#preview{
    margin-top: 70px;
}
.about__img-2 img {
    width: -webkit-fill-available;
    height: auto;
}

.preview__item p {
    color: var(--clr-grey);
    margin-left: 10px;
    font-size: 18px;
}
.preview__img img{
    height: 25px;
    width: 25px;
}
.preview__item{
    margin:12px 0;
}
.about__subtitle {
    color: #3E9B4B;
    font-weight: 800;
    margin-bottom: 5px;
}
.instruction__items {
    margin-top: 40px;
}
.instruction__desc {
    font-size: 20px;
    margin: 10px auto;
    width: 100%;
}
.instruction__subtitle {
    font-size: 16px;
}

.instruction__img img {
    width: auto;
    height: auto;
}
.faq {
    padding: 0em 0 4em;
    position: relative;
}
.faq-wrapper {
    margin: 20px 0;
    position: relative;
}
.faq-item {
    padding: 25px;
    margin: 0 auto 10px;
}

.faq-item p {
    font-size: 14px;
}
.faq-answer p {
    padding-top: 18px;
}
.faq__btn {
    color: white;
    font-size: 15px;
}
.consult-item .about__title{
    font-size: 22px;
 }
.consult-item-bg{
    padding-top: 30px;
}
.consult-item-bg img{
    width: 400px;
}
.footer {
    padding: 50px 0 0px;
}

.footer a {
    font-size: 14px;
    margin: 0 14px;
}
.footer__nav a img{
    height: 25px;
    width: 25px;
}

.footer__down{
    margin-top: 0;
}






}