:root {
  --p-color: #0964bc;
  --s-color: #000;
}

* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  background: #f8f8f8;
}

::selection {
  background: #000;
  color: #fff;
}

a,
p {
  font-family: "Outfit", sans-serif;
  text-decoration: none;
}

span {
  color: var(--p-color);
}
h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 400;
  color: #000;
}

h1 {
  font-size: 65px;
  line-height: 81px;
  color: #000;
  font-weight: 700;
}

p {
  color: #4b4b4b;
  font-size: 18px;
  line-height: 37px;
  font-weight: 500;
  text-align: justify;
  margin: 0;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--p-color);
}
.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.ptb-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.btn-blue {
  background: var(--p-color);
  color: #fff;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 20px 15px 20px;
  border-radius: 50px;
  border: 1px solid var(--p-color);
  transition: 0.3s all ease-in-out;
  &:hover {
    background: #fff;
    color: var(--p-color);
  }
  &:hover img {
    filter: invert();
  }
}

.btn_dflt {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.btn_dflt.prb:hover {
  background: var(--s-color);
}
.btn_dflt.lib:hover {
  background: var(--p-color);
  color: #fff;
}
.btn_dflt.seb:hover {
  background: var(--p-color);
}

.btn-darkg {
  background: var(--p-color);
  color: #fff;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 30px 15px 30px;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}

.btn-livechat {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 30px 15px 30px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}

header {
  width: 100%;
  position: absolute;
  left: 0;
  /* transform: translateX(-50%); */
  top: 0;
  z-index: 9;
}
nav a.nav-link {
  color: #000000;
  font-size: 16px;
  position: relative;
}
nav a.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: var(--p-color);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
nav a.nav-link:hover,
nav a.nav-link:active,
nav a.nav-link.active,
nav a.nav-link:focus {
  color: var(--p-color) !important;
  font-weight: 500;
}
nav a.nav-link:hover:before,
nav a.nav-link:active:before,
nav a.nav-link.active:before,
nav a.nav-link:focus:before {
  opacity: 1;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--p-color);
}

.navbar-nav .dropdown-menu {
  background: #000;
  height: 400px;
  overflow-y: auto;
}
.navbar-nav .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  background: #000;
}
.navbar-nav .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--p-color);
  border-radius: 10px;
}

.offcanvas-header .btn-close {
  opacity: 1;
  /* filter: invert(); */
}
.navbar-nav .dropdown-menu a {
  color: #fff;
}

.navbar-nav .dropdown-menu a:hover,
.navbar-nav .dropdown-menu a.active,
.navbar-nav .dropdown-menu a:active,
.navbar-nav .dropdown-menu a:focus {
  color: #fff;
  background: var(--p-color);
}

nav ul.navbar-nav {
  gap: 15px;
}
.prc {
  color: var(--p-color);
}
.ser {
  color: var(--s-color);
}
.prb {
  background: var(--p-color);
  color: #fff;
  border: 1px solid var(--p-color);
}
.seb {
  background: var(--s-color);
  color: #fff;
  border: 1px solid var(--s-color);
}
.lib {
  background: #fff;
  color: #333333;
  border: 1px solid #707070;
  &:hover img {
    filter: grayscale() invert() brightness(7);
  }
}

.offcanvas-body .navbar-nav .dropdown-menu a {
  color: #fff;
  &:hover {
    background-color: var(--p-color);
    color: #fff;
  }
}
button.navbar-toggler {
  background: #000;
}

button.navbar-toggler span {
  filter: invert(1);
}

.hero-bg {
  background: linear-gradient(90deg, #c3cdffba 0%, #90c3f4ba 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  padding: 160px 0 180px;
  position: relative;
}

.hero-banner-content {
  margin: 0 auto;
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-banner-content p {
  color: #383838;
}

.form_bx {
  background: linear-gradient(327.56deg, #d8e7ff -1.44%, #ffffff 67.44%);
  border: 1px solid rgba(207, 207, 207, 0.6);
  /* -webkit-backdrop-filter: blur(52px); */
  backdrop-filter: blur(52px);
  border-radius: 15px;
  padding: 30px;
}

.check_bx {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.check_bx .form-group {
  display: flex;
  gap: 7px;
}

.form_bx h3 {
  margin: 5px 0;
  font-size: 20px;
}
.frm-button input {
  width: 100%;
  padding: 15px;
  border: none;
  margin: 10px 0;
}

.hero-banner-content h2 {
  color: #9fd50b;
  background: rgb(255 255 255);
  border: 1px solid rgba(207, 207, 207, 0.6);
  box-shadow: 0px 4px 34px rgba(240, 157, 66, 0.3);
  -webkit-backdrop-filter: blur(52px);
  backdrop-filter: blur(52px);
  border-radius: 15px;
  padding: 10px 15px;
  font-size: 35px;
}
img.float_img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.form_bx h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 46px;
  line-height: 39px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--p-color);
}

.form_bx select,
.form_bx input.form-control,
.form_bx textarea {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  background: #efefef;
  padding: 15px 0 10px 15px;
}

.form_bx h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 38px;
  color: var(--p-color);
}

.form_bx .form-check-flex {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
}
.form_bx .form-check-flex label {
  font-size: 18px;
}

.form_bx button.submit-btn {
  background: var(--p-color);
  border-radius: 5px;
  border: 1px solid var(--p-color);
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  padding: 10px;
  transition: 0.3s all ease-in-out;

  &:hover {
    background: var(--s-color);
    color: #fff;
    border-color: var(--s-color);
  }
}

.cta_mobile {
  display: none;
}

.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;
}
.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(--p-color);
  font-size: 14px;
  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(--p-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(--p-color);
  font-size: 14px;
  vertical-align: middle;
  background: #fff;
  padding: 0 5px 0 5px;
}

