*,
*::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-red);
    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.5;
    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-white:white;
      --clr-red:#8c2f68;
      --clr-grey:#F3F3F3;
      --clr-desc:rgba(14, 14, 14, 0.758);
      --clr-desc-white: rgba(255, 255, 255, 0.751);
  
      /* Font */
      --ff: 'Poppins', sans-serif;
      /* Font size */
      --fs-big: 80px;
      --fs-medium: 40px;
      --fs-normal: 18px;
      --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 {
    max-width: 1200px;
    margin: 0 auto;
}
.nav{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}
.header{
    background-color: var(--clr-blue);
}

.nav__wrap{
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__item{
    font-size: 16px;
    color: var(--clr-white);
    position: relative;
    margin-right: 20px;
    padding-right: 20px;
    font-weight: 500;
    transition: all ease .4s;
}
.nav__item:hover{
    color: var(--clr-red);
}

.nav__items{
    display: flex;
    align-items: center;
}
/* hero styles */

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

.hero::after{
    content: url('../img/shapebg2.svg');
    position: absolute;
    right: 0em;
    z-index: -1;
    animation: shine 5s infinite linear;
}
@keyframes shine {
    0% {
        opacity: 1;
        animation-timing-function: linear;
    }
    50% {
        opacity: 0;
        animation-timing-function: linear;
    }
    100% {
        opacity: 1;
    }
}
/* .hero-2::before {
    content: url(../img/shapebg3.svg);
    left: -10px;
    top: -10px;
    position: absolute;
    z-index: -1;
} */
.hero__wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10em;
}
.hero-2{
    position: relative;
    background-image:linear-gradient(to bottom, rgba(22, 22, 24, 0.9), rgba(0, 0, 0, 0.8)),url(../img/nails-main.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    backface-visibility: hidden;
}

.rotate-img{
    animation: rotate 30s infinite linear;
    backface-visibility: hidden;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 7em;

}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
        animation-timing-function: linear;
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero__item{
    width: 42%;
}
/* .hero-2::before {
    content: url(../img/shapebg3.svg);
    left: -10px;
    top: -10px;
    position: absolute;
} */
.hero__item-bg{
    position: relative;
    z-index: 1;
}
.hero__item-bg::before{
    content: url('../img/shapebg2.svg');
    position: absolute;
    top: -20px;
    left: -80px;
    z-index: -1;
}
.hero__title{
    font-size: 50px;
    color: var(--clr-white);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
    position: relative;
}
.hero-span{
    font-size: 25px;
}
.hero-span2{
    font-size: var(--fs-big);
    display: block;
    color: #ed4fb0;
}
.hero__subtitle{
    color:rgba(255, 255, 255, 0.712);
    padding: 8px 0 12px;
    letter-spacing: 1px;
    display: inline-block;
    font-size: var(--fs-normal);
}

.hero__btn{
    background: var(--clr-red);
    padding: 20px 30px;
    border-radius: 6px;
    color: var(--clr-white);
    font-size: var(--fs-smallest);
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1.4px;
    border: none;
    position: relative;
    overflow: hidden;
}
.hero__btn-2{
    padding: 10px 20px;
    letter-spacing: normal;
}
.hero__btn::before{
        content: "";
        display: block;
        width: 20px;
        height: 200px;
        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;
    }
}
.hero__btn-img{
    margin-left: 5px;
    transform: translateX(0);
    transition: all ease-in 0.4s;
}
.hero__btn:hover .hero__btn-img{
    transform: translateX(3px);
    transition: all ease-in 0.4s;
}

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

.about__wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about__img,.about__item{
    width: 48%;
}

.about__title{
    font-size: var(--fs-medium);
    color: var(--clr-blue);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    margin: 5px 0 50px;
    position: relative;
}
.about__title::before {
    content: url(../img/underline_2.svg);
    position: absolute;
    bottom: 0px;
    width: 150px;
    height: 10px;
    right: 0;
}
.about__subtitle{
    color: var(--clr-red);
    letter-spacing: 1px;
    font-size: var(--fs-smallest);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.about__subtitle span{
    margin-left: 5px;
}

.about__subdesc {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 40px;
}
.about__subdesc p{
    font-size: 25px;
    font-weight: 700;
    color: black;
}
.about__subdesc span{
    color: #000000bf;
}
.about__subdesc-icon{
    margin-right: 25px;
    margin-top: 10px;
    height: 40px;
    width: 40px;
}
.program-icon{
    height: 37px;
    width: 37px;
    margin-right: 32px;
    margin-top: 10px;
}
.about__subdesc2{
    margin-bottom: 30px;
}


/* previews styles */
.reviews{
    padding: 120px 0 60px;
}
.reviews .values__subtitle{
    margin-bottom: 10px;
}
.rev__desc{
    width: 70%;
    margin: 0 auto;
    text-align: center;
}
.swiper {
    width: 100%;
    height: 100%;
    padding: 50px;
  }
.swiper-wrapper{
    padding: 30px 0;;
}
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    height: 350px;
    border-radius: 20px;
    border-bottom: 5px solid transparent;
    transition: all ease .3s;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.452);
  }
.swiper-slide:hover{
    border-bottom: 5px solid #8c2f68;
    transition: all ease .3s;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
}
  .slide__img-img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
  }
  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
    display: inline-block;
    border-radius: 50%;
}
.swiper-pagination-bullet-active {
    background: #8c2f68;
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,30px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,10px));
    display: inline-block;
    border-radius: 10px;
}
.slide__img{
    display: flex;
    align-items: center;
}
.slide__desc{
    font-size: var(--fs-smallest);
}
.slide__title{
    color: var(--clr-blue);
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}
.reviews-span{
    font-size: 12px;
    margin: 2px 0 10px;
}
.reviews-icon{
    width: 50px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    display: inline-block;
}

/* faq styles start */

.faq {
    padding: 6em 0 0;
    position: relative;
}

.faq-wrapper {
    margin: 50px 0;
    position: relative;
}

.faq-item {
    padding: 30px 20px;
    background: #181818;
    width: 80%;
    border-radius: 10px;
    margin: 0 auto 10px;
}


.faq-item__title {
    font-weight: 700;
    font-size: 18px;
    color: white;
}


.faq-item p {
    line-height: 1.3;
    color: #f5f5f5bd;
    font-size: 16px;
    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: white;
    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: white;
}

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




/* faq styles end */

/* consult styles */

.consult{
    background: linear-gradient(to bottom, rgb(140 47 104), rgb(114 17 175));
    padding: 70px;
    color: white;
    width: 50%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 300px;
    margin: 150px auto -60px;
    position: relative;
    z-index: 1;
}
.consult .hero__btn{
    background-color: var(--clr-white);
    color: #8c2f68;
    font-weight: 600;
    width: 90%;
    text-align: center;
}

