@import url("https://fonts.googleapis.com/css2?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=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #171717;
  --sky-blue: #3ed5dd;
  --white: #ffffff;
  --black: #171717;
  --poppins: "Poppins", sans-serif;
  --titillium: "Titillium Web", sans-serif;
}

.blue_txt {
  color: var(--sky-blue) !important;
}

body {
  background: var(--black);
  position: relative;
}

body::before {
  position: absolute;
  content: "";
  background: url(../images/shapes/upper_shape.png);
  background-size: cover;
  top: 0;
  left: 0;
  width: 55%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.padding_70 {
  padding: 70px 0px;
}

.margin_70 {
  margin: 70px 0px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong,
label,
a.nav-link,
ul,
li,
ol,
i {
  list-style: none;
  color: #fff;
  margin: 0;
  padding-left: 0;
}

.titillium {
  font-family: "Titillium Web", sans-serif;
}

.text_sky-blue {
  color: var(--sky-blue);
}

.info_top h1.heading {
  font-weight: 700 !important;
  text-transform: capitalize;
}
.sub_info h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  font-family: var(--poppins);
}
.sub_info p {
  font-size: 24px;
  font-weight: 300;
  line-height: 34px;
  font-family: var(--poppins);
}

.blue_btn {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  font-family: var(--titillium);
  width: max-content;
  text-align: center;
  background: var(--sky-blue);
  color: #000 !important;
  border: none !important;
  border-radius: 10px;
  padding: 12px 15px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* header */

ul.navbar-nav {
  background: #cef9fe13;
  padding: 15px;
  border-radius: 50px;
  gap: 30px;
}

img.nav_logo {
  max-width: 120px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  background: transparent;
  padding: 8px 20px !important;
  border-radius: 50px;
  font-family: var(--titillium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  width: max-content;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  background: var(--sky-blue);
  color: #fff !important;
  padding: 8px 20px;
}

.navbar-toggler,
.navbar-toggler:focus {
  box-shadow: none;
  border: 1px solid #fff;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.fa-bars:before {
  content: "";
}

/* footer */

footer {
  background: var(--black);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

footer::before {
  position: absolute;
  content: "";
  background: url(../images/shapes/blue_blur_circle.png);
  background-size: cover;
  bottom: -300px;
  left: -300px;
  width: 800px;
  height: 800px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

footer::after {
  position: absolute;
  content: "";
  background: url(../images/shapes/blue_blur_circle.png);
  background-size: cover;
  top: -300px;
  right: -300px;
  width: 800px;
  height: 800px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.ftr_logo_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.social_links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.social_links a {
  border: 1px solid #fff;
  padding: 8px;
  display: flex;
  border-radius: 8px;
  align-items: center;
}

h3.ftr_title {
  font-size: 21px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--titillium);
  margin-bottom: 20px;
}

ul.ftr_list_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

li.ftr_item {
  display: flex;
  align-items: center;
  gap: 20px;
}

li.ftr_item a {
  color: #fff;
  transition: 0.3s ease;
}

li.ftr_item a:hover {
  color: var(--sky-blue);
}

.copyright {
  border-top: 1px solid #fff;
}

/* HOMEPAGE */

.info h1.heading {
  font-size: 80px;
  line-height: 90px;
  font-weight: 500;
  font-family: var(--poppins);
}

.main_bnr .info h1.heading {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--poppins);
}

.info h1.heading span {
  font-weight: 700;
}

.info p.subtitle {
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
  font-family: var(--poppins);
}
.home_bnr .info p.dscp {
  font-size: 24px;
}

.main_bnr {
  position: relative;
}

.main_bnr::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/blue_blur_circle.png");
  background-size: cover;
  right: 0;
  top: -500px;
  width: 1000px;
  height: 1000px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top left;
}

.info p.dscp {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  font-family: var(--poppins);
}

.home_img {
  width: 100%;
}

.who_we_are {
  position: relative;
}

.who_we_are::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: url(../images/shapes/right_shape2.png);
  width: 350px;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.who_we_are .img_box {
  position: relative;
  height: 100%;
}

.who_we_are .overlay_img {
  position: absolute;
  top: 40%;
  left: 100px;
}

.info h2.heading {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  font-family: var(--poppins);
  color: #d1d0cb;
  text-transform: capitalize;
}

.info h2.main_heading {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  font-family: var(--poppins);
  color: #fff;
  text-transform: capitalize;
}

.info label.heading_label {
  font-size: 21px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--poppins);
  color: #d1d0cb;
  text-transform: uppercase;
}

.cnt p {
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
  font-family: var(--poppins);
  margin: 15px 0px;
}

.card {
  background: #ffffff0d;
  padding: 25px;
  border-radius: 20px;
  border: 2px solid #00000010;
  transition: 0.3s ease;
  gap: 10px;
}

.what_we_offer {
  position: relative;
}

.what_we_offer .card {
  padding: 50px 30px;
  border: 2px solid #00000010;
}

.card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #32333580, #5a5a5a00, #32333580);
  z-index: -1;
  backdrop-filter: blur(50px);
  /* box-shadow: 0 25px 45px rgba(255, 255, 255, 0.1); */
  border: none;
  border-radius: 20px;
}

.what_we_offer img {
  max-width: 70px;
  margin: auto;
  border: 1px solid var(--sky-blue);
  padding: 15px;
  border-radius: 50%;
  margin-top: -80px;
  margin-bottom: 25px;
  background: var(--black);
}

.card:hover {
  border: 2px solid var(--sky-blue);
}

.what_we_offer .card:hover img {
  background: var(--sky-blue);
  border-radius: 50%;
}

.info h2.heading span {
  font-size: 50px;
  line-height: 60px;
  color: #d1d0cb;
  text-transform: capitalize;
}

.content h4 {
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
  font-family: var(--poppins);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0px;
}

img.capability_img {
  display: flex;
  margin-left: auto;
}

.card h3.heading {
  font-size: 24px;
  line-height: 34px;
  font-family: var(--poppins);
}

.home_service .card {
  border: 2px solid #d1d0cb;
  min-height: 350px;
  height: 100%;
}

.mission_vision_sec .card {
  min-height: 180px;
  height: 100%;
  border: 2px solid var(--sky-blue);
}

.company_sec .card {
  min-height: 100%;
}

.company_sec .card img {
  max-width: 50px;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.testimonial .swiper-slide .card {
  background: #ffffff0d;
}

.testimonial .card {
  text-align: left;
  display: flex;
  align-items: flex-start;
}

.testimonial .swiper-slide .card::before {
  background: none;
}

.review_box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.owl-carousel .review_box img {
  width: 80px;
}

.info.text-center {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 75%;
  margin: auto;
}

.login_Sec .info.text-center {
  width: 100%;
}

.test_dscp {
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  font-family: var(--poppins);
  min-height: 130px;
  height: 100%;
}

.test_name {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--titillium);
}

p.designation {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-family: var(--poppins);
  margin: 5px 0px;
}

.testimonial_slider .swiper-wrapper {
  padding-bottom: 50px;
}

/* ABOUT US */

.who_We_are {
  position: relative;
}

.who_We_are::before {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/who_vector.png");
  background-size: cover;
  bottom: 180px;
  left: 0px;
  width: 259px;
  height: 600px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.who_We_are::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/right_shape2.png");
  background-size: cover;
  right: 0px;
  top: 72px;
  width: 340px;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}
.circle {
  position: relative;
  overflow: hidden;
}
.circle::after {
  position: absolute;
  content: "";
  background: #2fcadb60;
  filter: blur(148px);
  background-size: cover;
  bottom: 293px;
  right: -67px;
  width: 700px;
  height: 700px;
  opacity: 0.8;
  border-radius: 50%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
}
.circle::before {
  position: absolute;
  content: "";
  background: #2fcadb60;
  filter: blur(200px);
  background-size: cover;
  bottom: 29px;
  right: -75px;
  width: 421px;
  height: 421px;
  opacity: 0.8;
  border-radius: 50%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
}
.commitment_cnt.sub_info h2 {
  font-size: 42px !important;
}
.commitment_cnt.sub_info p {
  font-size: 21px !important;
}
.management {
  position: relative;
}
.management::before {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/management_top.png");
  background-size: cover;
  left: 0px;
  width: 227px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}
.management::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/management_right.png");
  background-size: cover;
  top: 24px;
  right: 0px;
  width: 380px;
  height: 700px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}
