@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/poppins/Poppins-Bold.ttf);
}
@font-face {
  font-family: "Poppins-ExtraBold";
  src: url(../fonts/poppins/Poppins-ExtraBold.ttf);
}
@font-face {
  font-family: "Poppins-Light";
  src: url(../fonts/poppins/Poppins-Light.ttf);
}
@font-face {
  font-family: "Poppins-Medium";
  src: url(../fonts/poppins/Poppins-Medium.ttf);
}
@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: "Saira-Bold";
  src: url(../fonts/Saira/Saira-Bold.ttf);
}
@font-face {
  font-family: "Saira-ExtraBold";
  src: url(../fonts/Saira/Saira-ExtraBold.ttf);
}
@font-face {
  font-family: "Saira-SemiBold";
  src: url(../fonts/Saira/Saira-SemiBold.ttf);
}
@font-face {
  font-family: "Saira-Light";
  src: url(../fonts/Saira/Saira-Light.ttf);
}
@font-face {
  font-family: "Saira-Medium";
  src: url(../fonts/Saira/Saira-Medium.ttf);
}
@font-face {
  font-family: "Saira-Regular";
  src: url(../fonts/Saira/Saira-Regular.ttf);
}
h1 {
  font-size: 48px;
  margin-bottom: 0;
}

h2 {
  font-size: 40px;
  margin-bottom: 0;
}

h3 {
  font-size: 32px;
  margin-bottom: 0;
}

h4 {
  font-size: 24px;
  margin-bottom: 0;
}

h5 {
  font-size: 20px;
  margin-bottom: 0;
}

h6 {
  font-size: 18px;
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  font-size: 16px;
  text-decoration: none;
  list-style: none;
}

p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 28px;
  color: #000000;
  font-family: "Poppins-Regular";
  font-family: "Poppins", sans-serif;
}

a {
  font-size: 15px;
  text-decoration: none;
  font-family: "Poppins-Regular";
  font-family: "Poppins", sans-serif;
  color: #000000;
}

.btn-close {
  filter: invert(99%) sepia(11%) saturate(762%) hue-rotate(223deg) brightness(110%) contrast(100%);
  opacity: 1;
}
.btn-close:focus {
  border: none;
  box-shadow: none;
}

form .form-control {
  margin-bottom: 20px;
  border-radius: 0;
}
form .form-control:focus {
  box-shadow: none;
}

.btn:focus {
  box-shadow: none;
}

.sticky-lg-top-120 {
  top: 120px;
  z-index: 1;
}

.primary_btn {
  position: relative;
  margin-left: 10px;
  background-color: #000000;
  color: #FFFFFF;
  outline: none;
  font-size: 15px;
  text-transform: capitalize;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  width: fit-content;
  border: 0;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.primary_btn:hover {
  background-color: #2C70AE;
  color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.primary_btn::after {
  position: relative;
  display: inline-block;
  content: "";
  margin-left: 10px;
  background-image: url("../images/svg/btnright.svg");
  width: 18px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
}
.primary_btn::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #2C70AE;
  left: -10px;
}

.heading {
  color: #000000;
  font-family: "Saira-SemiBold";
  margin-bottom: 20px;
}

.sub-heading {
  color: #000000;
  font-family: "Saira-Bold";
  margin-bottom: 10px;
}

.slick-initialized {
  overflow: hidden;
}

.slick-slide img {
  width: 100%;
}

header .container {
  position: relative;
}
header .navbar {
  padding-top: 8px;
  padding-bottom: 8px;
}
header .navbar .navbar-brand {
  padding: 0;
}
header .navbar .navbar-brand img {
  width: 100px;
  height: 100px;
}
header .navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
  margin-right: 25px;
}
header .navbar .navbar-nav .nav-item .nav-link {
  color: #000000;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 4px solid transparent;
}
header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #2C70AE;
  border-bottom: 4px solid #2C70AE;
}
header .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
header .navbar .navbar-nav .mobileMenu {
  display: none;
}
header .navbar .navbar-toggler-icon {
  background-image: url(../images/svg/hamburger.svg);
}
header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-image: url(../images/svg/closeMobile.svg);
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .dropdown-toggle::after {
  display: none;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 45px -8px rgba(0, 0, 0, 0.25);
}

footer {
  padding: 60px 0 0;
  background-color: rgba(44, 112, 174, 0.95);
  position: relative;
}
footer .footer_image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
footer .footer_image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-position: top left;
  object-fit: cover;
}
footer .footer_box {
  position: relative;
}
footer .footer_box h5 {
  color: #FFFFFF;
  font-family: "Saira-SemiBold";
  margin-bottom: 20px;
}
footer .footer_box h6 {
  color: #FFFFFF;
  font-family: "Saira-SemiBold";
  font-size: 16px;
}
footer .footer_box:after {
  display: block;
  width: 1px;
  height: 60%;
  content: "";
  position: absolute;
  right: 10px;
  top: 20%;
  background-color: rgba(255, 255, 255, 0.26);
}
footer .footer_box:last-child::after {
  display: none;
}
footer .quickLinks ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  grid-auto-rows: minmax(1px, auto);
}
footer .quickLinks ul li {
  position: relative;
  margin-bottom: 20px;
}
footer .quickLinks ul li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("../images/svg/btnright.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
footer .quickLinks ul li a {
  color: #FFFFFF;
  padding-left: 25px;
  font-size: 14px;
}
footer .quickLinks ul li a:hover {
  color: #000000;
}
footer .quickLinks .followUs {
  margin-top: 20px;
  display: flex;
}
footer .quickLinks .followUs p {
  color: #FFFFFF;
  margin-right: 15px;
}
footer .quickLinks .followUs .icon {
  display: flex;
}
footer .quickLinks .followUs .icon a {
  margin-right: 10px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
footer .quickLinks .followUs .icon a i {
  font-size: 12px;
}
footer .quickLinks .followUs .icon a:last-child {
  margin-right: 0px;
}
footer .services_slider_box {
  padding-left: 15px;
}
footer .services_slider_box .footer_service_slider {
  width: 85%;
}
footer .services_slider_box .footer_service_slider .footer_services_card .serviceFootbox {
  margin-bottom: 20px;
}
footer .services_slider_box .footer_service_slider .footer_services_card .serviceFootbox img {
  height: 80px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
}
footer .services_slider_box .footer_service_slider .footer_services_card .serviceFootbox h6 {
  font-size: 16px;
}
footer .services_slider_box .footer_service_slider .footer_services_card .serviceFootbox:last-child {
  margin-bottom: 0px;
}
footer .slick-slider-nav2 {
  position: absolute;
  right: 20%;
  top: 0%;
  z-index: 3;
  display: flex;
}
footer .slick-slider-nav2 .slick-prev,
footer .slick-slider-nav2 .slick-next {
  width: 20px;
  height: 13px;
  padding: 0;
  position: relative;
  top: 12px;
}
footer .slick-slider-nav2 .slick-prev::before,
footer .slick-slider-nav2 .slick-next::before {
  display: none;
}
footer .slick-slider-nav2 .slick-prev {
  left: 0;
  background-image: url("../images/svg/leftarrowalider.svg");
  background-size: cover;
  margin-right: 15px;
}
footer .slick-slider-nav2 .slick-next {
  right: 0px;
  background-image: url("../images/svg/rightarrowalider.svg");
  background-size: cover;
}
footer .contactInfo {
  padding-left: 15px;
}
footer .contactInfo ul {
  padding-right: 18px;
}
footer .contactInfo ul li {
  margin-bottom: 20px;
}
footer .contactInfo ul li a {
  display: flex;
  align-items: start;
  font-size: 14px;
}
footer .contactInfo ul li a img {
  margin-right: 12px;
}
footer .contactInfo ul li a p {
  color: #FFFFFF;
  font-size: 14px;
}
footer .contactInfo ul li a:hover p {
  color: #000000;
}
footer .logoFooter {
  padding-left: 15px;
}
footer .logoFooter img {
  width: 100px;
}
footer .logoFooter p {
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 15px;
  line-height: 24px;
  font-size: 14px;
}
footer .bottomFooter {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px 0;
}
footer .bottomFooter .bottomFooterLeft p {
  color: #FFFFFF;
  font-size: 14px;
}
footer .bottomFooter .bottomFooterRight {
  display: flex;
  justify-content: end;
}
footer .bottomFooter .bottomFooterRight ul {
  display: flex;
}
footer .bottomFooter .bottomFooterRight ul li {
  color: #FFFFFF;
  margin-right: 15px;
  border-right: 1px solid #FFFFFF;
  padding-right: 15px;
}
footer .bottomFooter .bottomFooterRight ul li a {
  color: #FFFFFF;
  font-size: 14px;
}
footer .bottomFooter .bottomFooterRight ul li a:hover {
  color: #000000;
}
footer .bottomFooter .bottomFooterRight ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0px solid #FFFFFF;
}

.homeBanner {
  position: relative;
}
.homeBanner::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background-color: rgba(44, 112, 174, 0.58);
  top: 0;
  left: 0;
  z-index: 1;
}
.homeBanner .carousel-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.homeBanner .carousel-content .caption h1 {
  color: #FFFFFF;
  font-size: 60px;
  line-height: 65px;
  font-family: "Saira-Medium";
}
.homeBanner .carousel-content .caption p {
  color: #FFFFFF;
  margin: 15px 0;
}
.homeBanner .carousel-content .caption .btngroup {
  display: flex;
}
.homeBanner .carousel-content .caption .btngroup a {
  margin-right: 20px;
}
.homeBanner .carousel-content .caption .btngroup a img {
  margin-right: 8px;
}
.homeBanner .carousel-content .caption .btngroup a::before {
  background-color: #FFFFFF;
}
.homeBanner .carousel-control-next, .homeBanner .carousel-control-prev {
  width: 3rem;
  align-items: flex-start;
}
.homeBanner .carousel-control-prev {
  left: 0;
  opacity: 1;
  z-index: 5;
  top: 22px;
  position: relative;
  border-right: 1px solid #D5D5D5;
}
.homeBanner .carousel-control-next {
  right: 0;
  left: inherit;
  right: 0;
  opacity: 1;
  z-index: 5;
  top: -2px;
  position: relative;
}
.homeBanner .carousel-control-next-icon {
  background-image: url("../images/svg/arrowRight.svg");
  width: 2rem;
  height: 1.5rem;
  background-size: 19px;
}
.homeBanner .carousel-control-prev-icon {
  background-image: url("../images/svg/arrowLeft.svg");
  width: 2rem;
  height: 1.5rem;
  background-size: 19px;
}
.homeBanner .navigation_circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #FFFFFF;
  border-radius: 100%;
  width: 6rem;
  height: 6rem;
  transform: translate(-50%, 40%);
  z-index: 2;
  overflow: hidden;
}

