@charset "utf-8";
/*====CSS Document====*/

body {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  background: #fff;
  color: #000000;
  text-align: center;
  font-family: "Open Sans", Arial, sans-serif, "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue";
  font-weight: normal;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
div,
ul,
h1,
h2,
h3,
h4,
h5,
li,
p,
img,
form,
input,
textarea {
  margin: 0;
  padding: 0;
}
header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
table,
tr,
td {
  border: 0;
}
a {
  outline: none;
  color: inherit;
  text-decoration: none;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
}
li {
  list-style: none;
}
* {
  box-sizing: border-box;
}
.clearall {
  clear: both;
  font-size: 1px;
  line-height: 1px;
  height: 1px;
}

/*-----------------------
FONTS
------------------------*/
@font-face {
  font-family: "Avenir Next LT Pro";
  src: url("AvenirNextLTPro-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*-----------------------
MAIN CSS START
------------------------*/
.container {
  width: 1170px;
  position: relative;
  flex-direction: column;
}
.wrapper {
  width: 100%;
  overflow: hidden;
}

/*--------Header Section---------*/

header {
  justify-content: center;
  flex-basis: 100%;
  margin-bottom: 75px;
  position: relative;
  z-index: 9;
  border-top: 2px solid #5dc1f9;
}
.header__inner {
  height: 75px;
  margin-top: -75px;
  top: 75px;
  justify-content: center;
  flex-basis: 100%;
  position: relative;
  z-index: 99;
  -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}
header.fixed .header__inner {
  width: 100%;
  background: #fff;
  position: fixed;
  transition: margin 0.3s ease-out;
  -webkit-transition: margin 0.3s ease-out;
  margin-top: 0;
  top: 0;
}
.header_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.header_left {
  display: flex;
  align-items: center;
}
.logo {
  float: left;
  width: 190px;
}
ul.nav-bar {
  display: flex;
  align-items: center;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #6893e2;
}
ul.nav-bar li {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  padding-right: 25px;
}
ul.nav-bar li a {
  display: block;
  color: #000000;
}
ul.nav-bar li a:hover,
ul.nav-bar li a.active {
  color: #5dc1f9;
}
.header_right {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
a.top_btn {
  width: 190px;
  background: #ec6633;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-align: center;
  padding: 12px 0;

  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.call_us {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}
.call_us img {
  width: 16px;
}
.call_us p {
  font-size: 14px;
  line-height: 22px;
  color: #000050;
  font-weight: 500;
  text-align: left;
}
.call_us p a {
  font-size: 21px;
  font-weight: bold;
  font-family: "Avenir Next LT Pro", Arial, sans-serif, "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue";
}

/*CSS FOR MOBILE MENU*/
.mob-mnu-ic {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 25px;
  z-index: 16;
}
.mob-mnu-ic button {
  outline: none;
  -webkit-appearance: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border: none;
  display: flex;
  flex-wrap: wrap;
  width: 30px;
}
.mob-mnu-ic span {
  color: #000;
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin-top: 4px;
  margin-right: 5px;
}
.bar1,
.bar2,
.bar3 {
  width: 28px;
  height: 2px;

  background-color: #333;
  transition: 0.4s;
  -webkit-border-radius: 2px 2px 2px 2px;
  border-radius: 2px 2px 2px 2px;
}
.bar2 {
  margin: 7px 0;
}

.dl-active .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 5px);
  transform: rotate(-45deg) translate(-6px, 5px);
  background: #333;
}
.dl-active .bar2 {
  opacity: 0;
}
.dl-active .bar3 {
  -webkit-transform: rotate(45deg) translate(-7px, -7px);
  transform: rotate(45deg) translate(-7px, -7px);
  background: #333;
}

.mobilemenu {
  left: -250px;
  width: 250px;
  position: fixed;
  top: 77px;
  background: rgba(255, 255, 255, 1);
  z-index: 88;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all ease 0.5s;
  border-top: 1px solid #ddd;
  box-shadow: 5px 10px 10px 0 rgba(0, 0, 0, 0.2);
}
.mobilemenu.active {
  left: 0;
  opacity: 1;
}
.mobilemenu li {
  float: left;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.mobilemenu li a {
  float: left;
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000;
}
.mobilemenu li a:hover {
  color: #000;
}

/*-------------------
BANNER CSS
---------------------*/
.banner {
  justify-content: center;
  flex-basis: 100%;
  background: url(../images/banner.webp) #152037 no-repeat center top;
  background-size: cover;
  padding: 100px 0 132px;
}

.banner_content {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner_left {
  text-align: left;
  width: 58%;
}

.banner_heading {
  font-size: 60px;
  line-height: 62px;
  color: #ffffff;
  font-family: "Avenir Next LT Pro", Arial, sans-serif, "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue";
  font-weight: bold;
  letter-spacing: 0.4px;
}
.banner_heading span {
  color: #5dc1f9;
}
.banner_text {
  font-size: 17px;
  line-height: 26px;
  color: #fff;
  margin-top: 30px;
}

/*BUTTON*/
.common_button {
  display: flex;
  display: -webkit-flex;
  justify-content: start;
}
.button_center {
  justify-content: center;
}
.button_col {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 346px;
  margin-top: 60px;
}
.common_button a {
  width: 100%;
  background: #ec6633;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  padding: 15px 0;
  font-weight: 800;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common_button a img {
  margin: 0 0 0 10px;
  width: 20px;
}
.button_text {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 14px;
  color: #000;
  margin-top: 10px;
}
.button_text span.dot {
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  content: "";
  margin: 0 7px 0;
}
.button_text.color-white span.dot {
  background: #fff;
}

/*-----------------
SECTION_ONE
-------------------*/
.section_one {
  justify-content: center;
  flex-basis: 100%;
  padding: 65px 0 70px;
}
.common_heading {
  color: #000050;
  font-size: 52px;
  line-height: 55px;
  font-family: "Avenir Next LT Pro", Arial, sans-serif, "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue";
  font-weight: bold;
}
.common_text {
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  margin-top: 25px;
}
.common_padding {
  padding: 0 100px;
}

.sec1_row {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1070px;
  margin: 50px auto 0;
}
.sec1_col-1 {
  width: 40.55%;
  padding: 15px 0 0 15px;
}
.silverback-poster {
  width: 100%;
  background: #152654;
  padding: 40px 12px 70px;
  text-align: center;
  position: relative;
}
.silverback-poster:before {
  position: absolute;
  left: -15px;
  top: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid #152654;
  content: "";
  z-index: -1;
}
.silverback-poster_quotes {
  font-size: 26px;
  line-height: 31px;
  color: #ffffff;
  font-weight: 600;
  font-style: italic;
  text-align: left;
  padding: 0 15px;
  position: relative;
  display: flex;
  align-items: self-start;
  column-gap: 5px;
}
.s1-quotes1 {
  display: inline-block;
  vertical-align: middle;
  margin: -5px 15px 0 0;
}
.s1-quotes2 {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 0 -15px 5px;
}
.silverback-poster-img {
  display: block;
  margin: 50px auto 0;
  max-width: 100%;
}
.sec1_col-2 {
  width: 55%;
  text-align: left;
}
ul.sec1_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 10px;
}
ul.sec1_list li {
  display: flex;
  display: -webkit-flex;
  column-gap: 15px;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
ul.sec1_list li:last-child {
  border: none;
  padding-bottom: 0;
}
.sec1_list-icon {
  flex-shrink: 0;
}
.sec1_list-icon img {
  width: 52px;
  vertical-align: middle;
}
.sec1_list-content {
  text-align: left;
}
.sec1_list-content h3 {
  font-size: 22px;
  line-height: 24px;
  color: #000050;
  font-weight: bold;
}
.sec1_list-content p {
  font-size: 17px;
  line-height: 23px;
  color: #000000;
  margin-top: 8px;
}

/*-----------------
SECTION_TWO
-------------------*/
.section_two {
  justify-content: center;
  flex-basis: 100%;
  background: #f5f5ff;
  padding: 60px 0;
}

.sec2_row {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 60px;
  row-gap: 30px;
}
.sec2_col {
  width: 48.68%;
  min-height: 370px;
  padding: 15px;
  position: relative;
}
.sec2_col-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.sec2_col-content {
  height: 100%;
  width: 100%;
  max-width: 378px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: left;
  position: relative;
}
.sec2_col-content h3 {
  font-size: 28px;
  line-height: 28px;
  color: #000000;
  font-weight: 800;
}
.sec2_col-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 60px;
}
ul.sec2_col-list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 20px;
}
ul.sec2_col-list li {
  width: max-content;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  font-weight: 500;
  padding: 8px 15px 10px;
  border: 1px solid #5dc1f9;
  border-radius: 30px;
}

/*-----------------
SECTION_THREE
-------------------*/
.section_three {
  justify-content: center;
  flex-basis: 100%;
  padding: 70px 0 70px;
  background: #1a3056;
}
.sec3_header {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  position: relative;
}
.sec3-hdr-img {
  position: absolute;
  right: 15px;
  top: -35px;
  width: 273px;
}

.sec3_step-row {
  margin: 35px auto 0;
  width: 100%;

  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec3_step-col {
  width: 32%;
  background: #03132d;
  text-align: left;
  position: relative;
  padding: 40px 30px 45px;
}
.step_text1 {
  font-size: 15px;
  line-height: 20px;
  color: #7598d5;
}
.step_text2 {
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  font-weight: bold;
  padding-bottom: 18px;
  position: relative;
  margin-top: 10px;
}
.step_text2:before {
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #1a3056;
  content: "";
  width: 70px;
}
.step_text3 {
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  margin-top: 45px;
}
.sec3_btm-text1 {
  font-size: 40px;
  line-height: 40px;
  color: #5dc1f9;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 60px;
}
.sec3_btm-text2 {
  font-size: 15px;
  line-height: 22px;
  color: #c4daff;
  margin-top: 12px;
}

/*-----------------
SECTION_FOUR
-------------------*/
.section_four {
  justify-content: center;
  flex-basis: 100%;
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.section_four-row {
  width: 100%;
  position: relative;
}
.article_row {
  margin: 40px auto 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.swiper-slide {
  display: -webkit-flex !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: auto !important;
}
.article_col {
  width: 100%;
  height: 100%;
  border: 1px solid #6893e2;
  padding: 17px 17px 30px;
  text-align: left;
}
.article-img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.article_col h3 {
  font-size: 22px;
  line-height: 27px;
  color: #10244e;
  font-weight: bold;
  margin-top: 15px;
  font-family: "Avenir Next LT Pro", Arial, sans-serif, "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue";
}
.article_col p {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-top: 12px;
}
a.read_more-btn {
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
  line-height: 24px;
  color: #ec6633;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 15px;
}
a.read_more-btn img {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 5px;
  width: 16px;
}
.swiper-button-next,
.swiper-button-prev {
  background: #10244e;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50%;
}
.swiper-button-next {
  right: -50px !important;
}
.swiper-button-prev {
  left: -50px !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  --swiper-navigation-size: 15px;
  color: #fff;
}
.read_more-article {
  font-size: 20px;
  line-height: 30px;
  margin-top: 50px;
  color: #10244e;
  font-weight: bold;
  text-decoration: underline;
}
/*-----------------
SECTION_FIVE
-------------------*/
.section_five {
  justify-content: center;
  flex-basis: 100%;
  padding: 50px 0;
  position: relative;
  background: url(../images/sec5_bg.webp) no-repeat center top;
  background-size: cover;
}
.sec5-monkey-img {
  display: block;
  margin: 0 auto 30px;
  width: 215px;
}
.sec5_call-row {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}
.sec5_call-col {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 346px;
  margin-top: 30px;
}
.call-text1 {
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
a.call_button {
  width: 100%;
  background: #ec6633;
  color: #ffffff;
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
  padding: 15px 0;
  font-weight: 800;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.5px;
}
a.call_button img {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
}
a.call_button span {
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #f2845a;
}

/*-----------------
SECTION_SIX
-------------------*/
.section_six {
  justify-content: center;
  flex-basis: 100%;
  padding: 65px 0;
  position: relative;
}
.faq-box {
  max-width: 830px;
  margin: 40px auto 0;
  text-align: left;
}
.faq-box_row {
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.accordion {
  text-align: left;
  background: url(../images/close-btn.webp) no-repeat right 10px center;
  background-size: 27px;
  padding: 20px 40px 20px 0;
  color: #000000;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;

  cursor: pointer;
}
.faq-box_row.active .accordion {
  background: url(../images/open-btn.webp) no-repeat right 10px center;
  background-size: 27px;
}
.panel {
  padding: 15px 0;
}
.accordion-para {
  font-size: 18px;
  line-height: 26px;
  color: #000;
  letter-spacing: 0.3px;
  margin-bottom: 15px;
}

/*------------------
FOOTER
------------------*/
.footer_linksec {
  flex-basis: 100%;
  justify-content: center;
  padding: 30px 0;
  background: #10244e;
}
.ftr-links-inr {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr-links-col {
  text-align: left;
  padding-right: 30px;
}
.ftr-links-col-1 {
  width: 30%;
}
.ftr-links-col-4 {
  padding-right: 0;
}

.footerLogo {
  display: block;
  width: 320px;
}
.footer_describe {
  font-size: 17px;
  line-height: 24px;
  color: #ffffff;
  margin-top: 25px;
}
.ftr-links-hd {
  font-size: 20px;
  line-height: 26px;
  color: #5dc1f9;
  font-weight: bold;
  padding-bottom: 12px;
  position: relative;
}
.ftr-links-hd:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  border-bottom: 2px solid #2f58ae;
  content: "";
}
ul.ftr-links-list {
  margin-top: 25px;
}
ul.ftr-links-list li {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-align: left;
  letter-spacing: 0.3px;
}
ul.ftr-links-list li a {
  color: #fff;
}
ul.social_list {
  margin-top: 20px;
}
ul.social_list li {
  margin: 15px 0 0;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  text-align: left;
  position: relative;
  padding-left: 30px;
}
ul.social_list li img {
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
}
ul.social_link {
  margin-top: 30px;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
}
ul.social_link li {
  margin-right: 30px;
}
ul.social_link li a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
ul.social_link li a svg {
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  fill: #fff;
}

.footer {
  flex-basis: 100%;
  justify-content: center;
  padding: 30px 0 50px;
  background: #fff;
  text-align: center;
}
.footer_text {
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: #000000;
}
.disclaimer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  max-width: 1030px;
  border: 2px solid #dddd;
  margin: 30px auto 0;
  padding: 20px 25px;
  text-align: left;
}
.disclaimer p {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.3px;
  color: #666666;
}
.disclaimer p span {
  color: #000;
}

/*========ABOUT_PAGE==========*/
.about-sec_banner {
  flex-basis: 100%;
  justify-content: center;
  height: 245px;
  background: url(../images/about-sec_banner.webp) no-repeat center top;
  background-size: cover;
}
.about-sec_banner-left {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 100%;
  padding: 30px 0;
}
.about_banner-heading {
  font-size: 60px;
  line-height: 62px;
  color: #ffffff;
  font-weight: bold;
  font-family: "Avenir Next LT Pro", Arial, sans-serif, "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue";
}
.about-sec1 {
  flex-basis: 100%;
  justify-content: center;
  padding: 65px 0 70px;
  background: #fff;
}
.about-sec1-row {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.about-sec1-left {
  width: 59%;
  text-align: left;
}
.about-sec1-right {
  width: 36%;
}
.about-sec1-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.about-sec2 {
  flex-basis: 100%;
  justify-content: center;
  padding: 60px 0 80px;
  background: #f5f5ff;
}
.about_team-box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1030px;
  row-gap: 70px;
  margin: 60px auto 0;
}
.about-sec2-row {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.about-sec2-left {
  width: 35.5%;
  padding: 10px 0 0 10px;
}
.team-leader-img {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #152654;
}
.team-leader-img:before {
  position: absolute;
  left: -10px;
  top: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #152654;
  content: "";
  z-index: -1;
}
.team-leader-img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.about-sec2-right {
  text-align: left;
  width: 58%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.team_partner-header {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #a0a8cd;
}
.team_partner-header h3 {
  font-size: 28px;
  line-height: 30px;
  color: #000000;
  font-weight: 800;
}
.team_partner-header p {
  font-size: 18px;
  line-height: 30px;
  color: #000050;
  font-weight: 500;
  margin-top: 5px;
}

/*========BLOG_PAGE==========*/
.blog_banner {
  flex-basis: 100%;
  justify-content: center;
  height: 250px;
  background: url(../images/blog_banner.webp) no-repeat center top;
  background-size: cover;
  overflow: hidden;
}
.blog-mack-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.blog-sec1 {
  flex-basis: 100%;
  justify-content: center;
  padding: 70px 0;
}
.blog-warp {
  display: grid;
  row-gap: 35px;
  column-gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-warp .article_col h3 {
  min-height: 82px;
}

/*BLOG_DETAILS*/
.blog_details-row {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.blog_details-left {
  width: 71.5%;
  text-align: left;
  padding-right: 35px;
  border-right: 1px solid #ddd;
}
.blog_details-heading {
  font-size: 40px;
  line-height: 50px;
  color: #1a3056;
  font-weight: bold;
  font-family: "Avenir Next LT Pro", Arial, sans-serif, "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue";
  letter-spacing: -0.5px;
}
.blog-details-main-img {
  display: block;
  margin: 40px auto 0;
  width: 100%;
}
ul.blog_details-list {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  row-gap: 35px;
  width: 100%;
  margin-top: 30px;
}
ul.blog_details-list li {
  text-align: left;
  padding-left: 35px;
  background: url(../images/green_check.webp) no-repeat left 5px;
  background-size: 20px;
}
ul.blog_details-list li h3 {
  font-size: 21px;
  line-height: 26px;
  color: #000000;
  font-weight: bold;
}
ul.blog_details-list li p {
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  margin-top: 8px;
}
.blog_details-right {
  padding-left: 35px;
  width: 28.5%;
}
.related_article-heading {
  font-size: 27px;
  line-height: 35px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.related_article-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  row-gap: 50px;
}
a.related_article-row {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  column-gap: 15px;
  text-align: left;
  position: relative;
}
a.related_article-row:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  content: "";
  border-bottom: 1px solid #ddd;
}
a.related_article-row:last-child:after {
  display: none;
}
.related-img {
  width: 100px;
  height: 90px;
  flex-shrink: 0;
  border: 1px solid #000050;
}
.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.related_article-row p {
  font-size: 16px;
  line-height: 21px;
  color: #10244e;
  font-weight: bold;
  text-align: left;
}
a.related_article-row p:hover {
  text-decoration: underline;
}

.for-mob {
  display: none;
}
.for-tab {
  display: none;
}
.fw-600 {
  font-weight: 600;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-40 {
  margin-top: 40px;
}
.color-white {
  color: #fff;
}
/*-----------------------
MEDIA-QUERY
------------------------*/

@media only screen and (max-width: 1200px) {
  .container {
    width: 1004px;
  }

  .logo {
    width: 160px;
  }
  ul.nav-bar {
    padding-left: 10px;
    margin-left: 10px;
  }
  ul.nav-bar li {
    font-size: 14px;
    padding-right: 20px;
  }
  .call_us p a {
    font-size: 18px;
  }
  a.top_btn {
    width: 170px;
    font-size: 13px;
  }

  .banner {
    padding: 80px 0 100px;
  }
  .banner_left {
    width: 65%;
  }
  .banner_heading {
    font-size: 55px;
  }

  .common_padding {
    padding: 0;
  }

  .blog_details-right {
    padding-left: 25px;
  }
}

@media only screen and (max-width: 1021px) {
  .container {
    width: 750px;
  }
  .for-desk {
    display: none;
  }
  .for-tab {
    display: block;
  }

  ul.nav-bar,
  .header_right {
    display: none;
  }
  .call-ic-m {
    position: absolute;
    right: 60px;
    top: 25px;
    width: 25px;
  }

  .banner {
    padding: 80px 0;
  }
  .banner_left {
    width: 80%;
  }
  .banner_heading {
    font-size: 50px;
    line-height: 56px;
  }

  .common_heading {
    font-size: 48px;
    line-height: 50px;
  }

  .sec1_row {
    justify-content: center;
  }
  .sec1_col-1 {
    width: 100%;
    max-width: 400px;
  }
  .silverback-poster {
    padding: 30px 12px;
  }
  .sec1_col-2 {
    width: 100%;
    margin-top: 25px;
  }
  .sec1_col-2 .common_button {
    justify-content: center;
  }

  .sec2_row {
    max-width: 600px;
    margin: 40px auto 0;
  }
  .sec2_col {
    width: 100%;
  }

  .sec3_header {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .sec3-hdr-img {
    position: static;
    display: block;
    margin: 15px auto -30px;
  }
  .sec3_step-row {
    margin: 0 auto;
    row-gap: 15px;
    max-width: 600px;
  }
  .sec3_step-col {
    width: 100%;
    padding: 29px 30px 35px;
  }
  .step_text3 {
    margin-top: 30px;
  }
  .sec3_btm-text1 {
    font-size: 33px;
  }

  .ftr-links-col-1 {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }

  /*========ABOUT_PAGE==========*/
  .about_banner-heading {
    font-size: 50px;
    line-height: 56px;
  }
  .about-sec1-right {
    width: 38%;
  }

  /*========BLOG_PAGE==========*/
  .blog-mack-img {
    width: 350px;
  }
  .blog-warp {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog_details-left {
    width: 100%;
    padding: 0;
    border: none;
  }
  .blog_details-right {
    padding: 0 15px;
    margin-top: 40px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 600px;
    width: 100%;
    padding: 0px 15px;
  }

  .for-mob {
    display: block;
  }
  .hide-mob {
    display: none;
  }

  header {
    position: relative;
    z-index: 9;
    margin-bottom: 55px;
  }
  .header__inner {
    height: 55px;
    margin-top: -55px;
    top: 55px;
  }
  .logo {
    width: 150px;
  }
  .mob-mnu-ic {
    right: 15px;
    top: 17px;
  }
  .call-ic-m {
    top: 15px;
  }
  .mobilemenu {
    top: 55px;
  }

  .banner {
    padding: 25px 0 70%;
    background: url(../images/banner_mob.webp) no-repeat center bottom #152037;
    background-size: 100%;
  }
  .banner_left {
    width: 100%;
  }
  .banner_heading {
    font-size: 30px;
    line-height: 36px;
  }
  .banner_text {
    margin-top: 10px;
    width: 90%;
  }

  .common_button {
    justify-content: center;
  }
  .button_col {
    margin-top: 25px;
    max-width: 100%;
  }

  .section_one {
    padding: 30px 0 35px;
  }
  .common_heading {
    font-size: 28px;
    line-height: 33px;
  }
  .common_text {
    font-size: 16px;
    line-height: 25px;
    margin-top: 20px;
  }
  .text-left-m {
    text-align: left;
  }
  .sec1_row {
    margin: 30px auto 0;
  }
  .sec1_col-1 {
    padding: 10px 0 0 10px;
  }
  .silverback-poster {
    padding: 20px 12px 25px;
  }
  .silverback-poster:before {
    left: -10px;
    top: -10px;
    right: 10px;
    bottom: 10px;
  }
  .silverback-poster_quotes {
    font-size: 22px;
    line-height: 27px;
  }
  .silverback-poster-img {
    margin: 20px auto 0;
  }
  .sec1_col-2 {
    text-align: center;
  }
  ul.sec1_list li {
    flex-direction: column;
    justify-content: center;
    padding: 0 15px 20px;
  }
  .sec1_list-content {
    text-align: center;
    margin-top: 10px;
  }
  .sec1_list-content h3 {
    font-size: 21px;
  }
  .sec1_list-content p {
    font-size: 16px;
  }

  .section_two {
    padding: 30px 0 35px;
  }
  .sec2_row {
    width: calc(100% + 30px);
    margin: 30px 0 10px -15px;
    overflow: hidden;
    position: relative;
  }
  .sec2_col {
    padding: 150px 10px 10px;
    background: #000050;
    border: 1px solid #000050;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
  .sec2_col-content {
    max-width: 100%;
    flex: 1;
  }
  .sec2_col-img {
    object-position: top;
  }
  .sec2_col-content h3 {
    font-size: 23px;
    line-height: 25px;
  }
  .sec2_col-icon {
    right: 10px;
    top: 10px;
  }
  ul.sec2_col-list li {
    font-size: 13px;
    line-height: 17px;
  }

  .sec2_row .swiper-slide {
    height: 100% !important;
  }
  .sec2_row .swiper-button-next {
    top: 50% !important;
    background: #2f9eda;
    right: 5px !important;
  }
  .sec2_row .swiper-button-prev {
    top: 50% !important;
    background: #2f9eda;
    left: 5px !important;
  }

  .sec2_row .swiper-horizontal > .swiper-pagination-bullets,
  .sec2_row .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: flex !important;
    width: 67% !important;
    margin-top: 15px;
  }
  .sec2_row .swiper-pagination-bullet {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    height: 3px !important;
  }
  .sec2_row .swiper-pagination-bullet-active {
    background: #10244e !important;
  }

  .section_three {
    padding: 30px 0 35px;
  }
  .step_text2 {
    font-size: 23px;
    line-height: 28px;
  }
  .step_text3 {
    margin-top: 20px;
  }
  .sec3_btm-text1 {
    margin-top: 30px;
  }

  .section_four {
    padding: 30px 0 35px;
  }
  .article_row {
    width: calc(100% + 30px);
    margin: 25px 0 0 -15px;
  }
  .article_col {
    padding: 15px 15px 25px;
  }
  .article_col h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    top: 28% !important;
  }
  .swiper-button-next {
    right: 0 !important;
  }
  .swiper-button-prev {
    left: 0 !important;
  }

  .read_more-article {
    font-size: 16px;
    line-height: 22px;
    margin-top: 30px;
  }

  .section_five {
    background: url(../images/sec5_bg-m.webp) no-repeat center top;
    background-size: cover;
    padding: 30px 0 40px 0;
  }
  .section_five .common_heading {
    font-size: 35px;
    line-height: 40px;
  }

  .section_six {
    padding: 30px 0 35px;
  }
  .faq-box {
    margin: 15px auto 5px;
  }
  .accordion {
    padding: 15px 40px 15px 0;
    font-size: 18px;
    line-height: 25px;
    background-size: 20px;
  }
  .faq-box_row.active .accordion {
    background-size: 20px;
  }
  .panel {
    padding: 0 0 10px 0;
  }
  .accordion-para {
    font-size: 16px;
    line-height: 23px;
  }

  .footer_linksec {
    padding: 30px 0 35px;
  }
  .footerLogo {
    width: 240px;
  }
  .footer_describe {
    font-size: 15px;
    line-height: 23px;
  }
  .ftr-links-col {
    padding: 0;
  }
  .ftr-links-col-1 {
    margin-bottom: 26px;
  }
  .ftr-links-col-2 {
    border-top: 1px solid #2f58ae;
  }
  .ftr-links-inr {
    flex-direction: column;
  }
  .colapse-list-m {
    display: none;
    padding-bottom: 10px;
    width: 100%;
    float: left;
  }
  .ftr-links-hd {
    font-size: 19px;
    line-height: 22px;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #2f58ae;
    position: relative;
  }
  .ftr-links-hd:before {
    display: none;
  }
  .ftr-links-hd:after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    content: "+";
    font-size: 26px;
  }
  .ftr-links-hd.active:after {
    content: "-";
  }
  ul.social_list li {
    font-size: 17px;
  }

  .footer {
    padding: 30px 0;
  }
  .footer_text {
    font-size: 16px;
  }
  .disclaimer {
    padding: 15px;
    margin: 20px auto 0;
  }
  .disclaimer p {
    font-size: 14px;
  }

  /*========ABOUT_PAGE==========*/
  .about-sec_banner {
    height: 120px;
  }
  .about_banner-heading {
    font-size: 32px;
    line-height: 35px;
  }
  .about-sec1 {
    padding: 30px 0 35px;
  }
  .about-sec1-left {
    width: 100%;
  }
  .about-sec1-right {
    width: 100%;
    margin-top: 25px;
  }
  .about-sec1-img {
    width: 250px;
  }

  .about-sec2 {
    padding: 30px 0 35px;
  }
  .about_team-box {
    row-gap: 35px;
    margin: 35px auto 0;
  }
  .about-sec2-right {
    width: 100%;
  }
  .about-sec2-left {
    width: 70%;
    margin: 25px 0;
  }
  .team_partner-header h3 {
    font-size: 24px;
    line-height: 24px;
  }
  .team_partner-header p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 5px;
  }

  /*========BLOG_PAGE==========*/
  .blog_banner {
    height: auto;
  }
  .blog-mack-img {
    width: 160px;
    right: -10px;
  }

  .blog-sec1 {
    padding: 30px 0 35px;
  }
  .blog-warp {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 20px;
  }
  .blog-warp .article_col h3 {
    min-height: auto;
  }

  .blog_details-heading {
    font-size: 28px;
    line-height: 33px;
  }
  .blog-details-main-img {
    margin: 20px auto 0;
  }
  ul.blog_details-list {
    row-gap: 25px;
    margin-top: 25px;
  }
  ul.blog_details-list li h3 {
    font-size: 19px;
    line-height: 22px;
  }
  ul.blog_details-list li p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
  }

  .related_article-heading {
    font-size: 23px;
    line-height: 25px;
  }
  .related_article-box {
    margin-top: 25px;
    row-gap: 40px;
  }
  .related-img {
    width: 90px;
    height: 80px;
  }
  a.related_article-row:after {
    bottom: -20px;
  }
}
