@charset "UTF-8";
@import url(fonts.css);

:root{
  --btn-color: #65018C;
  --btn-color2: #EE1B24;
  --rgb-color: linear-gradient(251.27deg, #EE1B24 12.87%, #65018B 89.33%);
}


.content-wrapper,
.nav__bar {
  position: relative;
  z-index: 9999;
  margin: 20px auto auto;
}

@media only screen and (max-width: 1280px) {
  .content-wrapper,
  .nav__bar {
    width: 1000px;
  }
}
@media only screen and (max-width: 1024px) {
  .content-wrapper,
  .nav__bar {
    width: 90%;
  }
}
.top__bar {
  border-bottom: 2px solid #505050;
}

.top__bar2 {
  border-bottom: 2px solid #505050;
  display: none;
}

.nav__location > i {
  font-size: 30px;
  border-right: 2px solid var(--btn-color2);
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav__location > h1 {
  font-size: 20px;
}

.main-header {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
}

.navbar-top {
  display: flex;
  align-items: center;
}

.navbar-top .logo {
  display: block;
  width: auto;
  position: absolute;
  left: 0;
}

.logo img {
  width: 200px;
}

.nav__logo2 {
  display: none;
}

.site__logo{
  width: 250px;
}

.footer__logo{
  width: 250px;
}

@media (max-width: 991px) {
  .nav__logo2 {
    display: block;
  }
}

.navbar-social-links {
  position: absolute;
  right: 0;
}

.navbar-social-links li {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}

.navbar-social-links li a {
  font-size: 20px;
}

.bottom-header {
  width: 100%;
  height: 60px;
  z-index: 99;
}

.navbar-bottom .nav-links {
  position: relative;
  left: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-bottom .nav-links li {
  margin-right: 10px;
  display: inline-block;
  height: 100%;
  color: #fff;
  position: relative;
}

.navbar-bottom .nav-links li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 20px 20px;
  transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "mont";
  font-weight: 700;
}

/*effect-underline*/
.navbar-bottom .nav-links li a.effect-underline:after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 2px solid var(--btn-color);
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: scale(0, 1);
}

.navbar-bottom .nav-links li a.effect-underline:hover:after {
  opacity: 1;
  transform: scale(1);
}

.toggler {
  position: absolute;
  top: 0;
  padding-top: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 101;
}

.menu-toggle {
  right: 0;
  top: 50%;
  margin-top: -20px;
  margin-left: -12px;
  display: none;
}

.cancel-btn {
  display: none;
}

.toggler svg {
  width: 40px;
  height: 40px;
  fill: var(--btn-color);
}

@media only screen and (max-width: 1024px) {
  .hero-header {
    display: block;
  }
  .intro-sec,
  .home-hiw {
    width: 100% !important;
  }
}
@media only screen and (max-width: 991px) {
  .navbar-bottom .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    display: block;
    background: #fff;
    padding: 1rem;
    padding-top: 50px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05), 0 20px 22px rgba(0, 0, 0, 0.05);
    z-index: 0;
    transition-delay: 1s;
    transform: translateX(-30px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    visibility: hidden;
    opacity: 0;
    overflow-y: hidden;
  }
  .menu-open .nav-links {
    transform: translateX(0px);
    opacity: 1;
    z-index: 102;
    transition-delay: 0.15s;
    visibility: visible;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .menu-toggle {
    display: inline-block;
    margin-left: 0;
  }
  .cancel-btn {
    display: inline-block;
    top: 5px;
    right: 1rem;
  }
  .searchbar {
    width: 100%;
  }
  .navbar-bottom .nav-links li {
    display: block;
    height: auto;
    margin: 2px 0;
    color: #5B52F8;
    border-radius: 3px;
  }
  .navbar-bottom .nav-links li a {
    height: 60px;
  }
  .navbar-bottom .nav-links li a:hover,
  .navbar-bottom .nav-links li a.active {
    color: #fff;
  }
  .navbar-bottom .nav-links li:hover > .sub_links {
    height: auto;
  }
  .sub_links {
    background: #fafafa;
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: relative;
    top: 0;
    transform: translatey(0);
    height: 0;
  }
  .sub_links li {
    display: block;
    padding-left: 420px;
  }
  .top__bar {
    display: none;
  }
  .top__bar2 {
    display: flex;
  }
  .top__bar-content {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .intro-sec {
    height: 250px;
    padding: 1rem;
  }
  .intro-sec h1 {
    width: 100% !important;
    font-size: 35px;
    line-height: 1.5;
  }
}
.plan {
  height: 90vh;
  position: relative;
}

.header__bg {
  position: absolute;
  z-index: -9999;
  top: 100px;
}
@media (max-width: 991px) {
  .header__bg {
    display: none;
  }
}

.plan__content {
  height: 110vh;

  display: flex;

}
@media (max-width: 991px) {
  .plan__content {
    margin-top: 150px;
    flex-direction: column;
  }
}
.plan__content h1 {
  font-size: 42px;
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 991px) {
  .plan__content h1 {
    text-align: center;
  }
}
.plan__content p {
  font-family: "mont";
  font-weight: 400;
  font-size: 20px;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .plan__content p {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .plan__content .plan__child1 {
    align-items: center !important;
  }
}
@media (max-width: 991px) {
  .plan__content .plan__child2 {
    justify-content: center !important;
  }
}

.plan__btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.15s ease;
}

.plan__btn::before,
.plan__btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all 0.15s ease;
}

.plan__btn::before {
  top: 0;
  border-bottom-width: 0;
}

.plan__btn::after {
  bottom: 0;
  border-top-width: 0;
}

.plan__btn:active,
.plan__btn:focus {
  outline: none;
}

.plan__btn:active::before,
.plan__btn:active::after {
  right: 3px;
  left: 3px;
}

.plan__btn:active::before {
  top: 3px;
}

.plan__btn:active::after {
  bottom: 3px;
}

.button__lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: #0f1923;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button__lg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}

.button__lg::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all 0.2s ease;
}