footer {
  background: #000;
  padding: 90px 0 0;
}
footer * {
  color: #fff;
  text-decoration: none;
  list-style: none;
  padding: 0;
}

footer h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
}
footer h3:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 25px;
  height: 3px;
  background: var(--p-color);
}

footer ul.quick_links {
  margin: 25px 0 0;
}

footer ul.quick_links li {
  margin: 5px 0;
}
footer ul.contact_info {
  margin: 25px 0 0;
}
footer ul.contact_info li {
  margin: 15px 0;
}
footer .copy_right {
  padding: 20px 0;
  border-top: 1px solid #565656;
  margin-top: 50px;
}

footer p {
  font-size: 16px;
  text-align: left;
}

footer ul li a {
  font-size: 15px;
}
.foot_logo {
  width: 230px;
  filter: grayscale(1) invert() brightness(7);
}
footer .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 60px;
}

footer .socials a {
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s all ease-in-out;
  &:hover {
    background: var(--p-color);
  }
}

.modal-content {
  border-radius: 20px;
}

.modal-body {
  color: #fff;
  text-align: center;
  border-radius: 15px;
  padding: 0;
}

.modal-body .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  /* filter: invert(1); */
  z-index: 1;
  opacity: 1;
}

.modal-body h3 {
  margin: 10px 0 30px;
  font-size: 35px;
  color: #000;
}

/* clogo section */

section.clogos {
  background: var(--p-color);
  padding: 50px 0;
}

/* clogo section */

section.exclusive h2 {
  font-size: 48px;
  line-height: 60px;
}

section.exclusive .row .col-lg-6:first-child {
  padding-right: 50px;
}

.brand_imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta_banner {
  position: relative;
}

.cta_banner:before {
  content: "";
  height: 50%;
  width: 100%;
  background: var(--p-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-55%);
  z-index: -1;
  border-radius: 30px;
}

.cta_banner h2 {
  color: #fff;
  font-size: 42px;
}

.cta_banner p {
  color: #fff;
}

.cta_content > .d-flex a:first-child {
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  &:hover {
    color: #fff;
    background: var(--s-color);
  }
  &:hover img {
    filter: invert();
  }
}

.cta_content > .d-flex a:last-child {
  color: #fff;
  border: 1px solid #fff;
  &:hover {
    background: #fff;
    color: #000;
  }
  &:hover img {
    filter: invert();
  }
}

/* portfolio section */
/* .tab-pane {
  transition: opacity 0.4s ease;
} */

