@import 'font.css';

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color:transparent;
}

a {
    text-decoration: none
}

ul,
ol,
li {
    list-style: none
}

:root {
    --blue: #473E9E;
    --light-blue: #3291E9;
    --white: #fff;
    --black: #000;
    --black2: #231f20;
    --purple: #918BC5;
    --purple-opacity-30: rgba(145, 139, 197, 0.3);
    --purple-opacity-20: rgba(145, 139, 197, 0.2);
    --light-purple: #BCBFD8;
    --red: #EE2654;
    --pink: #ff819e;
    --yellow: #FAB011;
    --yellow-2: #f8f400;
    --grey: #e7e5f4;
    --grey-2: #E4E3F7;
    --grey-3: #D2DAE5;
    --dark-grey: #898989;
    --dark-grey-opacity-15: rgba(137, 137, 137, 0.15); 
    --f300-manrope: "Manrope-Light";  
    --f400-manrope: "Manrope-Regular";
    --f500-manrope: "Manrope-Medium";
    --f600-manrope: "Manrope-Semibold";
    --f700-manrope: "Manrope-Bold";
    --f400-lato: "Lato-Regular"; 
    --f700-lato: "Lato-Bold";
    --main-input-bg: #F2F1FF;
    --btn-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
    --bg-other-main: #F2F1FF;
    --reason-input-bg: #fff;
    --reason-input-border: #E7E5F4;
    --reason-input-circle: #DAD8EC;
    --loading-bg: #EDECFF;
    --header-top: #F7F9FC;
    --nav-link: #3A3A3A;
    --nav-link-opacity-70: rgba(58, 58, 58, 0.7);
    --green: #8ff739;
    --green-opacity-30: rgba(143, 247, 57, 0.3);
    --green-opacity-70: rgba(143, 247, 57, 0.7);
    
}

.body {
    min-width: 375px; 
    /* padding-top: 110px;  */
    background: var(--black2);
    -moz-user-select: -moz-none;
    -o-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none; 
} 
.body.hidden {
    overflow: hidden;
}
 
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;   
    background: var(--black2);
    box-shadow: 0 0 15px 5px var(--green-opacity-70);
    z-index: 5;
    transition: 0.3s;
}
 
.header .container {
    height: 100%;
}
.header__content {
    height: 100%;
    display: flex;
    justify-content: space-between; 
}
.header__contact {
    display: flex;  
}
.contact__person {
    display: flex;
}
.contact__type{
    display: flex; 
    align-items: center;
    padding: 9px 20px; 
    margin-right: -15px;
    position: relative;
    overflow: hidden;  
    margin-top: 20px;
    margin-bottom: 20px; 
}  
.button__line{
    position: absolute;
    display: block;
}
.button__line--top{
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background:linear-gradient(90deg, transparent,var(--green)) ;

}
.contact__type:hover .button__line--top{
left: 100%;
transition: 1s;
transition-delay: 0.25s;
}
.button__line--bottom{
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background:linear-gradient(270deg, transparent,var(--green)) ;

}
.contact__type:hover .button__line--bottom{
right: 100%;
transition: 1s;
transition-delay: 0.25s;
}
.button__line--left{
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background:linear-gradient(0deg, transparent,var(--green)) ;

}
.contact__type:hover .button__line--left{
bottom:  100%;
transition: 1s;
transition-delay: 0s;
}
.button__line--right{
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background:linear-gradient(180deg, transparent,var(--green)) ;

}
.contact__type:hover .button__line--right{
    top:  100%;
    transition: 1s;
    transition-delay: 0s;
}
.contact__type:hover{
    box-shadow: 0 0 10px var(--green) ;
    background: var(--green);
    color: #333;
    transition-delay:1s ;
} 
 

.contact__social {
    display: flex; 
    justify-content: flex-end;
    margin-right: -25px;
}

.contact__icon,
.contact__social-icon {
    width: 30px;
    height: 30px;
    fill: var(--green); 
    transition:  fill 0.3s;
}
  
.contact__icon {
    margin-right: 12px;
}
  
.contact__person .contact__type:hover .contact__icon {
    fill: var(--white);
}
.contact__social-link {
    display: flex;
    align-items: center;
    padding: 9px 20px;
    border-radius: 5px;
    position: relative;
}

.contact__social-link:hover  {
    background: var(--grey);
}
.contact__social-link[data-title="Tik_Tok"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: var(--white);
    z-index: -1;
}
 
.contact__text {
    font-family: var(--f700-manrope);
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: var(--white);
}


