/* Imports */
@import url("fonts.css");
/* Variables */
:root {
  --primary-font: "Gilroy", sans-serif;
  --primary: #004D8E;
  --secondary: #201E1E;
  --light: #93D4EE;
  --light-alt: #70D6FF;
  --white: #fff;
  --bg-grey: #F5F5F5;
  --dark-grey: #5B5B5B;
  --black: #000;
  --gradient: linear-gradient(91deg, #004D8E 0.71%, #005EAE 93.51%);
  --animate-duration: 1s;
  --animate-delay: 0.9s;
}

/* Default */
* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-color: var(--primary) transparent;
  scrollbar-width: thin;
}

*::-moz-selection {
  background: var(--primary);
  -webkit-text-fill-color: var(--light);
  color: var(--light);
}

*::selection {
  background: var(--primary);
  -webkit-text-fill-color: var(--light);
  color: var(--light);
}

::-webkit-scrollbar {
  width: 5px;
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  overflow-x: hidden;
  position: relative;
  /* img, video {
          width: 100%;
          height: auto;
  } */
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body a,
body p,
body b,
body i,
body u,
body ul,
body ol,
body li,
body span {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  line-height: 100%;
}
body a:focus,
body a:active,
body input,
body input:hover,
body input:focus,
body input:active,
body textarea,
body textarea:hover,
body textarea:focus,
body textarea:active {
  outline: none;
  text-decoration: none;
}
body iframe {
  border: none;
}
body embed,
body object,
body video {
  height: auto;
  max-width: 100%;
}
body p {
  font-size: 1.255vw;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
}
@media (max-width: 992px) {
  body p {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  body p {
    font-size: 1.05rem;
  }
}
body p a {
  color: var(--dark);
  transition: 0.5s ease all;
}
body p a:hover {
  color: var(--primary);
}
body .color_primary {
  color: var(--primary);
  font-weight: 600;
}
body .center-align {
  text-align: center;
}
body .background-lightgrey {
  background-color: var(--light-alt);
}
body .text-light {
  color: var(--secondary);
}
body .text-white {
  color: var(--light);
}
body .primary-btn {
  display: flex;
  position: relative;
  background: var(--primary);
  font-family: var(--primary-font);
  line-height: 20px;
  width: auto;
  border-radius: 10px;
  border: 0;
  padding: 5px 25px;
  height: 3.6vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.7s;
}
@media (max-width: 768px) {
  body .primary-btn {
    font-size: 18px;
    height: 51px;
  }
}
@media (min-width: 1460px) {
  body .primary-btn {
    font-size: 22px;
  }
}
body .primary-btn:before {
  content: "";
  background-image: url("../images/press-release/cts-bg.png");
  width: 55px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  left: 0;
  transform: translateX(0px);
  transition: var(--animate-duration);
}
body .primary-btn .btn_name {
  color: var(--white);
  transition: all 0.7s;
  font-size: 25px;
  font-size: 1.51vw;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  z-index: 1;
}
@media (max-width: 768px) {
  body .primary-btn .btn_name {
    font-size: 1rem;
  }
}
body .primary-btn:hover, body .primary-btn:active {
  background: var(--primary) !important;
}
body section {
  padding: 4vw 0 4vw;
}
@media (max-width: 768px) {
  body section {
    padding: 2rem 0;
  }
}
body .section_title {
  position: relative;
}
body .section_title .medium_title {
  font-family: var(--primary-font);
  color: var(--primary);
  font-size: 2.2vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
}
@media (max-width: 768px) {
  body .section_title .medium_title {
    font-size: 1.2rem;
  }
}
body .section_title h2 {
  position: relative;
  z-index: 1;
  color: var(--dark);
  font-family: var(--primary-font);
  font-size: 4vw;
  color: var(--primary);
  font-style: normal;
  font-weight: bold;
  line-height: 1.15;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  body .section_title h2 {
    font-size: 26px;
  }
}
body .section_title p {
  color: var(--dark);
  font-size: 18px;
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
}
@media (max-width: 768px) {
  body .section_title p {
    font-size: 14px;
    line-height: 1.55;
  }
}
body .section_title:hover svg .group_3 .hover_css {
  transform: translateY(100%);
}
body .section_title:hover svg .group_3 .hover_css2 {
  transform: translateY(-100%);
}
body .semi_title {
  font-family: var(--secondary-font);
  font-size: 2.3vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 1vw;
}
body .accordion {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.1vw;
}
body .accordion .accordion-item {
  border-radius: 1vw;
  border: 0px;
  background: var(--light);
  overflow: hidden;
  padding: 1.4vw;
}
body .accordion .accordion-item .accordion-header {
  margin-bottom: 0;
}
body .accordion .accordion-item .accordion-header .accordion-button {
  border-radius: 0 !important;
  color: var(--dark);
  font-size: 1.35vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  padding: 0;
}
body .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M15 25.7809C14.1908 25.7809 13.5352 25.1252 13.5352 24.316V5.68555C13.5352 4.87637 14.1908 4.2207 15 4.2207C15.8092 4.2207 16.4648 4.87637 16.4648 5.68555V24.316C16.4648 25.1252 15.8092 25.7809 15 25.7809Z' fill='%2300296B'/%3E%3Cpath d='M24.3141 16.4648H5.68359C4.87441 16.4648 4.21875 15.8092 4.21875 15C4.21875 14.1908 4.87441 13.5352 5.68359 13.5352H24.3141C25.1232 13.5352 25.7789 14.1908 25.7789 15C25.7789 15.8092 25.1232 16.4648 24.3141 16.4648Z' fill='%2300296B'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
body .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--light);
  color: var(--color-3);
  font-weight: 500;
  box-shadow: none;
}
body .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M15 25.7809C14.1908 25.7809 13.5352 25.1252 13.5352 24.316V5.68555C13.5352 4.87637 14.1908 4.2207 15 4.2207C15.8092 4.2207 16.4648 4.87637 16.4648 5.68555V24.316C16.4648 25.1252 15.8092 25.7809 15 25.7809Z' fill='%2300296B'/%3E%3Cpath d='M24.3141 16.4648H5.68359C4.87441 16.4648 4.21875 15.8092 4.21875 15C4.21875 14.1908 4.87441 13.5352 5.68359 13.5352H24.3141C25.1232 13.5352 25.7789 14.1908 25.7789 15C25.7789 15.8092 25.1232 16.4648 24.3141 16.4648Z' fill='%2300296B'/%3E%3C/svg%3E");
  transform: rotate(45deg);
}
body .accordion .accordion-item .accordion-header .accordion-button:focus {
  outline: 0 !important;
  box-shadow: none;
}
body .accordion .accordion-item .accordion-collapse .accordion-body {
  background: var(--light);
  background-color: var(--light);
  color: var(--dark-alt);
  font-size: 1.1vw;
  font-style: normal;
  line-height: 1.55;
  padding: 1vw 7vw 0 0;
}
body textarea {
  resize: none;
}
body .fa {
  font-family: "Font Awesome 5 Brands";
}
body .decoration_wrap {
  z-index: 1;
  position: relative;
}
body .decoration_wrap .deco_item {
  z-index: -1;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 30px 30px;
}
body .page_wrapper {
  overflow: hidden;
  position: relative;
}
body .custom-pagination {
  margin: 4.5vw 0;
  padding: 0;
}
@media (max-width: 767px) {
  body .custom-pagination {
    margin: 50px 0 30px;
  }
}
body .custom-pagination .pagination {
  display: flex;
  gap: 0.4vw;
}
@media (max-width: 767px) {
  body .custom-pagination .pagination {
    gap: 5px;
  }
}
body .custom-pagination .pagination .page-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
body .custom-pagination .pagination .page-item a {
  padding: 10px 17px;
  border-radius: 8px;
  border: 1px solid #F1F1F1;
  background: var(--white);
  color: var(--secondary);
  font-size: 1.334vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  box-shadow: none;
}
@media (max-width: 767px) {
  body .custom-pagination .pagination .page-item a {
    font-size: 18px;
  }
}
body .custom-pagination .pagination .page-item.active a, body .custom-pagination .pagination .page-item:hover a {
  border: 1px solid #F1F1F1;
  background: var(--primary);
  color: var(--white);
}

