@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Rubik:wght@400;500;600;700;800&display=swap");
body {
  font-family: "Rubik", sans-serif;
  color: #444444;
}
a:hover {
  color: unset;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
*,
a {
  text-decoration: none;
}
a {
  color: unset;
}
input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: none;
  box-shadow: none;
}
button:hover {
  background: transparent;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
p {
  margin-bottom: 0;
}
p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #444444;
  margin-bottom: 27px;
}
p:last-child {
  margin-bottom: 0;
}
::selection {
  color: #ffffff;
  background: #09286c;
}
*::-webkit-scrollbar {
  width: 1px;
  cursor: pointer;
}
*::-webkit-scrollbar:horizontal {
  height: 3px;
  cursor: pointer;
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px #444444;
  border-radius: 30px;
}
*::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 30px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}
.heading h3 {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 1.8px;
  color: #666666;
  font-weight: 400;
  margin-bottom: 10px;
  display: inline-block;
}
.heading h2 {
  font-size: 38px;
  line-height: 1.4;
  color: #09286c;
  font-weight: 500;
  position: relative;
}
.heading.text-white h2 {
  color: #ffffff;
}
.pt-6 {
  padding-top: 4.5rem;
}
.py-6 {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}
header {
  position: sticky;
  z-index: 99;
  display: block;
  top: 0;
  background: #ffffff;
}
header nav.navbar {
  box-shadow: 0px 4px 6px rgb(0 0 0 / 26%);
  z-index: 2;
}
header .navbar .navbar-brand {
  position: relative;
  z-index: 2;
  transition: 0.5s all;
  padding: 0;
}
header .navbar .navbar-nav .nav-item {
  padding: 0 15px;
  transition: 0.5s all;
}
header .navbar .navbar-nav .nav-item .nav-link {
  color: #444444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
  padding: 0 5px;
  position: relative;
  transition: 0.4s all;
}
header .navbar .navbar-nav .nav-item .nav-link::before,
header .navbar .navbar-nav .nav-item .nav-link::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  opacity: 0;
  background-color: #09286c;
  transition: all 0.5s;
}
header .navbar .navbar-nav .nav-item .nav-link::before {
  top: -3px;
}
header .navbar .navbar-nav .nav-item .nav-link::after {
  bottom: -3px;
  right: 10px;
  background-color: #1eace3;
}
header .navbar .navbar-nav .nav-item .nav-link:hover::before,
header .navbar .navbar-nav .nav-item .nav-link:hover::after,
header .navbar .navbar-nav .nav-item .nav-link.active::before,
header .navbar .navbar-nav .nav-item .nav-link.active::after {
  width: 100%;
  opacity: 0.7;
}
header .navbar .contact_info {
  display: flex;
  align-items: center;
}
header .navbar a.req_btn {
  border: 2px solid #1eace3;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  padding: 7px 20px;
  position: relative;
  margin: 0 12px;
  color: #444444;
  overflow: hidden;
  transition: 0.4s all;
}
header .navbar .phone_btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #1eace3;
  padding: 0;
  margin: 0 12px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
header .navbar .phone_btn:hover {
  border-color: #09286c;
}
header .navbar .phone_btn img {
  width: 75%;
  min-width: 20px;
  max-width: max-content;
}
.social {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}
.social ul {
  list-style-type: none;
  padding: 0;
}
.social ul li {
  list-style: none;
  display: block;
  margin: 0;
  text-align: right;
  transition: all 1s;
}
.social ul li.twitter:hover {
  background-color: #55acee;
}
.social ul li a {
  color: white;
  text-decoration: none;
  width: 65px;
  height: 65px;
  display: block;
  border-radius: 50%;
  padding: 15px;
  background: #1fc114;
}
/* social icon end */
.contact .contact_detail {
  background: #09286c;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  padding: 39px 49px;
  overflow: hidden;
}
.contact .contact_detail::before {
  background: url("../images/footer_bg.png");
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.52;
  background-attachment: fixed;
}
.contact .contact_detail .address {
  position: relative;
  display: flex;
  align-items: center;
}
.contact .contact_detail .address .icon {
  background: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 31px;
  border-radius: 50%;
}
.contact .contact_detail .address .icon img {
  max-width: 25px;
  width: 57%;
  height: 60%;
}
.contact .contact_detail .address .info h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 6px;
}
.contact .contact_detail .address p {
  margin-bottom: 0;
  color: #fff;
  white-space: pre-line;
}
footer {
  padding-bottom: 34px;
  display: block;
  position: relative;
}
footer:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 77px);
  background-color: #def6ff;
  z-index: -1;
}
footer .footer_menu {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}
footer .footer_menu > img {
  max-width: 300px;
  width: 35%;
}
footer .footer_menu ul,
footer .footer_menu .social_icon {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  padding-left: 0;
  margin: 26px 0 0 0;
}
footer .footer_menu ul li {
  padding: 0 15px;
  list-style: none;
}
footer .footer_menu ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #444444;
  text-decoration: none;
}
footer .footer_menu ul.social_icon > li > a {
  font-size: 23px;
  color: #002581;
}
footer .footer_bottom {
  background: #fff;
}
.footer_bottom p {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 0;
  color: #444;
}
.footer_bottom .footer_part_two {
  text-align: right;
}