.logo {
    width: 250px; 
    position: relative; 
    margin: auto 0;
}
.logo__img { 
    width: 100%;  
    object-fit: cover;
}

.burger-menu__btn {
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    z-index: 99;
}
 
.burger-menu__icon {
    width: 24px;
    height: 16px;
    cursor: pointer;
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-menu__line,
.burger-menu__line::after,
.burger-menu__line::before {
    display: inline-block;
    width: 100%;
	height: 2px;
}

.burger-menu__line {
	position: relative; 
	background: rgba(255, 255, 255, 1);
	transition: all 0ms 300ms;  
}
.burger-menu__btn.change .burger-menu__line  {
    background: rgba(255, 255, 255, 0);
}
.burger-menu__line::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 6px;
	background: rgba(255, 255, 255, 1);
	transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.burger-menu__line::after {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	background: rgba(255, 255, 255, 1);
	transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.burger-menu__btn.change .burger-menu__line::after {
	top: 0;
	transform: rotate(45deg);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}

.burger-menu__btn.change .burger-menu__line::before {
	bottom: 0;
	transform: rotate(-45deg);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.menu__small-screen {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    background: var(--black2); 
    max-width: 300px;
    width: 100%;
    height: 100%;
    z-index: 15;   
    padding: 30px 16px;
    transition: left 0.2s;  
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7); 
    overflow-x: hidden;
}
.bg__menu { 
    display: none;
    position: fixed;
    top: 0;
    left: 0; 
    width: 100vw;
    height: 100vh; 
    z-index: 14;
}

.nav {
    display: flex; 
}

.nav .side-bar__dropdown-list {
    position: absolute;
    top: 2.5em;
}
.nav__main {
    display: flex;
    justify-content: center;
    border-top: 1px solid #fff;
} 
.main__dropdown-list {
    position: absolute;
    top: 90%;
    display: none;
    background: var(--grey-2);
    padding: 15px;
    width: fit-content;
    box-shadow: 0 0 5px 2px var(--btn-shadow);
}
.main__settings {
    padding: 10px 30px;
    position: relative;
}
.main__settings:hover .main__dropdown-list {
    display: block; 
}

.main__link {
    font-family: var(--f700-manrope);
    font-weight: 700;
    font-size: 16px;
    line-height: 25px; 
    color: var(--nav-link);
    text-align: center;
}
.main__link:hover {
    color: var(--dark-grey);
}

.menu__small-screen.show {  
    left: 0;
}
.menu__small-screen.show + .bg__menu{  
    display: block;
}
.menu__small-screen.show.change-height {
    height: 100%;
    min-height: 100vh;
    overflow-y: auto
}
.menu__logo {
    width: 70%;
    border-bottom: 1px solid var(--grey-2);
    text-align: center; 
    padding-bottom:40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
 
.menu__small-screen .header__nav {
    flex-direction: column;  
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-2);
}
.menu__small-screen .nav__link{
    padding: 10px 20px;
    margin-right: 0;
    text-align: center;
}
 
 
.menu__small-screen .header__top-content{
    flex-direction: column;
}
  
 
 
.menu__small-screen .header__contact{
    flex-direction: column;
}
.menu__small-screen .contact__type{
    border-right: none;
    justify-content: center;
    margin-bottom: 30px;
}
.menu__small-screen .contact__type:hover{
   background: transparent; 
}
.menu__small-screen .contact__type:hover .contact__icon{
   transform: scale(1);
}
 
.menu__small-screen .contact__icon{
   fill: var(--green);
}
.menu__small-screen .contact__social{
  justify-content: center;
  margin-right: 0;
}
.menu__small-screen .contact__social-link:hover{
   background: transparent;
}
.menu__small-screen .contact__social-link:hover .contact__social-icon{
   transform: scale(1);
   fill: var(--green);
}
.menu__small-screen .contact__social-icon{
  fill: var(--green);
}
.menu__small-screen .burger-menu__close{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 15px;
    right: 15px; 
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu__small-screen .burger-menu__close:hover{
    background: var(--grey-2);
}
.menu__small-screen .burger-menu__close-icon{
    width: 15px;
    height: 15px;
    fill: var(--white);
}
 
.menu__text {
    font-family: var(--f700-manrope);
    font-weight: 700;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white); 
    text-align: center;
    margin-bottom: 18px;
}

.main__title {
    padding: 30px;  
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--white);
    font-family: var(--f700-lato);     
    font-weight: 700;
    font-size: 34px;
}

.main__desc {  
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
    font-family: var(--f400-lato);     
    font-weight: 400;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 0.1px; 
}
.side-bar__settings {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    cursor: pointer; 
    transition: 0.3s;
}
 
/* .side-bar.active .side-bar__settings {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
} */

.side-bar__dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 15px;
    padding-right: 15px; 
    background: transparent; 
    height: fit-content; 
}
 
 

 

