*,
*::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);
    -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: rgb(64,163,248);
    background: linear-gradient(90deg, rgba(64, 162, 248, 0.142) 0%, rgba(255,255,255,1) 35%, rgba(64, 162, 248, 0.146) 100%);
    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:#3E3E3E;
      --clr-white:white;
      --clr-red:#40A3F8;
      --clr-grey:#F3F3F3;
      --clr-desc:rgba(128, 128, 128, 0.758);
      --clr-desc-white: rgba(255, 255, 255, 0.751);
  
      /* Font */
      --ff: 'Poppins', sans-serif;
      /* Font size */
      --fs-big: 40px;
      --fs-medium: 30px;
      --fs-normal: 16px;
      --fs-small:14px;
      --fs-smallest:12px;
      /* 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-blue);
    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: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero::before{
    content: url('../img/shapebg1.svg');
    position: absolute;
    right: -20px;
    top: -10px;
    z-index: -1;
}
.hero::after{
    content: url('../img/shapebg2.svg');
    position: absolute;
    right: -20px;
    bottom: -10px;
    z-index: -1;
}
.hero__wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12em;
}
.hero-2{
    position: relative;
}
.hero-2::before{
    content: url('../img/shapebg3.svg');
    left: -10px;
    top:-10px;
    width: 50%;
    height: 60%;
    position: absolute;
}
.hero__item{
    width: 42%;
}
.hero__item-bg{
    position: relative;
    z-index: 1;
}
.hero__item-bg::before{
    content: url(../img/back-rounds.svg);
    position: absolute;
    top: -20px;
    width: 500px;
    height: 500px;
    left: -80px;
    z-index: -1;
}
.hero__title{
    font-size: var(--fs-big);
    color: var(--clr-blue);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}
.hero__subtitle{
    color: rgba(128, 128, 128, 0.703);
    padding: 20px 0;
    letter-spacing: 1px;
    display: inline-block;
    font-size: var(--fs-normal);
}
.hero__btn{
    background: var(--clr-red);
    padding: 12px 20px;
    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::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 20px;
}
.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__desc{
margin-bottom: 25px;
}
.about__subdesc {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 10px;
}
.about__subdesc span{
    display: contents;
    font-size: 14px;
}
.about__subdesc img {
    margin-right: 20px;
    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 0;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    border-radius: 20px;
    border-bottom: 12px solid transparent;
    transition: all ease .3s;
  }
.swiper-slide:hover{
    border-bottom: 10px solid #40a2f89e;
    transition: all ease .3s;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
}
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    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: #40A3F8;
    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-small);
    text-align: center;
    margin: 10px ;
}
.slide__title{
    color: var(--clr-blue);
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}
.mySwiper2 .swiper-slide{
    padding: 30px;
    border-bottom: none;
    width: 90%;
    margin: 0 auto;
}
.mySwiper2 .swiper-slide:hover{
    border-bottom: none;
}
.mySwiper2 .swiper-slide video{
    width: 100%;
    border-radius: 20px;
    height: 450px;
}

.mySwiper2 .video-slide{
    position: absolute;
    top: -10px;
    right: 10px;
    width: 30px;
    height: 30px;
}
.Swip2{
    position: relative;
}
.mySwiper2 .swiper-button-next{
    right: var(--swiper-navigation-sides-offset, 160px);
    left: auto;
}

.mySwiper2 .swiper-button-prev{
    left: var(--swiper-navigation-sides-offset, 160px);
    right: auto;
}
.Swip2 .swiper{
        width: 60%;
        height: 100%;
        padding: 50px 0;
        position: static;
}
.comment{
    margin-top: 50px;
}
.comment-title{
    position: relative;
}
.comment-title::after{
    content: url('../img/icon/title.png');
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    margin: auto;
}
.mySwiper2 .swiper-button-next:after, .mySwiper2 .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px;
    font-weight: 900;
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    background: #40A3F8;
    padding: 10px 15px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

/* consult styles */

.consult{
    background: #40a3f8;
    padding: 70px;
    color: white;
    width: 50%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    height: 300px;
    margin: 100px auto;
    position: relative;
}
.consult .hero__btn{
    background-color: var(--clr-white);
    color:#40A3F8;
    font-weight: 600;
}