.button__btn-sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: var(--btn-color);
  transform: skew(-15deg);
  transition: all 0.2s ease;
}

.plan__btn-text {
  position: relative;
}

.plan__btn:hover {
  color: #0f1923;
}

.plan__btn:hover .button__btn-sl {
  width: calc(100% + 15px);
}

.plan__btn:hover .button__lg::after {
  background-color: #fff;
}

.about {
  position: relative;
}
@media (max-width: 991px) {
  .about {
    margin-top: 200px;
  }
}

.founder__block-line {
  width: 8px;
  height: 343px;
  background: rgba(0, 0, 0, 0.2705882353);
  margin-right: 15px;
}
@media (max-width: 767px) {
  .founder__block-line {
    display: none;
  }
}

.about__bg {
  position: absolute;
  z-index: -1;
  left: 25%;
}
@media (max-width: 1415px) {
  .about__bg {
    left: 15%;
  }
}
@media (max-width: 1185px) {
  .about__bg {
    left: 12%;
  }
}
@media (max-width: 1070px) {
  .about__bg {
    width: 800px;
  }
}
@media (max-width: 950px) {
  .about__bg {
    width: 600px;
    left: 18%;
  }
}
@media (max-width: 800px) {
  .about__bg {
    width: 500px;
    left: 16%;
  }
}
@media (max-width: 650px) {
  .about__bg {
    width: 400px;
    left: 18%;
  }
}
@media (max-width: 510px) {
  .about__bg {
    left: 10%;
  }
}
@media (max-width: 454px) {
  .about__bg {
    width: 300px;
    left: 16%;
  }
}
@media (max-width: 380px) {
  .about__bg {
    left: 10%;
  }
}
@media (max-width: 350px) {
  .about__bg {
    left: 3%;
  }
}

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

.about__block {
  padding-top: 200px;
}
@media (max-width: 1199px) {
  .about__block {
    display: flex;
    flex-direction: column;
  }
}

