:root {
  --primary-font: "Inter", sans-serif;
  --secondary-font: "Quicksand", sans-serif;
  --red: #d32f2f;
  --blue: #002543;
}

body {
  font-family: var(--primary-font);
  margin: 0;
}

.container {
  max-width: 1300px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .container {
    padding: 0 13px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
  margin: 0;
  font-family: var(--primary-font);
}

a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: var(--red) !important;
}

p {
  font-size: 15px;
  font-weight: 300;
}
@media screen and (max-width: 500px) {
  p {
    font-size: 14px;
  }
}

.subtitle {
  color: var(--red);
  font-family: var(--secondary-font);
  font-size: 21px;
  font-weight: 500 !important;
}
@media screen and (max-width: 600px) {
  .subtitle {
    font-size: 16px;
    text-align: center;
  }
}

h2 {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 26px;
    text-align: center;
  }
}

h3 {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  h3 {
    font-size: 22px;
    text-align: center;
  }
}

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 909px;
}
@media screen and (max-width: 600px) {
  .banner {
    height: 94vh;
  }
}
.banner #myVideo {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner::after {
  content: "";
  position: absolute;
  bottom: -91px;
  left: -52px;
  border-radius: 29%;
  background: #fff;
  filter: blur(22px);
  width: 125%;
  height: 178px;
  z-index: 1;
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 589px;
  background: linear-gradient(180deg, #07333a 0%, rgba(18, 45, 49, 0.62) 38.46%, rgba(115, 115, 115, 0) 100%);
  z-index: 0;
}
.banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 148px;
  width: 100%;
}
.banner .banner-content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .banner .banner-content .top {
    justify-content: center;
  }
}
@media screen and (max-width: 800px) {
  .banner .banner-content .top .logo {
    width: 224px;
  }
}
.banner .banner-content .top button {
  border-radius: 54px;
  background: var(--red);
  width: 193px;
  height: 57px;
  outline: 0;
  border: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .banner .banner-content .top button {
    display: none;
  }
}
.banner .banner-content .bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 25px;
}
.banner .banner-content .bottom h1 {
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 75px;
  font-weight: 800;
  line-height: 84px;
}
@media screen and (max-width: 800px) {
  .banner .banner-content .bottom h1 {
    font-size: 59px;
    line-height: 72px;
  }
}
@media screen and (max-width: 500px) {
  .banner .banner-content .bottom h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
.banner .banner-content .bottom p {
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: var(--secondary-font);
  font-size: 40px;
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .banner .banner-content .bottom p {
    font-size: 23px;
  }
}
.banner .banner-content .bottom .contact-info {
  list-style: none;
  padding: 0 20px;
  display: flex;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 0px 8.9px 5px rgba(0, 0, 0, 0.25);
  height: 65px;
  color: black;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 599px) {
  .banner .banner-content .bottom .contact-info {
    display: none;
  }
}
.banner .banner-content .bottom .contact-info .enquiry {
  display: none;
}
@media screen and (min-width: 600px) {
  .banner .banner-content .bottom .contact-info .enquiry {
    display: block;
  }
}
.banner .banner-content .bottom .contact-info .icon {
  font-size: 41px;
  color: #ef5261;
}
@media screen and (max-width: 600px) {
  .banner .banner-content .bottom .contact-info .icon {
    font-size: 38px;
    display: none;
  }
}
.banner .banner-content .bottom .contact-info .mob {
  display: none;
}
@media screen and (max-width: 600px) {
  .banner .banner-content .bottom .contact-info .mob {
    font-size: 28px;
    display: block;
    color: var(--red);
  }
}
@media screen and (max-width: 600px) {
  .banner .banner-content .bottom .contact-info li {
    width: 33.3%;
    border-right: 1px solid #c3c1c1;
    padding: 13px 0;
  }
}
.banner .banner-content .bottom .contact-info li a {
  font-size: 19px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  color: black;
}
@media screen and (max-width: 600px) {
  .banner .banner-content .bottom .contact-info li a {
    font-size: 16px;
    justify-content: center;
  }
}
.banner .banner-content .btm-arrow {
  display: none;
  margin-top: 100px;
}
.banner .banner-content .btm-arrow .circle {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 31px;
}
.banner .banner-content .btm-arrow .circle::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px dashed white;
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
}
.banner .banner-content .btm-arrow .circle::after {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px dashed white;
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
}
.banner .banner-content .btm-arrow .circle .icon {
  animation: upDown 2s ease-in-out infinite;
}
@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@media screen and (max-width: 600px) {
  .banner .banner-content .btm-arrow {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

.book {
  padding: 87px 0;
}
@media screen and (max-width: 600px) {
  .book {
    padding: 54px 0;
  }
}
.book .container {
  display: flex;
  gap: 64px;
}
@media screen and (max-width: 1260px) {
  .book .container {
    gap: 56px;
  }
}
@media screen and (max-width: 1055px) {
  .book .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.book .container .img-box {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.book .container .img-box .ml {
  margin-left: 64px;
}
@media screen and (max-width: 730px) {
  .book .container .img-box .ml {
    margin-left: 0;
  }
}
.book .container .img-box .mr {
  margin-right: 64px;
}
@media screen and (max-width: 730px) {
  .book .container .img-box.two {
    display: none;
  }
}
@media screen and (max-width: 730px) {
  .book .container .img-box img {
    width: 50%;
  }
}
@media screen and (max-width: 1055px) {
  .book .container .img-box {
    order: 2;
  }
}
@media screen and (max-width: 730px) {
  .book .container .img-box {
    flex-direction: row;
    gap: 10px;
  }
}
.book .container .content .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.book .container .content .title img {
  margin-bottom: 11px;
}
.book .container .content .para {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  margin-top: 32px;
  font-weight: 400;
}
@media screen and (max-width: 1260px) {
  .book .container .content .para {
    font-size: 15px;
    line-height: 27px;
  }
}

.about {
  background: #f5f6f8;
  padding: 108px 0;
}
@media screen and (max-width: 600px) {
  .about {
    padding: 54px 0;
  }
}
.about .container {
  display: flex;
  gap: 115px;
}
@media screen and (max-width: 1300px) {
  .about .container {
    gap: 66px;
  }
}
@media screen and (max-width: 1090px) {
  .about .container {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .about .container {
    flex-direction: column-reverse;
  }
}
.about .container .about-left {
  width: 50%;
  gap: 25px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1250px) {
  .about .container .about-left {
    width: 60%;
  }
}
@media screen and (max-width: 1000px) {
  .about .container .about-left {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .about .container .about-left {
    gap: 17px;
  }
}
.about .container .about-left h4 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 13px;
}
@media screen and (max-width: 600px) {
  .about .container .about-left h4 {
    text-align: center;
  }
}
.about .container .about-left .highlights {
  display: flex;
  gap: 17px;
}
@media screen and (max-width: 600px) {
  .about .container .about-left .highlights {
    flex-direction: column;
  }
}
.about .container .about-left .highlights .box {
  padding: 25px;
  border-radius: 20px;
  background: var(--red);
  width: 50%;
  display: flex;
  align-items: center;
  color: white;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .about .container .about-left .highlights .box {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }
}
.about .container .about-left .highlights .box:hover .icon {
  background: white;
  color: var(--red);
}
.about .container .about-left .highlights .box:last-child {
  background: var(--blue);
}
.about .container .about-left .highlights .box:last-child:hover .icon {
  color: var(--blue);
}
.about .container .about-left .highlights .box .texts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about .container .about-left .highlights .box h3 {
  font-size: 29px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .about .container .about-left .highlights .box h3 {
    font-size: 22px;
    text-align: left;
  }
}
.about .container .about-left .highlights .box p {
  font-weight: 400;
  line-height: 21px;
  text-transform: capitalize;
}
@media screen and (max-width: 600px) {
  .about .container .about-left .highlights .box p br {
    display: none;
  }
}
.about .container .about-left .highlights .box .icon {
  width: 86px;
  height: 86px;
  min-width: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 55px;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .about .container .about-left .highlights .box .icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 38px;
  }
}
.about .container .about-left .list {
  border-radius: 20px;
  background: #fff;
  gap: 15px;
  display: flex;
  flex-direction: column;
  padding: 25px;
}
@media screen and (max-width: 600px) {
  .about .container .about-left .list {
    padding: 20px;
  }
}
.about .container .about-left .list .list-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about .container .about-left .list .list-row .icon {
  background: rgba(216, 0, 0, 0.07);
  border: 1px solid #fac8d1;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--red);
  font-size: 31px;
}
.about .container .about-left .list .list-row .icon .ak-guide {
  font-size: 40px;
}
.about .container .about-left .list .list-row p {
  font-weight: 500;
}
.about .container .about-right {
  width: 50%;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding-right: 50px;
}
@media screen and (max-width: 1250px) {
  .about .container .about-right {
    width: 40%;
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .about .container .about-right {
    width: 100%;
    margin-top: 0;
  }
}
.about .container .about-right p {
  line-height: 29px;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .about .container .about-right p {
    text-align: center;
  }
}
.about .container .about-right .list ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.service {
  position: relative;
}
.service .bgclr {
  position: absolute;
  right: 0;
  width: 40%;
  height: 100%;
  top: 0;
}
@media screen and (max-width: 1650px) {
  .service .bgclr {
    width: 35%;
  }
}
@media screen and (max-width: 1000px) {
  .service .bgclr {
    width: 45%;
  }
}
@media screen and (max-width: 850px) {
  .service .bgclr {
    width: 100%;
  }
}
.service .bgclr.flight {
  background: var(--blue);
}
.service .bgclr.hotel {
  background: #3a1068;
}
.service .bgclr.umrah {
  background: #105e41;
}
.service .bgclr.visa {
  background: #87152d;
}
.service .bgclr.insurance {
  background: #893c00;
}
.service .bgclr.travel {
  background: #006360;
}
.service .bgclr.holiday {
  background: #700082;
}
.service .container {
  display: flex;
  justify-content: space-between;
}
.service .container .left {
  width: 65%;
  padding: 125px 0;
}
@media screen and (max-width: 1000px) {
  .service .container .left {
    width: 55%;
  }
}
@media screen and (max-width: 850px) {
  .service .container .left {
    display: none;
  }
}
.service .container .left .caption {
  margin-top: 14px;
}
.service .container .left .service-outer {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 60px;
  margin-top: 78px;
}
@media screen and (max-width: 1300px) {
  .service .container .left .service-outer {
    gap: 40px 60px;
  }
}
@media screen and (max-width: 1000px) {
  .service .container .left .service-outer {
    gap: 40px 40px;
  }
}
@media screen and (max-width: 700px) {
  .service .container .left .service-outer {
    gap: 21px 27px;
  }
}
.service .container .left .service-outer .sbox {
  width: calc(27% - 62px);
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .service .container .left .service-outer .sbox {
    width: calc(33.3% - 41px);
  }
}
@media screen and (max-width: 1000px) {
  .service .container .left .service-outer .sbox {
    width: calc(50% - 41px);
  }
}
.service .container .left .service-outer .sbox.active h4 {
  color: var(--red);
}
.service .container .left .service-outer .sbox h4 {
  color: black;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
@media screen and (max-width: 700px) {
  .service .container .left .service-outer .sbox h4 {
    font-size: 16px;
    line-height: 20px;
  }
}
.service .container .left .service-outer .sbox h5 {
  color: #9a9a9a;
  font-size: 15px;
  font-weight: 600;
  line-height: 32px;
}
.service .container .right {
  width: 30%;
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  align-items: center;
}
.service .container .right h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin: 36px 0 24px 0;
}
@media screen and (max-width: 600px) {
  .service .container .right h4 {
    margin: 21px 0;
    font-size: 18px;
  }
}
.service .container .right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 0;
}
.service .container .right ul li {
  color: #f1f1f1;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 600px) {
  .service .container .right ul li {
    font-size: 14px;
  }
}
.service .container .right ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ff6066;
}
@media screen and (max-width: 600px) {
  .service .container .right ul li::before {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 600px) {
  .service .container .right .pd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2392156863);
    padding: 20px;
    border-radius: 20px;
  }
}
.service .container .right img {
  width: 82px;
}
@media screen and (max-width: 600px) {
  .service .container .right img {
    width: 60px;
  }
}
.service .container .right .hotel ul li::before {
  background: #ab5eff;
}
.service .container .right .visa ul li::before {
  background: #c9687c;
}
.service .container .right .umrah ul li::before {
  background: #50e4ad;
}
.service .container .right .insurance ul li::before {
  background: #f3d053;
}
.service .container .right .travel ul li::before {
  background: #45efeb;
}
.service .container .right .holiday ul li::before {
  background: #d48cfe;
}
.service .container .right .nav {
  display: flex;
  position: absolute;
  bottom: 0;
  gap: 2px;
}
@media screen and (max-width: 600px) {
  .service .container .right .nav {
    justify-content: center;
    width: 100%;
  }
}
.service .container .right .nav .navicon {
  width: 63px;
  height: 62px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .service .container .right .nav .navicon {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }
}
.service .container .right .nav .navicon:hover {
  background: white;
  color: black;
}
.service .container .right .res-title {
  display: none;
}
@media screen and (max-width: 850px) {
  .service .container .right .res-title {
    margin-bottom: 53px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .service .container .right .res-title .subtitle {
    color: rgba(255, 255, 255, 0.5411764706);
  }
}
@media screen and (max-width: 850px) and (max-width: 600px) {
  .service .container .right .res-title p {
    text-align: center;
  }
}
.service .container .right .slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.service .container .right .slider .slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .service .container .right {
    width: 40%;
  }
}
@media screen and (max-width: 850px) {
  .service .container .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 58px 0 84px 0;
  }
  .service .container .right .slider {
    height: 350px;
  }
}
@media screen and (max-width: 600px) {
  .service .container .right .slider {
    height: 410px;
    background: rgba(0, 0, 0, 0.2392156863);
    border-radius: 20px;
  }
  .service .container .right .slider .slider-item {
    padding: 35px 15px;
  }
  .service .container .right .slider .slider-item ul {
    width: calc(100% - 30px);
  }
}
.service.service2 {
  background: red;
  padding: 0;
}
.service.service2.blue {
  background: var(--blue);
}
.service.service2.hotel {
  background: #3a1068;
}
.service.service2.umrah {
  background: #105e41;
}
.service.service2.visa {
  background: #87152d;
}
.service.service2.insurance {
  background: #893c00;
}
.service.service2.travel {
  background: #006360;
}
.service.service2.holiday {
  background: #700082;
}
.service.service2::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  background: inherit;
}
.service.service2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;
  background: white;
  z-index: 0;
}
@media screen and (max-width: 850px) {
  .service.service2::before {
    display: none;
  }
}
.service.service2 .left {
  background: white;
  padding: 125px 0;
  position: relative;
  z-index: 1;
  width: 67%;
}
.service.service2 .right {
  padding-top: 125px;
}
@media screen and (max-width: 850px) {
  .service.service2 .right {
    padding-bottom: 125px;
  }
}
@media screen and (max-width: 600px) {
  .service.service2 .right {
    padding: 58px 0 84px 0;
  }
}
.service.service2 .right .nav {
  bottom: 0;
}

