@font-face {
  font-family: "Golos Text";
  src: url("../fonts/GolosText-Regular.eot");
  src: url("../fonts/GolosText-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/GolosText-Regular.woff") format("woff"), url("../fonts/GolosText-Regular.ttf") format("truetype"), url("../fonts/GolosText-Regular.svg#GolosText-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

a {
  color: #000;
  text-decoration: none;
}

::-moz-placeholder {
  color: #000;
}

::placeholder {
  color: #000;
}

:after,
:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  .wow {
    visibility: visible !important;
    animation: none !important;
  }
}

#overlay {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: grid;
  position: fixed;
  text-align: center;
  align-items: center;
  z-index: 999999999999;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: saturate(180%) blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
#overlay img {
  margin: 0 auto;
  transform-origin: center center;
  animation: jump 1s linear alternate infinite;
  -webkit-animation: jump 1s linear alternate infinite;
}

@keyframes jump {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: translate(1.05);
  }
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
  overflow-x: hidden;
  color: #64676c;
  font-family: "Golos Text";
}

.align-center {
  align-items: center;
}

.v-middle {
  vertical-align: middle;
}

.custombtn {
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: 300;
  padding: 16px 24px;
  color: #194BAF;
  font-family: "Golos Text";
  border-radius: 10px;
  border: 1px solid #FFF;
  background-color: #FFF;
  transition: all ease-in-out 0.5s;
}
.custombtn:hover {
  color: #FFF;
  border-color: #E9EBEF;
  background-color: transparent;
}
.custombtn.customwhtbtn {
  opacity: 0.8;
  color: #E9EBEF;
  border-color: #E9EBEF;
  background-color: transparent;
}
.custombtn.customwhtbtn:hover {
  opacity: 1;
  color: #FFF;
  border-color: #FFF;
}
.custombtn.primarybtn {
  color: #FFF;
  border-color: #194BAF;
  background-color: #194BAF;
}
.custombtn.primarybtn:hover {
  background-color: #000;
}

.customtxt {
  width: 100%;
  padding: 15px;
  color: #64676c;
  font-family: "Golos Text";
  background-color: #E9EBEF;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all ease-in-out 0.5s;
}
.customtxt:focus {
  border-color: #194BAF;
  background-color: #FFF;
}
.customtxt:disabled {
  opacity: 0.6;
}

.heading {
  margin-bottom: 30px;
}
.heading span {
  font-weight: 100;
  padding-left: 30px;
  position: relative;
  letter-spacing: 4px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
}
.heading span:after {
  left: 0;
  top: 8px;
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  background-color: #194BAF;
}
.heading h1 {
  font-size: 45px;
  font-weight: 900;
  line-height: 50px;
  color: #194BAF;
  font-family: "Golos Text";
}

.wrapper {
  position: relative;
}
.wrapper .custom-overlay {
  top: 0;
  left: 0;
  display: none;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.7);
}
.wrapper .custom-overlay.show {
  display: block;
}

header {
  width: 100%;
  z-index: 99;
  padding: 20px 0px;
  position: absolute;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .side-menu-close span {
  background: #FFF;
}
header .header-logo {
  width: 270px;
}
header .header-logo .small_logo {
  display: none;
  transition: all ease-in-out 0.5s;
}
header .header-logo .main_logo {
  transition: all ease-in-out 0.5s;
}
header.fixed {
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  position: fixed;
  transition: 0.1s;
  padding: 10px 0px;
  -o-transition: 0.1s;
  -webkit-transition: 0.1s;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: 0.7s ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-animation: 0.7s ease-in-out 0s normal none 1 running fadeInDown;
}
header.fixed .main_logo {
  display: none;
}
header.fixed .small_logo {
  display: inline-block;
}
header.fixed .side-menu-close span {
  background: #194BAF;
}
header.fixed nav li a {
  color: #64676c;
}
@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  header.fixed {
    padding: 10px 0px;
  }
}
header nav li {
  margin-left: 25px;
}
header nav li a {
  opacity: 0.7;
  font-size: 16px;
  position: relative;
  color: #FFF;
  transition: all ease-in-out 0.6s;
}
@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  header nav li a {
    line-height: 30px;
  }
}
header nav li a:hover {
  opacity: 1;
}
header nav li.active a {
  opacity: 1;
}