.whoWeAre {
  overflow: hidden;
  margin: 70px 0;
  position: relative;
}
.whoWeAre .whoWeAreLeft p {
  color: #707070;
  margin-bottom: 20px;
}
.whoWeAre .whoWeAreRight {
  position: relative;
}
.whoWeAre .whoWeAreRight img {
  width: 100%;
  height: 475px;
  object-fit: cover;
  object-position: center;
}
.whoWeAre .whoWeAreRight::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  bottom: 20px;
  right: -44px;
  background-image: url("../images/svg/abtLogo.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.whoWeAre .whoWeAreCenter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  margin-top: -125px;
  z-index: 2;
  position: relative;
}
.whoWeAre .whoWeAreCenter .whoWeBox {
  background-color: #EFEFEF;
  padding: 10px 20px;
  border: 1px solid #D5D5D5;
}
.whoWeAre .whoWeAreCenter .whoWeBox ul {
  display: flex;
}
.whoWeAre .whoWeAreCenter .whoWeBox ul li img {
  border-radius: 100%;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.16);
}
.whoWeAre .whoWeAreCenter .whoWeBox ul li h5 {
  font-family: "Saira-SemiBold";
}
.whoWeAre .whoWeAreCenter .whoWeBox ul li p {
  margin-top: 8px;
  color: #707070;
  line-height: 22px;
}
.whoWeAre .whoWeAreCenter .whoWeBox ul li:first-child {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.whoWeAre .whoWeAreCenter .whoWeBox ul li:last-child {
  display: flex;
  align-items: center;
}
.whoWeAre .whoWeAreCenter .whoWeBox:hover {
  background-color: #2C70AE;
  cursor: pointer;
  border: 1px solid #D5D5D5;
}
.whoWeAre .whoWeAreCenter .whoWeBox:hover ul li:last-child h5 {
  color: #FFFFFF;
}
.whoWeAre .whoWeAreCenter .whoWeBox:hover ul li:last-child p {
  color: #FFFFFF;
}

.our-services {
  margin: 40px 0 0 0;
  padding: 50px 0 100px 0;
  position: relative;
  background-color: #E8E8E8;
}
.our-services::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background-image: url("../images/service-before.png");
  background-size: cover;
  z-index: 0;
}
.our-services::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(32, 85, 133, 0.8);
}
.our-services .position-relative {
  z-index: 2;
}
.our-services .headtop {
  text-align: center;
  margin-bottom: 40px;
}
.our-services .headtop .heading {
  color: #FFFFFF;
}
.our-services .headtop .sub-heading {
  color: #FFFFFF;
}
.our-services .servicePosi {
  position: relative;
}
.our-services .btnleft {
  background: #000;
  position: absolute;
  z-index: 2;
  top: 5%;
  left: -54px;
  height: 90%;
  display: flex;
  justify-content: center;
  padding: 0 15px;
  color: #FFFFFF;
  font-family: "Saira-SemiBold";
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
}
.our-services .btnleft h6 {
  writing-mode: vertical-lr;
}
.our-services .btnRight {
  background: #2C70AE;
  z-index: 2;
  position: absolute;
  top: 5%;
  right: -54px;
  writing-mode: vertical-lr;
  height: 90%;
  display: flex;
  justify-content: center;
  padding: 0 15px;
  color: #FFFFFF;
  font-family: "Saira-SemiBold";
  border: 0px;
  justify-content: center;
  align-items: center;
  width: 54px;
}
.our-services .btnRight h6 {
  writing-mode: vertical-lr;
}
.our-services .servicesSlider .serviceBox {
  position: relative;
}
.our-services .servicesSlider .serviceBox ul {
  display: flex;
}
.our-services .servicesSlider .serviceBox ul li {
  width: 50%;
}
.our-services .servicesSlider .serviceBox ul li img {
  width: 100%;
}
.our-services .servicesSlider .serviceBox ul li .slider_img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
.our-services .servicesSlider .serviceBox ul li .over_lay_img {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
.our-services .servicesSlider .serviceBox ul li:last-child {
  height: 460px;
  position: relative;
}
.our-services .servicesSlider .serviceBox ul li:last-child::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.83);
  z-index: 1;
}
.our-services .servicesSlider .serviceBox ul li:last-child .contents {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translate(0%, -50%);
  padding: 80px;
}
.our-services .servicesSlider .serviceBox ul li:last-child .contents h4 {
  color: #FFFFFF;
  font-family: "Saira-SemiBold";
  font-size: 26px;
}
.our-services .servicesSlider .serviceBox ul li:last-child .contents .subp {
  font-family: "Saira-Regular";
  margin-bottom: 10px;
}
.our-services .servicesSlider .serviceBox ul li:last-child .contents p {
  color: #FFFFFF;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.our-services .servicesSlider .serviceBox ul li:last-child .contents .primary_btn {
  background-color: #FFFFFF;
  color: #2C70AE;
}
.our-services .servicesSlider .serviceBox ul li:last-child .contents .primary_btn::after {
  filter: invert(27%) sepia(74%) saturate(925%) hue-rotate(177deg) brightness(112%) contrast(79%);
}
.our-services .servicesSlider .serviceBox ul li:last-child .contents .primary_btn:hover {
  background-color: #2C70AE;
  color: #FFFFFF;
}
.our-services .servicesSlider .serviceBox ul li:last-child .contents .primary_btn:hover::after {
  filter: none;
}
.our-services .servicesSlider .slick-slide {
  height: inherit !important;
}
.our-services .servicesSliderb .serviceBox ul {
  display: flex;
  flex-direction: row-reverse;
}
.our-services .services_home_Slider {
  position: relative;
}
.our-services .services_home_Slider .services_slider_card {
  display: flex;
  align-items: center;
}
.our-services .services_home_Slider .services_slider_card ul {
  display: none;
}
.our-services .slick-dotted {
  margin-bottom: 0px !important;
}
.our-services .slick-slide {
  position: relative;
}
.our-services .slick-slide img {
  display: none;
}
.our-services .slick-slide div {
  position: relative;
  height: 100%;
  width: 100%;
}
.our-services .slick-slide div .services_slider_card {
  position: relative;
}
.our-services .slick-slide div .services_slider_card .slider_heading {
  background-color: #2C70AE;
  padding: 50px 0;
  height: 80%;
  width: 60px;
  position: absolute;
  top: 10%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-services .slick-slide div .services_slider_card .slider_heading h6 {
  writing-mode: vertical-lr;
  color: #FFFFFF;
  font-family: "Saira-SemiBold";
}
.our-services .slick-slide div .services_slider_card .slider_heading_right {
  background-color: #000000;
  padding: 50px 0;
  height: 80%;
  width: 60px;
  position: absolute;
  top: 10%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-services .slick-slide div .services_slider_card .slider_heading_right h6 {
  writing-mode: vertical-lr;
  color: #FFFFFF;
  font-family: "Saira-SemiBold";
}
.our-services .slick-track {
  display: flex !important;
}
.our-services .slick-slider .slick-list {
  line-height: 0;
}
.our-services .slick-slide {
  height: inherit !important;
}
.our-services .slick-active .services_slider_card, .our-services .slick-center .services_slider_card {
  height: 450px;
}
.our-services .slick-active .services_slider_card ul, .our-services .slick-center .services_slider_card ul {
  height: 100%;
  display: flex;
}
.our-services .slick-active .services_slider_card ul li, .our-services .slick-center .services_slider_card ul li {
  width: 50%;
}
.our-services .slick-active .services_slider_card ul li img, .our-services .slick-center .services_slider_card ul li img {
  width: 100%;
}
.our-services .slick-active .services_slider_card ul li .slider_img, .our-services .slick-center .services_slider_card ul li .slider_img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
.our-services .slick-active .services_slider_card ul li .over_lay_img, .our-services .slick-center .services_slider_card ul li .over_lay_img {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  top: 0;
}
.our-services .slick-active .services_slider_card ul li:last-child, .our-services .slick-center .services_slider_card ul li:last-child {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.our-services .slick-active .services_slider_card ul li:last-child::before, .our-services .slick-center .services_slider_card ul li:last-child::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.83);
  z-index: 1;
}
.our-services .slick-active .services_slider_card ul li:last-child .contents, .our-services .slick-center .services_slider_card ul li:last-child .contents {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 60px;
}
.our-services .slick-active .services_slider_card ul li:last-child .contents div, .our-services .slick-center .services_slider_card ul li:last-child .contents div {
  height: auto;
}
.our-services .slick-active .services_slider_card ul li:last-child .contents h4, .our-services .slick-center .services_slider_card ul li:last-child .contents h4 {
  color: #FFFFFF;
  font-family: "Saira-SemiBold";
  font-size: 26px;
}
.our-services .slick-active .services_slider_card ul li:last-child .contents .subp, .our-services .slick-center .services_slider_card ul li:last-child .contents .subp {
  font-family: "Saira-Regular";
  margin-bottom: 10px;
}
.our-services .slick-active .services_slider_card ul li:last-child .contents p, .our-services .slick-center .services_slider_card ul li:last-child .contents p {
  color: #FFFFFF;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.our-services .slick-active .services_slider_card ul li:last-child .contents .primary_btn, .our-services .slick-center .services_slider_card ul li:last-child .contents .primary_btn {
  background-color: #FFFFFF;
  color: #2C70AE;
}
.our-services .slick-active .services_slider_card ul li:last-child .contents .primary_btn::after, .our-services .slick-center .services_slider_card ul li:last-child .contents .primary_btn::after {
  filter: invert(27%) sepia(74%) saturate(925%) hue-rotate(177deg) brightness(112%) contrast(79%);
}
.our-services .slick-active .services_slider_card ul li:last-child .contents .primary_btn:hover, .our-services .slick-center .services_slider_card ul li:last-child .contents .primary_btn:hover {
  background-color: #2C70AE;
  color: #FFFFFF;
}
.our-services .slick-active .services_slider_card ul li:last-child .contents .primary_btn:hover::after, .our-services .slick-center .services_slider_card ul li:last-child .contents .primary_btn:hover::after {
  filter: none;
}
.our-services .slick-active img, .our-services .slick-center img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.our-services .slick-active .slider_heading, .our-services .slick-center .slider_heading {
  display: none !important;
}
.our-services .slick-active .slider_heading h6, .our-services .slick-center .slider_heading h6 {
  display: none;
}
.our-services .slick-active .slider_heading_right, .our-services .slick-center .slider_heading_right {
  display: none !important;
}
.our-services .slick-active .slider_heading_right h6, .our-services .slick-center .slider_heading_right h6 {
  display: none;
}
.our-services .slick-slider-nav4 {
  position: relative;
  right: 0px;
  top: 0px;
  z-index: 3;
  display: flex;
  justify-content: center;
}
.our-services .slick-slider-nav4 .slick-prev,
.our-services .slick-slider-nav4 .slick-next {
  width: 20px;
  height: 13px;
  padding: 0;
  position: relative;
  top: 18px;
}
.our-services .slick-slider-nav4 .slick-prev::before,
.our-services .slick-slider-nav4 .slick-next::before {
  display: none;
}
.our-services .slick-slider-nav4 .slick-prev {
  left: 0;
  background-image: url("../images/svg/arrowLeft.svg");
  background-size: cover;
  margin-right: 30px;
  position: relative;
}
.our-services .slick-slider-nav4 .slick-prev::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #707070;
  top: -12px;
  right: -16px;
}
.our-services .slick-slider-nav4 .slick-next {
  right: 0px;
  background-image: url("../images/svg/arrowRight.svg");
  background-size: cover;
}

