*,
*::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: 15px;
    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.174);
}

::-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.2;
    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-black: #2D2D2D;
    --clr-green: #FC5309;
    --clr-blue-add: #300560;
    --clr-blue: #300560;
    --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: 65px;
    --fs-medium: 40px;
    --fs-normal: 25px;
    --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 140px;
}

.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: 25px;
    color: var(--clr-black);
    position: relative;
    margin: 0 40px;
    font-weight: 600;
    transition: all ease .4s;
}

.nav__item:hover {
    color: #FC5309;
}

.nav__items {
    display: flex;
    align-items: center;
}

.nav__logo {
    width: 100px;
}

.lang__wrap {
    display: flex;
    align-items: center;
    margin-left: 100px;
}

.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-img {
    width: auto;
    max-width: 100%;
    height: 1000px;
    max-height: max-content;
    /* transform: rotate(20deg); */
    animation: moving 4.2s infinite linear;
    -webkit-animation: moving 4.2s infinite linear;
    -moz-animation: moving 4.2s infinite linear;
    -o-animation: moving 4.2s infinite linear;
}

@keyframes moving {
    0% {
        transform: scale(1) rotate(25deg);
        animation-timing-function: 0;
    }

    50% {
        transform: scale(1.05) rotate(25deg);
        animation-timing-function: 0;
    }

    100% {
        transform: scale(1) rotate(25deg);
    }
}

@keyframes moving2 {
    0% {
        transform: scale(1) rotate(-25deg);
        animation-timing-function: 0;
    }

    50% {
        transform: scale(1.05) rotate(-25deg);
        animation-timing-function: 0;
    }

    100% {
        transform: scale(1)rotate(-25deg);
    }
}

.hero__item-bg-img2 {
    width: auto;
    max-width: 100%;
    height: 800px;
    max-height: max-content;
    /* transform: rotate(-40deg); */
    animation: moving2 4.2s infinite linear;
    -webkit-animation: moving2 4.2s infinite linear;
    -moz-animation: moving2 4.2s infinite linear;
    -o-animation: moving2 4.2s infinite linear;
}

.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 {
    text-align: center;
    width: 80%;
    margin: 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.hero__title {
    font-size: var(--fs-big);
    color: var(--clr-black);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
}

/* .hero__title::after{
    position: absolute;
    content: url('../img/Shape.png');
    bottom: -60px;
    right: 100px;
} */
.hero__subtitle {
    color: var(--clr-grey);
    padding: 30px 0 50px;
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
    font-size: var(--fs-normal);
    width: 90%;
    margin: 0 auto;
}

.hero__btn {
    background: var(--clr-blue-add);
    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: 33px;
}

.hero__btn2 {
    background: transparent;
    border: 1px solid var(--clr-blue-add);
    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: 20px;
}

.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 {
    margin-top: 100px;
    padding: 60px;
    position: relative;
    background: #F2F2F2;
    border-radius: 60px;
}

.about__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about__img,
.about__img-2,
.about__item {
    width: 50%;
}

.about__title {
    font-size: 65px;
    color: var(--clr-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__subdesc {
    color: var(--clr-grey);
    padding: 20px 0 40px;
    display: inline-block;
    font-size: 25px;
    width: 85%;
}

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

.advantages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
}

.advantages__icon {
    background: #ffffff42;
    border-radius: 15px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 4px 8px 0px 0px 4px 8px 0px rgb(107 107 107 / 0%);
    -moz-box-shadow: 0px 4px 8px 0px 4px 8px 0px rgb(107 107 107 / 0%);
    box-shadow: 0px 4px 8px 0px 4px 8px 0px rgb(107 107 107 / 0%);
}

.advantages__icon img {
    width: 50px;
    height: 50px;
}

.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: 50px;
    width: 24%;
    text-align: center;
    transition: 300ms ease-in-out;
    background: #5CC397;
    height: -webkit-fill-available;
}

.advantages-item2 {
    background: #EB5951;
}

.advantages-item3 {
    background: #4289EB;
}

.advantages-item4 {
    background: #8e24aa;
}

.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: white;
    text-align: left;
    margin: 20px 0 10px;
    font-weight: var(--fw-medium);
}

.advantages-item p {
    text-align: left;
    color: white;
    font-size: 20px;
}

.about__btns {
    margin-top: 80px;
    text-align: center;
}

.about__btns p {
    color: var(--clr-black);
    font-size: 25px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 600;
}

.about__subtitle {
    color: var(--clr-blue);
    font-weight: 800;
    margin-bottom: 5px;
}

.about-img {
    z-index: 1;
    position: relative;
    height: 800px;
    transform: scale(1);
    transition: 300ms ease-in-out;
}

.about-img2 {
    position: absolute;
    transform: scale(1);
    transition: 300ms ease-in-out;
    height: 800px;
    z-index: 1;
    right: 100px;
    bottom: 0;
    top: 0;
    margin: auto;
}

.about-img:hover,
.about-img2: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 80px;
    background: #F2F2F2;
    border-radius: 40px;
    margin: 0 auto 10px;
}


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


.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 {
    transform: rotate(0deg);
    transition: 0.3s ease;
}

.faq-icon img {
    width: 30px;
    height: 30px;
}

.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 */
.download {
    background: #F2F2F2;
    padding-top: 70px;
}