.side-menu-wrap .mobile_logo {
  padding: 15px;
  text-align: center;
  background-color: #194BAF;
  border-radius: 0 0 10px 10px;
}
.side-menu-wrap .side-menu-nav {
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #194BAF;
}
.side-menu-wrap .side-menu-nav ul li a {
  font-size: 16px;
  position: relative;
  transition: all ease-in-out 0.6s;
}
.side-menu-wrap .side-menu-nav ul li a:hover {
  color: #82C89B !important;
}
.side-menu-wrap .side-menu-nav ul li a.active {
  color: #82C89B !important;
}
.side-menu-wrap .contact_details {
  padding: 0 20px;
  list-style: none;
}
.side-menu-wrap .contact_details li a {
  display: block;
  font-size: 16px;
  position: relative;
  padding: 5px 15px 15px 5px;
  transition: all ease-in-out 0.6s;
}

.banner_slider {
  width: 100%;
  position: relative;
  background-color: #194BAF;
}
.banner_slider .banner_div {
  display: grid;
  margin: 0 auto;
  padding: 20% 0 15%;
  align-items: center;
  grid-template-columns: 6fr 6fr;
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .banner_slider .banner_div {
    padding: 45% 0 25%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.banner_slider .banner_div .heading h1 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 40px;
  color: #FFF;
}
.banner_slider .banner_div .heading h6 {
  font-size: 18px;
  font-weight: 700;
  color: #F7F8F8;
  margin-bottom: 20px;
}
.banner_slider .banner_div .heading p {
  font-size: 16px;
  color: #F7F8F8;
  line-height: 24px;
}
.banner_slider .banner_div .info_ul {
  margin-top: 30px;
}
.banner_slider .banner_div .info_ul li {
  margin-right: 25px;
  color: #FFF;
  display: inline-block;
}
.banner_slider .banner_div .info_ul li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .banner_slider .banner_div .info_ul li {
    margin-right: 18px;
  }
}
.banner_slider .banner_div .info_ul li .icon {
  font-size: 18px;
  color: #E9EBEF;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.banner_slider .banner_div .info_ul li .content {
  font-size: 15px;
  color: #FFF;
}

.about_section {
  padding: 90px 15px;
  position: relative;
}
.about_section::after {
  top: 0;
  right: 0;
  width: 35%;
  content: "";
  height: 100%;
  position: absolute;
  background-color: rgba(25, 75, 175, 0.05);
}
.about_section .about_div h2 {
  width: 250px;
  padding: 25px;
  margin: 0 auto;
  font-size: 75px;
  font-weight: 400;
  position: relative;
  text-align: center;
  color: #FFF;
  border-radius: 10px;
  background-color: #194BAF;
}
.about_section .about_div h2::after {
  left: -10px;
  content: "";
  width: 270px;
  height: 220px;
  bottom: -10px;
  margin: 0 auto;
  position: absolute;
  border-radius: 10px;
  border: 3px solid #82C89B;
}
.about_section .about_div h2 span {
  display: block;
  font-size: 18px;
  margin-top: 5px;
  line-height: 28px;
  color: #FFF;
}
.about_section .about_div p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
}
.about_section .about_div p:last-child {
  margin-bottom: 0;
}
.about_section .our_policy_div p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
}
.about_section .our_policy_div .our_policy_img {
  position: relative;
}
.about_section .our_policy_div .our_policy_img img {
  border-radius: 10px 10px 70px 10px;
}
.about_section .our_policy_div .our_policy_img .our_policy_icon {
  left: 30px;
  z-index: 1;
  bottom: 50px;
  width: 200px;
  height: 200px;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #194BAF;
}
.about_section .our_policy_div .our_policy_img .our_policy_icon::after {
  left: -10px;
  content: "";
  width: 220px;
  height: 220px;
  bottom: -10px;
  margin: 0 auto;
  position: absolute;
  border-radius: 10px;
  border: 3px solid #82C89B;
}
.about_section .our_policy_div .our_policy_img .our_policy_icon img {
  border-radius: 0;
}

