/* Variables
======================*/
@font-face {
  font-family: "RB";
  src: url("../fonts/RB-Bold.eot");
  src: url("../fonts/RB-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/RB-Bold.woff2") format("woff2"), url("../fonts/RB-Bold.woff") format("woff"), url("../fonts/RB-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RB";
  src: url("../fonts/RB-Regular.eot");
  src: url("../fonts/RB-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/RB-Regular.woff2") format("woff2"), url("../fonts/RB-Regular.woff") format("woff"), url("../fonts/RB-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: #222c71 !important;
  color: #fff !important;
}

body {
  overflow: hidden;
  width: 100%;
  text-align: start;
  position: relative;
  font-family: "RB", sans-serif;
  font-weight: normal;
  letter-spacing: 0;
  padding-top: 90px;
}

@media (max-width: 575px) {
  body {
    padding-top: 80px;
  }
}



/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #f1f1f1;
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background-color: #cbb887;
}

/* Loading 
=====================*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222c71;
  z-index: 9999;
}

.spinner {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  position: absolute;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot1 {
  background-color: #cbb887;
}

.dot2 {
  top: auto;
  background-color: #cbb887;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Mouse Cursor
=========================*/
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

@media (max-width: 991px) {
  .mouse-cursor {
    display: none !important;
  }
}

.cursor-inner {
  width: 4px;
  height: 4px;
  z-index: 10000001;
  background-color: #222c71;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -25px;
  margin-top: -25px;
  width: 40px;
  height: 40px;
  background-color: #222c71;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 25px;
  height: 25px;
  border: 1px solid #222c71;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 80ms ease-out;
  -moz-transition: all 80ms ease-out;
  -ms-transition: all 80ms ease-out;
  -o-transition: all 80ms ease-out;
  transition: all 80ms ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  display: inline-block;
}

.list {
  margin: 15px 0;
}

.list li {
  display: block;
  line-height: 25px;
  margin-bottom: 15px;
  padding-inline-start: 35px;
  font-size: 14px;
  color: #332c34;
  position: relative;
}

.list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  top: 3px;
  margin: auto;
  color: #08afed;
  background-color: #f6f9ff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
}

.w-50 {
  width: 49% !important;
}

.ms-5 {
  margin-inline-start: 5px !important;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Button - links
========================*/
.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 60px;
  text-align: center;
  font-size: 14px;
  padding: 0 25px;
  text-transform: uppercase;
  background-color: #d0b985;
  color: #222c71;
  font-weight: bold;
  letter-spacing: 1px;
  border: 0;
  box-shadow: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.link i {
  margin-inline-start: 10px;
}

.link span {
  position: relative;
}

.link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  background-color: #222c71;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.link:hover {
  color: #fff;
}

.link:hover::before {
  clip-path: circle(100% at 50% 50%);
}

.link.more {
  margin-top: 45px;
}