.value_box.sub_info p {
  font-size: 21px !important;
}
.value_compilance img {
  max-width: 50px;
}
.value_compilance h3 {
  line-height: 38px;
  font-size: 28px;
  font-weight: 600;
  margin: 8px 0px;
}
.value_compilance.card:hover img {
  background: transparent;
}
.value_compilance {
  padding: 20px;
  width: 100%;
  min-width: 255px;
}
.needs_box.sub_info p {
  font-size: 20px;
  line-height: 26px;
}
.need_box_icon {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  align-items: center;
}
.need_box_icon i {
  font-size: 35px;
  color: #2fcadb99;
}
.value {
  position: relative;
  overflow: hidden;
}
.value::before {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/who_vector.png");
  background-size: cover;
  top: 0%;
  left: 0px;
  width: 220px;
  height: 426px;
  opacity: 70%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}
.value::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/right_shape.png");
  background-size: cover;
  top: 23%;
  right: 1px;
  width: 229px;
  height: 593px;
  opacity: 70%;
  z-index: -2;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}
.ammend_cnt.sub_info p {
  font-size: 18px;
  line-height: 23px;
  width: 570px;
}
.ammend_img {
  text-align: center;
}
.ammended {
  position: relative;
  overflow: hidden;
}
.ammended::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/ammend_vctor.png");
  background-size: cover;
  right: 0;
  bottom: 145px;
  width: 105px;
  height: 332px;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