.port_slider .item {
  padding: 0 5px;
}
/* --- Tabs --- */
.custom-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
}
.custom-tabs::before {
  content: "";
  height: 1px;
  width: 90%;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.custom-tabs button {
  background: transparent;
  color: #333;
  text-transform: uppercase;
  padding: 8px 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}
.custom-tabs button::before {
  content: "";
  height: 2px;
  width: 0;
  background: var(--p-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
.custom-tabs button:hover::before,
.custom-tabs button.active::before {
  width: 100%;
}

.port_slider img {
  transition: transform 0.3s ease;
}

.port_slider img:hover {
  transform: scale(0.9);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* portfolio section */

/* partner section */

section.partners {
  padding: 50px 0;
  background: linear-gradient(270deg, #0082ff 0%, #0964bc 100%);
}

section.partners a.lib {
  border-color: #fff;
  &:hover {
    background: #000;
  }
}

section.partners a.chat_btn {
  color: #fff;
  font-size: 24px;
  transition: 0.3s all ease-in-out;
  &:hover {
    color: #000;
  }
}

section.partners a.chat_btn span {
  font-size: 16px;
  color: #fff;
}

section.partners h6 {
  color: #fff;
  font-size: 18px;
}

section.partners h3 {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 15px;
}

/* partner section */

/* service+cta section */

section.service_section {
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}
section.service_section .container {
  position: relative;
}

.serv_cta {
  /* padding: 10px 0 30px; */
  position: relative;
}

.serv_cta:before {
  content: "";
  height: 100%;
  width: 105%;
  position: absolute;
  background: #e0f5ff;
  z-index: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.serv_cta .row {
  position: relative;
  overflow: hidden;
}

section.service_section:before {
  content: "";
  height: 90%;
  width: 98%;
  position: absolute;
  left: 50%;
  top: 200px;
  transform: translateX(-50%);
  background: url(../images/serv_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.serv_cta_bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  justify-content: center;
  padding: 15px;
  position: relative;
}

.serv_cta_bx:before {
  content: "";
  height: 135%;
  width: 135%;
  background: url(../images/serv_cta_bg.webp);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
}

.serv_cta_bx > * {
  position: relative;
}

.serv_cta_bx h2 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
}

.serv_cta_bx p {
  font-size: 16px;
  text-align: center;
  color: #666666;
}
.services h2 {
  font-size: 50px;
  font-weight: 500;
}

.services p {
  color: #666666;
  text-align: center;
}

.serv_bx {
  border: 1px solid #d2cbc6;
  border-radius: 20px;
  padding: 60px 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 100%;
  transition: 0.4s all ease-in-out;
  &:hover {
    background: #fff;
  }
}

.serv_bx p {
  font-size: 18px;
  line-height: 24px;
}

.serv_bx h4 {
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

.serv_bx .icon_bx img {
  width: 55px;
}

.serv_bx .icon_bx strong {
  font-size: 70px;
  position: absolute;
  line-height: 1;
  top: -30px;
  left: 20px;
  color: #ffffff99;
  transition: 0.4s all ease-in-out;
}
.serv_bx:hover .icon_bx strong {
  color: #00000099;
}

.serv_bx .icon_bx {
  position: relative;
  margin-left: -50px;
}

/* service+cta section */

/* testimonial section */

section.testimonials {
  padding: 100px 0;
  background: url(../images/elipses.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

section.testimonials span {
  font-size: 18px;
}

section.testimonials h2 {
  font-size: 49px;
  line-height: 60px;
  font-weight: 500;
}

section.testimonials h5 {
  color: #666666;
  font-size: 18px;
}
.rev_bx {
  padding: 0 30px;
  position: relative;
}
.rev_bx p {
  text-align: left;
  font-size: 18px;
  color: #666666;
  margin-bottom: 80px;
}

.rev_info > img {
  margin-bottom: 24px;
}

.info_bx {
  display: flex;
  gap: 20px;
}

.info_titles h5 {
  margin-bottom: 0;
  font-size: 22px !important;
}
section.testimonials .slick-dots {
  text-align: start;
  bottom: -50px;
}

section.testimonials .slick-dots li button {
  width: 60px;
}

section.testimonials .slick-dots li {
  width: 60px;
}

section.testimonials .slick-dots li button:before {
  background: #c5c5c5;
  width: 100%;
  opacity: 1;
  height: 5px;
  content: "";
}

section.testimonials .slick-dots li.slick-active button:before {
  background: var(--p-color);
}

.rev_bx:before,
.rev_bx:after {
  content: "";
  height: 50%;
  width: 1px;
  background: #000;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: 0.5s all ease-in-out;
}
.rev_bx:before {
  left: 0;
}
.rev_bx:after {
  right: 0;
}
.rev_slider .slick-current.slick-active.slick-center .rev_bx:before,
.rev_slider .slick-current.slick-active.slick-center .rev_bx:after {
  opacity: 1;
}

/* testimonial section */

/* services sections */

section.content_sect {
  background: url(../images/services_bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

/* services sections */


.contact-icons div {
  align-items: center;
  font-size: 14px;
  color: #fff;
}

.contact-icons li svg {
  padding: 15px;
  color: #022e49;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
  height: 60px;
  width: 60px;
}

.contact-icons {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}
.contact-icons h3 {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
.cont_details {
  background: var(--p-color);
  height: 100%;
  padding: 20px;
  border-radius: 20px;
}

.contact_form {
  padding: 90px 0;
}

.contact_form .form_bx {
  padding: 40px 30px;
  border-radius: 20px;
  background: #fbfbfb;
  box-shadow: 0px 4px 64px rgb(9 100 188 / 40%);
}
.contact_form .form_bx h3{
  font-size: 45px;
}
strong.ico_bx i {
    font-size: 45px;
}

.v_live
{
    background:#fff;
    color:#000 !important;
    width:fit-content;
    border-radius:20px;
    font-size: 17px !important;
    padding: 9px 24px;
}

.v_live:hover
{
    background:#000;
    color:#fff !important;
}

.exclusive.ptb-150 p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.only_one
{
    width:70px
}

.item img {
    height: 100%;
    border-radius:10px;
}