.footer_bottom .footer_part_two a{
  color: #09286c;
    font-weight: 500;
}

header .navbar a.req_btn:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1eace3;
  bottom: 0;
  z-index: -1;
  transition: 0.4s all;
  border-radius: 50px;
  transform: scaleY(0);
  transform-origin: bottom;
}
header .navbar a.req_btn:hover:before {
  transform: scaleY(1);
}
header .navbar a.req_btn:hover {
  color: #ffffff;
}
header .navbar .phone_btn:hover {
  background: transparent;
}
header .navbar .phone_btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1);
  width: 100%;
  height: 100%;
  background: #1eace3;
  border-radius: 50px;
  transition: 0.4s all;
  z-index: -1;
}
header .navbar .phone_btn:hover:before {
  transform: scale(0.9);
}
/* breadcrumb start  */
.sub_banner {
  width: 100%;
  height: 158px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  background: rgb(107, 187, 188);
  background: -moz-linear-gradient(
    180deg,
    rgba(107, 187, 188, 1) 0%,
    rgba(68, 119, 208, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(107, 187, 188, 1) 0%,
    rgba(68, 119, 208, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(107, 187, 188, 1) 0%,
    rgb(88 154 198) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6bbbbc", endColorstr="#4477d0", GradientType=1);
}
.sub_banner h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  text-shadow: 2px 2px 7px rgb(0 0 0 / 20%);
}
.breadcrumb_scssn .breadcumbs {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
}
.breadcrumb_scssn ul {
  margin: 0;
}
.breadcrumb_scssn ul li.breadcrumb-item {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.7;
  text-transform: uppercase;
}
.breadcrumb_scssn ul li.breadcrumb-item a {
  color: rgb(255 255 255 / 65%);
}
.breadcrumb_scssn ul .breadcrumb-item + .breadcrumb-item::before {
  color: rgb(255 255 255 / 65%);
}
/* breadcrumb End */
/* common button  */
.detail_btn {
  color: #444444 !important;
  background-color: transparent;
  border: 2px solid #1eace3 !important;
  border-radius: 5px;
  padding: 12px 27px;
  position: relative;
  transition: 0.6s all;
  z-index: 1;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  overflow: hidden;
}
.detail_btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: 0.6s all;
  z-index: -1;
  background: #1eace3 !important;
  transform: scale(1);
  border-radius: 50px;
}
.detail_btn:hover {
  color: #fff !important;
  border-radius: 50px;
}
.detail_btn:hover::before {
  width: 100%;
  transform: scale(1.1);
}
/*  */
/* .contact us page */
.common_form { display: block; position: relative; }
.common_form .form-group { position: relative; display: block; height: 100%; }
.common_form .form-group label { position: absolute; top: 28px; left: 14px; font-size: 14px; transition: 0.4s all; z-index: 0; font-weight: 500; color: #666666; /* background: #ffffff; */ padding: 2px 10px 2px 7px; text-transform: uppercase; letter-spacing: 1.5px; }
.common_form .form-group .form-control { padding: 25px 15px 15px 20px; border: none; border: 1px solid transparent; border-bottom-color: rgb(33 112 218 / 25%); height: 65px; background: transparent; box-shadow: 0px 8px 15px -10px rgb(0 0 0 / 5%); transition: 0.8s all; z-index: 1; border-radius: 0px 0px 0px 17px; position: relative; font-weight: 500; color: #666666; }
.common_form .form-group .form-control::placeholder {color: #444444; font-size: 16px; font-weight: 600; }
.common_form .form-group textarea.form-control { min-height: 130px; resize: none; height: 100%; }
.common_form .form-group .form-control:focus, .common_form .form-group .form-control:valid {border-color: #2173da; background: rgb(95 7 15 / 0%); box-shadow: 5px 5px 20px -5px rgb(151 151 151 / 37%); border-radius: 17px; } 
.common_form .form-group .form-control:valid+label, .common_form .form-group .form-control:focus+label {color: rgb(33 115 218 / 58%); font-size: 13px; top: 10px; left: 10px; font-weight: 500; z-index: 1; opacity: 1; height: 24px; line-height: 21px; }
.sub_heading h2 { font-size: 35px; }
.inquiry_modal_sccsn .modal-content { border: none; border-radius: 0px; background-color: transparent; /* margin: 50px 0; */ z-index: 0; padding: 100px 250px 100px 50px; }
.inquiry_modal_sccsn .modal-header { display: block; padding: 0; border-bottom: 0px; padding-bottom: 30px; }
.inquiry_modal_sccsn .modal-title { line-height: 1.4; color: #ffffff; font-weight: 500; font-size: 40px; }
.inquiry_form { display: block; position: relative; }
.inquiry_form .common_form .form-group label { color: rgb(255 255 255 / 77%); font-weight: 400; }
.inquiry_modal_sccsn ~ .modal-backdrop:after { background: -moz-linear-gradient(180deg, rgba(107,187,188,1) 0%, rgba(68,119,208,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6bbbbc", endColorstr="#4477d0", GradientType=1); }
.inquiry_modal_sccsn img.custom_shape { position: absolute; top: 0; right: 0; height: 100%; filter: drop-shadow(10px 0px 15px rgba(0,0,0,0.15)); z-index: -2; }
.inquiry_modal_sccsn .modal-content:before { content: ''; position: absolute; left: 0px; width: calc(100% - 150px); height: 100%; background: rgb(107,187,188); background: -moz-linear-gradient(180deg, rgba(107,187,188,1) 0%, rgba(68,119,208,1) 100%); background: -webkit-linear-gradient(180deg, rgba(107,187,188,1) 0%, rgba(68,119,208,1) 100%); background: linear-gradient(180deg, rgba(107,187,188,1) 0%, rgba(68,119,208,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6bbbbc", endColorstr="#4477d0", GradientType=1); z-index: -1; top: 0; border-radius: 30px 0 0 30px; }
.inquiry_modal_sccsn .modal-dialog { margin: 60px auto; max-width: 1100px; padding: 0 0 0 0; width: 83%; }
.inquiry_modal_sccsn button.btn-close { position: absolute; right: 2%; top: 3%; z-index: 99; color: #ffffff; background: transparent; width: 45px; height: 45px; opacity: 1; }
.inquiry_modal_sccsn button.btn-close:before, .inquiry_modal_sccsn button.btn-close:after { content: ''; position: absolute; left: 26px; top: 0; width: 2px; height: 100%; background: #ffffffe8; transform: rotate(45deg); transform-origin: center; }
.inquiry_modal_sccsn button.btn-close:after { transform: rotate(135deg); }
.inquiry_modal_sccsn .modal-header p { color: #ffffff; font-size: 18px; margin-bottom: 10px; }
.inquiry_form .common_form .form-group .form-control { border-bottom-color: rgb(255 255 255 / 70%); color: #ffffff;  }
.inquiry_form .detail_btn { border-color: #ffffff !important; color: #ffffff !important; }
.inquiry_form .detail_btn::before { background: #ffffff !important; }
.inquiry_form .common_form .form-group .form-control:focus, .inquiry_form .common_form .form-group .form-control:valid {border-color: #ffffff; box-shadow: 7px 7px 20px -5px rgb(0 0 0 / 12%); }
.inquiry_form .common_form .form-group .form-control:valid+label, .inquiry_form .common_form .form-group .form-control:focus+label {color: rgb(255 255 255 / 75%); }
.inquiry_modal_sccsn .modal-body { padding: 0; }
.inquiry_form .detail_btn:hover { color: #333333 !important; }


/* ----====== Whatsapp icon STAR ======---- */
#wtsapp {
  width: 75px;
  height: 75px;
  position: fixed;
  bottom: 60px;
  right: 40px;
  /* background: #02D661; */
  color: #fff;
  border: 0;
  border-radius: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

#wtsapp:before,
#wtsapp:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgb(37 211 102 / 63%);
  border-radius: 50%;
  z-index: -1;
}

#wtsapp:before {
  animation: btn_ring_anim 2s linear infinite;
}

#wtsapp:after {
  animation: btn_ring_anim 2s linear 1s infinite;
}

/* #wtsapp a {
	font-size: 35px;
	border-radius: 50px;
	color: white;
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	right: 8px;
	bottom: 8px;
	align-items: center;
	justify-content: center;
	border: 3px solid #ffffff;
} */

@keyframes btn_ring_anim {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ----====== Whatsapp icon END ======---- */