.team_section {
  padding: 90px 0;
  background-color: #194BAF;
}
.team_section .heading {
  margin-bottom: 50px;
}
.team_section .heading span {
  color: #FFF;
}
.team_section .heading span:after {
  background-color: #82C89B;
}
.team_section .heading h1 {
  color: #FFF;
}
.team_section .team_member {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .team_section .team_member {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team_section .team_member .team_img {
  z-index: 1;
  position: relative;
}
.team_section .team_member .team_img img {
  width: 350px;
  border-radius: 10px;
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .team_section .team_member .team_img img {
    width: 300px;
  }
}
.team_section .team_member .team_img:after {
  left: 0;
  right: 0;
  z-index: 1;
  top: -15px;
  content: "";
  width: 380px;
  height: 265px;
  margin: 0 auto;
  position: absolute;
  border-radius: 10px;
  border: 3px solid #82C89B;
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .team_section .team_member .team_img:after {
    width: 330px;
    height: 230px;
  }
}
.team_section .team_member .team_member_content {
  padding: 30px;
  text-align: center;
  position: relative;
}
.team_section .team_member .team_member_content::before {
  left: 0;
  right: 0;
  top: -20%;
  content: "";
  width: 100%;
  height: 120%;
  padding: 30px;
  min-height: 440px;
  position: absolute;
  border-radius: 10px;
  background-color: #FFF;
}
.team_section .team_member .team_member_content p {
  z-index: 1;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
.team_section .team_member .team_member_content p span {
  display: block;
  font-size: 24px;
  color: #194BAF;
}
.team_section .team_member .team_member_content ul {
  z-index: 1;
  margin-top: 25px;
  list-style: none;
  text-align: center;
  position: relative;
}
.team_section .team_member .team_member_content ul li a {
  font-size: 24px;
  color: #194BAF;
}
.team_section .team_div {
  display: grid;
  grid-gap: 2rem;
  margin-top: 70px;
  position: relative;
  grid-template-columns: 5fr 4fr 5fr;
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .team_section .team_div {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team_section .team_div::after {
  left: 0;
  top: 50%;
  right: 0;
  z-index: -1;
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  background-color: #194BAF;
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .team_section .team_div::after {
    top: 0;
    width: 3px;
    height: 100%;
    margin: 0 auto;
  }
}
.team_section .team_div .team_inner {
  position: relative;
  background-color: #F7F8F8;
  padding: 20px 20px 15px 20px;
  border-radius: 10px;
  box-shadow: 0 40px 10px -40px rgba(0, 0, 0, 0.2);
}
.team_section .team_div .team_inner:nth-child(2)::after {
  top: 46%;
  left: -20px;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  background-color: #194BAF;
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .team_section .team_div .team_inner:nth-child(2)::after {
    left: 0;
    right: 0;
    top: -25%;
    margin: 0 auto;
  }
}
.team_section .team_div .team_inner:nth-child(2)::before {
  top: 46%;
  content: "";
  width: 10px;
  height: 10px;
  right: -20px;
  border-radius: 50%;
  position: absolute;
  background-color: #194BAF;
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .team_section .team_div .team_inner:nth-child(2)::before {
    left: 0;
    right: 0;
    top: initial;
    bottom: -27%;
    margin: 0 auto;
  }
}
.team_section .team_div .team_inner p {
  font-size: 14px;
}
.team_section .team_div .team_inner h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #194BAF;
}
@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  .team_section .team_div .team_inner h4 {
    font-size: 14px;
  }
}

.specialize_section {
  padding: 90px 0;
  background-color: #F7F8F8;
}
.specialize_section .specialize_inner {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .specialize_section .specialize_inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.specialize_section .specialize_inner .specialize_div {
  padding: 30px;
  border-radius: 10px;
  background-color: #FFF;
  transition: all ease-in-out 0.5s;
  box-shadow: 0 40px 120px -40px rgba(93, 114, 128, 0.24);
}
.specialize_section .specialize_inner .specialize_div:hover {
  box-shadow: 0 48px 120px -40px rgba(93, 114, 128, 0.4);
}
.specialize_section .specialize_inner .specialize_div .icon {
  padding: 10px;
  border-radius: 50px;
  margin-bottom: 20px;
  display: inline-block;
  background-color: rgba(25, 75, 175, 0.1);
}
.specialize_section .specialize_inner .specialize_div p {
  font-size: 16px;
  line-height: 24px;
  color: #64676c;
}

.service_section {
  padding-top: 90px;
}
.service_section .customnavs_tabs {
  display: grid;
  grid-gap: 2rem;
  background-color: #FFF;
  grid-template-columns: 3fr 9fr;
}
@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  .service_section .customnavs_tabs {
    grid-template-columns: 12fr;
  }
}
.service_section .customnavs_tabs .tabs {
  display: flex;
  grid-gap: 0.875rem;
  text-align: center;
  overflow-x: inherit;
  white-space: inherit;
  flex-direction: column;
}
@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  .service_section .customnavs_tabs .tabs {
    overflow-x: auto;
    white-space: nowrap;
    flex-direction: row;
    padding-bottom: 15px;
  }
}
.service_section .customnavs_tabs .tabs label {
  margin: 0;
  display: flex;
  font-size: 14px;
  color: #64676c;
  padding: 25px 15px;
  border-radius: 15px;
  align-items: center;
  background-color: #E9EBEF;
}
@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  .service_section .customnavs_tabs .tabs label {
    padding: 10px;
  }
}
.service_section .customnavs_tabs .content {
  padding-top: 0;
}
.service_section .services_inner {
  display: grid;
  grid-gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .service_section .services_inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service_section .services_inner .services_img img {
  border-radius: 10px;
}
.service_section .services_inner .services_content h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.service_section .services_inner .services_content li {
  display: flex;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
  list-style-type: none;
}
.service_section .services_inner .services_content li:last-child {
  margin-bottom: 0;
}
.service_section .services_inner .services_content li span {
  font-size: 18px;
  margin-right: 5px;
  color: #194BAF;
}
.service_section .services_inner:nth-child(even) .services_img {
  order: 1;
}
@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  .service_section .services_inner:nth-child(even) .services_img {
    order: initial;
  }
}

.clients_section {
  position: relative;
  padding: 90px 15px;
}
.clients_section:after {
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #194BAF;
}
.clients_section .heading {
  margin-bottom: 0;
}
@media only screen and (min-width: 280px) and (max-width:480px), only screen and (min-width: 767px) and (max-width:980px) {
  .clients_section .heading {
    margin-bottom: 30px;
  }
}
.clients_section .heading span {
  color: #FFF;
}
.clients_section .heading span:after {
  background-color: #82C89B;
}
.clients_section .heading h1 {
  color: #FFF;
}
.clients_section .clients_div {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 280px) and (max-width:480px) {
  .clients_section .clients_div {
    grid-template-columns: repeat(1, 1fr);
  }
}
.clients_section .clients_div .clients_div_inner {
  padding: 20px;
  border-radius: 10px;
  background-color: #FFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.clients_section .clients_div .clients_div_inner ul li {
  display: flex;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
  list-style-type: none;
}
.clients_section .clients_div .clients_div_inner ul li:last-child {
  margin-bottom: 0;
}
.clients_section .clients_div .clients_div_inner ul li span {
  font-size: 18px;
  margin-right: 5px;
  color: #194BAF;
}

.contact_section {
  padding-top: 90px !important;
}
.contact_section iframe {
  filter: grayscale(100%);
}
.contact_section .contact_info {
  padding: 30px;
  transform: translateY(-50px);
  border-radius: 10px;
  background-color: #FFF;
  box-shadow: 0 40px 120px -40px rgba(93, 114, 128, 0.15);
}
.contact_section .contact_info .contact_info_inner {
  gap: 1rem;
  display: grid;
  margin-bottom: 45px;
  grid-template-columns: 1fr 11fr;
}
.contact_section .contact_info .contact_info_inner:last-child {
  margin-bottom: 0;
}
.contact_section .contact_info .contact_info_inner span {
  width: 45px;
  height: 45px;
  display: flex;
  font-size: 24px;
  align-items: center;
  color: #FFF;
  border-radius: 50px;
  justify-content: center;
  background-color: #194BAF;
}
.contact_section .contact_info .contact_info_inner h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #194BAF;
}
.contact_section .contact_info .contact_info_inner p {
  font-size: 14px;
  line-height: 18px;
}
.contact_section .contact_info .contact_info_inner p a {
  color: #64676c;
  transition: all ease-in-out 0.5s;
}
.contact_section .contact_info .contact_info_inner p a:hover {
  color: #82C89B;
}