.side-bar__dropdown-list .side-bar__link.visited {
    background: var(--main-input-bg)
}

 

.side-bar__settings.visited .side-bar__dropdown {
    background: var(--main-input-bg)
}
 
.side-bar__settings.visited .side-bar__dropdown-btn {
    color: var(--light-blue)
}
 

.side-bar__settings.visited .side-bar__dropdown-icon {
    stroke: var(--light-blue)
}

.side-bar__dropdown-btn,
.main__dropdown-btn {
    text-align: left;
    font-family: var(--f600-manrope);
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: var(--dark-grey);
    cursor: pointer;
    display: block;
    position: relative;
    background: transparent; 
}
.main__dropdown .side-bar__dropdown-icon{
    right: 0;
}
/* .side-bar.active .side-bar__dropdown-btn {
    display: block
} */

.side-bar__dropdown-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 15px;
    height: 8px;
    fill: var(--dark-grey);
    stroke: var(--dark-grey);
    margin-left: 15px;
    transition: 0.2s;
    transform-origin: 50% 25% 0 ;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 0;
    display: inline-block
}

/* .side-bar.active .side-bar__dropdown-icon {
    display: inline-block
} */

.side-bar__dropdown-list { 
    width: 100%; 
    height: fit-content;
    padding: 0;
    overflow: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-bottom: 20px;   
    display: none;
    opacity: 0;
}
.side-bar__settings.active .side-bar__dropdown-list  { 
    display: block;  
}
.side-bar__dropdown-list.active {  
    opacity: 1;
}
  
.side-bar__settings.active .side-bar__dropdown-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}
.side-bar__link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--f600-manrope);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: var(--dark-grey);
    padding: 10px 40px;
    position: relative;
}
.global-item.visit {
    color: var(--blue); 
}
.mySwiper2 .swiper__img {
    width: 100%; 
    height: 100%;   
    object-fit: cover;
    transition: .5s; 
}
.mySwiper  {
    padding : 50px 0;
}
.mySwiper2 .swiper-slide { 
    width: 85%;
    height: 500px;
    filter: brightness(30%);
    transition: filter 1s; 
    overflow: hidden; 
    position: relative;
}
 
.mySwiper2 .swiper-slide-active { 
    filter: brightness(100%);
}

.mySwiper2__next,
.mySwiper2__prev {
    top: 0;
    height: 100%;
    width: 7%;
}
.mySwiper2__next {
    right: 0;
}
.mySwiper2__prev {
    left: 0;
}
 
.title {
    font-family: var(--f700-manrope);
    font-weight: 700;
    font-size: 45px;
    line-height: 46px;
    color: var(--grey-2);
    text-align: center;
    margin-bottom: 50px; 
}
.chapter {
    width: 100%;
    text-align: center;
    padding: 20px 35px;     
    position: absolute;
    font-family: var(--f700-manrope);    
    font-weight: 700;
    font-size: 35px;
    color: var(--white);
    /* background: linear-gradient(to right,  transparent,    rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8),transparent) ; */
    background: rgba(0, 0, 0, 0.7);
    bottom:  30px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.3em;
}

.no__content {
    font-family: var(--f700-lato);
    font-weight: 700;
    font-size: 45px;
    color: var(--green);
    text-align: center;
    padding:0 0 50px ;
}
.card {
    position: relative;
    height: 100%;  
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px; 
    border: 2px solid var(--nav-link);  
} 
 