.consult h2{
    font-size: var(--fs-medium);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.consult-img{
    position: absolute;
    bottom: 0;
    right: -50px;
    /* height: 500px; */
    object-fit: cover;
    animation: moving 4.2s infinite linear;
    z-index: -1;
}

.content .hero__btn{
    margin-top: 30px;
}

/* footer styles */

.footer{
    padding: 160px 0 0px;
    background-color: var(--clr-blue);
    background-image:linear-gradient(to bottom, rgba(22, 22, 24, 0.9), rgba(0, 0, 0, 0.8)),url(../img/foot.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.footer__wrap{
    display: flex;
    justify-content: space-between;
margin-bottom: 40px;
}
.footer__nav{
flex-direction: column;
    display: flex;
}

.footer a{
    color: var(--clr-desc-white);
}
.footer__item p{
    color: var(--clr-desc-white);
}
.footer-link{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.footer__links{
    text-align: center;
}
.footer__links svg{
    height: 30px;
    width: 30px;
    margin: 0 12px;
}

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

/* about page styles */

.hero__about{
    background-color: var(--clr-grey);
    height: 90vh;
    position: relative;
}
.hero__info-about{
    margin-left: 8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero__info-about img{
    width: 60%;
}
.hero__info-desc{
    background-color: white;
    padding: 30px;
    width: 4%;
}



/* values styles */

.values{
    margin: 100px 0;
    position: relative;
}
.values::before{
    content: "";
    background-image: url('../img/wave.png');
    background-size: cover;
    width: 100%;
    height: 140px;
    position: absolute;
    top: -190px;
    z-index: 10;
}
.values__title{
    color: var(--clr-blue);
    font-size: 80px;
    text-align: center;
    text-transform: uppercase;
}
.values__subtitle{
    text-transform: uppercase;
    text-align: center;
    color: var(--clr-blue);
    font-size: 50px;
    position: relative;
    margin-bottom: 30px;
}
.values__subtitle::before{
    content: url('../img/underline_2.svg');
    position: absolute;
    bottom: 30px;
    width: 150px;
    height: 10px;
    left: 0;
    right: 0;
    margin: auto;
}
.values__wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
}
.values__item{
    width: 32%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(1);
    transition: all ease .4s;
}
.values__item-img{
    width: 160px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: moving 4.2s infinite linear;
}
.values__item-img2{
    animation: moving2 4.2s infinite linear;
}
@keyframes moving {
    0% {
        transform: translateX(0px) translateY(0px);
        animation-timing-function: 0;
    }
    33% {
        transform: translateX(-10px) translateY(11px);
        animation-timing-function: 0;
    }
    66% {
        transform: translateX(13px) translateY(15px);
        animation-timing-function: 0;
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}
@keyframes moving2 {
    0% {
        transform: translateX(0px) translateY(0px);
        animation-timing-function: 0;
    }
    33% {
        transform: translateX(10px) translateY(-11px);
        animation-timing-function: 0;
    }
    66% {
        transform: translateX(-13px) translateY(-15px);
        animation-timing-function: 0;
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}
.values__item p{
    color: #ffffff;
    text-transform: uppercase;
    margin: -35px 0 5px;
    font-size: var(--fs-small);
    background: #1a1a1a;
    padding: 40px 15px 20px;
    border-radius: 10px;
    height: 200px;
    display: flex;
    align-items: center;
    z-index: -1;
}


/* tabs */
.course{
    margin: 100px 0 20px;
}
.tab-buttons {
    display: flex;
    gap: 8px;
    margin: 80px 0 0px;
  }
  
  .tab-btn {
    width: fit-content;
    border: none;
    color: white;
    opacity: .8;
    border-radius: 10px 10px 0px 0px;
    font-weight: 500;
    padding:20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    background-color: #181818;
    text-transform: uppercase;
  }
  .tab-btn:hover {
    background-color: #1f1f1f;
  }
  .tab-btn.active {
    opacity: 1;
    background-color: #181818;
  }
 .content-title{
    font-size: 30px; text-transform: uppercase;
 }
  .content {
    display: none;
  }
  
  .content.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-radius: 0px 10px 10px 10px;
    padding: 70px 50px 30px;
    background: #1a1a1a;
    color:var(--clr-white);
  }
  .content-desc {
    margin-top: 60px;
}
.content-desc-icon {
    margin-bottom: 15px;
}
.content-desc-icon img {
    height: 30px;
    width: 30px;
    max-width: fit-content;
}
.content-desc-info{
    font-size: 15px;
    color: rgba(255, 255, 255, 0.692);
}
  .content-info,.cont-img{
    width: 45%;
  }
.content-info-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-info-wrap-item{
    width: 49%;
}
  .cont-main-img{
    min-width: 400px;
    object-fit: cover;
    height: 700px;
    width: 100%;
    border-radius: 10px;
  }
 .programm{
    margin-top: 60px;
 }
 .programm ol{
    margin-top: 10px;
 }
.programm ol li{
    font-size: 15px;
    margin-left: 30px;
    color: rgba(255, 255, 255, 0.692);
}

.cont-img{
    position: relative;
}
.cont-img::before{
    content: url(../img/prog2.png);
    position: absolute;
    top: -15em;
    right: -15em;
    animation: moving2 4.2s infinite linear;
}
.tab-contents{
    position: relative;
}
.tab-contents::after{
    content: url(../img/programm.png);
    position: absolute;
    bottom: -10em;
    left: -16em;
  z-index: -1;
    animation: moving 4.2s infinite linear;
}
#arrowTop {
    background-color: #8c2f68;
    cursor: pointer;
    position: relative;
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    outline: 0;
    cursor: pointer;
    z-index: 10;
    padding:10px 15px 10px 15px;
    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: 2px;
    z-index: 5;
    width: 80%;
    background: var(--clr-white);
    position: relative;
}

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

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

.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: 18px;
        --fs-normal: 13px;
        --fs-smallest: 10px;
    }
    .hero__title span {
        font-size: 25px;
        color: #8c2f68;
        font-weight: 800;
    }
    .container,.nav__top-wrap{
        width: 95%;
    }
    .hero__title{
        font-size: 35px;
    }
    .values__item-img {
        width: 160px;
        height: auto;
    }
    .values::before {
        content: "";
        background-image: url(../img/wave.png);
        background-size: cover;
        width: 100%;
        height: 60px;
        position: absolute;
        top: -110px;
        z-index: 10;
    }
    .nav__top-right{
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    }
    .nav__logo{
        width: 120px;
    }
    .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: 25px 15px 25px 15px;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background: #1a1a1ac9;
    z-index: 2;
    text-align: left;
    backdrop-filter: blur(10px);
    flex-direction: column;
}
.nav__item{
    position: relative;
    margin-right: 0;
    padding-right: 0;
    padding: 10px 0;
}
.nav__item:last-child{
    border-bottom: none;
}

.hero__info {
    margin-left: 0px;
}
.hero{
    height: 500px;
    align-items: flex-end;
    justify-content: center;
}
.hero__wrap{
    flex-direction: column;
    padding-top: 0;
}
.hero__item {
    width: 80%;
    margin: 0 auto 70px;
}
.hero__item-bg{
    display: none;
}
.hero__item-bg img{
    display: none;
}
.values__subtitle::before {
    content: url(../img/underline_2.svg);
    position: absolute;
    bottom: -2px;
    width: 100px;
    height: 10px;
    left: 0;
    right: 0;
    margin: auto;
}
.hero__btn{
    padding: 10px 15px;
}
.about{
    padding: 20px 0 20px;
}
.about__wrap{
    flex-direction: column;
}
.about__item,.about__img{
    width: 95%;
    margin-bottom: 30px;
}

.about__subdesc-icon,.program-icon{
    height: auto;
    margin-right: 40px;
    width: 30px;
}
.course{
    margin: 70px 0;
}
.tab-buttons {
    display: flex;
    gap: 4px;
    margin: 60px 0 0px;
}
.tab-btn{
    font-size: 12px;
    padding: 12px;
}
.content.show {
    border-radius: 0px 0px 10px 10px;
    padding: 40px 20px 15px;
    flex-direction: column;
}
.content-info-wrap{
    flex-direction: column;
}
.content-title{
    font-size: 20px;
}
.content-info, .cont-img,.content-info-wrap-item{
    width: 100%;
}
.content-desc {
    margin-top: 50px;
}
.cont-img,.tab-contents::after{
    display: none;
}
.about__subdesc p{
    font-size: 18px;
}
.reviews{
    padding: 0px 0 60px;
}
.swiper-wrapper{
    padding: 0;
}
.slide__title{
    font-size: 18px;
}
.rev__desc{
    width: 100%;
}
.swiper{
    padding: 50px 0 70px;
    width: 90%;
}
.slide__desc{
    margin: 0px 0;
    font-size: 12px;
}
.faq{
    padding: 1em 0 0;
}
.faq-item{
    width: 100%;
    padding: 20px;
}
.faq-item__title {
    font-weight: 700;
    font-size: 15px;
    color: white;
    width: 90%;
}
.faq-item p {
    line-height: 1.3;
    color: #f5f5f5bd;
    font-size: 14px;
    width: 100%;
}
.swiper-slide{
    padding: 15px;
}
.footer-bg img{
    display: none;
}
.footer__wrap{
    margin-bottom: 0px;
    flex-direction: column;
}
.footer__item{
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
}
.footer__item:last-child{
    margin-bottom: 0;
}
.footer__item p{
    font-size: 14px;
}
.footer__links svg {
    height: 20px;
    width: 20px;
    margin: 0 12px 0 0;
}
.footer__down-wrap{
    flex-direction: column;
}
.footer__down-item{
    font-size: 10px;
}
.nav__top-item img {
    height: 13px;
    width: 13px;
}
.Swip2 .swiper {
    width: 80%;
}
.nav__top span{
    font-size: 10px;
}
.hero__info-about img{
    display: none;
}
.hero__about{
    height: auto;
}
.hero__info-desc {
    background-color: white;
    padding: 30px;
    width: 100%;
}
.hero::after{
    display: none;
}
.mySwiper2 .swiper-button-next:after, .mySwiper2 .swiper-button-prev:after{
    font-size: 15px;
    padding: 10px;
}
.consult-img{
    display: none;
}
.consult {
    background: #8c2f68;
    padding: 30px;
    color: white;
    width: 90%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    height: auto;
    margin: 50px auto;
    position: relative;
    text-align: center;
    justify-content: center;
}
.consult h2{
    font-size: 16px;
    margin-bottom: 10px;
}
.footer{
    padding: 60px 0 0px;
}
.consult .hero__btn{
    width: 100%;
}
.consult-item{
    width: auto;
}
.mySwiper2 .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 2px);
    left: auto;
}
.mySwiper2 .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 2px);
    right: auto;
}
.values {
    margin: 70px 0;
    position: relative;
    z-index: 1
}
.values__title{
    font-size: 25px;
}
.values__subtitle{
    font-size: 22px;
    margin: 0px auto;
    width: 80%;
}
.values__wrap{
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
}
.values__item{
    width: 100%;
    margin: 0px auto 40px;
}
.values__item p{
    height: auto;
}
main{
    overflow-x: hidden;
}

}


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

    .hero__item{
        width: fit-content;
    }
    .hero__title span{
        font-size: 30px;
        top: 10px;
    }
    main{
        overflow-x: hidden;
    }
    .container{
        width: 96%;
    }
    .hero{
        height: 650px;
    }
    .consult{
        width: 90%;
    }
    .mission::before{
        display: none;
    }
    .mission__title{
        font-size: 18px;
    }
    .values__subtitle{
        font-size: 35px;
    }
    .values__subtitle::before{
        bottom: 0;
    }
    .mission__desc{
        margin-top: 16px;
        position: relative;
        font-size: 12px;
    }
    .values__title {
        font-size: 40px;
    }
    .nav__top-left{
        display: none;
    }
    .nav__logo{
        width: 150px;
    }
    .values{
        position: relative;
        z-index: 1;
    }
    .nav__item{
        font-size: 14px;
    position: relative;
    margin-right: 7px;
    padding-right: 7px;
    }
    .hero__about{
        height: auto;
    }
    .contacts-bg .hero__info-desc {
        position: absolute;
        left: 20px;
        background: white;
        bottom: 14px;
    }
    .hero__info-desc {
        background-color: white;
        padding: 15px;
        width: fit-content;
    }
    .hero__title{
        margin: 25px 0 10px;
    }
    .location__item{
        padding: 20px 10px 20px 10px;
    }
    .main__form::before {
        content: url(../img/talk.svg);
        position: absolute;
        bottom: 20px;
        right: -30px;
        width: 59%;
    }
    .footer-bg img {
        position: absolute;
        right: -16em;
        top: 4em;
    }
    .footer__links svg {
        height: 25px;
        width: 25px;
    }
    .footer__item p{
        font-size: 14px;
    }
    .hero__products{
        height: 60vh;
    }
    .hero__info {
        margin-left: 2em;
    }
    .hero__btn{
        padding: 12px 15px;
    }
    .values__wrap{
        flex-wrap: wrap;
        border: none;
    }
    .values__item{
        width: 45%;
        margin: 6px;
    }
    .Swip2 .swiper{
        width: 75%;
    }
    .mySwiper2 .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 20px);
        left: auto;
    }
    .mySwiper2 .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, 20px);
        right: auto;
    }
    .about{
        padding: 10px 0;
    }
    .mission__info{
        padding: 60px 20px;
        border-bottom: 4px solid red;
        width: 96%;
    }

    .nav__top-wrap{
        max-width: 98%;
    }
  
    .about__wrap{
        flex-wrap: wrap;
    }
    .content-info-wrap{
        flex-direction: column;
    }
    .content-info-wrap-item{
        width: 100%;
    }
    .content-desc{
        margin-top: 30px;
    }
  .content.show{
    gap: 6px;
    border-radius: 0px 10px 10px 10px;
    padding: 70px 30px 30px;
  }
  .content-info, .cont-img {
    width: 49%;
}
}