.global {
  background: #f5f6f8;
  padding: 96px 0;
}
@media screen and (max-width: 600px) {
  .global {
    padding: 54px 0;
  }
}
.global .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 77px;
}
@media screen and (max-width: 600px) {
  .global .container {
    gap: 43px;
  }
}
.global .container .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.global .container .heading p {
  text-align: center;
}
.global .container .box {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 22px 0px rgba(170, 211, 222, 0.25);
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .global .container .box {
    max-height: 441px;
    overflow-y: auto;
  }
}
.global .container .box .row {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 1000px) {
  .global .container .box .row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .global .container .box .row {
    border-bottom: 0;
  }
  .global .container .box .row:last-child .column:nth-child(2) {
    border: none;
  }
}
.global .container .box .row:first-child .column {
  padding-top: 0;
}
@media screen and (max-width: 600px) {
  .global .container .box .row:first-child .column {
    padding-top: 10px;
  }
}
.global .container .box .row:last-child {
  border-bottom: 0;
}
.global .container .box .row:last-child .column {
  padding-bottom: 0;
}
.global .container .box .column {
  width: 25%;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #e6e6e6;
  padding: 23px;
  transition: 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 1125px) {
  .global .container .box .column {
    padding: 17px;
  }
}
@media screen and (max-width: 1000px) {
  .global .container .box .column {
    width: 50%;
  }
  .global .container .box .column:nth-child(3) {
    padding-left: 0;
  }
  .global .container .box .column:nth-child(2) {
    border-right: 0;
  }
  .global .container .box .column.remove {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .global .container .box .column {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 10px 10px 0;
  }
}
.global .container .box .column:hover {
  color: var(--red);
}
.global .container .box .column:hover img {
  border: 8px solid #ffd0d0;
  border-radius: 50%;
}
.global .container .box .column:first-child {
  padding-left: 0;
}
.global .container .box .column:last-child {
  border-right: 0;
}
.global .container .box .column img {
  width: 50px;
  height: 50px;
  border: 8px solid white;
}
@media screen and (max-width: 1060px) {
  .global .container .box .column img {
    width: 45px;
    height: 45px;
  }
}
.global .container .box .column .texts h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
}
@media screen and (max-width: 1060px) {
  .global .container .box .column .texts h4 {
    font-size: 16px;
  }
}
.global .container .box .column .texts span {
  font-size: 12px;
  font-weight: 300;
  color: #726f6f;
}
.global .container .box .column .texts .badge {
  border-radius: 20px;
  background: linear-gradient(90deg, #d32f2f 0%, #fe1515 100%);
  color: white;
  width: 78px;
  height: 23px;
  font-weight: 500;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
}

.form-outer {
  position: relative;
}
@media screen and (max-width: 810px) {
  .form-outer {
    padding-bottom: 30px;
    overflow: hidden;
  }
}
.form-outer::after {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  background: var(--red);
  height: 100%;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 1060px) {
  .form-outer::after {
    width: 60%;
  }
}
@media screen and (max-width: 810px) {
  .form-outer::after {
    display: none;
  }
}
.form-outer .container {
  display: flex;
}
@media screen and (max-width: 810px) {
  .form-outer .container {
    flex-wrap: wrap;
    gap: 35px;
  }
}
.form-outer .form-left {
  padding: 84px 50px 84px 0;
  width: 50%;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-sizing: border-box;
}
@media screen and (max-width: 1060px) {
  .form-outer .form-left {
    width: 60%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 810px) {
  .form-outer .form-left {
    width: 100%;
    padding: 40px 0;
    position: relative;
  }
  .form-outer .form-left::after {
    content: "";
    position: absolute;
    left: 0;
    width: 110%;
    background: var(--red);
    height: 100%;
    top: 0;
    z-index: -1;
    margin-left: -13px;
  }
}
@media screen and (max-width: 500px) {
  .form-outer .form-left {
    padding: 40px 13px;
  }
}
.form-outer .form-left p {
  line-height: 23px;
  color: white;
}
@media screen and (max-width: 600px) {
  .form-outer .form-left p {
    text-align: center;
  }
}
.form-outer .form-left .feature {
  border-radius: 7px;
  border: 1px solid #c21616;
  background: #c21616;
  color: white;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 5px;
}
@media screen and (max-width: 500px) {
  .form-outer .form-left .feature {
    gap: 10px;
  }
}
.form-outer .form-left .feature p {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  gap: 5px;
}
@media screen and (max-width: 500px) {
  .form-outer .form-left .feature p {
    flex-direction: column;
    text-align: center;
    line-height: 17px;
    border-right: 1px solid white;
    padding-right: 10px;
  }
  .form-outer .form-left .feature p:last-child {
    border: 0;
    padding-right: 0;
  }
}
.form-outer .form-left .feature span {
  font-weight: 300;
}
@media screen and (max-width: 500px) {
  .form-outer .form-left .feature span {
    display: none;
  }
}
.form-outer .form-left .form #get_in_touch {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 11px 19px;
  justify-content: center;
}
.form-outer .form-left .form #get_in_touch .form-row {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
}
@media screen and (max-width: 500px) {
  .form-outer .form-left .form #get_in_touch .form-row {
    width: 100%;
  }
}
.form-outer .form-left .form #get_in_touch .form-row label {
  width: 100%;
  background: #b61010;
  font-size: 12px;
  color: #ffffff;
  font-weight: 400;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
  margin-top: 4px;
}
.form-outer .form-left .form #get_in_touch .form-row label::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 12px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #b61010;
}
.form-outer .form-left .form #get_in_touch .form-row .iti__flag-container {
  width: 51px;
  height: 51px;
  background: #b61010;
  opacity: 1;
  border-radius: 5px 0 0 5px;
}
.form-outer .form-left .form #get_in_touch .form-row .iti__arrow {
  border-top: 4px solid #ffffff;
}
.form-outer .form-left .form #get_in_touch .form-row .phone-input {
  padding-left: 60px;
}
.form-outer .form-left .form #get_in_touch .form-row .selectdropdwn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../images/down.svg") no-repeat right 1rem center;
  cursor: pointer;
  background-size: 14px;
  background-color: rgba(255, 255, 255, 0.15);
  height: 51px;
}
.form-outer .form-left .form #get_in_touch .form-row .selectdropdwn option {
  color: black;
}
.form-outer .form-left .form .field {
  border-radius: 6px;
  border: 1px solid #ff8c8c;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  box-sizing: border-box;
  outline: 0;
  font-family: var(--primary-font);
  color: white;
  font-size: 15px;
}
.form-outer .form-left .form .field::-moz-placeholder {
  color: white;
  font-weight: 400;
  font-size: 15px;
}
.form-outer .form-left .form .field::placeholder {
  color: white;
  font-weight: 400;
  font-size: 15px;
}
.form-outer .form-left .form .field:focus {
  border: 1px solid white;
  box-shadow: 0px 0px 22px 0px rgba(170, 211, 222, 0.25);
}
.form-outer .form-left .form input {
  height: 51px;
  width: 100%;
}
.form-outer .form-left .form textarea {
  width: 100%;
}
.form-outer .form-left .form button {
  position: relative;
  border-radius: 54px;
  background: #fff;
  width: 142px;
  height: 47px;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  outline: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .form-outer .form-left .form button {
    width: 100%;
    margin-top: 4px;
  }
}
.form-outer .form-left .form button:hover {
  background: var(--blue);
  color: white;
}
.form-outer .form-left .form button .icon {
  font-size: 32px;
  margin-top: -3px;
}
.form-outer .form-left .form button.disabled-btn {
  background: var(--blue);
  color: white;
}
.form-outer .form-left .form button.disabled-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
  z-index: 1;
  animation: 2s linear infinite move;
  -webkit-animation: 2s linear infinite move;
  overflow: hidden;
}
.form-outer .form-left h2 {
  color: white;
}
.form-outer .form-right {
  width: 50%;
  padding: 78px 0 0 78px;
  box-sizing: border-box;
}
@media screen and (max-width: 1060px) {
  .form-outer .form-right {
    width: 40%;
    padding-left: 43px;
  }
}
@media screen and (max-width: 810px) {
  .form-outer .form-right {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0;
  }
}
.form-outer .form-right h3 {
  margin-top: 10px;
}
.form-outer .form-right ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 52px;
}
@media screen and (max-width: 810px) {
  .form-outer .form-right ul {
    margin-top: 35px;
  }
}
.form-outer .form-right ul li {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  line-height: 23px;
}
@media screen and (max-width: 500px) {
  .form-outer .form-right ul li {
    font-size: 14px;
    align-items: start;
    gap: 10px;
  }
}
.form-outer .form-right ul li a {
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.form-outer .form-right ul li .icon {
  color: var(--blue);
  font-size: 40px;
}
@media screen and (max-width: 500px) {
  .form-outer .form-right ul li .icon {
    font-size: 30px;
  }
}
.form-outer .form-right .image-outer {
  display: flex;
  flex-direction: row;
  justify-content: end;
}
@media screen and (max-width: 810px) {
  .form-outer .form-right .image-outer {
    display: none;
  }
}

.seo {
  background: #f5f6f8;
  padding: 50px 0;
}
.seo h4 {
  color: #595858;
  font-weight: 600;
  font-size: 15px;
}
.seo .links {
  margin-top: 19px;
  line-height: 23px;
  font-size: 13px;
}
.seo .links a {
  text-decoration: none;
  color: #595858;
}

.footer {
  background: var(--blue);
  color: white;
  padding: 50px 0;
}
@media screen and (max-width: 600px) {
  .footer {
    padding-bottom: 80px;
  }
}
.footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer .container .bdr {
  border-top: 1px solid #314251;
  border-bottom: 1px solid #314251;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  width: 100%;
}
.footer .container ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
@media screen and (max-width: 500px) {
  .footer .container ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .container ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 380px) {
  .footer .container ul li:nth-child(2) {
    display: none;
  }
}
.footer .container .icons {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.footer .container .icons a {
  color: #617a8d;
  font-size: 40px;
}
@media screen and (max-width: 500px) {
  .footer .container .icons a {
    font-size: 35px;
  }
}
.footer .container .gray {
  color: #617a8d;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .footer .container .gray {
    font-size: 12px;
  }
}

.popup {
  display: none;
  position: fixed;
  z-index: 2;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.popup .popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 25px;
  width: 300px;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.popup .popup-content img {
  width: 110px;
}
.popup .popup-content h4 {
  font-size: 18px;
  text-align: center;
}
.popup .popup-content p {
  margin-top: 10px;
  text-align: center;
}
.popup .popup-content button {
  border-radius: 54px;
  background: var(--blue);
  width: 116px;
  height: 44px;
  outline: 0;
  border: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.zoomin {
  animation: zoomIn 0.5s ease-out forwards;
}

.contact-info-mob {
  list-style: none;
  padding: 0 20px;
  display: flex;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 0px 8.9px 5px rgba(0, 0, 0, 0.25);
  height: 65px;
  color: black;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 600px) {
  .contact-info-mob {
    display: none;
  }
}
.contact-info-mob .enquiry {
  display: none;
}
@media screen and (max-width: 600px) {
  .contact-info-mob .enquiry {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .contact-info-mob {
    height: auto;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    gap: 0px;
    left: 0;
    padding-left: 0;
    z-index: 99;
  }
  .contact-info-mob .res-txt {
    display: none;
  }
}
.contact-info-mob .icon {
  font-size: 41px;
  color: #ef5261;
}
@media screen and (max-width: 600px) {
  .contact-info-mob .icon {
    font-size: 38px;
    display: none;
  }
}
.contact-info-mob .mob {
  display: none;
}
@media screen and (max-width: 600px) {
  .contact-info-mob .mob {
    font-size: 28px;
    display: block;
    color: var(--red);
  }
}
@media screen and (max-width: 600px) {
  .contact-info-mob li {
    width: 33.3%;
    border-right: 1px solid #c3c1c1;
    padding: 13px 0;
  }
}
.contact-info-mob li a {
  font-size: 19px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  color: black;
}
@media screen and (max-width: 600px) {
  .contact-info-mob li a {
    font-size: 16px;
    justify-content: center;
  }
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}/*# sourceMappingURL=style.css.map */