.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.card:hover .card__img {
    transform: scale(1.2);
}
.card__content {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    transition: 0.3s;
}
.card__content:hover {
    background: transparent; 
}

 .card__text {   
     font-family: var(--f400-manrope);
     font-weight: 400;
     font-size: 22px;
     line-height: 26px;
     width: 100%;
     color: var(--white); 
     text-align: center;
     padding: 10px 20px;
     background: transparent;
     transition: 0.2s;
     position: absolute;
     bottom: 50%;
     transform: translateY(50%); 
 }
 .card__content:hover .card__text{  
    bottom: 10px;
    transform: translateY(0); 
    background: rgba(0, 0, 0, 0.7); 
}
.card:hover {
    box-shadow: 0 0 10px 5px rgba(143, 247, 57, 0.7);
}
 .mode {
     display: flex;
     align-items: center;
     justify-content: center;
 }
 .checkbox-label {
    display: flex;
    background: #f3f3f3;
    height: 25px;
    width: 40px;
    border-radius: 50px; 
    position: relative;
    box-shadow: 0 0 0 2px #dddddd;
    cursor: pointer;
    align-items: center;
    margin-right: 60px;  
  }
  .checkbox-label .on {
    display: block;
    position: absolute;
    z-index: 0;
    left: 0;  
    line-height: 50px; 
    opacity: 0;
    top: -10px;
  }
  .checkbox-label .off {
    display: block;
    position: absolute;
    z-index: 0;
    right: 50px;
    text-align: right;
    opacity: 1; 
    line-height: 50px;
    opacity: 1;
    color: #bbbbbb; 
  }
  .checkbox-label:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: 50px;
    height: 25px;
    width: 25px;
    background: white;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 0 0 2px #dddddd;
  }
  
  .checkbox {
    position: absolute;
    left: -5000px;
  }
  .checkbox:checked + .checkbox-label {
    background: var(--green);
    box-shadow: 0 0 0 2px var(--green);
  }
  .checkbox:checked + .checkbox-label .on {
    left: 60px;
    opacity: 1;
  }
  .checkbox:checked + .checkbox-label .off {
    right: 0px;
    opacity: 0;
  }
  .checkbox:checked + .checkbox-label:before {
    left: 20px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--green);
  }

.on,
.off{
    transition:  0.5s;
    width: 40px;
    height: 40px;
    fill: var(--yellow-2);
}
 
.fixed__social {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 10;
    width: 65px;
    height: 65px;
    cursor: pointer; 
    perspective: 100px; 
}
 
.fixed__social-surface { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.fixed__social-link {
    position: absolute;
    transition: 0.5s;
    top: 0;
    left: 50%;
    width: 50px;
    height: 50px;
    padding: 5px;
    transform: translateX(-50%);
    opacity: 0; 
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fixed__social-link[title="Tik Tok"]::after { 
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--white);
    z-index: -1;
}
.fixed__social-link:last-child {
    padding: 0;
}
.fixed__social-icon {
    width: 40px;
    height: 40px; 
}
.fixed__social .fill-icon {
    fill: #8ff739;
}
 .youtube {
     width: 50px;
     height: 50px;
     padding: 0;
 }
.fixed__social-img {
    width: 100%;
    height: 100%; 
    position: absolute; 
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);  
    animation: infinite scaleImg 1s alternate-reverse;  
}
 
.fixed__social.pushed .fixed__social-link:nth-child(3){
    opacity: 1;
    top: -90%;
}
.fixed__social.pushed .fixed__social-link:nth-child(4){
    opacity: 1;
    top: calc(-90% - 50px);
}
.fixed__social.pushed .fixed__social-link:nth-child(5){
    opacity: 1;
    top: calc(-90% - (50px  * 2));
}
.fixed__social.pushed .fixed__social-link:nth-child(6){
    opacity: 1;
    top: calc(-90% - (50px  * 3));
}
.fixed__social.pushed .fixed__social-link:nth-child(7){
    opacity: 1;
    top: calc(-90% - (50px  * 4));
}

.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0; 
    right: 0;
    bottom: 0;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.6s;
}
.loading.small {
   transform: translateY(-100vh);
}
.loading.hide {
    display: none;
}
.loading__picture {
    position: relative;
    width: 200px;
    height: 200px;
}

.img__frame, 
.img__hand{ 
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.5s;
}

.img__frame {
    width: 100%; 
    animation: infinite rotation 3s forwards;
    transform: translate(-50%, -50%) rotate(0deg);
    
}
.img__hand {
    width: 70%;
    animation: infinite pulse 2s ;
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 20px #fff);
}
.about {
    background: url(../images/IMG_3170.webp) no-repeat top/ cover;
    padding: 100px 0;
}
.about .row>* {
    margin-bottom: 30px;
}
.about .title { 
    color: var(--white);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.7);
}
.about__card {
    background: var(--white);
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.7);
    display: flex; 
    align-items: center;
    height: 100%;
    padding: 30px; 
}

.about__pic {
    min-width: 140px;
    height: 140px;
    margin-right: 10px;
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
 
.about__title {
    font-family: var(--f700-manrope);
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--blue);
}