@media (max-width: 576px) {
  .link {
    height: 50px;
    line-height: 48px;
    font-size: 16px;
  }
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  line-height: 45px !important;
  /* min-width: 45px; */
  height: 45px;
  width: 45px;
  text-align: center;
  font-size: 16px;
  padding: 0;
  background-color: #d0b985;
  color: #282f5f;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  background-color: #ffffff;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.icon i,
.icon::before {
  z-index: 999;
  position: relative;
}

.icon:hover {
  color: #332c34;
}

.icon:hover::after {
  clip-path: circle(100% at 50% 50%);
}

.icon:hover i,
.icon:hover::before {
  color: #222c71;
}

/* Form
=======================*/
label {
  font-weight: bold;
  font-size: 14px;
  margin: 10px 0;
}

.form-control {
  padding: 0 15px;
  font-size: 14px;
  line-height: 50px;
  height: 50px;
  color: #332c34;
  border: 1px solid #e7e7e7;
  letter-spacing: 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.form-control:hover,
.form-control:focus {
  border: 1px solid #e7e7e7;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  resize: none;
  height: 110px;
  line-height: 22px;
  padding: 15px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Social Media
=======================*/
.fa-facebook {
  background-color: #1877F2 !important;
}

.fa-twitter {
  background-color: #1DA1F2 !important;
}

.fa-youtube {
  background-color: #CD201F !important;
}

/* Page Setting
=====================*/
section {
  position: relative;
  padding: 70px 0;
  background-color: #fff;
}

section.colored {
  background-color: rgba(8, 175, 237, 0.02);
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
}

.section_img {
  background: url(../images/shap_bc.png) right no-repeat;
  background-size: cover;
}

.section_img .container {
  position: relative;
  z-index: 999;
}

.shadow {
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Section Title
=======================*/
.section_title {
  margin: 0 auto 35px;
  max-width: 768px;
}

.section_title h3 {
  position: relative;
  font-size: 26px;
  font-weight: bold;
  color: #222c71;
  line-height: 25px;
  margin: 0 0 25px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section_title h3::before {
  content: "";
  width: 100px;
  height: 7px;
  background-color: #d0b985;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}


/* Page Head
=======================*/
.page_head {
  background: url(../images/main1.jpg) center no-repeat;
  background-size: cover;
  text-align: center;
  font-weight: bold;
  padding: 70px 0;
}

.page_head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 44, 52, 0.6);
}

.page_head h3 {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.page_head ul li {
  display: inline-block;
  color: #d0b985;
  font-size: 16px;
}

.page_head ul li a {
  display: block;
  color: #d0b985;
  padding-inline-end: 15px;
  margin-inline-end: 5px;
  position: relative;
  color: #fff;
}

.page_head ul li a::after {
  content: " / ";
  position: absolute;
  top: 0;
  inset-inline-end: 0px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .page_head {
    padding: 35px 0;
  }

  .page_head h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .page_head ul li,
  .page_head ul li a {
    font-size: 14px;
  }
}

/*  Header
=============================*/
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 90px;
  z-index: 9998;
  background-color: #192d61;
}

@media (max-width: 575px) {
  header {
    top: 0;
    min-height: 80px;
  }
  .navbar{
    top: 80px !important;
  }
}

header.shadow {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1) !important;
}

header .container {
  position: relative;
  min-height: 80px;
}

header .navbar-brand {
  margin: 0;
  z-index: 999;
  width: auto;
  height: 90px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar-brand a{
  display: inline-block;
  height: 90px;
  margin-inline-end: 5px;
}
header .navbar-brand img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
header .navbar-brand a:last-child img {
  width: 75px;
}
header .btns {
  z-index: 9998;
}

header .btns .icon {
  margin-inline-start: 3px;
}

header .btns .link {
  margin: 0;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  font-size: 16px;
  margin-inline-start: 3px;
}

header .btns .menu-btn {
  display: none;
}

.navbar {
  padding: 0px;
  margin: 0px;
  margin-top: -90px;
  min-height: 90px;
}

.navbar .container {
  min-height: auto;
}

.navbar ul.navbar-nav {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-inline-end: 100px;
}

.navbar ul.navbar-nav li {
  display: inline-block;
}


.navbar ul.navbar-nav li a {
  position: relative;
  display: block;
  margin: 0 12px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar ul.navbar-nav li a i {
  margin-inline-start: 5px;
}

.navbar ul.navbar-nav li a:hover,
.navbar ul.navbar-nav li a.active {
  color: #d0b985;
}

.navbar ul.navbar-nav li.dropdown .dropdown-menu li {
  width: 100%;
}


.navbar ul.navbar-nav li.dropdown .dropdown-menu li a {
  border-bottom: 1px solid #e7e7e7;
  text-align: start;
  padding: 10px 15px;
  line-height: 22px;
  margin: 0;
  font-size: 16px;
  color: #332c34;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: normal;
}

.navbar ul.navbar-nav li.dropdown .dropdown-menu li a:hover {
  color: #d0b985;
}

.navbar ul.navbar-nav li.dropdown .dropdown-menu li a img {
  width: 40px;
  display: inline-block;
  margin-inline-end: 10px;
}

.navbar ul.navbar-nav li.dropdown .dropdown-menu li:last-child a {
  border-bottom: 0;
}

@media (min-width: 992px) {
  .dropdown .dropdown-menu {
    display: block;
    left: 0;
    right: auto;
    top: 65px;
    margin: 0;
    width: 100%;
    min-width: 240px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #f1f1f1;
    background-color: #fff;
    transform-origin: top;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transition: 0.4s all linear;
    -moz-transition: 0.4s all linear;
    -ms-transition: 0.4s all linear;
    -o-transition: 0.4s all linear;
    transition: 0.4s all linear;
  }

  .dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 10px;
    z-index: 9999;
    width: 20px;
    height: 20px;
    border: 10px solid transparent;
    border-bottom-color: #fff;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}

@media (max-width: 1199px) {
  .navbar ul.navbar-nav li a {
  margin: 0 8px;
  }
}

@media (max-width: 991px) {
  header .container {
    max-width: 100%;
  }

  header .btns .menu-btn {
    display: inline-block;
    margin: 0;
  }

  .navbar {
    background-color: #222c71;
    max-height: 440px;
    min-height: auto;
    overflow: hidden;
    overflow-y: auto;
    margin: 0;
    position: absolute;
    width: 100%;
    top: 90px;
    border-top: 1px solid #fff1;
  }

  .navbar ul.navbar-nav {
    display: block;
    text-align: start;
    padding: 10px;
  }

  .navbar ul.navbar-nav li {
    display: block;
  }

  .navbar ul.navbar-nav li:last-child a {
    padding: 0 15px;
    color: #fff;
    background-color: transparent;
  }

  .navbar ul.navbar-nav li:last-child a i {
    display: none;
  }

  .navbar ul.navbar-nav li a {
    text-align: start;
    display: inline-block;
    margin: 0;
    padding: 0 15px;
    color: #fff;
  }

  .navbar ul.navbar-nav li a.active,
  .navbar ul.navbar-nav li a:hover {
    color: #fff;
  }

  .navbar ul.navbar-nav li .dropdown-menu {
    border: 0;
    padding: 10px;
    background-color: #fff;
  }

  .navbar ul.navbar-nav li .dropdown-menu li a {
    line-height: 35px;
    font-size: 14px;
    border: 0 !important;
    background-color: transparent;
    display: block;
    border: 0;
  }

  .navbar ul.navbar-nav li .dropdown-menu li a:hover {
    color: #08afed;
  }
}

@media (max-width: 575px) {
  header .btns .icon {
    margin-inline-start: 0px;
    width: 35px;
    height: 35px;
    line-height: 37px !important;
  }

  header .btns .link {
    display: none;
  }
header .navbar-brand{
  height: 80px;
}
 header .navbar-brand a{
  height: 70px;
}
header .navbar-brand a:last-child img {
  width: 75px;
}
}
@media (max-width: 360px) {
header .navbar-brand{
  height: 80px;
}
 header .navbar-brand a{
  height: 70px;
}
header .navbar-brand a:last-child img {
  width: 50px;
}
}

/* Footer
=====================*/
footer {
  padding: 35px 0 10px;
  position: relative;
  z-index: 9997;
  background-color: #222c71;
}

footer h3 {
  margin: 15px 0;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  line-height: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer p {
  font-size: 13px;
  line-height: 25px;
  color: #fff;
}


footer ul li {
  display: block;
  position: relative;
  padding-inline-start: 20px;
  margin-bottom: 10px;
}

footer ul li::before {
  color: #fff9;
  position: absolute;
  content: "\f105";
  inset-inline-start: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

footer ul li a {
  display: inline-block;
  color: #fff;
  line-height: 20px;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-transition: 0.4s linear color;
  -moz-transition: 0.4s linear color;
  -ms-transition: 0.4s linear color;
  -o-transition: 0.4s linear color;
  transition: 0.4s linear color;
  letter-spacing: 0.5px;
}

footer ul li a:hover {
  color: #d0b985;
}

footer .contact_info li {
  margin-bottom: 25px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

footer .contact_info li::before {
  display: none;
  padding: 0;
}

footer .contact_info i {
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff2;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-inline-end: 15px;
  color: #fff;
  font-size: 12px;
}

footer .contact_info a {
  text-transform: lowercase;
}

footer .contact_info .tit {
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}

footer .social a {
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff2;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-inline-end: 15px;
  color: #fff;
  font-size: 12px;
}

footer form {
  max-width: 480px;
  position: relative;
  z-index: 99;
  width: 100%;
}

footer form .form-control {
  border: 0
}

footer form .link {
  margin: 0;
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
  line-height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

footer form .link i {
  margin: 0
}

footer span.copyright {
  margin-top: 25px;
  display: block;
  font-size: 14px;
  color: #fff;
}

footer .up_btn {
  margin: 10px auto;
  font-size: 16px;
  display: block;
  width: 40px;
  background-color: #fff2;
}

.copyright {
  margin: 20px 0 0;
  border-top: 1px solid #fff2;
  padding-top: 20px;
}

/* Main Section
======================*/
.main_section {
  padding: 0;
  height: calc(100vh - 90px);
  background: url(../images/main1.jpg) no-repeat fixed center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_section::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 70%;
}

.main_section .row {
  position: relative;
  justify-content: center;
  align-items: center;
}

.main_section .intro h1 {
  font-weight: normal;
  font-size: 43px;
  line-height: 70px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.main_section .intro h1 div {
  font-size: 60px;
  font-weight: bold;
}

.main_section .intro h1 span {
  color: #d0b985;
}

.main_section .intro h3 {
  font-weight: normal;
  line-height: 30px;
  margin: 20px auto 40px;
  font-size: 18px;
  max-width: 740px;
  color: #fff;
}

.main_section .intro .link {
  margin: 0 auto;
}
@media all and (max-width:1199px){
  .main_section .intro h1 {
  font-size: 34px;
}

.main_section .intro h1 div {
  font-size: 48px;
}

.main_section .intro h3 {
  font-size: 16px;
}
}
.features {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.features li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(34, 44, 113, 0.7);
  border-radius: 55px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 25px;
  max-width: 395px;
  text-align: start;
  letter-spacing: 1px;
  text-transform: capitalize;
  line-height: 28px;
  padding-inline-end: 25px;
}

.features img {
  padding: 10px;
  background-color: #fff;
  border-radius: 50%;
  height: 120px;
  width: 120px;
  object-fit: contain;
  margin: 0;
  margin-inline-end: 15px;
}

@media (max-width: 991px) {
  .main_section {
    height: auto;
    display: block;
    padding: 70px 0;
  }

  .main_section .intro {
    text-align: center;
  }

  .features {
    margin-top: 25px;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .main_section .intro h1 {
    font-size: 34px;
    line-height: 45px;
  }

  .main_section .intro h3 {
    text-align: justify;
    font-size: 16px;
    line-height: 25px;
    margin: 15px auto 30px;
  }

  .main_section .intro h1 div {
    font-size: 48px;
  }

  .features {
    flex-direction: column;
  }

  .features li {
    padding: 0;
    min-width: 100%;
  }

  .features li img {
    height: 80px;
    width: 80px;
    padding: 5px;
  }
}

@media (max-width: 576px) {
  .main_section {
    padding: 70px 0 0;
  }

  .main_section .intro h1 {
    font-size: 18px;
    line-height: 35px;
  }

  .main_section .intro h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .main_section .intro h1 div {
    font-size: 26px;
  }

  .features {
    flex-direction: column;
  }

  .features li {
    font-size: 14px;
    line-height: 20px;
  }

  .features li img {
    height: 60px;
    width: 60px;
    padding: 5px;
  }
}


/* Services
======================*/
.services {
  background-color: #f5f5f5;
}

.service_item {
  background-color: #fff;
  text-align: center;
  margin-top: 25px;
  cursor: pointer;
  display: block;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.service_item img {
  object-fit: cover;
  width: 100%;
  height: 240px;
}

.service_item .cont {
  padding: 20px;
  border: 1px solid #e7e7e7;
  border-top: 0;
  border-radius: 0 0 15px 15px;
  text-align: start;
  min-height: 96px;
}

.service_item h3 {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #222c71;
  line-height: 20px;
  margin: 0 0 15px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.service_item i {
  width: 35px;
  height: 35px;
  background-color: #cbb887;
  color: #222c71;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 19px;
  transition: 0.4s linear transform;
}

.service_item:hover i {
  transform: translateX(100%) rotate(360deg);
}

@media all and (max-width:991px) {
  .service_cont {
    margin-top: 25px;
  }
}

.service_cont h3 {
  font-size: 26px;
  font-weight: bold;
  line-height: 30px;
  margin: 0 0 25px;
  color: #222c71;
}
.service_cont h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  margin: 0 0 15px;
  color: #222c71;
}

.service_cont p {
  font-size: 16px;
  margin: 15px 0 0;
  line-height: 27px;
}
.work_item {
    display: block;
    position: relative;
    overflow: hidden;
    margin: auto auto 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.work_item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.mb-25{
  margin-bottom:25px;
}
.gallery {
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
  height: 220px;
  margin-top: 25px;
  display: block;
}

.gallery img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}


/* About
======================*/
.about {
  background-color: #f5f5f5;
  position: relative;
  z-index: 99;
}

.about_cont {
  text-align: start;
}

.about_cont h1 {
  font-weight: normal;
  font-size: 28px;
  line-height: 50px;
  color: #222c71;
  text-transform: uppercase;
  margin: 0 0 25px;
}


.about_cont h1 div {
  font-size: 42px;
  font-weight: bold;
}

.about_cont h1 span {
  color: #d0b985;
}

.about_cont h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 45px;
  margin: 0 0 15px;
  color: #222c71;
  letter-spacing: 2px;
}

.about_cont p {
  font-size: 15px;
  margin: 0 0 15px;
  line-height: 25px;
}

.about_img {
  border-radius: 15px;
}

.about .row.team {
  padding: 35px;
  background-color: #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -ms-transform: translateY(70px);
  -o-transform: translateY(70px);
  transform: translateY(40px);
  border: 1px solid #f5f5f5;
  border-top: 15px solid #d0b985;
  position: relative;
  z-index: 999;
}

.certife {
  border: 5px solid #222c71;
  border-radius: 15px;
  overflow: hidden;
  margin: 25px auto 0;
}

.team_members {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 25px auto 0;
}

.team_item .cont {
  text-align: start;
}

.team_item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #f5f5f5;
  padding: 5px;
  object-fit: contain;
  margin: 0;
  margin-inline-end: 15px;
}

.team_item h3 {
  margin: 0;
  letter-spacing: 0;
}

.team_item p {
  margin: 0;
}

@media all and (max-width: 991px) {
  .team_members {
    align-items: flex-start;
    flex-direction: column;
  }

  .team_item {
    min-width: 100%;
  }
}

@media (max-width: 767px) {
  .team_item img {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }

  .team_item .cont h3 {
    font-size: 18px;
  }
}

@media all and (max-width: 576px) {
  .about_cont h1 {
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 15px;
  }


  .about_cont h1 div {
    font-size: 24px;
  }

  .about_cont h3 {
    font-size: 24px;
    line-height: 45px;
    letter-spacing: 2px;
  }

  .about_cont p {
    font-size: 14px;
    line-height: 20px;
  }

  .about .row.team {
    padding: 15px 0;
  }

  .about .row.team h3 {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 24px;
  }

  .about {
    margin-bottom: 50px
  }
}

/* Partners
==========================*/
.partners {
  background-color: #f5f5f5;
}

.partners_slider {
  margin-top: 35px;
}

.partner_logo {
  overflow: hidden;
  padding: 10px;
  margin: auto;
  background-color: #fff;
  border-radius: 15px;
  width: 100%;
  height: 140px;
  object-fit: contain;
}

.inner_partners .partner_logo {
  margin-top: 25px;
  height: 220px;
  padding: 25px;
}

/* Contact
======================*/
.contact_form {
  background-color: #fff;
  padding: 35px;
  border-radius: 15px;
  margin: auto;
  border: 1px solid #e7e7e7;
  border-top: 10px solid #d0b985;
  text-align: center;
}

.contact_form h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin: 0 0 35px;
  color: #222c71;
}

.contact_form .link {
  margin-top: 25px !important;
}

.map {
  background-color: #fff;
  padding: 25px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
} 