@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1600px;
  }
}
@media (min-width: 2000px) {
  .container {
    max-width: 1800px;
  }
}
@media (min-width: 2200px) {
  .container {
    max-width: 2020px;
  }
}
@media (min-width: 2400px) {
  .container {
    max-width: 2220px;
  }
}
@media (min-width: 2600px) {
  .container {
    max-width: 2420px;
  }
}
@media (min-width: 2800px) {
  .container {
    max-width: 2620px;
  }
}

.fs-100 {
  font-weight: 100;
}

.fs-200 {
  font-weight: 200;
}

.fs-300 {
  font-weight: 300;
}

.fs-400 {
  font-weight: 400;
}

.fs-500 {
  font-weight: 500;
}

.fs-600 {
  font-weight: 600;
}

.fs-700 {
  font-weight: 700;
}

.fs-800 {
  font-weight: 800;
}

.fs-900 {
  font-weight: 900;
}

.main-wrapper {
  position: relative;
}
.main-wrapper #preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  background-color: var(--white);
  background-image: url(../images/logo/preloader.gif);
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 999;
}
.main-wrapper .backtotop {
  z-index: 99;
  inset-inline-end: 20px;
  bottom: 20px;
  text-align: center;
  position: fixed;
}
.main-wrapper .backtotop .scroll {
  width: 44px;
  height: 44px;
  display: flex;
  font-size: 16px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--primary);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .backtotop .scroll:hover {
  transform: translateY(-2px);
}
.main-wrapper .main-menu {
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .main-menu .navbar .container-fluid .menu-list {
  width: 100%;
  padding: 5px 50px;
}
@media (max-width: 540px) {
  .main-wrapper .main-menu .navbar .container-fluid .menu-list {
    padding: 5px 0px;
  }
}
.main-wrapper .main-menu .navbar .container-fluid .menu-list ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 540px) {
  .main-wrapper .main-menu .navbar .container-fluid .menu-list ul {
    flex-direction: row-reverse;
  }
}
@media (max-width: 540px) {
  .main-wrapper .main-menu .navbar .container-fluid .menu-list ul li:nth-child(3) {
    display: none;
  }
}
.main-wrapper .main-menu .navbar .container-fluid .menu-list ul li a.logo {
  height: 50px;
  display: block;
}
.main-wrapper .main-menu .navbar .container-fluid .menu-list ul li a.logo img {
  height: 100%;
}
.main-wrapper .main-menu.site_header {
  position: fixed;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 99;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-wrapper .main-menu .fadeInDown {
  animation-name: fadeInDown;
}
.main-wrapper .main-menu .offcanvas-custom {
  border-right: none;
}
@media (min-width: 768px) {
  .main-wrapper .main-menu .offcanvas-custom {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .main-wrapper .main-menu .offcanvas-custom {
    transition: opacity 0s ease-in-out;
    opacity: 0;
    background-color: var(--bg-grey);
    width: 100%;
  }
}
.main-wrapper .main-menu .offcanvas-custom .offcanvas-header {
  background-color: var(--white);
}
.main-wrapper .main-menu .offcanvas-custom .offcanvas-header .btn-close {
  box-shadow: none;
}
.main-wrapper .main-menu .offcanvas-custom .offcanvas-body {
  padding: 0;
  overflow-y: hidden;
  height: 100%;
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas {
  height: 100%;
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .nav {
  width: 50%;
  height: 100%;
  background-color: var(--white);
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 0;
  color: var(--secondary);
  font-size: 1rem;
  background-color: var(--white);
  box-shadow: none;
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .nav .nav-link .menu-link {
  color: var(--secondary);
  font-family: var(--primary-font);
  font-size: 2.04vw;
  font-style: normal;
  font-weight: 500;
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .nav .nav-link.active, .main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .nav .nav-link:hover {
  background-color: var(--bg-grey);
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .nav .nav-link.active .menu-link, .main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .nav .nav-link:hover .menu-link {
  color: var(--primary);
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .tab-content {
  padding: 2rem 4rem;
  background-color: var(--bg-grey);
  width: 50%;
  height: 100%;
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .tab-content .tab-content-ul li {
  margin-bottom: 1.8rem;
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .tab-content .tab-content-ul li:last-child {
  margin-bottom: 0rem;
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .tab-content .tab-content-ul li a {
  color: var(--secondary);
  font-size: 1.54vw;
  font-style: normal;
  font-weight: 600;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .tab-content .tab-content-ul li a.active {
  color: var(--primary);
}
.main-wrapper .main-menu .offcanvas-custom .main-menu-offcanvas .tab-content .tab-content-ul li:hover a {
  color: var(--primary);
}
.main-wrapper .main-menu .offcanvas-custom .navbar .mobile-nav {
  width: 100%;
}
.main-wrapper .main-menu .offcanvas-custom .navbar .mobile-nav li.nav-item a {
  color: var(--secondary);
  font-family: var(--primary-font);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
}
.main-wrapper .main-menu .offcanvas-custom .navbar .mobile-nav li.nav-item a.dropdown-toggle::after {
  content: "\f054";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  border: none;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transform: rotate(0deg);
}
.main-wrapper .main-menu .offcanvas-custom .navbar .mobile-nav li.nav-item a:hover {
  color: var(--primary);
}
.main-wrapper .main-menu .offcanvas-custom .navbar .mobile-nav li.nav-item a.show {
  background-color: var(--bg-grey);
}
.main-wrapper .main-menu .offcanvas-custom .navbar .mobile-nav li.nav-item .dropdown-menu {
  transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .main-menu .offcanvas-custom .navbar .mobile-nav li.nav-item .dropdown-menu.show {
  position: relative;
  border: none;
  border-radius: 0;
  background-color: var(--bg-grey);
  margin-top: 0;
  padding-top: 0;
}
@media (min-width: 1200px) {
  .main-wrapper .main-menu .offcanvas-custom.show {
    opacity: 1;
    top: 76px;
  }
}
.main-wrapper .main-menu .offcanvas-backdrop.show {
  opacity: 0;
  display: none;
}
.main-wrapper .page-header {
  background: var(--gradient);
  color: var(--white);
}
.main-wrapper .page-header h6 {
  font-size: 2.215vw;
  font-weight: 600;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .main-wrapper .page-header h6 {
    font-size: 22px;
    margin-bottom: 0.35rem;
  }
}
.main-wrapper .page-header h3 {
  font-size: 3.5vw;
  font-weight: bold;
  line-height: 1.55;
}
@media (max-width: 767px) {
  .main-wrapper .page-header h3 {
    font-size: 32px;
    line-height: 1.35;
  }
}
.main-wrapper .hero-section {
  background-image: url(./../images/main/1.png);
  border-radius: 35px 35px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
}
@media (min-width: 768px) {
  .main-wrapper .hero-section {
    height: 60vh;
  }
}
@media (min-width: 1200px) {
  .main-wrapper .hero-section {
    height: 100vh;
  }
}
.main-wrapper .hero-section::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4509803922);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.main-wrapper .hero-section .container {
  position: relative;
  z-index: 1;
}
.main-wrapper .hero-section .container .content {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .main-wrapper .hero-section .container .content {
    padding: 40px 15px;
  }
}
.main-wrapper .hero-section .container .content h4 {
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 4.4vw;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 768px) {
  .main-wrapper .hero-section .container .content h4 {
    font-size: 1.9rem;
    line-height: 1.1;
  }
}
.main-wrapper .hero-section .container .content p {
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 2.1vw;
  font-style: normal;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.145;
}
@media (max-width: 768px) {
  .main-wrapper .hero-section .container .content p {
    font-size: 1.12rem;
  }
}
.main-wrapper .vision {
  background-color: var(--bg-grey);
  background-repeat: no-repeat;
  background-position: bottom left;
  position: relative;
  z-index: 1;
}
.main-wrapper .vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-grey);
  z-index: -1;
  opacity: 0.85;
}
@media (max-width: 991px) {
  .main-wrapper .vision {
    background-image: none;
  }
}
.main-wrapper .vision .container .about-bg {
  margin-top: 20px;
}
.main-wrapper .vision .container .about-bg .row {
  justify-content: end;
}
@media (max-width: 540px) {
  .main-wrapper .vision .container .about-bg .row {
    justify-content: center;
  }
}
.main-wrapper .vision .container .about-bg .row .about-content {
  padding: 40px 35px;
  background-color: var(--white);
  border-radius: 40px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .main-wrapper .vision .container .about-bg .row .about-content {
    margin-top: 30px;
  }
}
.main-wrapper .vision .container .about-bg .row .about-content p {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 1.7vw;
}
@media (max-width: 992px) {
  .main-wrapper .vision .container .about-bg .row .about-content p {
    font-size: 1.2rem;
  }
}
.main-wrapper .vision .container .about-bg .row .about-content .button_wrapp {
  margin-top: 30px;
}
@media (max-width: 540px) {
  .main-wrapper .vision .container .about-bg .row .about-content .button_wrapp {
    justify-content: center;
    display: flex;
  }
}
@media (max-width: 768px) {
  .main-wrapper .slider_section {
    padding-top: 2rem;
  }
}
.main-wrapper .slider_section .focus-slider {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .main-wrapper .slider_section .focus-slider {
    margin-top: 2rem;
  }
}
.main-wrapper .slider_section .focus-slider .swiper-slide {
  height: auto;
}
.main-wrapper .slider_section .focus-slider .slider-cat {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  border-left: 1px dashed #cfcfcf;
  border-top: none;
  border-bottom: none;
  height: 100%;
  background: transparent;
}
@media (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .slider-cat {
    border-left: none;
  }
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-content {
  text-align: center;
  padding: 0 1rem;
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-content .cat-heading {
  margin-bottom: 1rem;
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-content .cat-heading a {
  color: var(--secondary);
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 600;
  transition: all ease 0.35s;
}
@media (min-width: 1400px) {
  .main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-content .cat-heading a {
    font-size: 1.7vw;
  }
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-content .cat-desc {
  color: var(--secondary);
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 600;
  transition: all ease 0.35s;
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  text-align: center;
  line-height: 1.25;
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img {
  transition: all ease 0.35s;
  position: relative;
}
@media (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img {
    height: 25vh;
  }
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img .style-1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 77, 142, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.35s;
}
@media (min-width: 768px) {
  .main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img .style-1 {
    --v-image-border-radius: 100vmax;
    border-radius: var(--v-image-border-radius, 0.25rem);
  }
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img .style-1 a {
  color: var(--white);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.42vw;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: all ease 0.35s;
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img .style-1 a::before {
  z-index: 4;
  height: 2px;
  width: 0px;
  position: absolute;
  content: "";
  top: 50%;
  background: var(--white);
  transform: translate(0px, 12px);
  transition: all ease 0.35s;
}
@media (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img .style-1 a {
    font-size: 1rem;
  }
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img img {
  transition: all ease 0.35s;
  width: 100%;
}
@media (min-width: 768px) {
  .main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img img {
    --v-image-border-radius: 100vmax;
    border-radius: var(--v-image-border-radius, 0.25rem);
  }
}
@media (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .slider-cat .slider-head .cat-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
  }
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-btn {
  text-align: center;
  transition: all ease 0.35s;
  opacity: 0;
  transform: translateY(20px);
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-btn a {
  color: var(--primary);
  font-family: var(--primary-font);
  font-size: 1.255vw;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .slider-cat .slider-btn a {
    font-size: 1rem;
  }
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-btn.primary-btn {
  display: block;
  padding: 15px 10px;
  width: 60%;
  text-align: center;
  margin: auto;
  height: auto;
  margin-bottom: 1rem;
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-btn.primary-btn::before {
  z-index: -1;
  top: 0;
}
.main-wrapper .slider_section .focus-slider .slider-cat .slider-btn.primary-btn a {
  color: var(--white);
}
.main-wrapper .slider_section .focus-slider .slider-cat:hover {
  background-color: var(--bg-grey);
  background-image: url("../images/slider/slide-bg.png");
  background-position: top right;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .slider-cat:hover {
    background-size: 40%;
  }
}
.main-wrapper .slider_section .focus-slider .slider-cat:hover .slider-head .cat-content .cat-heading a {
  color: var(--primary);
}
.main-wrapper .slider_section .focus-slider .slider-cat:hover .slider-head .cat-content .cat-desc {
  opacity: 1;
  transform: translateY(0px);
}
.main-wrapper .slider_section .focus-slider .slider-cat:hover .slider-head .cat-img {
  transform: translateY(10px);
}
.main-wrapper .slider_section .focus-slider .slider-cat:hover .slider-head .cat-img .style-1 {
  visibility: visible;
  opacity: 1;
}
.main-wrapper .slider_section .focus-slider .slider-cat:hover .slider-head .cat-img .style-1 a::before {
  width: 100px;
}
.main-wrapper .slider_section .focus-slider .slider-cat:hover .slider-btn {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .swiper-slide-active .slider-cat {
    background-color: var(--bg-grey);
    background-image: url("../images/slider/slide-bg.png");
    background-position: top right;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .swiper-slide-active .slider-cat {
    background-size: 40%;
  }
}
@media (max-width: 768px) {
  .main-wrapper .slider_section .focus-slider .swiper-slide-active .slider-cat .slider-head .cat-content .cat-heading {
    color: var(--primary);
  }
  .main-wrapper .slider_section .focus-slider .swiper-slide-active .slider-cat .slider-head .cat-content .cat-desc {
    opacity: 1;
    transform: translateY(0px);
  }
  .main-wrapper .slider_section .focus-slider .swiper-slide-active .slider-cat .slider-head .cat-img {
    transform: translateY(10px);
  }
  .main-wrapper .slider_section .focus-slider .swiper-slide-active .slider-cat .slider-head .cat-img .style-1 {
    display: none;
  }
  .main-wrapper .slider_section .focus-slider .swiper-slide-active .slider-cat .slider-btn {
    opacity: 1;
    transform: translateY(25px);
  }
}
.main-wrapper .slider_section .focus-slider .slide-1 .cat-desc {
  -webkit-line-clamp: 4 !important;
  line-clamp: 4 !important;
}
.main-wrapper .slider_section .focus-slider .slide-2 .cat-desc {
  -webkit-line-clamp: 6 !important;
  line-clamp: 6 !important;
}
.main-wrapper .slider_section .focus-slider .slide-3 .cat-desc {
  -webkit-line-clamp: 4 !important;
  line-clamp: 4 !important;
}
.main-wrapper .slider_section .focus-slider .slide-4 .cat-desc {
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
}
.main-wrapper .slider_section .focus-slider .slide-5 .cat-desc {
  -webkit-line-clamp: 5 !important;
  line-clamp: 5 !important;
}
.main-wrapper .slider_section .focus-slider .slide-6 .cat-desc {
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
}
.main-wrapper .slider_section .focus-slider .slide-7 .cat-desc {
  -webkit-line-clamp: 6 !important;
  line-clamp: 6 !important;
}
.main-wrapper .slider_section .focus-slider .slide-8 .cat-desc {
  -webkit-line-clamp: 4 !important;
  line-clamp: 4 !important;
}
.main-wrapper .slider_section .focus-slider .slide-9 .cat-desc {
  -webkit-line-clamp: 6 !important;
  line-clamp: 6 !important;
}
.main-wrapper .slider_section .focus-slider .slide-10 .cat-desc {
  -webkit-line-clamp: 4 !important;
  line-clamp: 4 !important;
}
.main-wrapper .slider_section .focus-slider::after {
  position: absolute;
  z-index: 1;
  content: "";
  background-color: var(--white);
  height: 100%;
  width: 10%;
  top: 0;
  right: -5%;
  filter: blur(20px);
}
.main-wrapper .slider_section .swiper-btn-wrap {
  position: relative;
  top: auto;
  bottom: 0;
  width: 44px;
  height: 44px;
  font-size: 16px;
  z-index: 10;
  border: 1px solid var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background-color: transparent;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .slider_section .swiper-btn-wrap:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
}
.main-wrapper .partners {
  background: var(--light);
}
.main-wrapper .partners .container .faq-container {
  margin-top: 40px;
  gap: 20px 0;
}
@media (max-width: 540px) {
  .main-wrapper .partners .container .faq-container {
    display: none;
  }
}
.main-wrapper .partners .container .faq-container .faq {
  background-color: var(--light-alt);
  padding: 20px;
  height: 100%;
  border-radius: 20px;
}
.main-wrapper .partners .container .faq-container .faq .accordion .accordion-item {
  background-color: transparent;
}
.main-wrapper .partners .container .faq-container .faq .accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  color: var(--primary);
  font-family: var(--primary-font);
  font-size: 1.7vw;
  font-weight: 600;
}
@media (max-width: 768px) {
  .main-wrapper .partners .container .faq-container .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 25px;
  }
}
.main-wrapper .partners .container .faq-container .faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(./../images/svg/subtract.svg);
  height: 4px;
  transform: rotate(0deg);
}
.main-wrapper .partners .container .faq-container .faq .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(./../images/svg/plus.svg);
  transform: rotate(0deg);
}
.main-wrapper .partners .container .faq-container .faq .accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 1.355vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.955vw;
}
@media (max-width: 768px) {
  .main-wrapper .partners .container .faq-container .faq .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 19px;
  }
}
.main-wrapper .partners .container .faq-container .faq-img {
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 767px) and (max-width: 992px) {
  .main-wrapper .partners .container .faq-container .faq-img {
    height: 504px;
  }
}
.main-wrapper .partners .container .faq-container .faq-img img {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .partners .container .faq-tab {
  margin-top: 40px;
  display: none;
}
@media (max-width: 540px) {
  .main-wrapper .partners .container .faq-tab {
    display: block;
  }
}
.main-wrapper .partners .container .faq-tab .nav-tabs {
  gap: 20px 0;
  border-bottom: none;
}
.main-wrapper .partners .container .faq-tab .nav-tabs .nav-item .nav-link {
  padding: 8px;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  background: var(--light-alt);
  color: var(--primary);
  font-family: var(--primary-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
}
.main-wrapper .partners .container .faq-tab .nav-tabs .nav-item .nav-link.active {
  background-color: var(--white);
}
@media (max-width: 768px) {
  .main-wrapper .partners .container .faq-tab .nav-tabs .nav-item .nav-link {
    font-size: 13px;
  }
}
.main-wrapper .partners .container .faq-tab .tab-content {
  margin-top: 30px;
}
.main-wrapper .partners .container .faq-tab .tab-content .tab-pane .img {
  border-radius: 20px;
  overflow: hidden;
}
.main-wrapper .partners .container .faq-tab .tab-content .tab-pane .img img {
  width: 100%;
  height: 100%;
}
.main-wrapper .partners .container .faq-tab .tab-content .tab-pane h3 {
  color: var(--primary);
  font-family: var(--primary-font);
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px;
  margin-top: 30px;
}
.main-wrapper .map_section #map1 {
  width: 100%;
  height: 67vh;
  position: relative;
  background-image: url("../images/map/map.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (max-width: 768px) {
  .main-wrapper .map_section #map1 {
    height: 30vh;
    background-position: 0% 54%;
  }
}
@media (min-width: 768px) {
  .main-wrapper .map_section #map1 {
    width: 768px;
    height: 354px;
    display: block;
    margin: auto;
    background-position: center bottom;
  }
}
@media (min-width: 1301px) {
  .main-wrapper .map_section #map1 {
    width: 1331px;
    height: 406px;
    display: block;
    margin: auto;
  }
}
.main-wrapper .press_section .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4vw 2vw;
}
@media (max-width: 767px) {
  .main-wrapper .press_section .content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px 0vw;
  }
}
.main-wrapper .press_section .content .coulmn .coulmn_top {
  margin-bottom: 1.222vw;
}
@media (max-width: 768px) {
  .main-wrapper .press_section .content .coulmn .coulmn_top {
    margin-bottom: 20px;
  }
}
.main-wrapper .press_section .content .coulmn .coulmn_top .date {
  color: var(--dark-grey);
  font-size: 1.111vw;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}
@media (max-width: 767px) {
  .main-wrapper .press_section .content .coulmn .coulmn_top .date {
    font-size: 14px;
  }
}
.main-wrapper .press_section .content .coulmn .coulmn_top .coulmn_title {
  color: var(--black);
  font-size: 32px;
  font-size: 2.215vw;
  font-style: normal;
  font-weight: bold;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .main-wrapper .press_section .content .coulmn .coulmn_top .coulmn_title {
    font-size: 28px;
    margin-top: 5px;
  }
}
.main-wrapper .press_section .content .coulmn figure {
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .main-wrapper .press_section .content .coulmn figure {
    height: 226px;
  }
  .main-wrapper .press_section .content .coulmn figure img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 992px) {
  .main-wrapper .press_section .content .coulmn figure {
    height: 325px;
  }
  .main-wrapper .press_section .content .coulmn figure img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1400px) {
  .main-wrapper .press_section .content .coulmn figure {
    height: 500px;
  }
}
.main-wrapper .press_section .content .coulmn figure img {
  border-radius: 20px;
  width: 100%;
  transition: var(--animate-duration);
  transform: scale(1);
}
.main-wrapper .press_section .content .coulmn .coulmn_bottom {
  display: flex;
  margin-top: 1.8vw;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-wrapper .press_section .content .coulmn .coulmn_bottom .admin_text {
  color: var(--secondary);
  font-size: 1.2777vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  display: inline-flex;
  gap: 0.5vw;
  align-items: center;
}
@media (max-width: 767px) {
  .main-wrapper .press_section .content .coulmn .coulmn_bottom .admin_text {
    font-size: 18px;
  }
}
.main-wrapper .press_section .content .coulmn .coulmn_bottom .redmore {
  color: var(--primary);
  font-size: 1.455vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  transition: var(--animate-duration);
}
@media (max-width: 767px) {
  .main-wrapper .press_section .content .coulmn .coulmn_bottom .redmore {
    font-size: 18px;
  }
}
.main-wrapper .press_section .content .coulmn:hover figure img {
  transform: scale(1.112);
}
.main-wrapper .press_section .content .coulmn:hover .coulmn_bottom .redmore {
  margin-right: 3px;
  color: var(--secondary);
}
.main-wrapper .contact_section .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4vw 2vw;
}
@media (max-width: 1024px) {
  .main-wrapper .contact_section .content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 4vw 0vw;
  }
}
.main-wrapper .contact_section .content h5 {
  color: #2a2a2a;
  font-size: 1.65555vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content h5 {
    font-size: 20px;
  }
}
.main-wrapper .contact_section .content h5:after {
  content: "";
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  display: block;
  margin-top: 1vw;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content h5:after {
    font-size: 20px;
    margin-top: 18px;
  }
}
.main-wrapper .contact_section .content .contact_form {
  padding: 3vw 0vw;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_form {
    padding: 0 0vw;
  }
}
.main-wrapper .contact_section .content .contact_form form {
  margin-top: 3vw;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_form form {
    margin-top: 47px;
  }
}
.main-wrapper .contact_section .content .contact_form form .custom_radio {
  color: #2a2a2a;
  font-size: 24px;
  font-size: 1.45555vw;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  display: flex;
  align-items: center;
  margin-bottom: 2.5vw;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_form form .custom_radio {
    font-size: 20px;
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 7px 0;
  }
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_form form .custom_radio span {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
  }
}
.main-wrapper .contact_section .content .contact_form form .custom_radio .form-check {
  display: flex;
  min-height: auto;
  padding-left: 2.5em;
  margin-bottom: auto;
  align-items: center;
  gap: 0.5em;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_form form .custom_radio .form-check {
    padding-left: 1.5rem;
    margin-bottom: auto;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.main-wrapper .contact_section .content .contact_form form .custom_radio .form-check .form-check-input {
  width: 24px;
  height: 24px;
  margin-top: 0;
  border: 1.5px solid var(--bs-border-color);
}
.main-wrapper .contact_section .content .contact_form form .custom_radio .form-check .form-check-input:checked {
  background-color: #fff;
  border-color: #004d8e;
}
.main-wrapper .contact_section .content .contact_form form .custom_radio .form-check .form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23004D8E'/%3e%3c/svg%3e");
}
.main-wrapper .contact_section .content .contact_form form .form-floating {
  margin-top: 1.2vw;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_form form .form-floating {
    margin-bottom: 20px;
  }
}
.main-wrapper .contact_section .content .contact_form form .form-floating .focus_border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: 0.4s;
}
.main-wrapper .contact_section .content .contact_form form .form-floating label {
  color: #858585;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding: 1rem 0rem;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_form form .form-floating label {
    font-size: 20px;
  }
}
.main-wrapper .contact_section .content .contact_form form .form-floating .form-control,
.main-wrapper .contact_section .content .contact_form form .form-floating .form-select {
  display: block;
  padding: 0.375rem 0rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #dadada;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #858585;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.main-wrapper .contact_section .content .contact_form form .form-floating .form-control:not(:-moz-placeholder-shown) ~ label, .main-wrapper .contact_section .content .contact_form form .form-floating .form-select:not(:-moz-placeholder-shown) ~ label {
  color: var(--primary);
  transform: scale(0.85) translateY(-1.5rem) translateX(0rem);
}
.main-wrapper .contact_section .content .contact_form form .form-floating .form-control:not(:placeholder-shown) ~ label, .main-wrapper .contact_section .content .contact_form form .form-floating .form-control:focus ~ label,
.main-wrapper .contact_section .content .contact_form form .form-floating .form-select:not(:placeholder-shown) ~ label,
.main-wrapper .contact_section .content .contact_form form .form-floating .form-select:focus ~ label {
  color: var(--primary);
  transform: scale(0.85) translateY(-1.5rem) translateX(0rem);
}
.main-wrapper .contact_section .content .contact_form form .form-floating .form-control:focus,
.main-wrapper .contact_section .content .contact_form form .form-floating .form-select:focus {
  box-shadow: none;
}
.main-wrapper .contact_section .content .contact_form form .form-floating .form-control:not(:-moz-placeholder-shown) ~ .focus_border, .main-wrapper .contact_section .content .contact_form form .form-floating .form-select:not(:-moz-placeholder-shown) ~ .focus_border {
  width: 100%;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.main-wrapper .contact_section .content .contact_form form .form-floating .form-control:not(:placeholder-shown) ~ .focus_border, .main-wrapper .contact_section .content .contact_form form .form-floating .form-control:focus ~ .focus_border,
.main-wrapper .contact_section .content .contact_form form .form-floating .form-select:not(:placeholder-shown) ~ .focus_border,
.main-wrapper .contact_section .content .contact_form form .form-floating .form-select:focus ~ .focus_border {
  width: 100%;
  transition: 0.4s;
}
.main-wrapper .contact_section .content .contact_form form .form-floating textarea {
  padding: 1.375rem 0rem !important;
  height: 100px;
}
.main-wrapper .contact_section .content .contact_details {
  border-radius: 30px;
  background: #f3f3f3;
  padding: 3vw 2.5vw;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_details {
    padding: 22px;
  }
}
.main-wrapper .contact_section .content .contact_details .details_coulmn {
  margin-top: 3vw;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_details .details_coulmn {
    margin-top: 20px;
  }
}
.main-wrapper .contact_section .content .contact_details .details_coulmn span {
  color: #2a2a2a;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_details .details_coulmn span {
    font-size: 18px;
  }
}
.main-wrapper .contact_section .content .contact_details .details_coulmn h6 a {
  color: #004d8e;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_details .details_coulmn h6 a {
    font-size: 20px;
  }
}
.main-wrapper .contact_section .content .contact_details .social_coulmn {
  border-radius: 20px;
  background: #fff;
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6vw;
  margin-top: 3vw;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_details .social_coulmn {
    padding: 18px;
    margin-top: 0px;
    gap: 50px;
  }
}
.main-wrapper .contact_section .content .contact_details .social_coulmn h6 {
  color: #004d8e;
  font-size: 2.23555vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .main-wrapper .contact_section .content .contact_details .social_coulmn h6 {
    font-size: 22px;
    font-weight: bold;
  }
}
.main-wrapper .contact_section .content .contact_details .social_coulmn a.linkedIn_icon {
  padding: 10px;
  background-color: var(--primary);
  border-radius: 12px;
  display: flex;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
}
.main-wrapper .focus_area_section .section_space .details_item_image {
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .main-wrapper .focus_area_section .section_space .details_item_image {
    height: 260px;
  }
}
@media (max-width: 768px) {
  .main-wrapper .focus_area_section .section_space .details_item_image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .main-wrapper .focus_area_section .section_space .details_item_image img {
    width: 100%;
  }
}
.main-wrapper .focus_area_section .button-group {
  margin-top: 2rem;
  position: sticky;
  top: 76px;
  z-index: 81;
  padding: 1rem 0;
}
.main-wrapper .focus_area_section .button-group.is-sticky {
  background: var(--white);
}
.main-wrapper .focus_area_section .button-group .focus_button .swiper-slide .slide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}
.main-wrapper .focus_area_section .button-group .focus_button .swiper-slide a {
  color: var(--primary);
  font-style: normal;
  font-weight: bold;
}
@media (max-width: 768px) {
  .main-wrapper .focus_area_section .button-group .focus_button .swiper-slide a {
    font-size: 1.05rem;
  }
}
@media (min-width: 768px) {
  .main-wrapper .focus_area_section .button-group .focus_button .swiper-slide a {
    font-size: 1.35rem;
  }
}
@media (min-width: 992px) {
  .main-wrapper .focus_area_section .button-group .focus_button .swiper-slide a {
    font-size: 1.55vw;
  }
}
.main-wrapper .focus_area_section .button-group .focus_button .swiper-slide.focus_btn-2 a {
  color: #2483c5;
}
.main-wrapper .focus_area_section .button-group .focus_button .swiper-slide.focus_btn-3 a {
  color: #1e9ad6;
}
.main-wrapper .focus_area_section .button-group .focus_button .swiper-slide.focus_btn-4 a {
  color: #30ace2;
}
.main-wrapper .focus_area_section .button-group .focus_button .swiper-slide.focus_btn-5 a {
  color: #54c7f3;
}
.main-wrapper .focus_area_section .button-group .focus_button .swiper-slide.focus_btn-6 a {
  color: #65cced;
}
.main-wrapper .focus_area_section .button-group .focus_button .swiper-slide a.active {
  color: var(--primary) !important;
}
.main-wrapper .focus_area_section .button-group .swiper-button-next {
  right: 0;
}
@media (min-width: 1200px) {
  .main-wrapper .focus_area_section .button-group .swiper-button-next {
    right: -50px;
  }
}
.main-wrapper .focus_area_section .button-group .swiper-button-prev {
  left: 0;
}
@media (min-width: 1200px) {
  .main-wrapper .focus_area_section .button-group .swiper-button-prev {
    left: -50px;
  }
}
.main-wrapper .focus_area_section .button-group .swiper-button-next,
.main-wrapper .focus_area_section .button-group .swiper-button-prev {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: var(--white);
}
.main-wrapper .focus_area_section .button-group .swiper-button-next.swiper-button-disabled,
.main-wrapper .focus_area_section .button-group .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.main-wrapper .focus_area_section .button-group .swiper-button-next:after,
.main-wrapper .focus_area_section .button-group .swiper-button-prev:after {
  font-size: 16px;
  color: var(--primary);
  font-weight: bold;
}
.main-wrapper .focus_area_section .button-group .swiper-button-lock {
  display: block;
}
.main-wrapper .focus_area_section .focus-area-content .area-item {
  border-top: 1px solid #bebebe;
  padding: 1.5rem 0 2rem;
}
.main-wrapper .focus_area_section .focus-area-content .area-item .item-heading {
  color: var(--primary);
  font-family: var(--primary-font);
  font-size: 2.2917vw;
  font-style: normal;
  font-weight: bold;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .main-wrapper .focus_area_section .focus-area-content .area-item .item-heading {
    font-size: 1.55rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
}
.main-wrapper .focus_area_section .focus-area-content .area-item .item-text p {
  font-weight: 600;
}
@media (max-width: 768px) {
  .main-wrapper .focus_area_section .focus-area-content .area-item .item-text p {
    font-size: 1.05rem;
  }
}
@media (min-width: 768px) {
  .main-wrapper .focus_area_section .focus-area-content .area-item .item-text p {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .main-wrapper .focus_area_section .focus-area-content .area-item .item-text p {
    font-size: 1.45vw;
  }
}
.main-wrapper .focus_area_section .focus-area-content .area-item:last-child {
  padding-bottom: 0rem;
}
.main-wrapper .focus_area_section .focus-area-content .area-item:nth-child(2) .item-heading {
  color: #2483c5;
}
.main-wrapper .focus_area_section .focus-area-content .area-item:nth-child(3) .item-heading {
  color: #1e9ad6;
}
.main-wrapper .focus_area_section .focus-area-content .area-item:nth-child(4) .item-heading {
  color: #30ace2;
}
.main-wrapper .focus_area_section .focus-area-content .area-item:nth-child(5) .item-heading {
  color: #54c7f3;
}
.main-wrapper .focus_area_section .focus-area-content .area-item:nth-child(6) .item-heading {
  color: #65cced;
}
.main-wrapper .focus_area_section .focus-area-content .area-item.active .item-heading {
  color: var(--primary) !important;
}
@media (max-width: 768px) {
  .main-wrapper .about_section .about_image {
    height: 300px;
  }
  .main-wrapper .about_section .about_image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.main-wrapper .about_section .about_content p {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3vw;
}
@media (max-width: 768px) {
  .main-wrapper .about_section .about_content p {
    font-size: 1.05rem;
    margin-bottom: 0.71rem;
  }
}
.main-wrapper .about_section .about_content p:last-child {
  margin-bottom: 0;
}
.main-wrapper .about_section .about_content p a {
  text-decoration: underline;
  color: var(--primary);
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .about_section .about_content p a:hover {
  color: var(--secondary);
}
.main-wrapper .portfolio_section .portfolio_item {
  border-radius: 30px;
  border: 1px solid #9fd3ff;
  background: #ecf6ff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  height: 160px;
  flex-direction: column;
  position: relative;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
@media (max-width: 768px) {
  .main-wrapper .portfolio_section .portfolio_item {
    border-radius: 15px;
  }
}
@media (min-width: 768px) {
  .main-wrapper .portfolio_section .portfolio_item {
    height: 315px;
  }
}
@media (max-width: 430px) {
  .main-wrapper .portfolio_section .portfolio_item {
    height: 100%;
  }
}
.main-wrapper .portfolio_section .portfolio_item .item_img {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .portfolio_section .portfolio_item .item_img img {
  opacity: 0;
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transform: translateY(0px);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.main-wrapper .portfolio_section .portfolio_item .item_img h4 {
  color: var(--white);
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  margin-top: 5px;
  font-size: 1.5vw;
}
@media (max-width: 768px) {
  .main-wrapper .portfolio_section .portfolio_item .item_img h4 {
    font-size: 1.2rem;
  }
}
.main-wrapper .portfolio_section .portfolio_item .item_img h3 {
  color: var(--white);
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  margin-top: 5px;
  font-size: 1.9vw;
  display: none;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .main-wrapper .portfolio_section .portfolio_item .item_img h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 430px) {
  .main-wrapper .portfolio_section .portfolio_item .item_img h3 {
    display: block;
  }
}
.main-wrapper .portfolio_section .portfolio_item .item_img p {
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main-wrapper .portfolio_section .portfolio_item .item_img p {
    font-size: 0.9rem;
  }
}
.main-wrapper .portfolio_section .portfolio_item .item_img-2 {
  opacity: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.main-wrapper .portfolio_section .portfolio_item .item_img-2 img {
  opacity: 1;
}
.main-wrapper .portfolio_section .portfolio_item:hover {
  background: var(--primary);
}
.main-wrapper .portfolio_section .portfolio_item:hover .item_img {
  opacity: 1;
}
.main-wrapper .portfolio_section .portfolio_item:hover .item_img img {
  filter: invert(50%) sepia(116%) saturate(100%) hue-rotate(201deg) brightness(150%) contrast(119%);
  opacity: 1;
}
.main-wrapper .portfolio_section .portfolio_item:hover .item_img-2 {
  opacity: 0;
}
.main-wrapper .portfolio_section .portfolio_item:hover .item_img-2 img {
  transform: translateY(-90px);
  opacity: 0;
}
.main-wrapper .portfolio_section .portfolio_item:hover .item-text {
  opacity: 1;
}
.main-wrapper .portfolio_section .portfolio_item:hover .discription {
  opacity: 1;
}
.main-wrapper .news_details .news_post_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-wrapper .news_details .news_post_meta span {
  color: #5b5b5b;
  font-size: 20px;
}
@media (max-width: 768px) {
  .main-wrapper .news_details .news_post_meta span {
    font-size: 1.15rem;
  }
  .main-wrapper .news_details .news_post_meta span svg {
    height: 18px;
    width: 18px;
  }
}
.main-wrapper .news_details .social_icon {
  padding: 1rem 0;
  display: flex;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
}
@media (max-width: 768px) {
  .main-wrapper .news_details .social_icon li a svg {
    height: 25px;
    width: 25px;
  }
}
.main-wrapper .news_details .details_content {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #bebebe;
}
.main-wrapper .news_details .details_content p {
  font-weight: 600;
  margin-bottom: 1rem;
}
.main-wrapper .news_details .details_content p:last-child {
  margin-bottom: 0;
}
.main-wrapper .error_section .error_content h4 {
  color: var(--secondary);
  font-family: var(--primary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: bold;
}
.main-wrapper .thanks_section .thanks_content {
  text-align: center;
}
.main-wrapper .thanks_section .thanks_content h2 {
  color: var(--secondary);
  font-family: var(--primary-font);
  font-size: 60px;
  font-style: normal;
  font-weight: bold;
  margin-bottom: 1rem;
}

.jvm-tooltip.active .country-img {
  margin-bottom: 0.51rem;
}
.jvm-tooltip.active .country-img img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .jvm-tooltip.active .country-img img {
    height: 50px;
    width: 50px;
  }
}
.jvm-tooltip.active .country-name {
  color: var(--primary);
  font-family: var(--primary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 768px) {
  .jvm-tooltip.active .country-name {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .services_section .container {
    max-width: 1240px;
  }
}
@media (min-width: 1400px) {
  .services_section .container {
    max-width: 1600px;
  }
}
@media (min-width: 1600px) {
  .services_section .container {
    max-width: 1520px;
  }
}
@media (min-width: 1800px) {
  .services_section .container {
    max-width: 1600px;
  }
}
@media (min-width: 2000px) {
  .services_section .container {
    max-width: 1800px;
  }
}
@media (min-width: 2200px) {
  .services_section .container {
    max-width: 2020px;
  }
}
@media (min-width: 2400px) {
  .services_section .container {
    max-width: 2220px;
  }
}
@media (min-width: 2600px) {
  .services_section .container {
    max-width: 2420px;
  }
}
@media (min-width: 2800px) {
  .services_section .container {
    max-width: 2620px;
  }
}
.services_section .service_filter {
  display: flex;
  justify-content: end;
  margin-bottom: 3.44vw;
}
.services_section .service_filter .filter_icon {
  display: flex;
  width: 52px;
  height: 52px;
  padding: 13px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: #d2ebff;
  border: 0px;
}
.services_section .service_filter .filter_icon:focus-visible {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.services_section .service_filter .filter_icon::after, .services_section .service_filter .filter_icon::before {
  display: none;
}
.services_section .service_filter .filter_option {
  position: absolute;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 8px 34px 0px rgba(0, 0, 0, 0.14);
  top: 100%;
  transform: translateY(-2%);
  border: 0;
  padding: 0;
  overflow: hidden;
}
.services_section .service_filter .filter_option a {
  color: var(--secondary);
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  background: var(--white);
  padding: 1.12vw 1.6vw;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f9f6f6;
}
@media (max-width: 768px) {
  .services_section .service_filter .filter_option a {
    font-size: 15px;
    padding: 13px 24px;
  }
}
@media (min-width: 768px) {
  .services_section .service_filter .filter_option a {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .services_section .service_filter .filter_option a {
    font-size: 1.355554vw;
  }
}
.services_section .service_filter .filter_option a.active, .services_section .service_filter .filter_option a:hover {
  background: #d2ebff;
  color: var(--primary);
}
.services_section .service_filter .filter_option a:last-child {
  border-bottom: 0px;
}
.services_section .service_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px 0vw;
}
@media (min-width: 768px) {
  .services_section .service_list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 20px;
  }
}
@media (min-width: 1200px) {
  .services_section .service_list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5vw;
  }
}
.services_section .service_list .service_coulmn {
  border-radius: 40px;
  background: #edf6ff;
  padding: 2.8vw 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1vw;
}
@media (max-width: 576px) {
  .services_section .service_list .service_coulmn {
    padding: 25px 20px;
    gap: 20px;
  }
}
.services_section .service_list .service_coulmn h5 {
  font-size: 38px;
  font-style: normal;
  font-weight: bold;
  line-height: 1.15;
  margin-bottom: 1.222vw;
}
@media (max-width: 1200px) {
  .services_section .service_list .service_coulmn h5 {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.services_section .service_list .service_coulmn:nth-child(1) h5 {
  color: #1f6fb8;
}
.services_section .service_list .service_coulmn:nth-child(2) h5 {
  color: #2483c5;
}
.services_section .service_list .service_coulmn:nth-child(3) h5 {
  color: #1e9ad6;
}
.services_section .service_list .service_coulmn:nth-child(4) h5 {
  color: #30ace2;
}
.services_section .service_list .service_coulmn:nth-child(5) h5 {
  color: #2cb1cc;
}
.services_section .service_list .service_coulmn:nth-child(6) h5 {
  color: #54c7f3;
}
.services_section .service_list .service_coulmn:nth-child(7) h5 {
  color: #65cced;
}
.services_section .service_list .service_coulmn p {
  color: #201e1e;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 1200px) {
  .services_section .service_list .service_coulmn p {
    font-size: 1.05rem;
  }
}
.services_section .service_list .service_coulmn .icon {
  display: flex;
  width: 93px;
  height: 93px;
  padding: 1vw;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 24px;
  background: #fff;
  margin-left: auto;
}
@media (max-width: 576px) {
  .services_section .service_list .service_coulmn .icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    padding: 14px;
    margin-left: 0;
  }
}

.site_footer {
  background-color: var(--bg-grey);
  padding: 2vw 0 0;
  background-repeat: no-repeat;
  background-position: bottom right;
  position: relative;
  background-size: contain;
  z-index: 1;
  background-attachment: fixed;
}
@media (min-width: 768px) {
  .site_footer {
    background-size: 40%;
  }
}
.site_footer::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--bg-grey);
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .site_footer {
    background-position: bottom;
    padding: 2rem 0 0;
  }
}
.site_footer .site_logo {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .site_footer .site_desc {
    padding-right: 5rem;
  }
}
.site_footer .site_desc p {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.05rem;
}
@media (min-width: 768px) {
  .site_footer .site_desc p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .site_footer .site_desc p {
    font-size: 1.35vw;
  }
}
.site_footer .footer_widget {
  padding-top: 2.8rem;
}
@media (max-width: 992px) {
  .site_footer .footer_widget {
    padding-top: 1rem;
  }
}
.site_footer .footer_widget .footer_widget_title {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .site_footer .footer_widget .footer_widget_title {
    font-size: 1.65rem;
  }
}
@media (min-width: 992px) {
  .site_footer .footer_widget .footer_widget_title {
    font-size: 1.46vw;
  }
}
.site_footer .footer_widget .icon_list {
  padding-top: 1.5rem;
}
.site_footer .footer_widget .icon_list li {
  margin-bottom: 1rem;
}
.site_footer .footer_widget .icon_list li a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.35vw;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
@media (max-width: 768px) {
  .site_footer .footer_widget .icon_list li a {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
@media (min-width: 768px) {
  .site_footer .footer_widget .icon_list li a {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .site_footer .footer_widget .icon_list li a {
    font-size: 1.35vw;
  }
}
.site_footer .footer_widget .icon_list li a i {
  color: var(--primary);
}
.site_footer .footer_widget .icon_list li:hover a {
  color: var(--primary);
}
.site_footer .footer_widget .page_list {
  padding-top: 1.5rem;
}
.site_footer .footer_widget .page_list li {
  margin-bottom: 1rem;
}
.site_footer .footer_widget .page_list li a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.35vw;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .site_footer .footer_widget .page_list li a {
    font-size: 1.05rem;
  }
}
@media (min-width: 768px) {
  .site_footer .footer_widget .page_list li a {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .site_footer .footer_widget .page_list li a {
    font-size: 1.35vw;
  }
}
.site_footer .footer_widget .page_list li a .list_item_icon {
  opacity: 0;
  font-size: 6px;
  color: var(--white);
  margin: 0 8px 0 -15px;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.site_footer .footer_widget .page_list li:hover a {
  color: var(--secondary);
}
.site_footer .footer_widget .page_list li:hover a .list_item_icon {
  color: var(--secondary);
  opacity: 1;
  margin: 0 8px 0 0;
}
.site_footer .footer_bottom {
  padding: 1vw 0 1vw;
  margin-top: 3rem;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 768px) {
  .site_footer .footer_bottom {
    margin-top: 1rem;
    padding: 1rem 0;
  }
}
.site_footer .footer_bottom .copyright_widget {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.35vw;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  text-align: center;
}
@media (max-width: 768px) {
  .site_footer .footer_bottom .copyright_widget {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .site_footer .footer_bottom .copyright_widget {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .site_footer .footer_bottom .copyright_widget {
    font-size: 1.35vw;
  }
}
.site_footer .footer_bottom .copyright_widget a {
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

#email-error,
#mobile-error,
label.error {
  color: red;
  font-size: 14px;
  line-height: 14px;
  padding: 7px 0 0;
}

@media (max-width: 768px) {
  .about-content-heading {
    display: none;
  }
}

.team_section .heading {
  color: #004d8e;
  font-family: var(--primary-font);
  font-size: 62px;
  font-style: normal;
  font-weight: 600;
  line-height: 74px; /* 119.355% */
  text-align: center;
  margin-bottom: 50px;
}
.team_section .team_card {
  width: 85%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .team_section .team_card {
    width: 100%;
    height: 300px;
  }
}
.team_section .team_card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team_section h2 {
  color: #000;
  font-family: var(--primary-font);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.team_section .content {
  width: 85%;
}
@media (max-width: 768px) {
  .team_section .content {
    width: 100%;
  }
}

.team-detail .team-info {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
}
.team-detail .team-info .content {
  padding: 20px;
}
.team-detail .team-info .content h2 {
  color: #000;
  font-family: var(--primary-font);
  font-size: 28px;
  font-weight: 600;
  line-height: 30px;
}
.team-detail .team-info .content p {
  color: rgb(66, 66, 66);
  font-family: var(--primary-font);
  font-size: 18px;
}
.team-detail .team-info .content span {
  color: #000;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  padding-top: 50px;
}
.team-detail .team-info .content a {
  color: #000;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.team-detail .big-content {
  padding: 20px;
}
.team-detail .big-content h3 {
  color: #0052b4;
  font-family: var(--primary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  font-style: italic;
  line-height: 24px; /* 133.333% */
}
.team-detail .big-content p {
  color: #2a2a2a;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}/*# sourceMappingURL=main.css.map */