.consult h2{
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.consult-img{
    position: absolute;
    top: -67%;
    right: 50px;
    height: 500px;
    object-fit: cover;
}

.consult-item{
    width: 50%;
}
/* footer styles */

.footer{
    padding: 70px 0 0px;
    background-color: var(--clr-white);
    position: relative;
    overflow: hidden;
}
.footer__wrap{
    display: flex;
    justify-content: space-between;
align-items: center;
margin-bottom: 40px;
}

.footer-bg img{
    position: absolute;
    right: -7em;
    top: 8em;
}
.footer a{
    color: var(--clr-blue);
}
.footer__item p{
    color: var(--clr-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
}
.footer__links{
    text-align: center;
}
.footer__links svg{
    height: 40px;
    width: 40px;
    margin: 0 8px;
}
.footer__links svg path{
    fill: var(--clr-blue);
}
.footer__nav a{
    margin-right: 10px;
}
.footer__down{
    background-color: var(--clr-blue);
    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: 42%;
}



/* values styles */

.values{
    margin: 100px 0;
}
.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: 25px;
    margin-bottom: 30px;
}
.values__wrap{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.values__item{
    width: 30%;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--clr-white);
    border-radius: 20px;
    transition: all ease .3s;
    justify-content: center; 
}
.values__item:hover{
    transition: all ease .3s;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
}
.values__item2{
    width: 48%;
}
.values__item-img{
    background-color: #40a2f83b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.values__item2 .values__item-img{
    background-color: transparent;
	border-radius: 50%;
    width: 70px;
    height: 70px;
}
.values__item h6{
    color: gray;
    text-transform: uppercase;
    margin: 15px 0 5px;
    font-size: var(--fs-normal);
}
.values__item p{
    font-size: var(--fs-small);
}
.values-2{
    text-align: center;
}
.values-2 .values__subtitle{
margin-bottom: 10px;
}

/* products styles */

.hero__products{
    background-image: url('../img/product.png');
    background-position: right bottom;
    background-size: 50%;
    height: 90vh;
}
.products__values{
    margin: 120px 0 60px;
}
.products__bg{
    background-color: var(--clr-grey);
}
.products__values .values__subtitle{
    font-size: var(--fs-medium);
}
.products__bg .values__wrap{
    border: none;
    background-color: var(--clr-white);
}
.products__bg .values__item{
    border: none;
    width: 25%;
}
.products__bg .values__item h6{
    margin: 20px 0 5px;
}
.products__bg .values__item img{
    width: 23px;
}


#arrowTop {
    background-color: #40A3F8;
    cursor: pointer;
    position: relative;
    display: none;
    position: fixed;
    left: 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-blue);
    position: relative;
}

.burger span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -7px;
    width: 100%;
    height: 100%;
    background-color:var(--clr-blue);
}

.burger span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 100%;
    height: 100%;
    background-color:var(--clr-blue);
}

.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;
}


  .header-social__links {
    margin: 8px 0;
  }

  .header-social__icons {
    padding: 7px;
    border-radius: 15%;
    -webkit-border-radius: 15%;
    height: 40px;
    width: 40px;
    animation-name: pulse-grow;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

  .insta-icon {
    background: #c32aa3;
  }

  .tg-icon {
    background: #28a8e9;
  }

  .whats-icon {
    background: #09c326;
  }

  .tt-icon {
    background: #2051e4;
  }

  .tg-icon {
    background: rgb(4, 153, 199);
  }


  @keyframes pulse-grow{
    100% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }
  }

  .contact-container {
    position: fixed;
    right: 10px;
    z-index: 99999999;
    bottom: 20px;
    transition: transform 0.4s ease-in-out;
  }

  .contact {
    /* background-color: #fff; */
    cursor: pointer;
    /* border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.103), 0 16px 20px rgba(0, 0, 0, 0.107); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Verdana, sans-serif;
    position: relative;
    height: auto;
    width: 50px;
  }


  .contact ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .contact ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }


  @media screen and (max-width: 480px) {
    .contact-container.visible {
      transform: translateX(0px);
    }

    .contact-btn {
      right: 10px;
    }
  }


/* media queries for mobile  ----------------------------------------------------------------------------------------- */
@media (min-width: 300px) and (max-width: 760px)  {

    :root {
        --fs-big: 22px;
        --fs-medium: 18px;
        --fs-normal: 13px;
        --fs-smallest: 10px;
    }
    .header-social__icons{
        height: 35px;
        width: 35px;
    }
    .contact-container {
        bottom: 10px;
    }
    .container,.nav__top-wrap{
        width: 95%;
    }
    .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: white;
    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: auto;
    justify-content: center;
}
.hero__wrap{
    flex-direction: column;
    padding-top: 6em;
}
.hero__item {
    width: 80%;
    margin: 30px auto 10px;
}

.hero__btn{
    padding: 10px 15px;
}
.about{
    padding: 60px 0 60px;
}
.about__wrap{
    flex-direction: column-reverse;
}
.about__item,.about__img{
    width: 80%;
    margin-bottom: 30px;
}

.reviews{
    padding: 0px 0 60px;
}
.swiper-slide img{
    width: 70%;
    margin: 0 auto;
}
.rev__desc{
    width: 100%;
}
.swiper{
    padding: 50px 0 70px;
    width: 90%;
}
.slide__desc{
    margin: 20px 0;
}
.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 p{
    font-size: 14px;
}
.footer__links svg {
    height: 25px;
    width: 25px;
}
.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: #40a3f8;
    padding: 30px;
    color: white;
    width: 90%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    height: auto;
    margin: 50px auto;
    position: relative;
}
.consult h2{
    font-size: 16px;
}

.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: 100px 0 50px;
    position: relative;
    z-index: 1
}
.values__title{
    font-size: 25px;
}
.values__subtitle{
    font-size: 18px;
    margin: 0px auto;
    width: 80%;
}
.values__wrap{
    flex-direction: column;
    justify-content: center;
}
.values__item{
    width: 80%;
    margin: 0px auto 30px;
    padding: 20px;
}
main{
    overflow-x: hidden;
}

}


/* media queries for planshet  ----------------------------------------------------------------------------------------- */
@media (min-width: 760px) and (max-width: 1204px){
    :root {
        --fs-big: 22px;
        --fs-medium: 18px;
        --fs-normal: 13px;
        --fs-smallest: 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: 20px;
    }
    .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: 16px;
    color: var(--clr-blue);
    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;
    }
    .about__img, .about__item{
        width: 45%;
    }
  
}