.consult {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consult-item {
    width: 40%;
}

.consult-item .about__title {
    font-size: 50px;
    color: var(--clr-black);
    font-weight: 800;
    text-transform: uppercase;
}

.consult-item-img {
    margin-left: -90px;
}

.consult-item .about__btns {
    text-align: left;
}

.consult-item-bg {
    display: flex;
    overflow: hidden;
    align-items: flex-end;
    justify-content: center;
}

/* footer styles */

.footer {
    padding: 80px 0 0px;
    background: #2D2D2D;
}

.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: var(--clr-blue);
    cursor: pointer;
    position: relative;
    display: none;
    position: fixed;
    left: 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 */

.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;
    }

    .nav__top-left {
        display: none;
    }

    .burger {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
    }

    .nav__items {
        display: none;
    }

    .nav__items.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: 0 auto;
        border-radius: 0px 0px 20px 20px;
    }

    .lang__wrap {
        display: flex;
        align-items: center;
        margin-left: 0;
        gap: 10px;
        margin-top: 10px;
    }

    .nav__item {
        font-size: 20px;
        position: relative;
        margin: 0;
        padding-right: 0;
        padding: 10px 0;
    }

    .nav__item:last-child {
        border-bottom: none;
    }

    .hero__item-bg-img,
    .hero__item-bg-img2 {
        display: none;
    }

    .hero {
        height: auto;
    }

    .hero__info {
        margin-left: 0px;
    }

    .hero__title br {
        display: none;
    }

    .hero__wrap {
        flex-direction: column;
        padding-top: 50px;
    }

    .hero__item {
        width: 95%;
        margin: 40px auto 0px;
        text-align: center;
    }

    .hero__btn2 {
        margin-left: 10px;
    }

    .about__title {
        font-size: 22px;
    }

    .hero__btn {
        padding: 12px 20px;
    }

    .hero__btn img {
        width: 100px;
        height: 22px;
    }

    .hero__title::after {
        display: none;
    }

    .hero__subtitle {
        padding: 10px 0 20px;
    }

    .about {
        margin-top: 15px;
        padding: 30px 15px;
    }

    .about__wrap {
        flex-direction: column;
        gap: 20px;
    }

    .about__item,
    .about__img {
        width: 95%;
        margin-bottom: 30px;
    }

    .about__title br {
        display: none;
    }

    .about__subdesc {
        color: var(--clr-grey);
        padding: 15px 0px;
        display: inline-block;
        font-size: 16px;
        width: 100%;
    }

    .advantages {
        margin-top: 20px;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }

    .advantages-item {
        width: 90%;
        padding: 30px 25px 30px;
        height: auto;
    }

    .advantages__title {
        font-size: 20px;
    }

    .about-img2 {
        display: none;
    }

    .advantages-item p {
        text-align: left;
        color: white;
        font-size: 16px;
    }

    .advantages__title br {
        display: none;
    }

    .advantages__icon {
        top: -20px;
        width: 50px;
        height: 50px;
    }

    .advantages__icon img {
        width: 25px;
        height: 25px;
    }

    .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: 20px;
    }

    #preview .about__wrap {
        flex-direction: column;
        gap: 15px;
    }

    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;
    }

    .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: 20px 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;
    }

    .download {
        padding-top: 20px;
    }

    .consult {
        flex-direction: column;
        margin-top: 20px;
    }

    .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: 10px;
    }

    .consult-item-bg img {
        width: 300px;
        height: 300px;
        object-fit: contain;
    }

    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__item1 {
        margin: 0 100px;
    }

    .hero__title span {
        font-size: 30px;
        top: 10px;
    }

    .hero__title br {
        display: none;
    }

    main {
        overflow-x: hidden;
    }

    .container {
        width: 98%;
        margin: 0 auto;
    }

    .about__title {
        font-size: 25px;
    }

    .hero {
        height: auto;
    }

    .mission::before {
        display: none;
    }

    .mission__title {
        font-size: 18px;
    }

    .consult-item {
        width: 48%;
    }

    .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: 16px;
        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;
    }

    .hero__item-bg-img {
        width: auto;
        max-width: 100%;
    }

    .about {
        margin: 40px 0 0px;
        padding: 40px 25px;
    }

    .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: 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .advantages-item p {
        text-align: left;
        color: white;
        font-size: 16px;
    }

    .advantages-item {
        width: 48%;
        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,
    .about-img2 {
        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: 20px;
    }

    .consult-item-bg {
        padding-top: 30px;
    }

    .consult-item-bg img {
        width: 300px;
        height: 320px;
        object-fit: contain;
    }

    .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;
    }

    .download {
        background: #F2F2F2;
        padding-top: 30px;
    }





}

/* 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: 20px;
        margin: 0 20px;
    }

    .about__title {
        font-size: 50px;
        color: var(--clr-black);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .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: 50px 30px;
    }

    .hero__btn img {
        width: 100px;
        height: auto;
    }

    .advantages-item p {
        text-align: left;
        color: white;
        font-size: 17px;
    }

    .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: space-between;
        gap: 10px;
    }

    .advantages-item {
        width: 32%;
        padding: 30px 15px 30px 15px;
    }

    .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 {
        z-index: 1;
        position: relative;
        height: 800px;
        transform: scale(1);
        transition: 300ms ease-in-out;
        object-fit: contain;
    }

    .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;
        height: 400px;
        object-fit: contain;
    }

    .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;
    }






}