.about__content h4 {
  color: var(--btn-color);
  font-size: 25px;
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 1199px) {
  .about__content h4 {
    text-align: center;
  }
}
.about__content h1 {
  color: #444444;
  font-size: 40px;
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 1199px) {
  .about__content h1 {
    text-align: center;
  }
}
.about__content p {
  opacity: 0.7;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .about__content p {
    text-align: center;
  }
}
.about__content h6 {
  color: #505050;
  font-size: 20px;
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 1199px) {
  .about__content h6 {
    text-align: center;
  }
}

@media (max-width: 1199px) {
  #counter {
    flex-direction: column;
  }
}
#counter span {
  font-size: 36px;
}
#counter span.percent:after {
  content: "+";
  display: inline-block;
}

.card-client {
  background: #fff;
  width: 320px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .card-client {
    margin-top: 20px;
  }
}

.card-client:hover {
  transform: translateY(-10px);
}

.user-picture {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.user-picture img {
  width: 100%;
}

.name-client {
  margin: 0;
  margin-top: 20px;
  margin-left: 10px;
  font-family: "mont";
  font-weight: 400;
  font-size: 20px;
}

.name-client span {
  display: block;
  font-weight: 200;
  font-size: 16px;
}

.social-media:before {
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  margin: 20px 0;
}

.social-media a {
  position: relative;
  margin-right: 15px;
  text-decoration: none;
  color: inherit;
}

.social-media a:last-child {
  margin-right: 0;
}

.social-media a svg {
  width: 1.1rem;
  fill: currentColor;
}

/*-- Tooltip Social Media --*/
.tooltip-social {
  background: #262626;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 0.5rem 0.4rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -90%);
  transition: all 0.2s ease;
  z-index: 1;
}

.tooltip-social:after {
  content: " ";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border: solid;
  border-width: 10px 10px 0 10px;
  border-color: transparent;
  transform: translate(-50%, 100%);
}

.social-media a .tooltip-social:after {
  border-top-color: #262626;
}

.social-media a:hover .tooltip-social {
  opacity: 1;
  transform: translate(-50%, -130%);
}

.tour__price {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 30px;
}
.tour__price p {
  font-size: 20px;
  font-family: "mont";
  font-weight: 700;
}

.tour__btn {
  border-top: 2px solid rgba(0, 0, 0, 0.1294117647);
  padding-top: 20px;
}

.tour{
    margin-top: 120px;
}

.cssbuttons-io-button {
  background: var(--btn-color2);
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #0f1923;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.advantages {
  position: relative;
}

.advantages__title {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .advantages__title {
    flex-direction: column;
  }
}
.advantages__title h1 {
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 1199px) {
  .advantages__title h1 {
    text-align: center;
  }
}
.advantages__title p {
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 1199px) {
  .advantages__title p {
    text-align: center;
  }
  .advantages__title p br {
    display: none;
  }
}

.advantages__content {
  font-family: "mont";
}
@media (max-width: 520px) {
  .advantages__content {
    flex-direction: column;
  }
}



.advantages__line2 {
  display: none;
}
@media (max-width: 767px) {
  .advantages__line2 {
    display: block;
    position: absolute;
    z-index: -1;
    top: 840px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .advantages__line2 {
    top: 800px;
  }
}

@media (max-width: 349px) {
  .advantages__line2 {
    top: 900px;
  }
}

.advantages__line3 {
  display: none;
}
@media (max-width: 520px) {
  .advantages__line3 {
    display: block;
    position: absolute;
    z-index: -1;
    top: 1070px;
    width: 100%;
  }
}
@media (max-width: 349px) {
  .advantages__line3 {
    top: 1200px;
  }
}

.advantages__line4 {
  display: none;
}
@media (max-width: 520px) {
  .advantages__line4 {
    display: block;
    position: absolute;
    z-index: -1;
    top: 1315px;
    width: 100%;
  }
}
@media (max-width: 410px) {
  .advantages__line4 {
    top: 1400px;
  }
}
@media (max-width: 349px) {
  .advantages__line4 {
    top: 1480px;
  }
}

.advantages__block {
  width: 160px;
  height: 160px;
  background: var(--rgb-color);
  border-radius: 50%;
  border: 10px solid rgba(103, 101, 111, 0.735);
  font-family: "mont";
  font-weight: 700;
}

@media (max-width: 1199px) {
  .arrow-1 {
    display: none;
  }
}

.arrow-2 {
  display: none;
}
@media (max-width: 1199px) {
  .arrow-2 {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .contacts__content {
    flex-direction: column;
  }
  .contacts__content .col {
    margin-top: 50px;
  }
}
.contacts__content p {
  font-family: "mont";
  font-weight: 400;
  font-size: 18px;
}

.tour__title {
  padding-top: 60px;
}

@media (max-width: 1199px) {
  .contact__parent {
    flex-direction: column;
  }
}

.contact__block {
  width: 70px;
  height: 70px;
  background: var(--btn-color);
  border-radius: 50%;
}
.contact__block i {
  color: white;
  font-size: 40px;
}

.contact__message {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 10px;
  padding: 20px;
}
@media (max-width: 1199px) {
  .contact__message h3 {
    text-align: center;
  }
}

.contact__map iframe {
  width: 100%;
}

@media (max-width: 1199px) {
  .contact__btn-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
}

.form__group {
  position: relative;
  padding: 20px 0 0;
  width: 100%;
  margin-top: 30px;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 17px;
  color: #0f1923;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form__field::-moz-placeholder {
  color: transparent;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:-moz-placeholder-shown ~ .form__label {
  font-size: 17px;
  cursor: text;
  top: 20px;
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 17px;
  cursor: text;
  top: 20px;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #9b9b9b;
  pointer-events: none;
}

.form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  -o-border-image: var(--rgb-color);
     border-image: var(--rgb-color);
  border-image-slice: 1;
}

.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #0f1923;
  font-weight: 700;
}

/* reset input */
.form__field:required,
.form__field:invalid {
  box-shadow: none;
}

.contact__btn {
  color: white;
  background: var(--btn-color);
  width: 300px;
  height: 40px;
  margin-top: 30px;
  border: none;
  border-radius: 10px;
  font-family: "mont";
  font-weight: 700;
  transition: 0.2s linear;
}
.contact__btn:hover {
  color: var(--btn-color);
  background: none;
  border: 2px solid var(--btn-color);
  transition: 0.2s linear;
}

@media (max-width: 991px) {
  .dubai h5 {
    text-align: center;
  }
}

.dubai__title {
  margin-top: 150px;
}

.dubai__img {
  width: 100%;
}

.dubai__info {
  font-size: 20px;
  position: relative;
}

.dubai__line {
  width: 600px;
  position: absolute;
  right: -140px;
  top: -100px;
}
@media (max-width: 1680px) {
  .dubai__line {
    right: 15px;
  }
}
@media (max-width: 991px) {
  .dubai__line {
    display: none;
  }
}

.dubai__form {
  margin-top: 50px;
}
.dubai__form input {
  width: 615px;
  height: 40px;
  background: #D9D9D9;
  border: none;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .dubai__form input {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .dubai__btn {
    flex-direction: column;
    justify-content: center;
  }
}
.dubai__btn button {
  width: 300px;
  height: 40px;
  background: none;
  font-size: 18px;
  border: 2px solid var(--btn-color);
  border-radius: 10px;
  font-family: "mont";
  font-weight: 400;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .dubai__btn button {
    margin-right: 0 !important;
    margin-top: 20px;
  }
}
.dubai__btn :hover {
  color: white !important;
  background: var(--btn-color);
  transition: 0.2s linear;
}

.submited {
  position: relative;
}

.submited__block {
  width: 800px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
  margin-top: 200px;
  margin-bottom: 100px;
  padding: 20px;
  border-radius: 20px;
}

@media (max-width: 680px) {
  .submited__block {
    width: 100%;
  }
}
.submited__block img {
  width: 600px;
}
@media (max-width: 680px) {
  .submited__block img {
    width: 100%;
  }
}

.back__btn {
  color: white;
  background: var(--btn-color);
  width: 200px;
  height: 30px;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 150px;
  font-family: "mont";
  font-weight: 700;
}

.founder__block {
  width: 900px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
}
.founder__block .founder__img1 {
  margin-right: 50px;
}
@media (max-width: 991px) {
  .founder__block .founder__img1 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .founder__block .founder__img1 {
    display: none;
  }
}
.founder__block .founder__img2 {
  margin-right: 50px;
  display: none;
}
@media (max-width: 991px) {
  .founder__block .founder__img2 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .founder__block .founder__img2 {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .founder__block {
    flex-direction: column;
  }
}

.founder__icons {
  font-size: 30px;
}

@media (max-width: 767px) {
  .founder__info h1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .founder__info p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .founder__info .founder__icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.certificate__block {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 991px) {
  .certificate__block {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .certificate__block h1 {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .certificate__block p {
    text-align: center;
  }
}

.certificate__img {
  width: 650px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .certificate__img {
    width: 100%;
  }
}

/* увеличенная картинка */
#magnify {
  display: none;
  /* position: absolute; upd: 24.10.2016 */
  position: fixed;
  height: auto;
  z-index: 9999;
}

#magnify img {
  width: 100%;
}

/* затемняющий фон */
#overlay {
  display: none;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  z-index: 9990;
}

/* кнопка закрытия */
#close-popup {
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #AFAFAF;
  border-radius: 15px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

#close-popup i {
  width: 30px;
  height: 30px;
  background: url(https://codernote.ru/files/cross.png) no-repeat center center;
  background-size: 16px 16px;
  display: block;
}

@keyframes rota {
  25% {
    transform: rotate(360deg);
  }
}
#close-popup:hover {
  animation: rota 4s infinite normal;
  animation-iteration-count: 1;
}

footer {
  background: #2E2E2E;
  padding: 20px;
}

@media (max-width: 561px) {
  .footer__content {
    flex-direction: column;
  }
}

.footer__link {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (max-width: 561px) {
  .footer__link {
    border-left: none;
    border-top: 2px solid #fff;
    border-right: none;
    border-bottom: 2px solid #fff;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.footer__social {
  width: 40px;
  height: 40px;
  background: white;
  font-size: 25px;
  border-radius: 50%;
}

@media (max-width: 650px) {
  .about__trav {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .plan__img {
    width: 100%;
  }
  .plan__content {
    display: flex;
    flex-direction: column;
  }
}
.lang {
  --font-color-dark: #323232;
  --font-color-light: #FFF;
  --bg-color: #fff;
  --main-color: #323232;
  position: relative;
  height: 36px;
  background-color: var(--bg-color);
  border: 2px solid var(--main-color);
  border-radius: 34px;
  display: flex;
  flex-direction: row;
  box-shadow: 4px 4px var(--main-color);
}

.lang__option {
  width: 80.5px;
  height: 28px;
  position: relative;
  top: 2px;
  left: 2px;
}

.lang__input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.lang__btn {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lang__span {
  color: var(--font-color-dark);
}

.lang__input:checked + .lang__btn {
  background-color: #FEAA08;
}

.lang__input:checked + .lang__btn .lang__span {
  color: var(--font-color-light);
}

.wrapper__line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
  z-index: -1;
}

.wrapper__line svg {
  position: absolute;
  top: -80px;
  width: 100%;
}
@media (max-width: 1199px) {
  .wrapper__line svg {
    top: 5px;
  }
}
@media (max-width: 991px) {
  .wrapper__line svg {
    top: -70px;
  }
}
@media (max-width: 767px) {
  .wrapper__line svg {
    top: -100px;
  }
}
@media (max-width: 520px) {
  .wrapper__line svg {
    top: -300px;
  }
}
@media (max-width: 349px) {
  .advantages__line svg {
    top: 650px;
  }
}

/* variables */
:root {
  /* colors */
  --ri5-color-primary-hsl: 242, 69%, 52%;
  --ri5-color-bg-hsl: 0, 0%, 100%;
  --ri5-color-contrast-high-hsl: 230, 7%, 23%;
  --ri5-color-contrast-higher-hsl: 230, 13%, 9%;
  --ri5-color-bg-darker-hsl: 240, 4%, 90%;
  --ri5-color-white-hsl: 0, 0%, 100%;
  /* typography */
  --ri5-text-sm: 0.833rem;
  --radio-switch-width: 186px;
  --radio-switch-height: 46px;
  --radio-switch-padding: 1px;
  --radio-switch-radius: 100vw;
  --radio-switch-animation-duration: 0.3s;
}

.radio-switch {
  position: relative;
  display: inline-flex;
  padding: var(--radio-switch-padding);
  border-radius: calc(var(--radio-switch-radius) * 1.4);
  background-color: hsl(var(--ri5-color-bg-darker-hsl));
}
@media (max-width: 991px) {
  .radio-switch {
    height: 50px;
  }
}

.radio-switch:focus-within,
.radio-switch:active {
  box-shadow: 0 0 0 2px hsla(var(--ri5-color-contrast-higher-hsl), 0.15);
}

.radio-switch__item {
  position: relative;
  display: inline-block;
  height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
  width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
}

.radio-switch__label {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--radio-switch-radius);
  cursor: pointer;
  font-size: var(--ri5-text-sm);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all var(--radio-switch-animation-duration);
}

.radio-switch__input:checked ~ .radio-switch__label {
  color: hsl(var(--ri5-color-white-hsl));
}

.radio-switch__input:focus ~ .radio-switch__label {
  background-color: hsla(var(--ri5-color-primary-hsl), 0.6);
}

.radio-switch__label :not(*):focus-within,
.radio-switch__input:focus ~ .radio-switch__label {
  background-color: transparent;
}

.radio-switch__input.active {
    background: #000;
}

.radio-switch__label.active {
    background: #000;
}

.radio-switch__marker {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -100%;
  border-radius: var(--radio-switch-radius);
  background-color: #FEAA08;
  height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
  width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
  transition: transform var(--radio-switch-animation-duration);
}

.radio-switch__input:checked ~ .radio-switch__marker {
  transform: translateX(100%);
}

/* utility classes */
.ri5-sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}/*# sourceMappingURL=style.css.map */

.click_logo {
    padding:4px 10px;
    cursor:pointer;
    color: #fff;
    line-height:190%;
    font-size: 13px;
    font-family: Arial;
    font-weight: bold;
    text-align: center;
    border: 1px solid #037bc8;
    text-shadow: 0px -1px 0px #037bc8;
    border-radius: 4px;
    background: #27a8e0;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI3YThlMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxYzhlZDciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#27a8e0), to(#1c8ed7));
    background: -webkit-linear-gradient(#27a8e0 0%, #1c8ed7 100%);
    background: -moz-linear-gradient(#27a8e0 0%, #1c8ed7 100%);
    background: -o-linear-gradient(#27a8e0 0%, #1c8ed7 100%);
    background: linear-gradient(#27a8e0 0%, #1c8ed7 100%);
    box-shadow:  inset    0px 1px 0px   #45c4fc;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#27a8e0', endColorstr='#1c8ed7',GradientType=0 );
    -webkit-box-shadow: inset 0px 1px 0px #45c4fc;
    -moz-box-shadow: inset  0px 1px 0px  #45c4fc;
    -webkit-border-radius:4px;
    -moz-border-radius: 4px;
}
.click_logo i {
    background: url(https://m.click.uz/static/img/logo.png) no-repeat top left;
    width:30px;
    height: 25px;
    display: block;
    float: left;
}
