@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Volkhov:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --dark-text: #212832;
  --dark-blue: #14183e;
  --blue: #181e4b;
  --greay: #5e6282;
  --red: #df6951;
  --yellow: #f1a501;
  --black: #080809;
  --white: #fff;
  --Poppins: "Poppins", sans-serif;
  --Volkhov: "Volkhov", serif;
  --GoogleSans: "Google Sans", sans-serif;
  --opensans: "Open Sans", sans-serif;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--Poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 190%;
  position: relative;
  overflow-x: hidden;
}

a {
  display: inline-block;
  color: var(--black);
  text-decoration: none;
  transition: 0.3s ease-in all;
  -webkit-transition: 0.3s ease-in all;
  -moz-transition: 0.3s ease-in all;
  -ms-transition: 0.3s ease-in all;
  -o-transition: 0.3s ease-in all;
}

a:hover {
  color: var(--dark-blue);
}

h1 {
  font-family: var(--Volkhov);
  font-weight: 700;
  font-size: 84px;
  line-height: 110%;
  letter-spacing: -3.36px;
  color: var(--blue);
}

h2 {
  font-family: var(--Volkhov);
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--dark-blue);
}

ul {
  list-style: none;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  font-family: var(--GoogleSans);
  font-weight: 500;
  font-size: 17px;
  line-height: normal;
  text-decoration: none;
  display: inline-flex;
  padding: 9px 21px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-outline-black {
  color: var(--dark-text);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid var(--dark-text);
}

.btn-outline-black:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-yellow {
  border-radius: 10px;
  color: var(--white);
  padding: 19px 26px;
  background-color: var(--yellow);
  box-shadow: 0px 20px 35px 0px rgba(196, 188, 169, 0.15);
  border: 1px solid;
  border-color: transparent;
}

.btn-yellow:hover {
  color: var(--yellow);
  background-color: transparent;
  border-color: var(--yellow);
}

/* header */
.header {
  padding: 48px 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}

.header .h-contnet {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .h-contnet .h-left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.header .h-contnet .h-left .nav {
  margin-right: 86px;
}

.header .logo {
  height: 33px;
  width: 112px;
  flex: 0 0 auto;
}

.header .logo * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.header .nav ul {
  display: flex;
  list-style: none;
  gap: 55px;
}

.header .nav a {
  font-family: var(--GoogleSans);
  color: var(--dark-text);
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s;
}

.header .nav a:hover,
.header .nav a.active {
  color: var(--yellow);
}

.header .header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header .login {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
}

.header .login:hover {
  color: var(--yellow);
}

.header .language {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 500;
  color: var(--dark-text);
  font-size: 15px;
}

.header .language span {
  font-size: 10px;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-text);
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  right: 0;
  width: 140px;
  background: var(--white);
  list-style: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  overflow: hidden;
  z-index: 100;
}

.dropdown-menu li {
  padding: 10px 15px;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background: #f5f5f5;
}

.dropdown-menu.show {
  display: block;
}

/* Hamburger */
.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  position: relative;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 20px;
  transition: 0.35s ease;
}

/* Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.content {
  overflow: hidden;
}

/* header */

/* hero-section */
.hero-section {
  position: relative;
  padding: 105px 0 0;
}