p.counter {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--sky-blue);
  font-family: var(--poppins);
}

/* services slider */

.trusted_item {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--poppins);
}

/* services_sec */

.services_sec .cnt h3 {
  font-weight: 600;
  font-size: 42px;
  line-height: 63px;
  font-family: var(--poppins);
}
.services_sec .cnt p {
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
  font-family: var(--poppins);
  text-transform: capitalize;
}

.services_sec {
  position: relative;
}

.services_sec::before {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/right_shape2.png");
  background-size: cover;
  right: 0px;
  top: -25px;
  width: 222px;
  height: 530px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.services_sec::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/left_shape.png");
  background-size: cover;
  left: 0px;
  bottom: -25px;
  width: 222px;
  height: 530px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

/* GALLERY */

.gallery .left_img {
  display: flex;
}

.gallery .left_img img {
  width: 50%;
}

.gallery .right_img img {
  width: 100%;
}

.gallery .img_padding {
  padding: 10px;
}
/* policy */
p.policy_dsp {
  color: #3ed5dd;
  font-weight: 600 !important;
}

/* contact */
.cntct_para .sub_info p {
  font-size: 20px;
  line-height: 28px;
}
.cntct_dsp {
  color: #3ed5dd;
  font-weight: 700 !important;
}
p.cntct_arbic_decrp {
  font-size: 13px;
}
p.info_cnct {
  font-size: 14px;
  line-height: 28px;
  padding: 15px 0px;
  font-weight: 700;
}
.cntct_form_box .form-control {
  background: #2c2d77 !important;
  color: #fff !important;
  opacity: 50%;
  outline: none !important;
  border: 1px solid #d9d9d9;
  box-shadow: none;
}
.transparent_btn {
  color: #fff;
  background: #3ed5dd;
  font-size: 20px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  justify-content: center;
  max-width: none;
}
form.cntct_form_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 10px;
}
.cntct_form_box input.form-control {
  height: 45px;
}
.map_cnt p {
  font-size: 26px;
  font-weight: 700;
}
.contact_sec {
  position: relative;
  overflow: hidden;
}
.contact_sec::before {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/left_shape.png");
  background-size: cover;
  top: 14%;
  left: -106px;
  width: 220px;
  height: 426px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}
.contact_sec::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/cntct_vctor.png");
  background-size: cover;
  top: 0%;
  right: 0px;
  width: 296px;
  height: 670px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}
.arabic_text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}
::placeholder {
  color: #fff !important;
}
p.sub_para {
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
}