.about__desc {
    font-family: var(--f400-manrope);
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: var(--dark-grey);
}

.step {
    padding: 100px 0;
    background: var(--black2);
}

.step .title {
    color: var(--white);
}
.step__content {
    display: flex;
    flex-flow: row wrap;
}
.step__card {  
    max-width: 400px; 
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    position: relative;
    flex: 1 1 0;
}
/* .step__card:nth-child(even) {
    margin-left: auto;
} */
.step__num { 
    font-family: var(--f700-manrope);
    font-weight: 700;
    font-size: 45px;  
    line-height: 45px;
    color: var(--blue);
    margin-right: 20px;
    min-width: 60px;
}

.step__desc {
    font-family: var(--f400-manrope);
    font-weight: 400;
    font-size: 20px;
    line-height: 36px; 
    border-left: 1px solid #fff;
    padding-left: 20px;
    color: var(--grey);
}

.step__arrow {
    width: 10%;
    height: 100%;
    position: absolute;
    display: none;
}
.step__arrow-img {
    width: 100%;
    height: 100%; 
}
.step__card:nth-child(odd) .step__arrow {
    left: 100%;
}
.step__card:nth-child(even) .step__arrow {
    right: 100%;
}
.step__card:last-child .step__arrow {
    display: none;
}

.footer {
    padding: 50px 0;
    background: var(--black);
}
.footer__contact {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 20px;
}

.footer__contact-text,
.footer__contact-text> a {
    flex: 1 1 50%;
    color: var(--white);
    font-family: var(--f700-manrope);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}
.footer__copyright {
    text-align: center;
    color: var(--white);
    font-family: var(--f600-manrope);
    font-weight: 600;
    font-size: 20px;
}

 

@keyframes rotation {
    from { 
        transform:translate(-50%, -50%) rotate(0deg);
    } 
    to { 
        transform:translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes pulse {
    from {
        transform:translate(-50%, -50%) scale(1);
    }
    50% {
        transform:translate(-50%, -50%) scale(1.2);
    }
    to {
        transform:translate(-50%, -50%) scale(1);
    }
}
 
@keyframes scaleImg {
    from {
        transform: translateX(-50%) scale(1);  
        /* filter: drop-shadow(0 0px 5px #fff); */
    }
    to {
        transform: translateX(-50%) scale(1.5);  
        /* filter: drop-shadow(0 0px 15px #fff); */
    }
}

@media (max-width: 991px) {
     
    .nav__main {
        display: none;
    }
     .burger-menu__btn {
        display: flex;
    }
    .contact__person .contact__type:hover {
       background: transparent;
       box-shadow: none;
    }
    .button__line--top,
    .button__line--right,
    .button__line--left,
    .button__line--bottom {
        display: none;
    }
    .contact__person .contact__type:hover .contact__icon {
        fill:  var(--green);
    }
    .contact__text {
        display: none;
    }
    .menu__small-screen .contact__text {
        display: flex;
    }
    .menu__small-screen .contact__type:hover {
        box-shadow: none;
    } 
    .about__card {
        flex-direction: column;
    } 
    .about__title {
        text-align: center; 
    }
    .main__desc {
        font-size: 22px;
        line-height: 25px; 
    }
}

@media (max-width:767px) {
    .chapter {
        font-size: 28px;
    }
    .about {
        background: var(--black2);
    }
    .about__card {
        flex-direction: row;
        padding: 10px 20px;
    }
    .about__desc {
        font-size: 16px;
    }
    .card__content .card__text{  
        bottom: 10px;
        transform: translateY(0); 
        background: rgba(0, 0, 0, 0.7); 
    }
    .card__content {
        background: transparent;
    }
}
@media (max-width:575px) { 
    .mySwiper {
        padding: 30px 0;
    }
    .chapter {
        padding: 10px 20px;
        font-size: 22px;
    }
    .about {
        padding: 30px 0;
    }
    .about__card {
        flex-direction: column;
    }
    .main__title {
        font-size: 25px;
    }
    .title {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 30px;
    }
   
    .step {
        padding: 30px 0;
    }
    .step__card {
        margin-bottom: 0;
    }
    .footer__contact {
        flex-flow: column wrap;
    }
   
    .main__title {
        padding:30px 15px 5px;
    }
    .main__desc {
        font-size: 16px;
        line-height: 20px;   
        text-align: left;
    } 
     .index__title {
        padding-bottom: 30px;
    }
    .no__content {
        font-size: 22px;
        line-height: 25px;
    }
}