footer {
  padding-top: 70px;
  background-color: #194BAF;
}
footer P {
  font-size: 16px;
  line-height: 28px;
  color: #FFF;
}
footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #FFF;
}
footer ul {
  list-style: none;
}
footer ul li {
  font-size: 16px;
  margin-bottom: 10px;
}
footer ul li a {
  opacity: 0.8;
  color: #E9EBEF;
  position: relative;
  transition: all ease-in-out 0.5s;
}
footer ul li a span {
  font-size: 18px;
  margin-right: 5px;
  vertical-align: middle;
  transition: all ease-in-out 0.5s;
}
footer ul li a:hover {
  opacity: 1;
  padding-left: 5px;
  color: #FFF;
}
footer .bottom_stripe {
  margin-top: 70px;
  padding: 15px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .bottom_stripe p {
  font-size: 14px;
}

.whats_app_icon {
  z-index: 99;
  right: 15px;
  bottom: 15px;
  position: fixed;
}
.whats_app_icon a {
  width: 50px;
  height: 50px;
  font-size: 28px;
  line-height: 52px;
  text-align: center;
  color: #FFF;
  border-radius: 50px;
  display: inline-block;
  transition: all ease-in-out 0.5s;
  background-color: #82C89B;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.whats_app_icon a:hover {
  color: #FFF;
  background-color: #194BAF;
}/*# sourceMappingURL=custom.css.map */