.hero-section::after {
  content: "";
  display: inline-block;
  height: 872px;
  width: 766px;
  background-image: url(../images/hero-section-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.hero-section::before {
  content: "";
  display: inline-block;
  opacity: 0.3;
  background-color: #d5aee4;
  filter: blur(150px);
  position: absolute;
  top: -65px;
  left: -389px;
  width: 478px;
  height: 496px;
}

.hero-section .hero-wrapper h1 span {
  position: relative;
}

.hero-section .hero-wrapper h1 span::after {
  content: "";
  display: inline-block;
  background-image: url("../images/titlehighlight.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 12px;
  width: 385px;
  position: absolute;
  bottom: 18px;
  left: -24px;
  z-index: -1;
}

.hero-section .hero-wrapper .hero-image img {
  height: 764px;
}

.hero-section .hero-wrapper {
  display: flex;
  align-items: center;
}

.hero-section .hero-wrapper .hero-image {
  margin-left: -200px;
}

.hero-section .hero-wrapper .hero-subtitle {
  font-family: var(--Poppins);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--red);
}

.hero-section .hero-wrapper h1 {
  margin-bottom: 30px;
}

.hero-section .hero-wrapper .hero-description p {
  font-weight: 500;
  color: var(--greay);
}

.hero-section .hero-wrapper .hero-content {
  width: 100%;
  max-width: 630px;
}

.hero-section .hero-wrapper .hero-description {
  max-width: 477px;
  margin-bottom: 34px;
}

.hero-content .hero-buttons {
  display: flex;
  gap: 44px;
}

.hero-content .hero-buttons .btn-video {
  display: flex;
  align-items: center;
  gap: 21px;
}

.hero-content .hero-buttons .btn-video:hover {
  opacity: 0.6;
}

.hero-content .hero-buttons .btn-video .btn-play {
  display: flex;
  align-items: center;
  gap: 21px;
  border-radius: 50%;
  height: 52px;
  width: 52px;
  box-shadow: 0px 15px 30px 0px rgba(223, 105, 81, 0.3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* hero-section */

/* best-service-section */
.best-service-section {
  padding: 230px 0 60px;
}

.services-title-details {
  text-align: center;
  margin-bottom: 65px;
}

.common-tag {
  margin-bottom: 5px;
}

.common-tag * {
  font-family: var(--Poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  color: var(--greay);
}

.services-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.services-card .services-icon {
  margin-bottom: 30px;
}

.services-card {
  position: relative;
  width: calc(25% - 128px);
  text-align: center;
  padding: 50px 40px;
  border-radius: 36px;
  transition: 0.3s ease;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.services-card::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -32px;
  left: -32px;
  opacity: 0;
  transform: translateY(10px);
  z-index: -1;
  transition: 0.6s ease-in-out all;
  background-color: var(--red);
  border-radius: 34px 0 10px 0;
  -webkit-border-radius: 34px 0 10px 0;
  -moz-border-radius: 34px 0 10px 0;
  -ms-border-radius: 34px 0 10px 0;
  -o-border-radius: 34px 0 10px 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  -webkit-transition: 0.6s ease-in-out all;
  -moz-transition: 0.6s ease-in-out all;
  -ms-transition: 0.6s ease-in-out all;
  -o-transition: 0.6s ease-in-out all;
}

.services-card:hover::after {
  transform: translateY(0);
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.services-card img {
  height: 80px;
}

.services-card:hover {
  background-color: var(--white);
  box-shadow:
    0px 1.85px 3.15px 0px rgba(0, 0, 0, 0),
    0px 8.15px 6.52px 0px rgba(0, 0, 0, 0.01),
    0px 20px 13px 0px rgba(0, 0, 0, 0.01),
    0px 38.52px 25.48px 0px rgba(0, 0, 0, 0.01),
    0px 64.81px 46.85px 0px rgba(0, 0, 0, 0.02),
    0px 100px 80px 0px rgba(0, 0, 0, 0.02);
}

.services-card h3 {
  font-family: var(--GoogleSans);
  font-weight: 600;
  font-size: 20px;
  color: #1e1d4c;
  margin-bottom: 15px;
}

.services-card p {
  font-weight: 500;
  color: var(--greay);
}

/* best-service-section */

/* top-selling-section */
.selling-title-details {
  text-align: center;
  margin-bottom: 60px;
}

.top-selling-section {
  padding: 60px 0 92px;
  overflow: hidden;
}

.destination-grid {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.destination-grid .destination-shape {
  position: absolute;
  bottom: 48px;
  right: -42px;
}

.destination-grid .destination-shape img {
  height: 252px;
}

.destination-card {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(33.33% - 30px);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.destination-img {
  height: 458px;
}

.destination-img * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-img img {
  width: 100%;
  display: block;
}

.destination-content {
  padding: 27px 25px 42px 20px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: var(--white);
  left: 0;
  right: 0;
}

.destination-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.destination-top h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--greay);
}

.destination-top span {
  font-size: 18px;
  color: var(--greay);
}

.trip-info {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
}

.trip-info span {
  color: var(--greay);
}

.trip-info i {
  font-size: 14px;
}

/* top-selling-section */

/* booking-section */
.booking-section {
  padding: 100px 0;
}

.booking-section .booking-section-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 118px;
}

.booking-section .left-content .common-tag {
  margin-bottom: 15px;
}

.booking-section h2 {
  margin-bottom: 31px;
}

.booking-section .left-content {
  flex: 1;
}

.booking-section .subtitle {
  color: var(--greay);
  font-size: 18px;
  font-weight: 600;
}

.booking-section .step {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.booking-section .step:last-child {
  margin-bottom: 0;
}

.booking-section .step .icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
}

.booking-section .blue {
  background: #006380;
}

.booking-section .content h4 {
  font-size: 16px;
  line-height: 125%;
  color: var(--greay);
  margin-bottom: 4px;
}

.booking-section .content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  color: var(--greay);
}

.booking-section .left-content .step-wrapper {
  max-width: 395px;
}

.booking-section .right-content {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.booking-section .trip-card .trip-main-img {
  height: 161px;
  margin-bottom: 26px;
}

.booking-section .trip-card .trip-main-img * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.booking-section .trip-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 13px;
  color: var(--black);
}

.booking-section .right-content::before {
  content: "";
  position: absolute;
  width: 354px;
  height: 354px;
  left: 60px;
  top: -60px;
  background: #59b1e6;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.booking-section .trip-card {
  width: 100%;
  max-width: 320px;
  background: var(--white);
  z-index: 1;
  position: relative;
  padding: 20px 25px 30px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.booking-section .trip-card .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-section .trip-card .card-bottom .icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.booking-section .trip-card .card-bottom .left-content p {
  color: #84829a;
  font-weight: 500;
}

.booking-section .trip-card .card-bottom .left-content {
  display: flex;
  align-items: center;
}

.booking-section .trip-card .card-bottom .icon img {
  height: 16px;
}

.booking-section .trip-card .card-bottom .right-icon {
  display: flex;
  align-items: center;
}

.booking-section .trip-card .post-date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.booking-section .trip-card .icon-wrapper ul {
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking-section .trip-card .icon-wrapper {
  margin-bottom: 30px;
}

.booking-section .trip-card .icon-wrapper ul li .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.booking-section .trip-card .icon-wrapper ul li .icon img {
  height: 14px;
}

.booking-section .trip-card .post-date * {
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  color: var(--greay);
}

.booking-section .trip-card .post-date > *::after {
  content: "|";
  padding-left: 5px;
}

.booking-section .trip-card .post-date > *:last-child:after {
  display: none;
}

.booking-section .trip-card .trip-main-img img {
  width: 100%;
  border-radius: 22px;
}

.booking-section .ongoing-card {
  position: absolute;
  right: -30px;
  bottom: 60px;
  max-width: 218px;
  width: 100%;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 25px 22px 20px;
  display: flex;
  gap: 11px;
  z-index: 2;
  box-shadow:
    0px 1.85px 3.15px 0px rgba(0, 0, 0, 0),
    0px 8.15px 6.52px 0px rgba(0, 0, 0, 0.01),
    0px 20px 13px 0px rgba(0, 0, 0, 0.01),
    0px 38.52px 25.48px 0px rgba(0, 0, 0, 0.01),
    0px 64.81px 46.85px 0px rgba(0, 0, 0, 0.02),
    0px 100px 80px 0px rgba(0, 0, 0, 0.02);
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}

.ongoing-card .ongoing-info small {
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.49px;
  color: #84829a;
}

.booking-section .ongoing-card img {
  height: 50px;
}

.booking-section .progress {
  height: 5px;
  background: #f5f5f5;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.booking-section .progress .bar {
  width: 40%;
  height: 100%;
  background: #7a61ff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.booking-section .ongoing-card h4 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: -0.27px;
  color: var(--black);
}

.booking-section .ongoing-card p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.77px;
  line-height: 125%;
  margin-bottom: 10px;
}

.booking-section .ongoing-card p span {
  color: #8a79df;
}

/* booking-section */

/* testimonial-section */
.testimonial-section {
  padding: 100px 0;
  /* overflow: hidden; */
}

.testimonial-section .testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 124px;
}

.testimonial-section h2 {
  margin-bottom: 82px;
}

/* testimonial-section */
.testimonial-section .testimonial-left {
  width: 38%;
}

.testimonial-section .testimonial-dots {
  display: flex;
  gap: 26px;
}

.testimonial-section .testimonial-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
}

.testimonial-section .testimonial-dots .active {
  background: #23325d;
}

/* Right */

.testimonial-section .testimonial-right {
  width: 65%;
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-section .testimonial-slider {
  position: relative;
  width: 100%;
  height: 340px;
}

.testimonial-section .testimonial-card {
  position: absolute;
  width: 100%;
  max-width: 504px;
  background: var(--white);
  border-radius: 10px;
  padding: 28px 34px 34px;
  box-shadow:
    0px 1.85px 3.15px 0px rgba(0, 0, 0, 0),
    0px 8.15px 6.52px 0px rgba(0, 0, 0, 0.01),
    0px 20px 13px 0px rgba(0, 0, 0, 0.01),
    0px 38.52px 25.48px 0px rgba(0, 0, 0, 0.01),
    0px 64.81px 46.85px 0px rgba(0, 0, 0, 0.02),
    0px 100px 80px 0px rgba(0, 0, 0, 0.02);
  transition: 0.4s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 2px solid;
  border-color: transparent;
}

/* Active card */

.testimonial-section .testimonial-card.active {
  left: 0;
  top: 0;
  z-index: 2;
}

/* Back card */

.testimonial-section .testimonial-card:not(.active) {
  left: 40px;
  top: 90px;
  opacity: 0.35;
  z-index: 1;
  border-color: #f7f7f7;
}

.testimonial-section .testimonial-avatar {
  position: absolute;
  top: -35px;
  left: -35px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
}

.testimonial-section .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section .testimonial-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
  color: var(--greay);
  margin-bottom: 34px;
  max-width: 402px;
}

.testimonial-section .testimonial-author h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: var(--greay);
  margin-bottom: 5px;
}

.testimonial-section .testimonial-author span {
  font-weight: 500;
  color: var(--greay);
  font-size: 14px;
}

/* Navigation */

.testimonial-section .testimonial-nav {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.testimonial-section .testimonial-nav button {
  border: none;
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  color: #3e2e4d;
  font-size: 20px;
  transition: 0.3s;
}

.testimonial-section .testimonial-nav button:hover {
  color: #bcb7c2;
}

/* testimonial-section */

/* logo-ticker */
.logo-ticker {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  padding: 100px 0 174px;
  position: relative;
}

.logo-ticker .logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: tickerMove 20s linear infinite;
}

.logo-ticker .logo-ticker:hover .logo-ticker-track {
  animation-play-state: paused;
}

.logo-ticker .logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 170px;
}

.logo-ticker .logo-item img {
  max-width: 130px;
  width: 100%;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: 0.35s;
}

.logo-ticker .logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-ticker .logo-item.featured {
  background: var(--white);
  padding: 20px 35px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.logo-ticker .logo-item.featured img {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* logo-ticker */

/* signup-form-section */

.signup-form-section {
  position: relative;
  padding: 0 99px;
}

.signup-form-section .signup-from-wrapper {
  padding: 78px 40px;
  /* overflow: hidden; */
  position: relative;
  border-radius: 160px 34px 34px 34px;
  -webkit-border-radius: 160px 34px 34px 34px;
  -moz-border-radius: 160px 34px 34px 34px;
  -ms-border-radius: 160px 34px 34px 34px;
  -o-border-radius: 160px 34px 34px 34px;
}

.signup-form-section .signup-content {
  max-width: 859px;
  margin: 0 auto;
  text-align: center;
}

.signup-form-section h2 {
  font-family: var(--Poppins);
  font-weight: 600;
  font-size: 33px;
  color: var(--greay);
  line-height: 164%;
  text-transform: none;
  margin-bottom: 74px;
}

.signup-form-section .signup-form form {
  display: flex;
  gap: 24px;
}

.signup-form-section .signup-form .form-control:focus {
  outline: none;
}

.signup-form-section .signup-form form .btn {
  font-family: var(--opensans);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  padding: 22px 50px;
  border-radius: 10px;
  border: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.signup-form-section .signup-form form .btn-orange {
  background: linear-gradient(360deg, #ff946d 0%, #ff7d68 100%);
}

.signup-form-section .signup-form form .btn-orange:hover {
  opacity: 0.8;
}

.signup-form-section .signup-form {
  max-width: 625px;
  margin: 0 auto;
}

.signup-form-section .signup-form .form-group {
  width: 100%;
  display: inline-flex;
  position: relative;
}

.signup-form-section .signup-form .form-group .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  left: 31px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.signup-form-section .signup-form .form-control {
  width: 100%;
  color: var(--black);
  background: var(--white);
  padding: 25px 25px 25px 66px;
  border: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.signup-form-section .signup-form .form-control::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}

.signup-form-section .signup-from-wrapper::after {
  content: "";
  display: inline-block;
  width: 361px;
  height: 480px;
  background-image: url("../images/form-shape-right.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  /* top: -15px; */
  bottom: -60px;
  left: -20px;
  z-index: -1;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.signup-form-section .signup-from-wrapper::before {
  content: "";
  display: inline-block;
  width: 264px;
  height: 350px;
  background-image: url("../images/form-shape-left.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -5px;
  right: 0px;
  z-index: -1;
}

.signup-form-section .plan-icon img {
  height: 70px;
}

.signup-form-section .plan-icon {
  position: absolute;
  top: -13px;
  right: -20px;
}

.signup-form-section .form-shape {
  position: absolute;
  bottom: -70px;
  right: -99px;
  z-index: -1;
}

.signup-form-section .form-shape img {
  height: 166px;
}

/* signup-form-section */

/* footer */
.footer {
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

footer::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -410px;
  opacity: 0.8;
  right: -363px;
  background-color: #d5aee4;
  filter: blur(150px);
  transform: rotate(-180deg);
  width: 478px;
  height: 496px;
  z-index: 9;
}

.footer .container {
  max-width: 1060px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-content .footer-logo {
  max-width: 208px;
}

.footer-logo .logo {
  font-family: var(--Poppins);
  font-weight: 500;
  font-size: 44px;
  line-height: normal;
  color: var(--blue);
  margin-bottom: 20px;
}

.footer-logo img {
  width: 115px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 13px;
  line-height: 125%;
  color: var(--greay);
}

.footer-links h4 {
  font-size: 21px;
  line-height: 125%;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-weight: 500;
  font-size: 18px;
  color: var(--greay);
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.footer-links ul li a:hover {
  color: var(--yellow);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

.social-icons img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-right h5 {
  font-size: 20px;
  line-height: 125%;
  font-weight: 500;
  color: var(--greay);
}

.footer-right .instagram {
  color: var(--white);
  background: conic-gradient(
    #b8d2f1 0%,
    #f289aa 16.67%,
    #c68bf0 29.47%,
    #d164da 42.71%,
    #c963e8 61.46%,
    #bfc2e8 71.88%,
    #ffc999 80.21%,
    #d0d8c9 87.5%,
    #bad0f1 92.81%,
    #ced8cb 99.71%,
    #ffffff 100%
  );
}

.app-buttons {
  display: flex;
  gap: 10px;
}

.app-buttons img {
  height: 38px;
  display: block;
}

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

.footer-bottom p {
  font-size: 14px;
  font-weight: 500;
  color: var(--greay);
}

/* footer */