/* SERVICES */

.risk_sec .circle::before {
  opacity: 0;
}

.circle::after {
  opacity: 40%;
}

.risk_sec.who_We_are {
  overflow: hidden;
}

.risk_sec.who_We_are::before {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/who_vector.png");
  background-size: cover;
  top: 0px;
  left: 0px;
  width: 188px;
  height: 459px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.service_box img {
  width: 100px;
}

.service_box h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  font-family: var(--poppins);
}

.service_box p {
  font-size: 16px;
  font-family: var(--poppins);
}

.service_box.card {
  min-height: 380px;
  display: flex;
  justify-content: center;
  height: 100%;
}

.service_sec {
  position: relative;
  overflow: hidden;
}

.service_sec::before {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/who_vector.png");
  background-size: cover;
  left: 0px;
  top: -25px;
  width: 222px;
  height: 530px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.service_sec::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/service_right.png");
  background-size: cover;
  right: 0px;
  top: 600px;
  width: 690px;
  height: 75%;
  z-index: -2;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.service_sec .circle::after {
  position: absolute;
  content: "";
  background: #2fcadb60;
  filter: blur(140px);
  background-size: cover;
  top: -64px;
  left: -250px;
  width: 400px;
  height: 400px;
  opacity: 0.8 !important;
  border-radius: 50%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
}

.service_sec .circle {
  overflow: visible;
}

.require_service .sub_info p {
  font-size: 18px;
  line-height: 28px;
  padding-right: 70px;
}

.require_box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.require_service {
  position: relative;
  overflow: hidden;
}

.require_service::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/require_right.png");
  background-size: cover;
  right: 0px;
  top: 0px;
  width: 231px;
  height: 627px;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
  opacity: 0.7;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.service_vector_img {
  position: relative;
  overflow: hidden;
}

.service_vector_img::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/service_vector.png");
  background-size: cover;
  right: 0px;
  top: 0px;
  width: 230px;
  height: 246px;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}

.service_vector_img .circle {
  overflow: visible;
}

.service_vector_img .circle::before {
  position: absolute;
  content: "";
  background: #2fcadb60;
  filter: blur(90px);
  background-size: cover;
  bottom: 0px;
  right: 0px;
  width: 221px;
  height: 300px;
  opacity: 0.8;
  border-radius: 50%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
}

/* OUR POLICIES */

.our_policies {
  position: relative;
  overflow: hidden;
}
.our_policies::after {
  position: absolute;
  content: "";
  background: url("/assets/images/shapes/right_shape.png");
  background-size: cover;
  top: -57%;
  right: 0px;
  width: 230px;
  height: 660px;
  z-index: -2;
  opacity: 0.8;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(40%) sepia(21%) saturate(1141%) hue-rotate(134deg)
    brightness(92%) contrast(100%);
}
.circle_policy {
  position: relative;
  overflow: hidden;
}
.circle_policy::after {
  position: absolute;
  content: "";
  background: #2fcadb60;
  filter: blur(200px);
  background-size: cover;
  bottom: 456px;
  right: -380px;
  width: 700px;
  height: 700px;
  opacity: 0.8;
  border-radius: 50%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
}
.ftr_logo_box img.ftr-logo {
  width: 200px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--sky-blue);
}

.gallery_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login_Sec input,
.login_Sec select,
.login_Sec textarea {
  background: transparent !important;
  border: 1px solid var(--sky-blue) !important;
  color: #fff !important;
}

.text-danger li {
  color: red;
}

/* careers */

.work_with_us .info {
  width: 100%;
}
.work_with_us .info .dscp {
  font-weight: 300;
}

.job_openings .card {
  border: 1px solid var(--sky-blue);
  min-height: 150px;
  justify-content: center;
}

.job_title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--poppins);
}

.job_location {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--poppins);
}

.form-control,
.form-control:focus,
.form-control:active {
  background: transparent !important;
  border: 1px solid var(--sky-blue) !important;
  color: #fff;
}

/* CONTACT PAGE */

.contact_infobox .contact_icons i {
  font-size: 24px;
  background: var(--sky-blue);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}