.ourBranch {
  padding: 50px 0;
  background-color: #E8E8E8;
}
.ourBranch .ourbranchHead {
  margin-bottom: 50px;
}
.ourBranch .ourbranchHead .ourbranchHeadLeft .headtop {
  border-right: 1px solid #707070;
}
.ourBranch .ourbranchHead .ourbranchHeadLeft .headtop .heading {
  margin-bottom: 10px;
}
.ourBranch .ourbranchHead .ourbranchHeadRight {
  display: flex;
  align-items: center;
}
.ourBranch .ourbranchHead .ourbranchHeadRight p {
  margin-bottom: 10px;
}
.ourBranch .mapCoverage img {
  width: 100%;
}

.testimonials {
  position: relative;
  padding: 60px 0;
}
.testimonials::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/testimonial-before.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.testimonials::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.67);
  left: 0;
  top: 0;
  z-index: 1;
}
.testimonials .testimonialsContent {
  z-index: 2;
  position: relative;
}
.testimonials .testimonialsContent .headstop {
  text-align: center;
}
.testimonials .testimonialsContent .headstop .sub-heading {
  color: #FFFFFF;
}
.testimonials .testimonialsContent .headstop .heading {
  color: #FFFFFF;
}
.testimonials .testimonialsContent .testimonialFullBox {
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider {
  margin-bottom: 0;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox {
  padding: 50px 80px;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul {
  display: flex;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul li {
  width: fit-content;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul li:first-child {
  margin-right: 50px;
  display: flex;
  align-items: center;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul li:first-child img {
  width: 100px;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul li:last-child {
  display: flex;
  align-items: center;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul li:last-child img {
  margin-bottom: 10px;
  width: 40px;
  height: auto;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul li:last-child p {
  color: #FFFFFF;
  margin-bottom: 10px;
}
.testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul li:last-child h5 {
  color: #FFFFFF;
  margin-bottom: 10px;
  font-family: "Saira-Bold";
}
.testimonials .slick-arrow {
  position: absolute;
  content: "";
  z-index: 9;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.testimonials .slick-arrow::before {
  content: "";
}
.testimonials .slick-prev {
  left: inherit;
  top: inherit;
  bottom: 40px;
  left: 86%;
  right: inherit;
  background-image: url("../images/svg/leftarrowalider.svg");
}
.testimonials .slick-next {
  top: inherit;
  bottom: 40px;
  right: 8%;
  left: inherit;
  background-image: url("../images/svg/rightarrowalider.svg");
}

.blogs {
  margin: 50px 0;
}
.blogs .blogsLeft {
  display: flex;
}
.blogs .blogsLeft .leftContents {
  position: relative;
}
.blogs .blogsLeft .leftContents img {
  width: 100%;
  height: 100%;
}
.blogs .blogsLeft .leftContents .dateContents {
  position: absolute;
  content: "";
  bottom: 10px;
  left: 0;
  display: flex;
}
.blogs .blogsLeft .leftContents .dateContents .date {
  display: flex;
  background-color: #2C70AE;
  padding: 10px 15px;
  margin-right: 10px;
}
.blogs .blogsLeft .leftContents .dateContents .date .left {
  text-align: center;
}
.blogs .blogsLeft .leftContents .dateContents .date .left h4 {
  color: #FFFFFF;
  font-size: 22px;
}
.blogs .blogsLeft .leftContents .dateContents .date .left h5 {
  color: #FFFFFF;
  font-size: 18px;
}
.blogs .blogsLeft .leftContents .dateContents .date .right {
  display: flex;
  align-items: center;
}
.blogs .blogsLeft .leftContents .dateContents .date .right h5 {
  color: #6CADE8;
  transform: rotate(90deg);
  font-family: "Saira-Regular";
  font-size: 16px;
}
.blogs .blogsLeft .leftContents .dateContents .contents {
  position: relative;
  display: flex;
  align-items: center;
}
.blogs .blogsLeft .leftContents .dateContents .contents::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/date-before.png");
  background-repeat: no-repeat;
  z-index: 1;
  background-size: cover;
  background-position: right;
}
.blogs .blogsLeft .leftContents .dateContents .contents .con {
  position: relative;
  z-index: 2;
  padding: 0 25px;
}
.blogs .blogsLeft .leftContents .dateContents .contents a {
  color: #000000;
}
.blogs .blogsLeft .leftContents .dateContents .contents a p {
  width: 95%;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.blogs .blogsRight {
  padding-left: 3%;
}
.blogs .blogsRight .content {
  margin-bottom: 20px;
}
.blogs .blogsRight .content .heading {
  margin-bottom: 10px;
}
.blogs .blogsRight .content p {
  color: #707070;
}
.blogs .blogsRight .blogbox ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft {
  width: 30%;
  display: flex;
  align-items: center;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft .blogImageleft {
  position: relative;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft .blogImageleft img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: center;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft .blogImageleft .date {
  display: flex;
  background-color: #2C70AE;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft .blogImageleft .date .left {
  text-align: center;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft .blogImageleft .date .left h4 {
  color: #FFFFFF;
  font-size: 22px;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft .blogImageleft .date .left h5 {
  color: #FFFFFF;
  font-size: 18px;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft .blogImageleft .date .right {
  display: flex;
  align-items: center;
}
.blogs .blogsRight .blogbox ul li .blogboxLeft .blogImageleft .date .right h5 {
  color: #6CADE8;
  transform: rotate(90deg);
  font-family: "Saira-Regular";
  font-size: 16px;
}
.blogs .blogsRight .blogbox ul li .blogboxRight {
  width: 66%;
}
.blogs .blogsRight .blogbox ul li .blogboxRight h5 {
  font-family: "Saira-SemiBold";
}
.blogs .blogsRight .blogbox ul li .blogboxRight p {
  color: #707070;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blogs .blogsRight .blogbox ul li .blogboxRight a {
  font-family: "Saira-Regular";
}
.blogs .blogsRight .blogbox ul li .blogboxRight a i {
  margin-left: 6px;
}
.blogs .blogsRight .blogbox ul li .blogboxRight a:hover {
  color: #2C70AE;
}

.fixedrightSidebar {
  position: fixed;
  right: 1%;
  z-index: 99;
  top: 30%;
}
.fixedrightSidebar .socialMedia {
  display: grid;
}
.fixedrightSidebar .socialMedia .QuickSideRightBar {
  position: relative;
}
.fixedrightSidebar .socialMedia .QuickSideRightBar .CallRight {
  position: relative;
}
.fixedrightSidebar .socialMedia .QuickSideRightBar img {
  width: 50px;
  height: 50px;
  z-index: 11;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 100%;
}
.fixedrightSidebar .socialMedia .QuickSideRightBar .slideLeft {
  position: absolute;
  background: #FFFFFF;
  width: 0;
  height: 40px;
  right: 65px;
  top: 20px;
  font-size: 13px;
  line-height: 30px;
  color: #000000;
  padding: 0px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  z-index: -1;
  opacity: 0;
  overflow: hidden;
  transition: ease-in-out 0.5s;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixedrightSidebar .socialMedia .QuickSideRightBar .slideLeft .textRight {
  font-size: 14px;
  color: #000000;
}
.fixedrightSidebar .socialMedia .QuickSideRightBar:hover .slideLeft {
  opacity: 1;
  transition: 0.5s ease-in-out;
  width: 210px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
}
.fixedrightSidebar .socialMedia .QuickSideRightBarContact {
  margin-bottom: 15px;
}
.fixedrightSidebar .socialMedia .QuickSideRightBarContact .slideLeft {
  background: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.fixedrightSidebar .socialMedia .QuickSideRightBarMail {
  margin-bottom: 15px;
}
.fixedrightSidebar .socialMedia .QuickSideRightBarWhatsapp {
  margin-bottom: 15px;
}
.fixedrightSidebar .socialMedia .QuickSideRightBarWhatsapp .slideLeft {
  background: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.fixedrightSidebar .socialMedia .followUss {
  background-color: #2C70AE;
  padding: 25px 0;
}
.fixedrightSidebar .socialMedia .followUss p {
  color: #FFFFFF;
  writing-mode: vertical-lr;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.fixedrightSidebar .socialMedia .followUss ul li {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.fixedrightSidebar .socialMedia .followUss ul li a {
  color: #FFFFFF;
}
.fixedrightSidebar .socialMedia .followUss ul li a:hover {
  color: #000000;
}
.fixedrightSidebar .socialMedia .followUss ul li:last-child {
  margin-bottom: 0;
}

.fixedBottomBar {
  display: none;
}

.quickEnquiryModal .modal-header {
  background-color: #2C70AE;
}
.quickEnquiryModal .modal-header h5 {
  color: #FFFFFF;
}
.quickEnquiryModal .primary_btn {
  display: block;
  margin: auto;
}
.quickEnquiryModal .primary_btn::before {
  top: 0;
}

.inner_banner {
  position: relative;
}
.inner_banner picture img {
  position: relative;
}
.inner_banner .overlay {
  top: 0;
  left: 0;
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(44, 112, 174, 0.58);
}
.inner_banner .inner_banner_content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
}
.inner_banner .inner_banner_content h2 {
  color: #FFFFFF;
  font-family: "Saira-Medium";
  padding-bottom: 20px;
}
.inner_banner .inner_banner_content .primary_btn {
  padding: 10px 30px;
  margin-left: 0;
}
.inner_banner .inner_banner_content .primary_btn::after {
  margin-left: 20px;
}
.inner_banner .inner_banner_content .primary_btn::before {
  display: none;
}

.breadcrumb_section {
  padding: 20px 0;
}
.breadcrumb_section .breadcrumb {
  margin-bottom: 0px;
}
.breadcrumb_section .breadcrumb .breadcrumb-item {
  font-family: "Poppins", sans-serif;
  padding: 0 15px 0 0;
  color: #707070;
}
.breadcrumb_section .breadcrumb .breadcrumb-item a {
  font-family: "Poppins", sans-serif;
  color: #707070;
}
.breadcrumb_section .breadcrumb .breadcrumb-item a:hover {
  color: #2C70AE;
}
.breadcrumb_section .breadcrumb .breadcrumb-item:last-child {
  padding-right: 0;
}
.breadcrumb_section .breadcrumb-item::before {
  color: #707070;
  --bs-breadcrumb-divider: ">";
  padding-right: 15px;
}

.whoWeAreAbout {
  overflow: hidden;
}
.whoWeAreAbout .whoWeAre_left_wrapper {
  display: flex;
  align-items: center;
}
.whoWeAreAbout .whoWeAre_left_wrapper .whoWeAreLeft {
  padding-top: 20px;
  padding-bottom: 20px;
}
.whoWeAreAbout .whoWeAre_left_wrapper .whoWeAreLeft p:last-child {
  margin-bottom: 0;
}
.whoWeAreAbout .whoWeAre_right_wrapper {
  display: flex;
  align-items: center;
}
.whoWeAreAbout .whoWeAre_right_wrapper .whoWeAreRight {
  height: 100%;
}
.whoWeAreAbout .whoWeAre_right_wrapper .whoWeAreRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.whoWeAreAboutBox {
  padding-top: 80px;
}
.whoWeAreAboutBox .whoWeAreCenter {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.whoWeAreAboutBox .whoWeAreCenter .whoWeBox {
  width: auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
}
.whoWeAreAboutBox .whoWeAreCenter .whoWeBox ul li .icon_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.whoWeAreAboutBox .whoWeAreCenter .whoWeBox ul li h5 {
  font-family: "Saira-SemiBold";
}
.whoWeAreAboutBox .whoWeAreCenter .whoWeBox ul li p {
  margin-top: 8px;
  color: #707070;
  line-height: 22px;
}

.about_mission_vision {
  padding: 60px 0;
}
.about_mission_vision .about_mi_vi_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}
.about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card {
  background-color: #2C70AE;
  padding: 80px 50px 50px;
  position: relative;
}
.about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card .icon_boxmv {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  position: absolute;
  top: -60px;
  left: 50px;
  display: flex;
  background: #FFFFFF;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card .icon_boxmv img {
  width: 90%;
  margin: 0 auto;
}
.about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card .heading {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-family: "Saira-Bold";
}
.about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card .heading::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: #FFFFFF;
  margin-left: 15px;
}
.about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card p {
  padding-bottom: 20px;
  color: #FFFFFF;
}
.about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card p:last-child {
  padding-bottom: 0px;
}
.about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card:last-child {
  background-color: #000000;
}

.about_captain {
  padding: 0px;
  background: #F5F5F5;
  position: relative;
}
.about_captain::before {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  display: block;
  width: 30%;
  height: 100%;
  background-color: #E9E9E9;
}
.about_captain .about_captain_flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_captain .about_captain_flex .left_captain_image {
  width: 30%;
  height: 100%;
  background-color: #E9E9E9;
  padding: 60px;
  padding-left: 0;
  display: flex;
  align-items: center;
}
.about_captain .about_captain_flex .left_captain_image .profile_img {
  position: relative;
  overflow: hidden;
}
.about_captain .about_captain_flex .left_captain_image .profile_img .over_lay_blue {
  position: absolute;
  bottom: -1px;
  right: -1px;
}
.about_captain .about_captain_flex .right_captain_details {
  width: 65%;
  padding: 50px 0;
}
.about_captain .about_captain_flex .right_captain_details .heading {
  font-family: "Saira-Bold";
}
.about_captain .about_captain_flex .right_captain_details p {
  color: #707070;
  padding-bottom: 30px;
}
.about_captain .about_captain_flex .right_captain_details p:last-child {
  padding-bottom: 0;
}

.second_captain_details {
  padding: 50px 0;
  background: #F5F5F5;
}
.second_captain_details p {
  color: #707070;
}

.about_our_team {
  padding: 50px 0;
}
.about_our_team .about_team_left {
  display: flex;
  align-items: center;
}
.about_our_team .about_team_left .heading {
  font-family: "Saira-Bold";
}
.about_our_team .about_team_left p {
  color: #707070;
  padding-bottom: 20px;
}
.about_our_team .about_team_left .primary_btn {
  margin-left: 0;
}
.about_our_team .about_team_left .primary_btn::before {
  display: none;
}
.about_our_team .about_team_left .slick-slider-nav {
  display: flex;
  margin-top: 30px;
}
.about_our_team .about_team_left .slick-slider-nav .slick-prev,
.about_our_team .about_team_left .slick-slider-nav .slick-next {
  width: 22px;
  height: 13.9px;
  padding: 0;
  position: relative;
  top: 18px;
}
.about_our_team .about_team_left .slick-slider-nav .slick-prev::before,
.about_our_team .about_team_left .slick-slider-nav .slick-next::before {
  display: none;
}
.about_our_team .about_team_left .slick-slider-nav .slick-prev {
  left: 0;
  background: url(../images/svg/arrow-left.svg);
  background-size: cover;
  margin-right: 30px;
}
.about_our_team .about_team_left .slick-slider-nav .slick-next {
  right: 0px;
  background: url(../images/svg/arrow-right.svg);
  background-size: cover;
}
.about_our_team .about_team_right {
  padding: 0px 0;
}
.about_our_team .about_team_right .about_team_slider {
  margin-bottom: 0 !important;
}
.about_our_team .about_team_right .slick-slide {
  margin-bottom: 0;
  line-height: 0;
  margin: 0 15px;
}
.about_our_team .about_team_right .slick-list {
  padding-right: 8% !important;
}

.team_item_card {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  border-bottom: 5px solid transparent;
}
.team_item_card .team_photo_area {
  position: relative;
  overflow: hidden;
}
.team_item_card .team_photo_area .over_lay_blue {
  position: absolute;
  bottom: -1px;
  right: -1px;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.team_item_card .team_photo_area .link_text {
  opacity: 0;
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 5px;
  right: 0;
}
.team_item_card .team_photo_area .link_text img {
  width: 50px;
}
.team_item_card .team_photo_area .link_text .primary_btn {
  margin-left: 0;
  height: 50px;
  line-height: 20px;
  padding: 0;
  align-items: flex-end;
  background-color: transparent;
}
.team_item_card .team_photo_area .link_text .primary_btn::before {
  display: none;
}
.team_item_card .team_photo_area .link_text .primary_btn::after {
  margin-bottom: 3px;
}
.team_item_card .team_photo_area .link_text .primary_btn:hover {
  background-color: transparent;
  color: #000000;
}
.team_item_card .team_photo_area .link_text .primary_btn:hover::after {
  background-image: url("../images/svg/btnright-active.svg");
  background-size: contain;
}
.team_item_card .team_photo_info {
  display: block;
  padding: 15px 0 20px;
}
.team_item_card .team_photo_info a h5 {
  padding-bottom: 5px;
  font-family: "Saira-Bold";
  color: #000000;
}
.team_item_card .team_photo_info a .position {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000000;
}
.team_item_card:hover {
  border-bottom: 5px solid #2C70AE;
}
.team_item_card:hover .team_photo_area .link_text {
  opacity: 1;
}
.team_item_card:hover .team_photo_area .over_lay_blue {
  opacity: 1;
}

.about_clients {
  background-color: #F5F5F5;
  padding: 60px 0;
}
.about_clients .clients_slider {
  margin-top: 30px;
}
.about_clients .clients_slider .clients_slider_card {
  overflow: hidden;
  background-color: #FFFFFF;
}
.about_clients .clients_slider .slick-slide {
  margin: 0 0.8rem;
}

.our_team_page {
  padding: 60px 0 20px;
}
.our_team_page .heading {
  margin-bottom: 10px;
  font-family: "Saira-Bold";
}
.our_team_page p {
  color: #707070;
}
.our_team_page .team_form {
  padding: 40px 30px;
  margin: 35px 0 60px;
  background-color: #2C70AE;
}
.our_team_page .team_form form {
  display: flex;
}
.our_team_page .team_form form .form-control {
  margin-bottom: 0;
  margin-right: 20px;
  border: 1px solid transparent;
  font-family: "Saira-Regular";
}
.our_team_page .team_form form .select-control {
  background-color: transparent !important;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E8E8E8 url(../images/svg/select-down-arrow.svg);
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 18px;
}
.our_team_page .team_form form .select-control option {
  background-color: #FFFFFF;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}
.our_team_page .team_form form .primary_btn {
  padding-left: 30px;
  padding-right: 30px;
  margin-left: 0;
}
.our_team_page .team_form form .primary_btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.our_team_page .team_form form .primary_btn:hover::after {
  background-image: url("../images/svg/btnright-active.svg");
  background-size: contain;
}
.our_team_page .team_form form::before {
  display: none;
}
.our_team_page .team_item_card {
  margin-bottom: 50px;
}

.team_details_page {
  padding: 20px 0;
}
.team_details_page .profile_info_wrapper .profile_img {
  position: relative;
  overflow: hidden;
}
.team_details_page .profile_info_wrapper .profile_img .over_lay_blue {
  position: absolute;
  bottom: -1px;
  right: -1px;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.team_details_page .profile_info_wrapper .profile_img:hover .over_lay_blue {
  opacity: 1;
}
.team_details_page .profile_info_wrapper .info_area {
  margin-top: 30px;
}
.team_details_page .profile_info_wrapper .info_area h5 {
  padding-bottom: 5px;
  font-family: "Saira-Bold";
  color: #000000;
}
.team_details_page .profile_info_wrapper .info_area .position {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000000;
}
.team_details_page .profile_info_wrapper .info_area ul {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #707070;
  margin-bottom: 30px;
}
.team_details_page .profile_info_wrapper .info_area ul li {
  position: relative;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
.team_details_page .profile_info_wrapper .info_area ul li img {
  position: relative;
  width: 36px;
}
.team_details_page .profile_info_wrapper .info_area ul li a {
  margin-left: 20px;
}
.team_details_page .profile_info_wrapper .info_area ul li a p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.team_details_page .profile_info_wrapper .info_area ul li a .info_icon {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.team_details_page .profile_info_wrapper .info_area ul li:last-child {
  padding-left: 36px;
}
.team_details_page .profile_info_wrapper .info_area ul li:last-child a p {
  font-family: "Poppins", sans-serif;
}
.team_details_page .right_team_details .heading {
  font-family: "Saira-Bold";
}
.team_details_page .right_team_details p {
  color: #707070;
  padding-bottom: 20px;
}
.team_details_page .right_team_details h4 {
  font-family: "Saira-Bold";
  padding-top: 10px;
  padding-bottom: 30px;
}
.team_details_page .right_team_details .progress_bar_wrapper {
  margin-top: 40px;
  margin-bottom: 60px;
}
.team_details_page .right_team_details .progress_bar_wrapper li {
  margin-bottom: 30px;
}
.team_details_page .right_team_details .progress_bar_wrapper li h6 {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}
.team_details_page .right_team_details .progress_bar_wrapper li .progress {
  height: 6px;
  background-color: #D4D4D4;
}
.team_details_page .right_team_details .progress_bar_wrapper li .progress .progress-bar {
  background-color: #2C70AE;
}
.team_details_page .right_team_details .years_list {
  margin-top: 0px;
  padding-bottom: 30px;
}
.team_details_page .right_team_details .years_list li {
  padding-left: 50px;
  position: relative;
  padding-bottom: 10px;
}
.team_details_page .right_team_details .years_list li h4 {
  font-family: "Saira-Bold";
  padding-top: 0px;
  padding-bottom: 10px;
}
.team_details_page .right_team_details .years_list li::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #2C70AE;
  border-radius: 100%;
  left: 0;
  top: 8px;
  z-index: 1;
}
.team_details_page .right_team_details .years_list li::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #707070;
  left: 4px;
  top: 8px;
  z-index: 0;
}
.team_details_page .right_team_details .years_list li:last-child::after {
  display: none;
}

.blog_page {
  padding: 60px 0 30px;
}
.blog_page .blog_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 300px;
  grid-gap: 30px;
}
.blog_page .blog_wrapper .blog_item_card {
  position: relative;
}
.blog_page .blog_wrapper .blog_item_card img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog_page .blog_wrapper .blog_item_card:first-child {
  grid-column: 1/3;
  grid-row: 1/3;
}
.blog_page .blog_wrapper .blog_item_card .overlay {
  position: absolute;
  width: 80%;
  height: 100%;
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  top: 0;
}
.blog_page .blog_wrapper .blog_item_card .overlay_2 {
  position: absolute;
  width: 100%;
  height: 70%;
  right: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  bottom: 0;
}
.blog_page .blog_wrapper .blog_item_card .content_area, .blog_page .blog_wrapper .blog_item_card .content_area2 {
  padding: 30px;
  width: 45%;
  height: 100%;
  position: absolute;
  right: 10px;
  display: flex;
  align-items: center;
}
.blog_page .blog_wrapper .blog_item_card .content_area .heading, .blog_page .blog_wrapper .blog_item_card .content_area2 .heading {
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  font-family: "Saira-Bold";
}
.blog_page .blog_wrapper .blog_item_card .content_area .date, .blog_page .blog_wrapper .blog_item_card .content_area2 .date {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
}
.blog_page .blog_wrapper .blog_item_card .content_area p, .blog_page .blog_wrapper .blog_item_card .content_area2 p {
  margin-top: 20px;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blog_page .blog_wrapper .blog_item_card .content_area .primary_btn, .blog_page .blog_wrapper .blog_item_card .content_area2 .primary_btn {
  margin-top: 20px;
  margin-left: 0;
  background-color: transparent;
  padding: 0;
  font-family: "Saira-Regular";
  border-bottom: 1px solid transparent;
}
.blog_page .blog_wrapper .blog_item_card .content_area .primary_btn:hover, .blog_page .blog_wrapper .blog_item_card .content_area2 .primary_btn:hover {
  border-bottom: 1px solid #FFFFFF;
}
.blog_page .blog_wrapper .blog_item_card .content_area .primary_btn::before, .blog_page .blog_wrapper .blog_item_card .content_area2 .primary_btn::before {
  display: none;
}
.blog_page .blog_wrapper .blog_item_card .content_area {
  top: 0;
}
.blog_page .blog_wrapper .blog_item_card .content_area2 {
  padding: 30px;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0px;
  display: flex;
  align-items: center;
}
.blog_page .load_more {
  color: #000000;
}
.blog_page .load_more:hover {
  color: #2C70AE;
  text-decoration: underline;
}

.blog_list_card {
  padding: 0px;
  margin-bottom: 30px;
}
.blog_list_card .heading {
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  font-family: "Saira-Bold";
}
.blog_list_card .blog_lisit_body {
  margin-top: 30px;
}
.blog_list_card .blog_lisit_body .date {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #707070;
}
.blog_list_card .blog_lisit_body p {
  margin-top: 20px;
  color: #707070;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog_list_card .blog_lisit_body .primary_btn {
  margin-left: 0;
  margin-top: 20px;
  background-color: transparent;
  padding: 0;
  font-family: "Saira-Regular";
  border-bottom: 1px solid transparent;
  color: #000000;
}
.blog_list_card .blog_lisit_body .primary_btn:hover {
  border-bottom: 1px solid #000000;
}
.blog_list_card .blog_lisit_body .primary_btn::after {
  background-image: url("../images/svg/btnright-active.svg");
}
.blog_list_card .blog_lisit_body .primary_btn::before {
  display: none;
}

.blog_details_page {
  padding: 60px 0;
}
.blog_details_page .blog_details_single .heading {
  margin-top: 30px;
  color: #000000;
  margin-bottom: 20px;
  font-family: "Saira-Bold";
}
.blog_details_page .blog_details_single .date {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #707070;
  margin-bottom: 20px;
}
.blog_details_page .blog_details_single p {
  margin-bottom: 20px;
  color: #707070;
}
.blog_details_page .blog_details_single .video-area {
  margin-top: 40px;
  position: relative;
}
.blog_details_page .blog_details_single .video-area img {
  width: 100%;
  border-radius: 0px;
  margin: 0;
}
.blog_details_page .blog_details_single .video-area .video-btn {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.26);
  border: none;
  animation: animate 2s linear infinite;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  40% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  80% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}
.blog_details_page .blog_details_single .share_navigation_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.blog_details_page .blog_details_single .share_navigation_area .share a {
  margin-right: 20px;
}
.blog_details_page .blog_details_single .share_navigation_area .share a i {
  font-size: 20px;
  color: #091821;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.blog_details_page .blog_details_single .share_navigation_area .share a:last-child {
  margin-right: 0;
}
.blog_details_page .blog_details_single .share_navigation_area .share a:hover i {
  color: #2C70AE;
}
.blog_details_page .blog_details_single .share_navigation_area .prev_next .primary_btn {
  padding: 12px 20px;
  display: inline-block;
  text-align: center;
}
.blog_details_page .blog_details_single .share_navigation_area .prev_next .primary_btn i {
  margin-right: 15px;
}
.blog_details_page .blog_details_single .share_navigation_area .prev_next .primary_btn:last-child {
  margin-left: 30px;
}
.blog_details_page .blog_details_single .share_navigation_area .prev_next .primary_btn:last-child i {
  margin-right: 0;
  margin-left: 15px;
}
.blog_details_page .blog_details_single .share_navigation_area .prev_next .primary_btn::after {
  display: none;
}
.blog_details_page .blog_details_single .share_navigation_area .prev_next .primary_btn::before {
  top: 0;
}
.blog_details_page .recent_blog_area {
  background-color: #2C70AE;
  padding: 40px;
}
.blog_details_page .recent_blog_area .heading {
  color: #FFFFFF;
}
.blog_details_page .recent_blog_area .recent_blog {
  margin-top: 30px;
}
.blog_details_page .recent_blog_area .recent_blog li {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #FFFFFF;
}
.blog_details_page .recent_blog_area .recent_blog li .heading {
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  font-family: "Saira-Bold";
}
.blog_details_page .recent_blog_area .recent_blog li .date {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
}
.blog_details_page .recent_blog_area .recent_blog li p {
  margin-top: 20px;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog_details_page .recent_blog_area .recent_blog li .primary_btn {
  margin-left: 0;
  margin-top: 20px;
  background-color: transparent;
  padding: 0;
  font-family: "Saira-Regular";
  border-bottom: 1px solid transparent;
  color: #FFFFFF;
}
.blog_details_page .recent_blog_area .recent_blog li .primary_btn:hover {
  border-bottom: 1px solid #FFFFFF;
}
.blog_details_page .recent_blog_area .recent_blog li .primary_btn::after {
  background-image: url("../images/svg/btnright.svg");
}
.blog_details_page .recent_blog_area .recent_blog li .primary_btn::before {
  display: none;
}
.blog_details_page .recent_blog_area .recent_blog li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px solid #FFFFFF;
}

.services_details {
  padding: 40px 0 30px;
}
.services_details .services_details_single .services-img {
  margin-top: 0px;
}
.services_details .services_details_single .heading {
  margin-top: 30px;
  color: #000000;
  margin-bottom: 20px;
  font-family: "Saira-Bold";
}
.services_details .services_details_single p {
  margin-bottom: 30px;
  color: #707070;
}
.services_details .services_details_single .services_list_card {
  margin-bottom: 40px;
}
.services_details .services_details_single .services_list_card .services_top_images {
  position: relative;
}
.services_details .services_details_single .services_list_card .services_top_images .primary_btn_box {
  position: absolute;
  bottom: 20px;
  right: 0;
}
.services_details .services_details_single .services_list_card .services_top_images .primary_btn_box .primary_btn {
  padding-left: 0;
  background-color: #2C70AE;
  font-size: 14px;
}
.services_details .services_details_single .services_list_card .services_top_images .primary_btn_box .primary_btn::before {
  background-color: transparent;
  width: 0;
  height: 0;
  border-bottom: 41px solid #2C70AE;
  border-left: 41px solid transparent;
  left: -41px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.services_details .services_details_single .services_list_card .services_top_images .primary_btn_box .primary_btn:hover {
  background-color: #000000;
}
.services_details .services_details_single .services_list_card .services_top_images .primary_btn_box .primary_btn:hover::before {
  border-bottom: 41px solid #000000;
}
.services_details .services_details_single .services_list_card .services_title {
  width: 80%;
  background-color: #2C70AE;
  min-height: 83px;
  padding: 20px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  position: relative;
}
.services_details .services_details_single .services_list_card .services_title h6 {
  font-family: "Saira-SemiBold";
  color: #FFFFFF;
}
.services_details .services_details_single .services_list_card .services_title::before {
  position: absolute;
  content: "";
  display: inline-block;
  border-top: 83px solid #1C5F9B;
  border-right: 30px solid transparent;
  right: -30px;
  top: 0;
  z-index: 1;
}
.services_details .services_details_single .services_list_card .services_title::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../images/svg/services_list_logo.png);
  background-size: cover;
  right: -81px;
  top: 0;
  width: 78.42px;
  height: 63px;
  z-index: 0;
}
.services_details .other_services_area {
  position: relative;
}
.services_details .other_services_area .heading {
  font-family: "Saira-SemiBold";
}
.services_details .other_services_area .other_slider .other_service_card {
  background: blue;
  position: relative;
}
.services_details .other_services_area .other_slider .other_service_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.services_details .other_services_area .other_slider .other_service_card .overlay {
  background: rgba(0, 0, 0, 0.68);
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services_details .other_services_area .other_slider .other_service_card .overlay h6 {
  font-family: "Saira-SemiBold";
  color: #FFFFFF;
  width: 65%;
}
.services_details .other_services_area .other_slider .other_service_card .overlay .primary_btn {
  width: 100px;
  margin-left: 0px;
  padding: 0px 0;
  background: transparent;
  font-size: 13px;
  border-bottom: 1px solid transparent;
}
.services_details .other_services_area .other_slider .other_service_card .overlay .primary_btn::before {
  display: none;
}
.services_details .other_services_area .other_slider .other_service_card .overlay .primary_btn:hover {
  border-bottom: 1px solid #FFFFFF;
}
.services_details .other_services_area .other_slider .slick-list {
  padding-right: 30px;
}
.services_details .other_services_area .other_slider .slick-slide {
  margin-right: 20px;
}
.services_details .other_services_area .slick-slider-nav3 {
  position: absolute;
  right: 0px;
  top: 5px;
  z-index: 3;
  display: flex;
}
.services_details .other_services_area .slick-slider-nav3 .slick-prev,
.services_details .other_services_area .slick-slider-nav3 .slick-next {
  width: 20px;
  height: 13px;
  padding: 0;
  position: relative;
  top: 12px;
}
.services_details .other_services_area .slick-slider-nav3 .slick-prev::before,
.services_details .other_services_area .slick-slider-nav3 .slick-next::before {
  display: none;
}
.services_details .other_services_area .slick-slider-nav3 .slick-prev {
  left: 0;
  background-image: url("../images/svg/arrowLeft.svg");
  background-size: cover;
  margin-right: 15px;
}
.services_details .other_services_area .slick-slider-nav3 .slick-next {
  right: 0px;
  background-image: url("../images/svg/arrowRight.svg");
  background-size: cover;
}

.request_right_more {
  margin-bottom: 40px;
  padding: 25px 30px;
  background-color: #2C70AE;
}
.request_right_more .heading {
  color: #FFFFFF;
}
.request_right_more .form-control {
  margin-bottom: 20px;
  margin-right: 0px;
  padding: 10px 15px;
  border: 1px solid transparent;
  font-family: "Saira-Regular";
  font-size: 14px;
}
.request_right_more .form-message {
  resize: none;
  height: 130px;
}
.request_right_more .primary_btn {
  margin-left: 0;
}
.request_right_more .primary_btn::before {
  display: none;
}
.request_right_more .primary_btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.request_right_more .primary_btn:hover::after {
  background-image: url("../images/svg/btnright-active.svg");
}

.contact_page {
  padding: 60px 0;
}
.contact_page .contact_details_area {
  position: relative;
}
.contact_page .contact_details_area .contact_info_card .info_top {
  background-color: #2C70AE;
  padding: 40px 40px;
  margin-bottom: 20px;
}
.contact_page .contact_details_area .contact_info_card .info_top h3 {
  display: flex;
  align-items: flex-end;
  color: #FFFFFF;
}
.contact_page .contact_details_area .contact_info_card .info_top h3::after {
  margin-left: 20px;
  content: "";
  display: inline-block;
  width: 120px;
  height: 1px;
  background-color: #FFFFFF;
  margin-bottom: 17px;
}
.contact_page .contact_details_area .contact_info_card .info_top h3 span {
  font-family: "Saira-Regular";
  font-size: 18px;
  line-height: 1.8;
  margin-left: 6px;
}
.contact_page .contact_details_area .contact_info_card .info_top .info_wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  grid-gap: 20px;
  grid-row-gap: 30px;
  grid-auto-rows: minmax(30px, auto);
}
.contact_page .contact_details_area .contact_info_card .info_top .info_wrapper .info_item {
  padding: 0px;
  position: relative;
  padding-left: 55px;
}
.contact_page .contact_details_area .contact_info_card .info_top .info_wrapper .info_item ul li {
  position: relative;
  padding-bottom: 10px;
}
.contact_page .contact_details_area .contact_info_card .info_top .info_wrapper .info_item ul li p {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.contact_page .contact_details_area .contact_info_card .info_top .info_wrapper .info_item ul li a {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.contact_page .contact_details_area .contact_info_card .info_top .info_wrapper .info_item ul li a:hover {
  text-decoration: underline;
}
.contact_page .contact_details_area .contact_info_card .info_top .info_wrapper .info_item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
}
.contact_page .contact_details_area .contact_info_card .contact_detail_map {
  background-color: transparent;
  padding: 0;
  margin: 0px 0 0 0;
  padding: 0;
  z-index: 0;
  position: relative;
  height: 280px;
}
.contact_page .contact_details_area .contact_info_card .contact_detail_map iframe {
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  position: absolute;
  height: 100%;
}
.contact_page .carousel-control-next, .contact_page .carousel-control-prev {
  opacity: 1;
}
.contact_page .carousel-control-next-icon, .contact_page .carousel-control-prev-icon {
  width: 45px;
  height: 45px;
}
.contact_page .carousel-control-next {
  right: -22.5px;
}
.contact_page .carousel-control-prev {
  left: -22.5px;
}
.contact_page .carousel-control-next, .contact_page .carousel-control-prev {
  width: auto;
  align-items: flex-start;
  top: 21%;
}
.contact_page .carousel-control-next-icon {
  background-image: url(../images/svg/contact_card_right_arrow.svg);
}
.contact_page .carousel-control-prev-icon {
  background-image: url(../images/svg/contact_card_left_arrow.svg);
}
.contact_page .align-request {
  display: flex;
}
.contact_page .align-request .request_right_more {
  width: 100%;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}
.contact_page .align-request .request_right_more div {
  width: 100%;
}
.contact_page .partner_offices {
  margin: 70px 0 0;
  padding: 30px 0 0;
}
.contact_page .partner_offices .heading {
  margin-bottom: 50px;
}
.contact_page .partner_offices .contact_partner_card {
  margin-bottom: 30px;
}
.contact_page .partner_offices .contact_partner_card .top_map_box {
  background-color: transparent;
  padding: 0;
  margin: 0px 0 0 0;
  padding: 0;
  z-index: 0;
  position: relative;
  height: 220px;
}
.contact_page .partner_offices .contact_partner_card .top_map_box iframe {
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  position: absolute;
  height: 100%;
}
.contact_page .partner_offices .contact_partner_card .contact_body_info_area {
  padding: 40px 20px;
  background-color: #2C70AE;
}
.contact_page .partner_offices .contact_partner_card .contact_body_info_area ul li {
  position: relative;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
.contact_page .partner_offices .contact_partner_card .contact_body_info_area ul li img {
  width: 50px;
  margin-right: 15px;
}
.contact_page .partner_offices .contact_partner_card .contact_body_info_area ul li p {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.contact_page .partner_offices .contact_partner_card .contact_body_info_area ul li p a {
  display: block;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 3px;
}
.contact_page .partner_offices .contact_partner_card .contact_body_info_area ul li p a:hover {
  text-decoration: underline;
}
.contact_page .partner_offices .contact_partner_card .contact_body_info_area ul li p a:last-child {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .about_our_team .container {
    max-width: calc((100% - 540px) / 2 + 540px) !important;
    margin-right: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .about_our_team .container {
    max-width: calc((100% - 720px) / 2 + 720px) !important;
  }
}
@media (min-width: 992px) {
  .about_our_team .container {
    max-width: calc((100% - 960px) / 2 + 960px) !important;
  }
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    top: 60px;
    border: 0px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .navbar .nav-item .dropdown-menu {
    border-radius: 0;
    left: -1px;
    width: 220px;
  }
  .navbar .nav-item .dropdown-menu li .dropdown-item {
    white-space: inherit;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:focus, .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    color: #FFFFFF;
    background-color: #2C70AE;
  }
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .about_our_team .container {
    max-width: calc((100% - 1320px) / 2 + 1320px) !important;
  }
}
@media (min-width: 1400px) {
  .about_our_team .container {
    max-width: calc((100% - 1320px) / 2 + 1320px) !important;
  }
}
@media (min-width: 1199.98px) and (max-width: 1399.98px) {
  .contact_page .contact_details_area .contact_info_card .info_top .info_wrapper {
    grid-template-columns: 1.3fr 1fr;
  }
}
@media (min-width: 991.98px) and (max-width: 1199.98px) {
  .whoWeAre .whoWeAreCenter .whoWeBox ul {
    flex-direction: column;
  }
  .whoWeAre .whoWeAreCenter .whoWeBox ul {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1399.98px) {
  .inner_banner .inner_banner_content h2 {
    font-size: 32px;
  }
  .homeBanner .carousel-content .caption h1 {
    font-size: 45px;
    line-height: 55px;
  }
  .homeBanner .carousel-content .caption .btngroup a {
    font-size: 14px;
    padding: 10px 10px;
    margin-right: 15px;
  }
  .homeBanner .carousel-content .caption .btngroup a:last-child {
    margin-right: 0px;
  }
  .our-services .servicesSlider .serviceBox ul li:last-child .contents {
    padding: 30px 35px;
  }
  .team_item_card .team_photo_area .link_text {
    bottom: 0;
    width: 90px;
    height: 90px;
  }
  .team_item_card .team_photo_area .link_text img {
    width: 40px;
  }
  .team_item_card .team_photo_area .link_text .primary_btn {
    font-size: 13px;
  }
  .about_clients {
    padding-bottom: 30px;
  }
  .blog_page .blog_wrapper {
    grid-auto-rows: 230px;
  }
  .services_details .services_details_single .services_list_card .services_title h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199.98px) {
  footer .quickLinks {
    margin-bottom: 25px;
  }
  footer .quickLinks ul {
    grid-template-columns: 1fr;
  }
  footer .quickLinks ul li {
    margin-bottom: 10px;
  }
  footer .quickLinks .followUs {
    flex-direction: column;
  }
  footer .quickLinks .followUs p {
    padding-bottom: 5px;
  }
  .homeBanner .carousel-content .caption h1 {
    font-size: 36px;
    line-height: 45px;
  }
  .inner_banner .inner_banner_content h2 {
    font-size: 27px;
  }
  .whoWeAre .whoWeAreCenter {
    margin-top: 50px;
  }
  .our-services .slick-center .services_slider_card ul li:last-child .contents {
    padding: 10px 30px;
  }
  .our-services .slick-center .services_slider_card ul li:last-child .contents h4 {
    font-size: 24px;
  }
  .whoWeAreAbout {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .whoWeAreAbout .whoWeAre_left_wrapper .whoWeAreLeft {
    padding-bottom: 10px;
  }
  .whoWeAreAbout .whoWeAre_right_wrapper .whoWeAreRight {
    width: 100%;
    height: 400px;
  }
  .whoWeAreAboutBox {
    padding-top: 50px;
  }
  .about_mission_vision .about_mi_vi_wrapper {
    grid-template-columns: 1fr;
    grid-gap: 70px;
  }
  .about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card .icon_boxmv {
    width: 90px;
    height: 90px;
    top: -45px;
  }
  .our_team_page {
    padding-top: 20px;
  }
  .team_item_card {
    border-bottom: 5px solid #2C70AE;
  }
  .team_item_card .team_photo_area .over_lay_blue {
    opacity: 1;
  }
  .team_item_card .team_photo_area .link_text {
    opacity: 1;
    width: 90px;
    height: 100px;
  }
  .team_details_page .profile_info_wrapper .profile_img .over_lay_blue {
    opacity: 1;
  }
  .blog_page {
    padding-top: 0;
  }
  .blog_details_page .recent_blog_area {
    padding: 30px 20px;
  }
  .blog_details_page .recent_blog_area .recent_blog li .heading {
    font-size: 16px;
  }
  .contact_page .align-request .request_right_more {
    margin-top: 50px;
  }
  .contact_page .partner_offices .contact_partner_card .contact_body_info_area ul li p {
    font-size: 13px;
  }
  .contact_page .partner_offices .contact_partner_card .contact_body_info_area ul li p a {
    font-size: 13px;
  }
  .services_details .other_services_area .other_slider .slick-list {
    padding-right: 10%;
  }
}
@media only screen and (max-width: 991.98px) {
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
  header .navbar .navbar-nav .nav-item {
    display: block;
  }
  header .navbar {
    padding: 20px 0;
  }
  header .navbar .navbar-collapse {
    height: 81vh !important;
  }
  header .navbar .navbar-collapse .navbar-nav {
    margin-top: 20px;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown .dropdown-toggle::after {
    display: none;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }
  header .navbar .navbar-collapse .navbar-nav .desktopMenu {
    display: none;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu {
    display: block;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu .dropdown-menu {
    border: 0px;
    padding: 0px;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu h5 {
    padding-left: 10px;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu h5 a {
    color: #2C70AE;
    margin-bottom: 10px;
    font-size: 14px;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu .ContentsItems {
    height: auto;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu .ContentsItems ul li {
    margin-bottom: 0px;
    border-bottom: 0px solid #CECECE;
    padding: 5px 0px;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu .ContentsItems ul li a {
    font-size: 13px;
    color: #000000;
    padding-left: 10px;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu .ContentsItems ul li a:hover {
    color: #2C70AE;
  }
  header .navbar .navbar-collapse .navbar-nav .mobileMenu .ContentsItems ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  header .navbar .navbar-nav .nav-item .nav-link {
    border-bottom: 0px;
  }
  header .navbar .navbar-nav .nav-item .nav-link:hover {
    border-bottom: 0;
  }
  header .navbar .navbar-nav .nav-item:last-child {
    margin-top: 15px;
  }
  header .navbar .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    border: 0px solid rgba(0, 0, 0, 0.15);
  }
  header .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 0.3rem 1rem;
  }
  header .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus, header .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    color: #FFFFFF;
    background-color: #2C70AE;
  }
  footer .footer_box {
    margin-bottom: 25px;
  }
  footer .contactInfo:after, footer .services_slider_box:after {
    display: none;
  }
  footer .quickLinks ul {
    grid-template-columns: 1fr 1fr;
  }
  footer .logoFooter::after {
    display: block !important;
  }
  .whoWeAre .whoWeAreRight::before {
    bottom: 0px;
  }
  .heading {
    font-size: 25px;
  }
  h5 {
    font-size: 17px;
  }
  h6 {
    font-size: 15px;
  }
  .homeBanner .carousel-content .caption h1 {
    font-size: 25px;
    line-height: 35px;
  }
  .homeBanner .carousel-content .caption .btngroup a {
    margin-left: 0;
  }
  .homeBanner .carousel-content .caption .btngroup a img {
    display: none;
  }
  .homeBanner .carousel-content .caption .btngroup a::before {
    display: none;
  }
  .homeBanner .carousel-content .caption p {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .homeBanner::after {
    width: 6rem;
    height: 6rem;
  }
  .whoWeAre .whoWeAreCenter {
    grid-template-columns: 1fr;
  }
  .ourBranch .ourbranchHead .ourbranchHeadLeft .headtop {
    border-right: 0px solid #707070;
  }
  .our-services .slick-center .services_slider_card {
    height: auto;
  }
  .our-services .slick-center .services_slider_card ul {
    flex-direction: column;
  }
  .our-services .slick-center .services_slider_card ul li {
    width: 100%;
  }
  .our-services .slick-center .services_slider_card ul li:last-child {
    height: 350px;
  }
  .inner_banner .overlay {
    width: 100%;
  }
  .inner_banner .inner_banner_content h2 {
    font-size: 22px;
  }
  .inner_banner .inner_banner_content .primary_btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .inner_banner .inner_banner_content .primary_btn::after {
    width: 16px;
    height: 11px;
    margin-left: 10px;
  }
  .whoWeAreAboutBox .whoWeAreCenter {
    grid-template-columns: 1fr;
  }
  .about_captain::before {
    display: none;
  }
  .about_captain .about_captain_flex {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .about_captain .about_captain_flex .left_captain_image {
    padding: 50px 0 0;
    width: 100%;
    background-color: transparent;
  }
  .about_captain .about_captain_flex .left_captain_image .profile_img {
    width: 45%;
  }
  .about_captain .about_captain_flex .right_captain_details {
    width: 100%;
    padding-bottom: 0px;
  }
  .second_captain_details {
    padding-top: 10px;
  }
  .our_team_page .team_form form {
    flex-direction: column;
  }
  .our_team_page .team_form form .form-control {
    margin-bottom: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    background-position-y: 21px;
  }
  .team_item_card .team_photo_area .link_text {
    width: 80px;
    height: 90px;
  }
  .team_details_page .profile_info_wrapper .profile_img {
    width: 45%;
  }
  .team_details_page .right_team_details h4 {
    font-size: 20px;
  }
  .team_details_page .right_team_details .years_list li {
    padding-left: 30px;
  }
  .blog_page .blog_wrapper {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    grid-gap: 25px;
    grid-row-gap: 40px;
  }
  .blog_page .blog_wrapper .blog_item_card .overlay {
    width: 90%;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area {
    width: 55%;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area .heading {
    font-size: 20px;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area .primary_btn {
    font-size: 14px;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area2 {
    bottom: 10px;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area2 .heading {
    font-size: 18px;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area2 .primary_btn {
    margin-top: 10px;
    font-size: 14px;
  }
  .blog_list_card .heading {
    font-size: 18px;
  }
  .blog_list_card .blog_lisit_body p {
    margin-top: 10px;
  }
  .blog_list_card .blog_lisit_body .primary_btn {
    margin-top: 10px;
    font-size: 14px;
  }
  .blog_details_page {
    padding-top: 0;
  }
  .blog_details_page h4 {
    font-size: 20px;
  }
  .blog_details_page .recent_blog_area {
    margin-top: 50px !important;
  }
  .services_details {
    padding: 0px 0 30px;
  }
  .services_details .services_details_single h5 {
    font-size: 18px;
  }
  .contact_page .contact_details_area .contact_info_card .info_top .info_wrapper {
    grid-template-columns: 1.3fr 1fr;
  }
}
@media only screen and (max-width: 961px) {
  .topHeader .topHeaderLeft {
    display: flex;
    align-items: center;
  }
  .topHeader .topHeaderLeft ul li a p {
    display: none;
  }
  .topHeader .topHeaderRight {
    align-items: center;
  }
  .whoWeAre .whoWeAreRight::before {
    right: 0;
  }
  .blogs .blogsLeft .leftContents {
    margin-bottom: 30px;
  }
  .testimonials .slick-prev {
    left: 82%;
  }
  .whoWeAreAboutBox .whoWeAreCenter {
    grid-template-columns: 1fr;
    margin-top: 0;
    grid-gap: 20px;
  }
  .whoWeAreAboutBox .whoWeAreCenter .whoWeBox {
    margin-bottom: 0;
  }
  .whoWeAreAboutBox .whoWeAreCenter .whoWeBox:first-child {
    grid-column: 1/2;
  }
  .whoWeAreAboutBox .whoWeAreCenter .whoWeBox:nth-child(2) {
    grid-column: 1/2;
  }
  .whoWeAreAboutBox .whoWeAreCenter .whoWeBox:last-child {
    grid-column: 1/2;
  }
}
@media only screen and (max-width: 767.98px) {
  .whoWeAre .whoWeAreCenter .whoWeBox {
    padding: 10px;
  }
  .homeBanner .navigation_circle {
    width: 4rem;
    height: 4rem;
  }
  .homeBanner .carousel-control-next, .homeBanner .carousel-control-prev {
    width: 2rem;
  }
  .homeBanner .carousel-control-prev {
    top: 15px;
  }
  .homeBanner .carousel-control-next {
    top: -1px;
  }
  .homeBanner .carousel-control-prev-icon, .homeBanner .carousel-control-next-icon {
    height: 1rem;
    width: 1.5rem;
  }
  .inner_banner .overlay {
    width: 67%;
  }
  .inner_banner picture img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .inner_banner .inner_banner_content h2 {
    font-size: 19px;
    padding-bottom: 0px;
  }
  .inner_banner .inner_banner_content .primary_btn {
    display: none;
  }
  .our-services .servicesSlider .serviceBox ul li:last-child .contents {
    padding: 20px;
  }
  footer .logoFooter::after {
    display: none !important;
  }
  footer .bottomFooter {
    padding-bottom: 80px;
  }
  footer .bottomFooter .bottomFooterLeft, footer .bottomFooter .bottomFooterRight {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whoWeAreAboutBox .whoWeAreCenter .whoWeBox:nth-child(2) {
    background-color: #2C70AE;
  }
  .whoWeAreAboutBox .whoWeAreCenter .whoWeBox:nth-child(2) ul li h5 {
    color: #FFFFFF;
  }
  .whoWeAreAboutBox .whoWeAreCenter .whoWeBox:nth-child(2) ul li p {
    color: #FFFFFF;
  }
  .about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card {
    padding-left: 30px;
    padding-right: 30px;
  }
  .about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card .icon_boxmv {
    left: 30px;
  }
  .about_mission_vision .about_mi_vi_wrapper .about_mi_vi_card::before {
    left: 30px;
  }
  .about_our_team .about_team_left {
    padding-right: 50px;
  }
  .about_our_team .about_team_right {
    margin-top: 40px;
  }
  .about_our_team .about_team_right .slick-slide {
    margin: 0 30px 0 0;
  }
  .about_clients {
    padding-bottom: 10px;
    padding-top: 30px;
  }
  .about_clients .clients_slider {
    margin-top: 0px;
  }
  .fixedrightSidebar {
    display: none;
  }
  .fixedBottomBar {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 10;
    left: 0;
    width: 100%;
    background-color: #2C70AE;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.26);
  }
  .fixedBottomBar ul {
    display: flex;
    padding-left: 0;
    padding-right: 0;
  }
  .fixedBottomBar ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3%;
    background: #2C70AE;
    border-right: 1px solid #fff;
  }
  .fixedBottomBar ul li img {
    width: 55px;
  }
  .fixedBottomBar ul li:last-child {
    border-right: 0px;
  }
  .fixedBottomBar ul li:last-child a {
    color: #fff;
  }
  .fixedBottomBar ul li:last-child a:hover {
    color: #2C70AE;
  }
  .fixedBottomBar ul li a {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .homeBanner .carousel-content .caption h1 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .homeBanner .carousel-content .caption p {
    display: none;
  }
  .homeBanner .carousel-content .caption a {
    font-size: 14px;
  }
  .homeBanner .carousel-content .caption a::before {
    background-color: #FFFFFF;
  }
  .whoWeAre .whoWeAreRight::before {
    top: 20px;
  }
  .whoWeAre .whoWeAreCenter {
    display: block;
  }
  .whoWeAre .whoWeAreCenter .whoWeBox {
    display: block;
    margin: auto;
    margin-bottom: 15px;
  }
  .whoWeAre .whoWeAreLeft {
    margin-bottom: 25px;
  }
  .testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox {
    padding: 30px 40px;
  }
  .testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul {
    display: block;
  }
  .testimonials .slick-prev {
    left: 75%;
  }
  .testimonials .testimonialsContent .testimonialFullBox .testimonialSlider .testimonialbox ul li:first-child {
    margin-bottom: 20px;
  }
  header .navbar {
    padding: 10px 0;
  }
  .homeBanner .carousel-content .caption .primary_btn {
    padding: 7px 16px;
  }
  .our-services .servicesSlider .serviceBox ul {
    display: block;
  }
  .our-services .servicesSlider .serviceBox ul li {
    width: 100%;
  }
  .our-services .btnleft {
    background: #000;
    position: absolute;
    z-index: 2;
    left: 5%;
    height: inherit;
    top: -49px;
    width: 90%;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    writing-mode: inherit;
  }
  .our-services .btnleft h6 {
    writing-mode: inherit;
  }
  .our-services .btnRight {
    position: absolute;
    z-index: 2;
    right: 5%;
    height: inherit;
    top: inherit;
    bottom: -48px;
    width: 90%;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    writing-mode: inherit;
  }
  .our-services .btnRight h6 {
    writing-mode: inherit;
  }
  .our-services .headtop .heading {
    margin-bottom: 70px;
  }
  .our_team_page .team_form {
    padding: 30px 15px;
  }
  .blog_page .blog_wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(10px, auto);
  }
  .blog_page .blog_wrapper .blog_item_card img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  .blog_page .blog_wrapper .blog_item_card .overlay {
    position: absolute !important;
    width: 100%;
    height: 70%;
    right: 0;
    top: 30%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  }
  .blog_page .blog_wrapper .blog_item_card:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area {
    width: 100%;
    right: 0px;
    align-items: flex-end;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area p {
    margin-top: 10px;
    display: none;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area .primary_btn {
    margin-top: 10px;
    font-size: 14px;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area .heading {
    font-size: 18px;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area2 {
    height: 100%;
    bottom: 0;
    align-items: flex-end;
  }
  .services_details .services_details_single .services_list_card {
    margin-bottom: 30px;
  }
  .contact_page .contact_details_area .contact_info_card .info_top .info_wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600.98px) {
  .team_item_card .team_photo_area .link_text {
    height: 80px;
  }
  .team_item_card .team_photo_area .link_text img {
    width: 35px;
  }
  .team_item_card .team_photo_area .link_text .primary_btn {
    margin-top: 5px;
    height: 40px;
  }
}
@media only screen and (max-width: 575.98px) {
  footer .quickLinks::after {
    display: none !important;
  }
  footer .services_slider_box {
    margin-bottom: 0px;
  }
  footer .slick-slider-nav2 {
    right: 16%;
  }
  .our-services .slick-center .services_slider_card ul li:last-child .contents h4 {
    font-size: 18px;
  }
  .about_captain .about_captain_flex .left_captain_image .profile_img {
    width: 100%;
  }
  .team_item_card .team_photo_area .link_text {
    height: 75px;
  }
  .team_item_card .team_photo_area .link_text img {
    width: 30px;
  }
  .team_item_card .team_photo_area .link_text .primary_btn {
    margin-top: 5px;
    height: 40px;
  }
  .team_details_page .profile_info_wrapper .profile_img {
    width: 100%;
  }
  .blog_page .blog_wrapper .blog_item_card .content_area2, .blog_page .blog_wrapper .blog_item_card .content_area {
    padding: 20px;
  }
  .blog_details_page h4 {
    font-size: 18px;
  }
  .blog_details_page .blog_details_single .share_navigation_area {
    flex-direction: column;
  }
  .blog_details_page .blog_details_single .share_navigation_area .share {
    width: 100%;
  }
  .blog_details_page .blog_details_single .prev_next {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }
  .request_right_more {
    padding: 30px 15px;
  }
  .request_right_more h4 {
    font-size: 19px;
  }
  .contact_page .carousel-control-prev {
    left: -10px;
    top: 95%;
  }
  .contact_page .carousel-control-next {
    right: -10px;
    top: 95%;
  }
}
@media only screen and (max-width: 525.98px) {
  .homeBanner .carousel-content .caption h1 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .homeBanner .carousel-content .caption .primary_btn {
    padding: 7px 15px;
    font-size: 13px;
  }
  .homeBanner::before {
    width: 100%;
  }
  .homeBanner .carousel-content .col-6 {
    width: 80%;
  }
  .homeBanner::after {
    width: 3.5rem;
    height: 3.5rem;
  }
  .mobileBanner .carousel-control-prev-icon, .mobileBanner .carousel-control-next-icon {
    background-size: 13px;
  }
  .our-services .slick-slide div .services_slider_card .slider_heading {
    width: 30px;
  }
  .our-services .slick-slide div .services_slider_card .slider_heading_right {
    width: 30px;
  }
  .our-services .slick-center .services_slider_card ul li:last-child .contents p {
    font-size: 13px;
    line-height: 24px;
  }
  .our-services .slick-center .services_slider_card ul li:last-child .contents {
    padding: 10px 15px;
  }
  .our_team_page .col-6 {
    width: 100%;
  }
  .our_team_page .team_item_card {
    margin-bottom: 30px;
  }
  .team_item_card .team_photo_area .link_text {
    width: 110px;
    height: 110px;
  }
  .team_item_card .team_photo_area .link_text img {
    width: 45px;
  }
  .team_item_card .team_photo_area .link_text .primary_btn {
    height: 50px;
  }
}
@media only screen and (max-width: 450.98px) {
  .about_captain .about_captain_flex .left_captain_image .profile_img {
    width: 75%;
  }
  .bottomFooterRight ul {
    display: flex;
    flex-direction: column;
  }
  .bottomFooterRight ul li {
    text-align: center;
    color: #FFFFFF;
    margin-right: 0px !important;
    border-right: 0px solid #FFFFFF !important;
    padding-right: 0px !important;
  }
  .services_details .other_services_area .other_slider .other_service_card .overlay {
    flex-direction: column;
    align-items: flex-start;
  }
  .services_details .other_services_area .other_slider .other_service_card .overlay h6 {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 390.98px) {
  .team_item_card .team_photo_area .link_text {
    width: 90px;
    height: 80px;
  }
  .team_item_card .team_photo_area .link_text img {
    width: 40px;
  }
  .team_item_card .team_photo_area .link_text .primary_btn {
    height: 40px;
  }
  .services_details .services_details_single .services_list_card .services_title::after {
    width: 62px;
    height: 50.81px;
    right: -70px;
  }
}
.our_team_page .team_form form .form-control {
  height: fit-content;
}

.our_team_page .team_form form .primary_btn {
  height: fit-content;
}

.our_team_page .team_form form {
  column-gap: 10px;
}

form .form-control {
  margin-bottom: 0;
}

form .form-group {
  margin-bottom: 20px;
}

.request_right_more .form-control {
  margin-bottom: 0;
}

.mt-32 {
  margin-top: 32px;
}

.our_team_page .team_form form .primary_btn {
  height: 38px;
}

@media (max-width: 992px) {
  .mt-32 {
    margin-top: 0px;
  }
  .our_team_page .team_form form .primary_btn {
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */
