@font-face {
  font-family: "Albra";
  src: url("../fonts/Albra/AlbraTRIAL-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Albra";
  src: url("../fonts/Albra/AlbraTRIAL-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Albra";
  src: url("../fonts/Albra/AlbraTRIAL-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Albra";
  src: url("../fonts/Albra/AlbraTRIAL-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Albra";
  src: url("../fonts/Albra/AlbraTRIAL-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Albra";
  src: url("../fonts/Albra/AlbraTRIAL-Semi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Albra";
  src: url("../fonts/Albra/AlbraTRIAL-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
:root {
  --primary-color: #a30713;
  --secondary-color: #061d55;
  --text-color: #000000;
}

::selection {
  background: var(--primary-color);
  color: #fff;
}
::scrollbar {
  width: 10px;
}
::scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.font-albra {
  font-family: "Albra", sans-serif !important;
}

body {
  font-family: "MADE Tommy", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Albra", sans-serif;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--primary-color);
}
a {
  text-decoration: none;
  color: inherit;
}

nav .navbar-brand img {
  width: 170px;
}
.top_header {
  background: #07122c;
  padding: 15px 0;
}

.top_header a {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  font-size: 16px;
}
.top_header .social_icons {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.top_header .social_icons a {
  height: 35px;
  width: 35px;
  border: 1px solid rgb(255 255 255 / 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  &:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }
}

.serv_bg {
  background: url("../images/serv_bg.webp") no-repeat center center/cover !important;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
/* .navbar .dropdown-menu {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  display: block; 
  margin-top: 0;
} */


.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

nav ul.navbar-nav .dropdown-menu {
  background: #081d50bd;
  backdrop-filter: blur(10px);
}

nav ul.navbar-nav .dropdown-menu a {
  color: #fff;
}

nav ul.navbar-nav .dropdown-menu a:hover,
nav ul.navbar-nav .dropdown-menu a:active,
nav ul.navbar-nav .dropdown-menu a.acitve {
  background: var(--primary-color);
}

nav a.nav-link,
nav a.nav-link.active {
  color: #fff !important;
  padding: 0 !important;
  position: relative;
}
nav a.nav-link::before,
nav a.dropdown-toggle::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  border-radius: 20px;
  left: 0;
  bottom: -3px;
  background-color: #fff;
  transition: all 0.3s ease;
  margin: 0;
  border: none;
}
nav a.nav-link:hover:before,
nav a.nav-link.active:before {
  width: 20px;
}
nav ul.navbar-nav {
  gap: 0 30px;
  font-family: Albra, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.btn_dflt {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s ease;
  font-family: "Outfit", sans-serif;
}
.btn_red {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
}
.btn_red:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
}
.btn_blue {
  background-color: var(--secondary-color);
  color: #ffffff;
  border: 2px solid var(--secondary-color);
}
.btn_blue:hover {
  background-color: #fff;
  color: var(--secondary-color);
  border: 2px solid #fff;
}
.btn_light {
  background-color: #fff;
  color: var(--secondary-color);
  border: 2px solid #fff;
}
.btn_light:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}
.bg_shadow_left,
.bg_shadow_right {
  position: relative;
  overflow: hidden;
}
.bg_shadow_right::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15%;
  width: 100%;
  height: 100%;
  background: url(../images/bg_shadow.svg) no-repeat;
  background-size: contain;
  pointer-events: none;
  background-position: right;
  z-index: -1;
}
.bg_shadow_left::after {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  width: 100%;
  height: 100%;
  background: url(../images/bg_shadow.svg) no-repeat;
  background-size: contain;
  background-position: left;

  pointer-events: none;
  z-index: -1;
}

.pd-100 {
  padding: 100px 0 !important;
}

.hero_section {
  background: url("../images/hero-bg.webp") no-repeat center center/cover;
  position: relative;
  padding: 250px 0 100px;
}

.hero_section h1 {
  font-size: 55px;
  color: #fff;
  line-height: 65px;
}

.hero_section p {
  color: #fff;
  font-family: "MADE Tommy", sans-serif;
  font-size: 20px;
  line-height: 32px;
}

.form_bx {
  padding: 30px;
  background: rgb(255 255 255 / 40%);
  backdrop-filter: blur(10px);
  border-radius: 18px;
}

.form_bx .discount {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0 15px;
}

.form_bx .discount .discount_txt * {
  margin: 0;
}

.form_bx .discount .discount_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.discount_txt h5 {
  color: var(--secondary-color);
  font-size: 22px;
}

.discount_txt h3 {
  color: var(--primary-color);
  font-size: 36px;
}

h2.shedule_txt {
  margin: 15px 0;
  width: 100%;
  text-align: center;
  padding: 10px 5px;
  background: var(--primary-color);
  color: #fff;
  font-size: 27px;
  font-weight: 400;
  border-radius: 2px;
}

.form_bx input.form-control,
.form_bx textarea {
  padding: 15px 10px 15px 15px;
  font-family: "Outfit";
  font-size: 16px;
  text-transform: capitalize;
  resize: none;
}

.form_bx p {
  font-family: "Outfit";
  color: var(--secondary-color);
  font-size: 24px !important;
}

.form_bx .services_checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
}

.form_bx input.form-check-input {
  border-radius: 0;
}

.form_bx label.form-check-label {
  color: var(--secondary-color);
  font-family: "Outfit";
  font-size: 16px;
}

.form_bx input.form-check-input:focus {
  box-shadow: none;
  border: none;
}

/* marquee sect css */
.marquee {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  background: var(--primary-color);
  padding: 20px 0;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee__content {
  display: inline-flex;
  align-items: center;
  font-size: 45px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  white-space: nowrap;
  color: #fff;
}
.marquee__content svg {
  margin: 0 30px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* marquee sect css */

/* content sect 1 css */
.content_sect1 {
  padding: 100px 0 50px;
}
.content_txt h2 {
  font-size: 55px;
  color: var(--secondary-color);
}

.content_txt p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 20px;
}

.counter {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.count_bx h3 span {
  color: var(--secondary-color);
  font-size: 55px;
  font-weight: 600;
}

.count_bx h3 {
  font-size: 55px;
  font-weight: 600;
  color: var(--secondary-color);
  display: flex;
}

.count_bx h3 strong {
  color: var(--primary-color);
  font-family: "Outfit";
  font-weight: 400;
  font-size: 55px;
  margin-left: 5px;
}

.count_bx p {
  font-family: "Outfit";
  margin: 0;
}
/* content sect 1 css */

/* content sect 2 css */
.content_sect2 {
  padding: 50px 0 100px;
}
.content_bx {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.content_bx img {
  width: 60%;
  transform: scale(1.3);
  padding-right: 35px;
}

.content_bx h3 {
  font-size: 40px;
  color: #fff;
}

.content_bx .txt {
  width: 35%;
}

.content_bx:before {
  content: "";
  height: 100%;
  width: 90%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 20px;
  background: var(--secondary-color);
  z-index: -1;
}

.content_bx p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
.content_bx a img {
  width: 100%;
  transform: scale(1);
  padding: 0;
}

.content_bx a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  padding: 15px;
  transition: 0.2s all ease-in-out;
  margin-right: 0;
  margin-left: auto;
  &:hover {
    background: #fff;
  }
  &:hover img {
    filter: invert(1);
  }
}
/* content sect 2 css */

/* cta section css */
section.cta_sect {
  padding: 50px 0;
}

.cta_bx {
  background: var(--secondary-color) url(../images/cta_bg.webp);
  text-align: center;
  padding: 95px 0;
  background-size: cover;
  border-radius: 40px;
}
.cta_bx h2 {
  font-size: 60px;
  color: #fff;
}

.cta_bx p {
  color: #fff;
}
/* cta section css */

/* portfolio carousel css */
.portfolio-slider {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.portfolio-slider.fade-out {
  opacity: 0;
}

.portfolio {
  padding: 50px 0;
  text-align: center;
}

.portfolio h2 {
  color: var(--secondary-color);
  font-size: 50px;
}

.portfolio p {
  color: #5e5e5e;
  font-size: 18px;
  margin: 20px 0;
}
.portfolio_head {
  position: relative;
  z-index: 0;
  border: 1px solid #061d55;
  border-radius: 10px;
}

.portfolio_head ul {
  justify-content: space-around;
  z-index: 1;
  position: relative;
}

.portfolio_head ul .nav-link {
  font-family: "Albra";
  font-size: 24px;
  color: #424242;
  text-transform: uppercase;
  position: relative;
}

.portfolio_head .nav-pills .nav-link.active,
.portfolio_head .nav-pills .show > .nav-link {
  background: none;
}

.portfolio_head ul .nav-link:before {
  content: "";
  height: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--primary-color);
  transition: 0.4s all ease-in-out;
  transform: scaleY(1.2);
}

.portfolio_head .nav-pills .nav-link.active:before,
.portfolio_head .nav-link:hover:before {
  height: 100%;
}

portfolio_head .nav-link:hover {
  color: #fff;
}

.portfolio_head ul .nav-link:hover {
  color: #fff;
}
.portfolio-item-box a:hover img {
  transform: scale(1.03);
}
.portfolio-item-box a img {
  transition: transform 0.3s ease;
}
/* portfolio carousel css */

/* process section css  */
.process {
  padding: 100px 0;
}
.process h2 {
  font-size: 60px;
}

.process p {
  color: #1c1c1c;
  font-size: 18px;
}
.process_bx h4 {
  font-size: 30px;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 0;
  text-align: center;
  margin: 0;
}

.process_bx p {
  font-family: "Poppins";
  font-size: 16px;
  color: #fff;
  padding: 15px 25px;
  margin: 0;
  text-align: center;
}

.process_bx {
  text-align: center;
  height: 100%;
  background: var(--secondary-color);
}

.process .img_bx {
  background: #f5f5f5;
  padding-bottom: 25px;
  padding-top: 20px;
}

.process .img_bx img {
  width: 220px;
}
/* process section css  */

/* cta2 section css */
.cta2 {
  background: var(--secondary-color);
  padding: 50px 0;
}

.cta2 h2 {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.cta2 h4 {
  font-size: 20px;
  color: var(--primary-color);
}

.cta2_bx {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.cta2_bx a {
  color: #fff;
  font-family: "Outfit";
  font-size: 18px;
}
.cta2_bx a.btn_red {
  font-size: 16px;
}
.cta2_bx a.btn_red:hover {
  background: #fff;
  color: var(--secondary-color);
}

.cta2_bx a span {
  display: block;
  font-family: "Albra";
  color: var(--primary-color);
  font-size: 26px;
}

/* cta2 section css */

/* what we offer section css  */

.what_offer {
  padding: 50px 0;
}

.what_offer h2 {
  color: #fff;
  font-size: 60px;
}

.what_offer p {
  font-size: 18px;
  color: #fff;
}
.what_offer_bx {
  padding: 60px 50px;
  background: var(--secondary-color) url(../images/what_offer_bg.webp) no-repeat
    center center;
  background-size: cover;
  border-radius: 40px;
  height: 100%;
}
.offer_bx {
  background: var(--primary-color);
  padding: 40px;
  border-radius: 10px;
  height: 100%;
}

.offer_bx h4 {
  font-size: 28px;
  color: #fff;
}

.offer_bx .title_txt {
  display: flex;
  gap: 0;
  align-items: center;
}
.offer_bx p {
  font-family: "Poppins";
  font-size: 12px;
}

.offer_bx .title_txt .img_bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.offer_bx .title_txt .img_bx img {
  position: relative;
  z-index: 1;
}

.offer_bx .title_txt .img_bx strong {
  color: #fff;
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.offer_bx .title_txt .img_bx:before {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/offer_light.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  left: 10px;
  transform: scale(1.2);
  z-index: 0;
}

/* what we offer section css  */

/* contact sect css */
.contact_sect {
  padding: 50px 0 100px;
}
.contact_sect h2 {
  font-size: 55px;
}

.contact_sect p {
  font-size: 18px;
}
.cont_form_bx label {
  font-size: 20px;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.cont_form_bx input,
.cont_form_bx select,
.cont_form_bx textarea {
  padding: 25px 0 25px 25px;
  border: 1px solid #c4c4c4;
  background: #f8f8f8;
}
.cont_form_bx input::placeholder,
.cont_form_bx select,
.cont_form_bx textarea::placeholder {
  color: #c4c4c4;
  font-size: 16px;
}
/* contact sect css */

/* faq sect css */

.faq_sect {
  padding: 100px 0;
  background: url(../images/faq_bg.webp) no-repeat center center/cover;
}

.faq_sect h2 {
  font-size: 60px;
  color: #fff;
}

.faq_sect p {
  font-size: 18px;
  color: #fff;
}

.faq_sect .accordion-item {
  background: #f8f8f8;
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
}

.faq_sect .accordion-item .accordion-body {
  padding: 24px;
}
.faq_sect .accordion-button::after {
  background-image: url(../images/faq-ico.svg);
  background-position: center;
}

.faq_sect .accordion-button {
  font-size: 22px;
  color: #727272;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  background: #f8f8f8;
  border-radius: 10px !important;
  padding: 24px;
}
.faq_sect .accordion-button:not(.collapsed),
.faq_sect .accordion-item {
  color: #fff;
  background: #0c4a85;
  border-radius: 10px 10px 0 0 !important;
  border-bottom: 0;
  box-shadow: none;
}
.faq_sect .accordion-button:not(.collapsed) {
  border: 1px solid #fff;
  border-bottom: 0;
  padding: 24px;
}
.faq_sect .accordion-item p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  margin: 0;
}
.faq_sect .accordion-item .collapse.show p {
  color: #fff;
}

.faq_sect .accordion-item .collapse.show {
  background: #0c4a85;
  border-radius: 0 0 10px 10px;
  border: 1px solid #fff;
  border-top: 0;
}

.chat_bx {
  padding: 30px 50px;
  background: var(--primary-color);
  border-radius: 20px;
  text-align: center;
}
.chat_bx img {
  width: 80px;
  margin-bottom: 20px;
}

.chat_bx h4 {
  font-size: 28px;
  color: #fff;
}

.chat_bx p {
  margin: 15px 0 35px;
}
.support_bx {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-top: 50px;
}

.support_bx a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.support_bx .ico_bx {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
}

.support_bx h5 {
  font-size: 35px;
  color: var(--primary-color);
  margin: 0;
}

.support_bx p {
  font-family: "Outfit";
  color: #4e4545;
  margin: 0;
  font-weight: 300;
  font-size: 16px;
}

/* faq sect css */

/* testimonials css  */
.testimonials {
  padding: 100px 0;
}

.testimonials h2 {
  font-size: 55px;
}

.testimonials p {
  font-size: 18px;
}
.rev_slider {
  padding-left: 10px;
}

.rev_slider,
.rev_slider .item {
  height: 100%;
}
.rev_slider .slick-prev::before,
.rev_slider .slick-next::before {
  display: none;
}
.rev_slider .slick-prev,
.rev_slider .slick-next {
  z-index: 1;
  height: 50px;
  background: var(--primary-color);
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease;
  &:hover {
    background: var(--secondary-color);
  }
}
.rev_slider .slick-prev {
  bottom: 30px;
  right: 100px;
  left: unset;
  top: unset;
}
.rev_slider .slick-next {
  bottom: 30px;
  right: 40px;
  top: unset;
  left: unset;
}

.rating_bx {
  padding: 50px;
  background: var(--primary-color);
  border-radius: 40px;
  text-align: center;
  height: 100%;
}

.rating_bx p {
  font-size: 22px;
  font-family: "Outfit";
  color: #fff;
  margin: 0;
}

.rating_bx h3 {
  font-size: 80px;
  font-family: "Outfit";
  margin: 0;
  color: var(--secondary-color);
}
.rev_bx {
  padding: 50px;
  border-radius: 40px;
  border: 1px solid #c4c4c4;
  background: #f8f8f8;
  height: 100%;
}

.rev_bx .stars {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.rev_bx .stars > p {
  margin: 0;
  font-size: 28px;
  font-family: "Outfit";
  font-weight: 500;
}

.rev_bx p {
  font-family: "MADE Tommy";
  font-size: 18px;
}

.rev_bx .title_bx {
  display: flex;
  align-items: end;
  gap: 15px;
}

.rev_bx .title_bx .img_bx {
  position: relative;
}
.rev_bx .title_bx .img_bx:after {
  content: "";
  height: 50%;
  width: 100%;
  background: url(../images/qoute.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50%;
  z-index: 0;
}

.rev_bx .title_txt h6 {
  margin: 0;
  color: var(--primary-color);
  font-family: "Outfit";
  font-size: 28px;
}

.rev_bx .title_txt p {
  margin-bottom: 5px;
}
/* testimonials css  */

/* footer css */
footer .top_footer {
  padding: 50px 0;
  background: url(../images/faq_bg.webp) no-repeat center center/cover;
}
.logo_desc img {
  width: 180px;
}

.logo_desc p {
  color: #fff;
  font-family: "Outfit";
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}

.socials_links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socials_links a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  &:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }
}
.footer_links {
  margin-top: 20px;
}

.footer_links h4 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
}

.footer_links ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 0;
}

.footer_links ul a {
  color: #fff;
  font-size: 16px;
  font-family: "Outfit";
  font-weight: 300;
  display: flex;
  align-items: start;
  gap: 10px;
}

.footer_links ul a i {
  margin-top: 5px;
  width: 15px;
}

.footer_links ul li {
  margin-bottom: 15px;
}
form.newsletter_form p,
form.newsletter_form label {
  color: #fff;
  font-size: 16px;
  font-family: "Outfit";
  font-weight: 300;
}
form.newsletter_form .input-group input::placeholder {
  color: #fff;
}
form.newsletter_form .input-group input {
  width: 100%;
  border-radius: 50px !important;
  padding: 15px 0 15px 15px;
  font-size: 13px;
  font-family: "Outfit";
  background: none;
  border: none;
  position: relative;
  height: 100%;
  z-index: 1;
  color: #fff;
}
form.newsletter_form .input-group:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(139 139 139 / 70%);
  opacity: 0.2;
  z-index: 0;
  height: 100%;
  border-radius: 50px;
}

form.newsletter_form .input-group button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 35px;
  width: 35px;
  border-radius: 50% !important;
  background: var(--primary-color);
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
  &:hover {
    background: #fff;
  }
  &:hover img {
    filter: invert(1);
  }
}
.bottom_footer {
  background: #0c4a85;
  color: #fff;
  padding: 50px 0 0;
}

.btm_footer_links h5 {
  font-size: 24px;
  margin-bottom: 10px;
}

.btm_footer_links ul a {
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit";
}

.btm_footer_links ul li {
  margin-bottom: 6px;
}
.copy_right {
  padding: 20px 0;
  border-top: 1px solid #ffffff80;
}

.copy_right p {
  font-family: "Outfit";
  font-size: 16px;
  font-weight: 200;
}

.copy_right a.tp_link {
  font-size: 16px;
  font-weight: 200;
  font-family: "Outfit";
}
.modal-content {
  border-radius: 20px;
}

.modal-body {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  border-radius: 15px;
}

.modal-body .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  filter: invert(1);
  opacity: 1;
}

.modal-body h3 {
  margin: 10px 0 30px;
  font-size: 35px;
}

.floating_wrap,
.floating_wrap .btns_wrap {
  position: fixed;
  right: 0;
}

.floating_wrap .btns_wrap .call_wrap,
.floating_wrap .btns_wrap .chat_wrap {
  position: absolute;
  right: -225px;
  width: 275px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  border-radius: 50px 0 0 50px;
  background: #fff;
  font-family: "Outfit";
  font-weight: 600;
}
.floating_wrap {
  top: 171px;
  z-index: 1000;
}

.floating_wrap .btns_wrap a:hover {
  text-decoration: none !important;
  right: 0;
}

.floating_wrap .btns_wrap .call_wrap {
  top: 60px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.floating_wrap .btns_wrap .call_wrap span {
  color: var(--primary-color);
  font-size: 16px;
  vertical-align: middle;
  background: #fff;
  padding: 0 5px;
}

.floating_wrap .btns_wrap .chat_wrap {
  display: block;
  text-decoration: none;
  top: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.floating_wrap .btns_wrap .call_wrap span.icoo,
.floating_wrap .btns_wrap .chat_wrap span.icoo {
  color: #fff;
  background: var(--primary-color);
  font-size: 20px;
  line-height: 1;
  padding: 14px 20px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}

.floating_wrap .btns_wrap .chat_wrap span {
  color: var(--primary-color);
  font-size: 14px;
  vertical-align: middle;
  background: #fff;
  padding: 0 5px 0 5px;
}
/* footer css */

/* Packages page css */
.packages {
  padding: 100px 0;
}

.packages .title_txt h2 {
  font-size: 50px;
}
.packages .title_txt p {
  font-size: 18px;
  color: #5e5e5e;
}

.package_bx {
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
}
.package_bx:hover {
  box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
}

.package_bx h3 {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.package_bx p {
  font-size: 16px;
  color: #5e5e5e;
  margin-bottom: 20px;
}
.package_bx ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  height: 300px;
  overflow-y: scroll;
}
.package_bx ul::-webkit-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
}
.package_bx ul::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.package_bx ul::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 6px;
  border: 3px solid rgba(0, 0, 0, 0.1);
}
.package_bx ul li {
  font-size: 16px;
  color: #1c1c1c;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  font-family: "Outfit";
  font-weight: 300;
}
.package_bx ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}
.price_txt {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-family: "Outfit";
  font-weight: 500;
}

/* Packages page css */
