@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700;800;900&family=Nunito+Sans:wght@300;400;600;700;800;900&family=Playfair+Display:wght@400;500;600&display=swap");
.navigation {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
}

.navigation-portrait {
  height: 48px;
}
.navigation-portrait .nav-brand {
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-logo > img {
  height: 36px;
  margin: 6px auto 6px 15px;
  padding: 0;
}
.navigation-portrait .nav-toggle {
  display: block;
}
.navigation-portrait .nav-menus-wrapper {
  width: 320px;
  height: 100%;
  top: 0;
  left: -400px;
  position: fixed;
  background-color: #00aeef;
  z-index: 20000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  left: auto;
  right: -400px;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  left: 0;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  left: auto;
  right: 0;
}
.navigation-portrait .nav-menus-wrapper-close-button {
  display: block;
}
.navigation-portrait .nav-menu {
  width: 100%;
}
.navigation-portrait .nav-menu > li {
  width: 100%;
  position: relativfonte;
  border-top: solid 1px rgba(240, 240, 240, 0.2);
}
.navigation-portrait .nav-menu > li:last-child {
  border-bottom: solid 1px rgba(240, 240, 240, 0.2);
}
.navigation-portrait .nav-menu > li > a {
  width: 100%;
  height: auto;
  padding: 5px 15px 5px 20px;
}
.navigation-portrait .nav-menu.nav-menu-social {
  width: 100%;
  text-align: center;
}
.navigation-portrait .nav-menu.nav-menu-social > li {
  width: auto;
}
.navigation-portrait .nav-menu.nav-menu-social > li > a {
  padding: 15px;
}
.navigation-portrait .nav-menu .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000;
}
.navigation-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
}
.navigation-portrait .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg);
}
.navigation-portrait .nav-search {
  height: 48px;
  padding: 0 10px;
  margin-right: 52px;
}
.navigation-portrait .nav-search-button {
  width: 50px;
  height: 48px;
  line-height: 46px;
  font-size: 22px;
}
.navigation-portrait .nav-search-inner {
  height: 48px;
}
.navigation-portrait .nav-search-inner input[type=text] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-search-inner input[type=search] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-search-close-button {
  top: 10px;
  right: 14px;
}
.navigation-portrait .nav-button {
  width: calc(100% - 52px);
  margin: 17px 26px;
}
.navigation-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0;
}
.navigation-portrait .nav-text + ul {
  margin-top: 15px;
}
.navigation-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}
.navigation-portrait .nav-dropdown > li > a {
  padding: 12px 20px 12px 30px;
}
.navigation-portrait .nav-dropdown > li > ul > li > a {
  padding-left: 50px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
  padding-left: 70px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
  padding-left: 90px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 110px;
}
.navigation-portrait .nav-dropdown .submenu-indicator {
  right: 0;
  top: 0;
}
.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(45deg);
}
.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none;
}
.navigation-portrait .nav-dropdown-horizontal > li {
  width: 100%;
}
.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  transform: rotate(0deg);
}
.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg);
}

.navigation-fixed-wrapper {
  width: 100%;
  left: 0;
  z-index: 19998;
  will-change: opacity;
}
.navigation-fixed-wrapper .navigation {
  margin-right: auto;
  margin-left: auto;
}

.navigation-fixed-wrapper.fixed {
  position: fixed !important;
  animation: fade 0.5s;
}

.navigation-fixed-placeholder {
  width: 100%;
  display: none;
}

.navigation-fixed-placeholder.navigation-fixed-placeholder.visible {
  display: block;
}

.navigation-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: -9999px;
}
.navigation-hidden .nav-header {
  display: none;
}
.navigation-hidden .nav-search {
  display: none;
}

.align-to-right {
  float: right;
}

.nav-header {
  float: left;
}

.nav-brand {
  font-size: 24px;
  text-decoration: none !important;
}
.nav-brand > img {
  width: 200px;
}
.nav-brand:hover {
  color: #70798b;
}
.nav-brand:focus {
  color: #70798b;
}

.nav-logo > img {
  height: 48px;
  margin: 11px auto;
  padding: 0 15px;
  float: left;
}
.nav-logo:focus > img {
  outline: initial;
}

.nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: 15px;
  display: none;
  cursor: pointer;
}
.nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #70798b;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #70798b, 0 1em 0 0 #70798b;
}

.nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.nav-menu {
  margin: 0;
  padding: 0 10px 0 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
}
.nav-menu > li {
  display: inline-block;
  text-align: left;
  padding: 10px 10px;
  font-weight: 500;
}
.nav-menu > li > a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  color: #2a2929;
  transition: color 0.3s, background 0.3s;
}
.nav-menu > li > a > i {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4);
}
.nav-menu > li > a > [class*=ion-] {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4);
  width: 16px;
  display: inline-block;
  transform: scale(1.8);
}
.nav-menu > li:hover > a {
  color: #fff;
}
.nav-menu > li:hover > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}
.nav-menu > li.active {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
  background: #00aeef;
  color: #fff;
}
.nav-menu > li.active > a {
  color: #0375a0;
  color: #fff;
}
.nav-menu > li.focus {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #00aeef;
  color: #fff;
}
.nav-menu > li.focus > a {
  color: #fff;
}
.nav-menu > .active > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}
.nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.nav-menu.nav-menu-centered {
  text-align: center;
}
.nav-menu.nav-menu-centered > li {
  float: none;
}

.nav-menu + .nav-menu > li:first-child {
  border-top: none;
}

.nav-menu.nav-menu-social > li {
  text-align: center;
  float: none;
  border: none !important;
}
.nav-menu.nav-menu-social > li > a > [class*=ion-] {
  font-size: 12px;
}
.nav-menu.nav-menu-social > li > a > .fa {
  font-size: 14px;
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 6px;
  float: right;
  transition: all 0.3s;
}

.submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #70798b #70798b transparent;
  transform: rotate(45deg);
  transition: border 0.3s;
}

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999;
}

.no-scroll {
  touch-action: none;
  overflow-x: hidden;
}

.nav-search {
  height: 70px;
  float: right;
  z-index: 19998;
}
.nav-search > form {
  width: 100%;
  height: 100%;
  padding: 0 auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
}

.nav-search-button {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  background-color: #fbfcfd;
}
.nav-search-button:hover .nav-search-icon {
  color: #8CC152;
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  margin: 2px 8px 8px 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #70798b;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: color 0.3s;
}
.nav-search-icon:after {
  content: "";
  pointer-events: none;
}
.nav-search-icon:before {
  content: "";
  pointer-events: none;
  width: 2px;
  height: 11px;
  top: 11px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  box-shadow: inset 0 0 0 32px;
  transform: translateX(-50%);
}

.nav-search-inner {
  width: 70%;
  height: 70px;
  margin: auto;
  display: table;
}
.nav-search-inner input[type=text] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}
.nav-search-inner input[type=search] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}

.nav-search-close-button {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal;
  color: #70798b;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.nav-button {
  margin: -7px 15px 0;
  padding: 8px 14px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  background-color: #8CC152;
  transition: opacity 0.3s;
}
.nav-button:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}
.nav-button:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.nav-text {
  margin: 25px 15px;
  display: inline-block;
  color: #70798b;
  font-size: 14px;
}

.nav-dropdown {
  min-width: 180px;
  margin-top: 10px;
  padding: 0;
  display: none;
  position: absolute;
  list-style: none;
  z-index: 98;
  white-space: nowrap;
}
.nav-dropdown .nav-dropdown {
  left: 100%;
}
.nav-dropdown > li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: left;
}
.nav-dropdown > li > a {
  width: 100%;
  padding: 16px 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  color: #00aeef;
  font-weight: 400;
  background-color: #e0f4fb;
  transition: color 0.3s, background 0.3s;
}
.nav-dropdown > li:hover {
  background-color: #e0f4fb;
  color: #00aeef;
}
.nav-dropdown > li:hover > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
  color: #00aeef;
}
.nav-dropdown > li:hover > a:hover {
  color: #00aeef;
}
.nav-dropdown > li > .nav-dropdown-left {
  left: auto;
  right: 100%;
}
.nav-dropdown > li img {
  width: 200px;
}
.nav-dropdown > li.focus > a {
  color: #fff;
}
.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 16px;
  position: absolute;
}
.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(-45deg);
}
.nav-dropdown > .focus > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.nav-dropdown.nav-dropdown-left {
  right: 0;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
  text-align: right;
}
.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
  left: 10px;
}
.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(135deg);
}

.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #fdfdfd;
  border-top: solid 1px #f0f0f0;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0;
}
.nav-dropdown-horizontal > li {
  width: auto;
  clear: none;
  position: static;
}
.nav-dropdown-horizontal > li > a {
  position: relative;
}
.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  transform: rotate(90deg);
}

@media (max-width: 992px) {
  .navigation {
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn1 {
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  font-family: "Open Sans", sans-serif;
  padding: 10px 20px;
  color: #fff;
  background: #0375a0;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  border: none;
}
.btn1 i {
  z-index: 9;
  padding-left: 10px;
  line-height: 0;
  font-size: 18px;
}
.btn1::before {
  content: "";
  transition: all 0.4s ease-in-out;
  border-radius: 0px 10px 10px 0px;
  -webkit-border-radius: 0px 10px 10px 0px;
  -moz-border-radius: 0px 10px 10px 0px;
  -ms-border-radius: 0px 10px 10px 0px;
  -o-border-radius: 0px 10px 10px 0px;
  position: absolute;
  right: -10px;
  width: 40px;
  height: 100%;
  background: #00aeef;
  color: #fff;
  font-size: 22px;
}
.btn1:hover {
  background: #00aeef;
  color: #fff;
}
.btn1:hover::before {
  right: -2px;
  background: #00aeef;
  color: #0375a0;
}

.btn2 {
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  padding: 15px 30px;
  color: #fff;
  align-items: center;
  background: #c10000;
  border: 1px solid #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  text-transform: uppercase;
}
.btn2::after {
  transition: all 0.4s ease-in-out;
  position: absolute;
  content: " \f285";
  font-family: bootstrap-icons !important;
  right: 10px;
  color: #fff;
  font-size: 15px;
  opacity: 0;
}
.btn2:hover {
  background: #b71919;
  border: 1px solid #b71919;
  color: #fff;
}
.btn2:hover::after {
  right: 10px;
  opacity: 1;
}

.readmore {
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 18px;
  color: #2a2929;
  background: none;
  padding: 5px 0px;
  text-align: center;
  border: none;
}
.readmore i {
  line-height: 0px;
  color: #00aeef;
  padding-left: 10px;
}
.readmore:hover {
  letter-spacing: 0.5px;
  color: #0375a0;
}

/*
Flaticon icon font: Flaticon
Creation date: 29/04/2020 04:59
*/
@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("../fonts/Flaticon.woff2") format("woff2"), url("../fonts/Flaticon.woff") format("woff"), url("../fonts/Flaticon.ttf") format("truetype"), url("../fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
  }
}
[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
}

i[class^=flaticon-]:before,
i[class*=" flaticon-"]:before {
  font-family: flaticon !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flaticon-email:before {
  content: "\f101";
}

.flaticon-add:before {
  content: "\f102";
}

.flaticon-pin:before {
  content: "\f103";
}

.flaticon-calendar:before {
  content: "\f104";
}

.flaticon-phone-call:before {
  content: "\f105";
}

.flaticon-download:before {
  content: "\f106";
}

.flaticon-right-arrow:before {
  content: "\f107";
}

.flaticon-right:before {
  content: "\f108";
}

.flaticon-printer:before {
  content: "\f109";
}

.flaticon-phone-call-1:before {
  content: "\f10a";
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

a:hover {
  text-decoration: none;
}

button {
  outline: 0 !important;
}
button:focus {
  outline: 0 !important;
  color: #000;
}

p {
  font-weight: 500;
  font-size: 16px;
}

ul {
  padding: 0;
  margin: 0;
}

h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  top: -15px;
  background: #cc1c1c;
}

h3 {
  position: relative;
  font-size: 20px;
  color: #2a2929;
  letter-spacing: 1px;
  padding-left: 62px;
}

section {
  padding: 80px 0px;
}

.testimonial_bg .owl-theme {
  width: 100%;
  margin: 0;
  position: relative;
}
.testimonial_bg .owl-theme::before {
  position: absolute;
  content: "";
  background: url(../images/shape4.png);
  left: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
}
.testimonial_bg .owl-carousel {
  width: 100%;
  margin: 0;
}
.testimonial_bg .owl-prev {
  left: -6px;
}
.testimonial_bg .owl-next {
  right: 6px;
}

.news-blog .owl-carousel {
  width: 100%;
  margin: 0;
}
.news-blog .owl-prev {
  left: 6px;
}
.news-blog .owl-next {
  right: 8px;
}
.news-blog .owl-theme .owl-controls {
  top: 40%;
}

.intro .owl-prev,
.inner-slider .owl-prev {
  left: 12px;
}
.intro .owl-next,
.inner-slider .owl-next {
  right: 12px;
}
.intro .owl-theme .owl-controls .owl-buttons div,
.inner-slider .owl-theme .owl-controls .owl-buttons div {
  background: none;
  margin: 0 5px;
  width: 40px;
  background: #fff;
  border: 2px solid #9e9999;
}
.intro .owl-theme .owl-controls .owl-buttons div i,
.inner-slider .owl-theme .owl-controls .owl-buttons div i {
  color: #fff;
}
.intro .owl-pagination,
.inner-slider .owl-pagination {
  display: none;
}

.owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}

.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  zoom: 1;
  background: #fff;
  margin: 0 5px;
  width: 40px;
  border: 1px solid #cdc8c8;
  border-radius: 50%;
  height: 40px;
  padding: 0px;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s ease-in-out;
  font-size: 0;
}

.owl-prev {
  position: absolute;
  right: auto;
  left: -24px;
}

.owl-next {
  position: absolute;
  right: -24px;
  left: auto;
}

.owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  top: 45%;
  margin: 0;
}

.owl-prev::before {
  content: url(../images/left-arrow.svg);
  width: 40px;
  height: 40px;
}

.owl-next::before {
  content: url(../images/right-arrow.svg);
  width: 40px;
  height: 40px;
}

.owl-item {
  display: flex;
  height: auto !important;
}

.owl-carousel {
  position: relative;
  width: 100%;
  float: left;
  margin: 0px;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
  padding: 0;
  transform: translate3d(0, 0, 0);
}

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls .owl-page {
  cursor: pointer;
}

.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

.owl-item.loading {
  min-height: 150px;
  background: url(../images/AjaxLoader.gif) no-repeat center center;
}

.owl-goDown-out {
  animation: scaleToFade 0.7s ease both;
}

.owl-goDown-in {
  animation: goDown 0.6s ease both;
}

.owl-fade-out {
  z-index: 10;
  animation: fadeOut 0.7s both ease;
}

.owl-fade-in {
  animation: fadeIn 0.7s both ease;
}

/*owl theme start */
.header {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: absolute;
  width: 98%;
  z-index: 99;
  background: white;
  border-bottom: 1px solid rgba(220, 218, 218, 0.2196078431);
}
.header .logo {
  background: url(../images/logo.svg);
  display: inline-block;
  width: 300px;
  height: 65px;
  transition: all 0.4s ease-in-out;
  background-repeat: no-repeat;
  margin: 5px 0px 0px 10px;
}

.cbp-af-header.cbp-af-header-shrink {
  top: 0;
}

.cbp-af-header.cbp-af-header-shrink .nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #fff, 0 1em 0 0 #fff;
}

.cbp-af-header.cbp-af-header-shrink .logo {
  background: url(../images/logo-white.svg);
  display: inline-block;
  width: 220px;
  height: 50px;
  transition: all 0.4s ease-in-out;
  background-repeat: no-repeat;
  margin: 5px 0px 0px 10px;
}

.cbp-af-header.cbp-af-header-shrink .nav-menu > li > a {
  color: #fff;
}

.cbp-af-header.cbp-af-header-shrink .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.cbp-af-header {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease-in-out;
}

.cbp-af-header.cbp-af-header-shrink .header {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  background: #0375a0;
  height: 58px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0509803922);
}

.cbp-af-header.cbp-af-header-shrink .nav-menu > li.active > a {
  color: #fff;
}

.navigation-portrait .nav-menu > li a,
.navigation-portrait .nav-menu > li.active > a {
  color: #fff;
}

.navigation-portrait .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.navigation-portrait .nav-menu > .active > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.navigation-portrait .nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.navigation-portrait .nav-dropdown li a {
  background: #00aeef;
}
.navigation-portrait .nav-dropdown li a:hover {
  color: #fff;
}

.topnav {
  padding: 5px 20px;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 99;
}
.topnav ul {
  display: flex;
}
.topnav ul li {
  list-style: none;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  padding-right: 10px;
}
.topnav ul li a {
  color: #fff;
  padding-left: 5px;
}
.topnav ul li i {
  background: #00aeef;
  width: 26px;
  height: 26px;
  display: inline-block;
  padding: 5px;
  font-size: 15px;
  margin-right: 5px;
  border-radius: 50%;
  color: #fff;
}
.topnav ul li a {
  color: #fff;
}

.intro {
  height: 100vh;
  position: relative;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-around;
}
.intro .slide__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 5%;
}
.intro .slide__caption h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
}
.intro .botton-box {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 10px 20px;
}
.intro .botton-box ul li {
  padding: 0px;
  list-style: none;
  display: inline-block;
  position: relative;
  padding: 0px 10px 0px 0px;
  color: #2a2929;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.intro .botton-box ul li i {
  font-size: 20px;
}
.intro .botton-box ul li a {
  color: #00aeef;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  background: #fff;
  width: 100%;
  max-width: 100%;
}
.form-control::-moz-placeholder {
  color: #5a5a59;
}
.form-control::placeholder {
  color: #5a5a59;
}

input[type=checkbox] {
  display: block;
  width: 20px;
  height: 20px;
}

.form-control:focus {
  color: #5a5a59;
  border-color: #00aeef !important;
  outline: 0;
  box-shadow: none;
  transition: all 0.6s ease-in-out;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #F6F7F9;
}

.welcome {
  width: 100%;
  position: relative;
  background: #dcf2f8;
}
.welcome p {
  font-size: 16px;
}
.welcome .welcome-img {
  border-radius: 40px 0px 0px 0px;
  -webkit-border-radius: 40px 0px 0px 0px;
  -moz-border-radius: 40px 0px 0px 0px;
  -ms-border-radius: 40px 0px 0px 0px;
  -o-border-radius: 40px 0px 0px 0px;
  position: relative;
}
.welcome .welcome-img img {
  border-radius: 40px 0px 0px 0px;
  -webkit-border-radius: 40px 0px 0px 0px;
  -moz-border-radius: 40px 0px 0px 0px;
  -ms-border-radius: 40px 0px 0px 0px;
  -o-border-radius: 40px 0px 0px 0px;
}
.welcome .welcome-img h2 span {
  color: #00aeef;
}

.ics {
  background: rgb(241, 242, 243);
  background: linear-gradient(185deg, rgb(241, 242, 243) 0%, rgb(221, 242, 248) 100%);
  width: 100%;
}
.ics h2 {
  text-align: center;
  color: #000;
  font-size: 36px;
}
.ics h2::before {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.ics h3 {
  text-align: center;
  padding-left: 0px;
}
.ics .videothumbnail {
  width: 100%;
  position: relative;
}
.ics .videothumbnail .video-btn {
  transition: all 0.4s ease-in-out;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 40px;
  bottom: 40px;
  border-radius: 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  animation: zoomin 2s infinite;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .ics .videothumbnail .video-btn {
    width: 60px;
    height: 60px;
    left: 20px;
    bottom: 20px;
  }
}
@keyframes zoomin {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

.service {
  width: 100%;
  background: rgb(237, 245, 253);
  background: linear-gradient(185deg, rgb(237, 245, 253) 0%, rgb(255, 255, 255) 95%);
  position: relative;
}
.service .table-active {
  background: #164792;
  color: #fff;
}
.service .table-bordered td,
.service .table-bordered th {
  border: 1px solid #ffffff;
}
.service .identity {
  background: #0375a0;
  color: #fff;
}
.service .identity_td {
  background: #bddfec;
  color: #000;
}
.service .protect {
  background: #00aeef;
  color: #fff;
}
.service .protect_td {
  background: #d9e8ed;
  color: #000;
}
.service .detect {
  background: #0375a0;
  color: #fff;
}
.service .detect_td {
  background: #bddfec;
  color: #000;
}
.service .respond {
  background: #00aeef;
  color: #fff;
}
.service .respond_td {
  background: #d9e8ed;
  color: #000;
}
.service .recover {
  background: #0375a0;
  color: #fff;
}
.service .recover_td {
  background: #bddfec;
  color: #000;
}
.service h2 {
  text-align: center;
}
.service h2::before {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.service h3 {
  text-align: center;
  padding-left: 0;
}
@media (max-width: 767px) {
  .service h3 {
    font-size: 16px;
  }
}
.service h5 {
  font-size: 16px;
}
@media (max-width: 767px) {
  .service h5 {
    font-size: 14px;
  }
}
.service .service-box {
  border-radius: 0px 20px 20px;
  -webkit-border-radius: 0px 20px 20px;
  -moz-border-radius: 0px 20px 20px;
  -ms-border-radius: 0px 20px 20px;
  -o-border-radius: 0px 20px 20px;
  transition: all 0.4s ease-in-out;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.service .service-box h2 {
  text-align: left;
}
.service .service-box img {
  transition: all 0.4s ease-in-out;
}
.service .service-box .service-text {
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 15px;
  transform: translateY(165px);
}
.service .service-box .service-text p {
  color: #fff;
}
.service .service-box .service-text h2 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
.service .service-box .service-text h2::before {
  display: none;
}
.service .service-box .service-text .first {
  font-size: 18px;
  font-weight: 400;
  display: block;
}
.service .service-box .service-text .second {
  font-size: 24px;
  font-weight: 500;
  display: block;
}
.service .service-box:hover {
  background: #000;
}
.service .service-box:hover img {
  opacity: 0.1;
}
.service .service-box:hover .service-text {
  transform: translateY(0px);
}

.training-staff {
  width: 100%;
  padding: 150px 0px 60px;
  position: relative;
  background: url(../images/shape2.svg) no-repeat top #00aeef;
}
.training-staff .trainingstaff-bg {
  transition: all 0.4s ease-in-out;
  border-radius: 20px 20px 0px 0px;
  -webkit-border-radius: 20px 20px 0px 0px;
  -moz-border-radius: 20px 20px 0px 0px;
  -ms-border-radius: 20px 20px 0px 0px;
  -o-border-radius: 20px 20px 0px 0px;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
}
.training-staff .trainingstaff-bg img {
  transition: all 0.4s ease-in-out;
  border-radius: 20px 20px 0px 0px;
  -webkit-border-radius: 20px 20px 0px 0px;
  -moz-border-radius: 20px 20px 0px 0px;
  -ms-border-radius: 20px 20px 0px 0px;
  -o-border-radius: 20px 20px 0px 0px;
}
.training-staff .trainingstaff-bg .trainingstaff-content {
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 20px;
  transform: translateY(155px);
}
.training-staff .trainingstaff-bg .trainingstaff-content h4 {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.training-staff .trainingstaff-bg .trainingstaff-content p {
  color: #fff;
}
.training-staff .trainingstaff-bg:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border-radius: 20px 20px 0px 0px;
  -webkit-border-radius: 20px 20px 0px 0px;
  -moz-border-radius: 20px 20px 0px 0px;
  -ms-border-radius: 20px 20px 0px 0px;
  -o-border-radius: 20px 20px 0px 0px;
}
.training-staff .trainingstaff-bg:hover img {
  opacity: 0.5;
  border-radius: 20px 20px 0px 0px;
  -webkit-border-radius: 20px 20px 0px 0px;
  -moz-border-radius: 20px 20px 0px 0px;
  -ms-border-radius: 20px 20px 0px 0px;
  -o-border-radius: 20px 20px 0px 0px;
}
.training-staff .trainingstaff-bg:hover .trainingstaff-content {
  transform: translateY(-10px);
}

.certificate {
  width: 100%;
  background: #fff;
}
.certificate h2 {
  text-align: center;
}
.certificate h2::before {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.certificate .expertise {
  width: 100%;
}
.certificate .expertise ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .certificate .expertise ul {
    justify-content: center;
  }
}
.certificate .expertise ul li {
  list-style: none;
  margin: 5px;
  width: 18%;
  padding: 5px;
  border: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .certificate .expertise ul li {
    width: 30%;
  }
}

.whyus {
  background: rgb(240, 240, 242);
  background: linear-gradient(185deg, rgb(240, 240, 242) 0%, rgb(255, 255, 255) 95%);
  position: relative;
}
.whyus img {
  border-radius: 20px 0px 20px 0px;
  -webkit-border-radius: 20px 0px 20px 0px;
  -moz-border-radius: 20px 0px 20px 0px;
  -ms-border-radius: 20px 0px 20px 0px;
  -o-border-radius: 20px 0px 20px 0px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.testimonial_bg {
  background: #f7f0f0;
  position: relative;
}
.testimonial_bg h2 {
  text-align: center;
  color: #00aeef;
  font-size: 36px;
}
.testimonial_bg h2::before {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.testimonial_bg h3 {
  text-align: center;
  padding-left: 0px;
}
.testimonial_bg .testi_brief {
  width: 100%;
  margin: 20px;
}
.testimonial_bg .testi_brief .testimonial_content {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  width: 100%;
  background: #fff;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.testimonial_bg .testi_brief .testimonial_content .quote {
  position: absolute;
  width: 115px;
  height: 95px;
  left: 25px;
  top: 15px;
}
.testimonial_bg .testi_brief .testimonial_content .texti-content {
  width: 100%;
  padding: 30px;
  position: relative;
}
.testimonial_bg .testi_brief .testimonial_content .texti-content p {
  text-align: center;
  margin-top: 30px;
}
.testimonial_bg .testi_brief .testimonial_content .testi-box {
  width: 100%;
  background: url(../images/shape5.svg) no-repeat top #19ade4;
  position: relative;
  text-align: center;
  padding: 50px 20px 20px;
}
.testimonial_bg .testi_brief .testimonial_content .testi-box img {
  width: 100px;
  border-radius: 50%;
  transform: translateY(-18px);
  border: 4px solid #fff;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.testimonial_bg .testi_brief .testimonial_content .testi-box h5 {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.testimonial_bg .testi_brief .testimonial_content .testi-box h5 span {
  display: block;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.testimonial_bg::before {
  content: "";
  background-image: url(../images/shape8.svg);
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 0;
  right: 0;
}

.partners {
  background: url(../images/partnerbg.png) no-repeat bottom right #00aeef;
}
.partners h3 {
  color: #fff;
  padding-left: 0px;
}
.partners h2 {
  color: #fff;
}
.partners h2::before {
  background: #fff;
}
.partners p {
  color: #fff;
}
.partners .owl-carousel {
  margin: 0;
}
.partners .partner_brief {
  width: 100%;
}
.partners .partner_brief .logo {
  margin: 10px;
}

.timeline {
  width: 100%;
  background: rgb(3, 117, 160);
  background: linear-gradient(185deg, rgb(3, 117, 160) 0%, rgba(219, 236, 247, 0.029923514) 95%), url(../images/timelinebg.jpg);
  background-size: cover;
}
.timeline h2 {
  text-align: center;
  color: #00aeef;
  font-size: 36px;
}
.timeline h2::before {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.timeline h3 {
  text-align: center;
  padding-left: 0px;
  color: #fff;
}

.timelinebg {
  width: 100%;
  display: flex;
  border: 1px solid #0375a0;
  flex-wrap: wrap;
  flex: 1 0 auto;
  flex-direction: column;
}
.timelinebg .logo {
  width: 100%;
}
.timelinebg .timeline-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 20px;
  background: #00aeef;
  height: 300px;
}
.timelinebg .timeline-text .year {
  font-size: 32px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 26px;
  color: #fff;
}
.timelinebg .timeline-text .year span {
  font-size: 18px;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #0375a0;
}
.timelinebg .timeline-text h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
.timelinebg .timeline-text .location {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0px;
  align-self: flex-start;
}
.timelinebg .timeline-text p {
  color: #fff;
}

.news-blog {
  background: #ddf2f8;
  width: 100%;
  position: relative;
}
.news-blog::before {
  background: #ddf2f8;
  position: absolute;
  content: "";
  width: 100%;
  height: 150px;
  bottom: -100px;
  z-index: -2;
}
.news-blog h2 {
  font-size: 26px;
}
.news-blog .newsblog {
  width: 100%;
  display: flex;
  border: 1px solid #f7f0f0;
  flex-wrap: wrap;
}
.news-blog .newsblog .newsimage {
  width: 100%;
}
.news-blog .newsblog .newsimage-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  position: relative;
  -webkit-clip-path: polygon(100% 0, 100% 91%, 87% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 91%, 87% 100%, 0 100%, 0 0);
  width: 100%;
  padding: 20px;
}
.news-blog .newsblog .newsimage-text h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #000;
  height: 45px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-blog .newsblog .newsimage-text p {
  height: 68px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-blog .newsblog .newsimage-text .date {
  background: #00aeef;
  color: #fff;
  padding: 5px;
  margin-bottom: 10px;
  align-self: flex-start;
}

footer {
  background: #10182f;
  -webkit-clip-path: polygon(75% 7%, 100% 0, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(75% 7%, 100% 0, 100% 100%, 0 100%, 0 0);
  padding: 100px 0px 30px;
  position: relative;
}
footer .shape6 {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 74px;
  height: 158px;
}
footer .shape7 {
  position: absolute;
  right: 0;
  top: 19px;
  width: 131px;
  height: 178px;
}
footer .ftr-logo {
  width: 300px;
  margin-bottom: 30px;
}
footer .ftr-flex {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
footer .ftr-flex .contact-icon {
  font-size: 18px;
  color: #fff;
  background: #00aeef;
  padding: 6px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
}
footer .ftr-flex .contact-text {
  color: #dddee2;
  font-size: 16px;
  padding-left: 10px;
}
footer .ftr-flex .contact-text a {
  color: #dddee2;
}
footer .ftrborder-top {
  border-top: 1px solid #252644;
  border-bottom: 1px solid #252644;
  padding: 40px 0px 0px;
}
footer .ftrborder-top p {
  color: #dddee2;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
footer .ftrborder-top h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #bfc2cd;
  position: relative;
  font-weight: 700;
  padding-left: 25px;
}
footer .ftrborder-top h3::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #0375a0;
  left: 0;
  top: 9px;
}
footer .ftrborder-top .subscribe_form {
  width: 100%;
}
footer .ftrborder-top .subscribe_form .input-group > .form-control {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  color: #2a2929;
  font-size: 14px;
  box-shadow: none;
  background: #f0f0f0;
  border: none;
  padding: 15px;
}
footer .ftrborder-top .subscribe_form .btn {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.4s ease-in-out;
  padding: 5px 15px;
  font-size: 16px;
  color: #fff;
  background: #c10000;
  margin-top: 5px;
}
footer .ftrborder-top .subscribe_form .btn:hover {
  background: #c10000;
}
footer .ftrborder-top .subscribe_form .form-control::-moz-placeholder {
  color: #3a3838;
}
footer .ftrborder-top .subscribe_form .form-control::placeholder {
  color: #3a3838;
}
footer .ftrborder-top .block-list-3 {
  list-style: none;
  padding-left: 0;
  padding-bottom: 20px;
  padding: 0;
}
footer .ftrborder-top .block-list-3 > li {
  list-style: none;
  margin-left: 0;
  position: relative;
  padding: 5px 0px 5px 20px;
}
footer .ftrborder-top .block-list-3 > li a {
  display: block;
}
footer .ftrborder-top .block-list-3 > li::before {
  position: absolute;
  content: "\f103";
  left: 0;
  font-family: "Flaticon";
  font-weight: 600;
}
footer .ftrborder-top .block-list-3 li {
  padding: 10px 0px 0px;
  color: #dddee2;
  font-weight: 400;
  position: relative;
  font-size: 16px;
}
footer .ftrborder-top .block-list-3 li a {
  color: #dddee2;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}
footer .ftrborder-top .block-list-3 li a:hover {
  color: #fff;
}
footer .ftrborder-top .block-list-3 li::before {
  display: none;
}
footer .powered {
  padding-top: 30px;
}
footer .powered .social-icon .block-list {
  list-style: none;
  padding-left: 0;
  padding-bottom: 20px;
}
footer .powered .social-icon .block-list > li {
  list-style: none;
  margin-left: 0;
  position: relative;
  padding: 5px 0px 5px 20px;
}
footer .powered .social-icon .block-list > li a {
  display: block;
}
footer .powered .social-icon .block-list > li::before {
  position: absolute;
  content: "\f103";
  left: 0;
  font-family: "Flaticon";
  font-weight: 600;
}
footer .powered .social-icon .block-list li {
  display: inline-block;
  font-size: 18px;
  padding: 2px;
  transition: all 0.4s ease-in-out;
  color: #00aeef;
}
footer .powered .social-icon .block-list li:hover {
  color: #0375a0;
}
footer .powered .social-icon .block-list li .uil-facebook-f {
  background: #3B5998;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
footer .powered .social-icon .block-list li .uil-linkedin {
  background: #007bb6;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
footer .powered .social-icon .block-list li .uil-instagram {
  background: #ea2c59;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
footer .powered .social-icon .block-list li .uil-twitter {
  background: #55ACEE;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
footer .powered .social-icon .block-list li .uil-youtube {
  background: #a82400;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
footer .powered p {
  font-weight: 400;
  color: #dddee2;
}
footer .powered p a {
  color: #00aeef;
}

.scrollup {
  position: fixed;
  bottom: 60px;
  right: 0px;
  z-index: 99999;
  transform: rotate(-90deg);
  display: flex;
}
.scrollup i {
  font-size: 40px;
  color: #b7b5b5;
  z-index: 999;
  animation: upper 1s infinite;
}

@keyframes upper {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.anchor {
  display: block;
  height: 92px;
  margin-top: -92px;
  visibility: hidden;
}

.anchors {
  display: block;
  height: 92px;
  margin-top: -92px;
  visibility: hidden;
}

.inner-slider {
  height: 70vh;
  position: relative;
  width: 100%;
  top: 0;
  display: flex;
}
.inner-slider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-slider .slide__caption {
  position: absolute;
  width: 100%;
  color: #fff;
  z-index: 999;
  bottom: 0px;
  left: 0;
}
.inner-slider .slide__caption h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.inner-slider .slide__caption h2::before {
  display: none;
}

.innerbanner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 70vh;
  width: 100%;
  background-size: cover;
  position: relative;
  background-position: center;
}
.innerbanner h2 {
  display: inline-block;
  color: #fff;
  display: flex;
}
.innerbanner h2::before {
  display: none;
}
.innerbanner p {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  background: rgba(255, 255, 255, 0.5607843137);
  padding: 8px;
  border-radius: 5px;
}
.innerbanner .col {
  z-index: 9;
}

.landing_banner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  width: 100%;
  background-size: cover;
  position: relative;
  background-position: center;
}
.landing_banner::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(7, 81, 128, 0.43);
}
.landing_banner h2 {
  display: inline-block;
  color: #fff;
  display: flex;
}
.landing_banner h2::before {
  display: none;
}
.landing_banner h3 {
  margin-top: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  padding-left: 0px;
  letter-spacing: 0px;
  font-style: italic;
}
.landing_banner h4 {
  margin-top: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: left;
  padding-left: 0px;
}
.landing_banner h5 {
  color: #fff;
  margin-top: 20px;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding-left: 0px;
}
.landing_banner p {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.landing_banner .col {
  z-index: 9;
}

.inner-container {
  width: 100%;
  position: relative;
  background: #daf3fd;
}
.inner-container .f18 {
  font-size: 18px;
  font-weight: 600;
}
.inner-container h4 {
  color: #00aeef;
  font-weight: 700;
  font-size: 26px;
}
.inner-container h5 {
  color: #2a2929;
  font-weight: 600;
  font-size: 20px;
}
.inner-container a.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}
.inner-container h6 {
  font-weight: 600;
  font-size: 18px;
}
.inner-container .sub {
  font-weight: 600;
  font-size: 16px;
  padding-left: 20px;
  margin-bottom: 0;
}
.inner-container .servicepic {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.inner-container .servicepic img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.inner-container .applynow .form-text h2 {
  font-size: 32px !important;
}
.inner-container .ourteam {
  width: 100%;
}
.inner-container .ourteam .photo {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.inner-container .ourteam .photo img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.inner-container .ourteam h4 {
  font-size: 22px;
  color: #2a2929;
  margin-top: 5px;
}
.inner-container .ourteam h4 span {
  display: block;
  color: #0375a0;
  font-size: 18px;
  font-weight: 400;
}
.inner-container .career .card {
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.inner-container .career h5 {
  margin: 20px 0px;
  color: #00aeef;
}
.inner-container .career h3 {
  color: #0375a0;
  font-weight: 700;
  font-size: 26px;
  padding-left: 0;
  cursor: pointer;
}
.inner-container .career .welcome-list ul {
  padding-left: 0;
}
.inner-container .partnersbg {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px;
  background: #fff;
  border: 1px solid #e7eef0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.inner-container .videobg {
  width: 100%;
  position: relative;
}
.inner-container .videobg .videobtn {
  transition: all 0.4s ease-in-out;
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.inner-container .videobg .videobtn:hover {
  width: 120px;
  height: 120px;
}
.inner-container .welcome-list d ul {
  display: flex;
  flex-wrap: wrap;
}
.inner-container .welcome-list d ul li {
  width: 100%;
  list-style: none;
  position: relative;
  padding-left: 22px;
  line-height: 30px;
}
.inner-container .welcome-list d ul li::before {
  content: "\f107";
  font-family: "Flaticon";
  display: inline-block;
  position: absolute;
  font-weight: 600;
  color: #0375a0;
  left: 0;
}
.inner-container .welcome-list ul {
  margin-bottom: 10px;
  padding-left: 20px;
}
.inner-container h2 span {
  color: #00aeef;
}
.inner-container .testibg {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border: 1px solid rgba(173, 169, 169, 0.2509803922);
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  padding: 30px;
}
.inner-container .testibg p {
  padding-left: 55px;
}
.inner-container .testibg .testibkg {
  display: flex;
  align-items: center;
}
.inner-container .testibg .testibkg img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.inner-container .testibg .testibkg h5 {
  font-size: 18px;
  color: #00aeef;
  font-weight: 600;
  padding-left: 10px;
}
.inner-container .testibg .testibkg h5 span {
  color: #2a2929;
  display: block;
  font-size: 15px;
  font-weight: 400;
}
.inner-container .testibg::before {
  content: "";
  background-image: url(../images/quote-left.svg);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 55px;
  height: 45px;
}
.inner-container .mv {
  width: 100%;
  padding: 10px;
  position: relative;
}
.inner-container .mv .mvimg {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 10px 10px 60px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
}
.inner-container .mv .mvimg img {
  width: 80px;
}
.inner-container .mv .mvcontent {
  padding-left: 20%;
}
.inner-container .mv .mvcontent h4 {
  color: #000;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}
.inner-container .leadership .f18 {
  text-align: center;
}
.inner-container .leadersbox {
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
  background: #00aeef;
}
.inner-container .leadersbox .leaderpic {
  width: 100%;
  position: relative;
}
.inner-container .leadersbox .leaderpic img {
  transition: all 0.4s ease-in-out;
}
.inner-container .leadersbox .leader-text {
  transition: all 0.4s ease-in-out;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 10px;
  transform: translateY(40px);
}
.inner-container .leadersbox .leader-text h4 {
  text-align: center;
  color: #2a2929;
  font-size: 22px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
.inner-container .leadersbox .leader-text h4 span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  color: #3a3838;
}
.inner-container .leadersbox .leader-text .social-icon {
  text-align: center;
}
.inner-container .leadersbox .leader-text .social-icon .block-list {
  list-style: none;
  padding-left: 0;
  padding-bottom: 20px;
  padding-bottom: 0px;
}
.inner-container .leadersbox .leader-text .social-icon .block-list > li {
  list-style: none;
  margin-left: 0;
  position: relative;
  padding: 5px 0px 5px 20px;
}
.inner-container .leadersbox .leader-text .social-icon .block-list > li a {
  display: block;
}
.inner-container .leadersbox .leader-text .social-icon .block-list > li::before {
  position: absolute;
  content: "\f103";
  left: 0;
  font-family: "Flaticon";
  font-weight: 600;
}
.inner-container .leadersbox .leader-text .social-icon .block-list li {
  display: inline-block;
  font-size: 22px;
  padding: 0px 5px;
  transition: all 0.4s ease-in-out;
  color: #00aeef;
}
.inner-container .leadersbox .leader-text .social-icon .block-list li:hover {
  color: #0375a0;
}
.inner-container .leadersbox:hover .leader-text {
  transform: translateY(0px);
}
.inner-container .leadersbox:hover .leaderpic img {
  transform: scale(1.1);
  opacity: 0.8;
}
.inner-container .bg_one {
  background: #daf3fd !important;
}
.inner-container .flip-container {
  perspective: 1000;
  display: inline-block;
}
.inner-container .flip-container:hover .back {
  transform: rotateY(180deg);
}
.inner-container .flip-container:hover .front {
  transform: rotateY(0deg);
}
.inner-container .flip-container,
.inner-container .front,
.inner-container .back {
  width: 100%;
  height: 300px;
}
.inner-container .card {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
  border: none;
}
.inner-container .front,
.inner-container .back {
  position: absolute;
  backface-visibility: hidden;
  transition: 0.6s;
  transform-style: preserve-3d;
}
.inner-container .front {
  z-index: 1;
  transform: rotateY(-180deg);
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #00aeef;
  padding: 20px;
  height: 300px;
}
.inner-container .front p {
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-container .front p {
    font-size: 14px;
  }
}
.inner-container .back h3 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  padding-left: 0px;
}
.inner-container .back {
  z-index: 2;
  transform: rotateY(0deg);
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
}
.inner-container .singleblog {
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.inner-container .singleblog .singleimg {
  border-radius: 0px 20px 0px;
  -webkit-border-radius: 0px 20px 0px;
  -moz-border-radius: 0px 20px 0px;
  -ms-border-radius: 0px 20px 0px;
  -o-border-radius: 0px 20px 0px;
  width: 100%;
  overflow: hidden;
  background: #00aeef;
}
.inner-container .singleblog .singleimg img {
  transition: all 0.4s ease-in-out;
  border-radius: 0px 20px 0px;
  -webkit-border-radius: 0px 20px 0px;
  -moz-border-radius: 0px 20px 0px;
  -ms-border-radius: 0px 20px 0px;
  -o-border-radius: 0px 20px 0px;
}
.inner-container .singleblog .singletext {
  width: 95%;
  transform: translateY(-30px);
  background: #fff;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.inner-container .singleblog .singletext h4 {
  font-size: 22px;
  font-family: "Open Sans", sans-serif;
  color: #000;
  height: 55px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-container .singleblog .singletext p {
  height: 68px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-container .singleblog .singletext .date {
  color: #00aeef;
  font-weight: 600;
  font-size: 15px;
}
.inner-container .singleblog .singletext .date i {
  color: #0375a0;
}
.inner-container .singleblog:hover img {
  transform: scale(1.1);
  opacity: 0.5;
}
.inner-container .blog-details h4 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Open Sans", sans-serif;
}
.inner-container .blog-details .date {
  background: #00aeef;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 5px;
  margin-bottom: 10px;
  display: inline-block;
}
.inner-container .blog-details .date i {
  color: #fff;
}
.inner-container .latest {
  background: #fff;
  padding: 20px 15px;
}
.inner-container .latest h2 {
  font-size: 28px;
}
.inner-container .latest h2::before {
  display: none;
}
.inner-container .latest .box {
  margin: 10px 0px;
  border-bottom: 1px solid #cbd0d2;
}
.inner-container .latest .box h5 {
  font-size: 18px;
  color: #228282;
  height: 65px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-container .whyusimg {
  border-radius: 50%;
}
.inner-container .whyusimg img {
  border-radius: 50%;
}
.inner-container .whychoose {
  background: #fff;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  padding: 40px;
}
.inner-container .whychoose h2::before {
  display: none;
}
.inner-container .contact_addres {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.4s ease-in-out;
  width: 100%;
  background: #00aeef;
  padding: 20px;
  border: 1px solid #ededed;
}
.inner-container .contact_addres p {
  transition: all 0.4s ease-in-out;
  font-weight: 600;
  color: #fff;
}
.inner-container .contact_addres p a {
  transition: all 0.4s ease-in-out;
  color: #fff;
}
.inner-container .contact_addres h3 {
  transition: all 0.4s ease-in-out;
  padding-left: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.inner-container .contact_addres h4 {
  transition: all 0.4s ease-in-out;
  font-weight: 700;
  color: #fff;
}
.inner-container .contact_addres h4 span {
  transition: all 0.4s ease-in-out;
  font-size: 18px;
  font-weight: 500;
  display: block;
}
.inner-container .contact_addres .address {
  transition: all 0.4s ease-in-out;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  color: #0375a0;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  padding: 5px 15px;
  margin: 5px 0px;
  display: inline-block;
}
.inner-container .contact_addres:hover {
  background: #fff;
  transform: translateY(-10px);
}
.inner-container .contact_addres:hover .address {
  background: #00aeef;
}
.inner-container .contact_addres:hover p {
  color: #2a2929;
}
.inner-container .contact_addres:hover p a {
  color: #2a2929;
}
.inner-container .contact_addres:hover h3 {
  color: #2a2929;
  letter-spacing: 1.5px;
}
.inner-container .contact_addres:hover h4 {
  color: #2a2929;
}
.inner-container .contact_addres:hover h4 span {
  color: #2a2929;
}
.inner-container .contactform {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.inner-container .contactform textarea {
  height: 120px;
}
.inner-container .contactform .formbg {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.inner-container .contactform .formbg .form-text {
  border-bottom: 1px solid rgba(222, 221, 221, 0.3490196078);
}
.inner-container .contactform .formbg .form-text h2 {
  color: #00aeef;
  font-size: 22px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  margin-bottom: 0px;
}
.inner-container .contactform .formbg .form-text h2::before {
  display: none;
}
.inner-container .contactform .formbg .form-box {
  width: 100%;
  padding: 20px;
}
.inner-container .contactform .formbg .form-labels {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-container .contactform .formbg .form-labels .labels {
  width: 100%;
}
.inner-container .contactform .formbg .form-labels .labels .form-check-label {
  width: 100%;
}
.inner-container .contactform .formbg .form-labels .labels h5 {
  font-size: 16px;
  font-weight: 500;
  color: #495057;
}
.inner-container .contactform .formbg .form-labels .labels h5 span {
  font-size: 17px;
  font-weight: 700;
  display: block;
}
.inner-container::before {
  background: #daf3fd;
  position: absolute;
  content: "";
  width: 100%;
  height: 150px;
  bottom: -100px;
  z-index: -2;
}

.shares {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shares .share-btn-icon {
  font-family: "share-buttons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.shares .uil-facebook-f {
  background: #3B5998;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.shares .uil-linkedin {
  background: #007bb6;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.shares .uil-twitter {
  background: #55ACEE;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.shares .uil-instagram {
  background: #ea2c59;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.shares .share-btn-email .share-btn-icon:before {
  content: "\e945";
}
.shares .share-btn-more .share-btn-icon:before {
  content: "\ea82";
}
.shares .share-btn-googleplus .share-btn-icon:before {
  content: "\ea88";
}
.shares .share-btn-facebook .share-btn-icon:before {
  content: "\ea8c";
}
.shares .share-btn-twitter .share-btn-icon:before {
  content: "\ea91";
}
.shares .share-btn-github .share-btn-icon:before {
  content: "\eab4";
}
.shares .share-btn-tumblr .share-btn-icon:before {
  content: "\eabb";
}
.shares .share-btn-reddit .share-btn-icon:before {
  content: "\eac7";
}
.shares .share-btn-linkedin ff .share-btn-icon:before {
  content: "\eac8";
}
.shares .share-btn-delicious .share-btn-icon:before {
  content: "\eacc";
}
.shares .share-btn-stumbleupon .share-btn-icon:before {
  content: "\eace";
}
.shares .share-btn-pinterest .share-btn-icon:before {
  content: "\ead0";
}
.shares .share-btn {
  box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 7px 8px;
  letter-spacing: 0.04em;
  vertical-align: top;
  font-size: 18px;
  font-weight: bold;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.shares .share-btn * {
  box-sizing: border-box;
  box-sizing: border-box;
}
.shares .share-btn *:before {
  box-sizing: border-box;
}
.shares .share-btn *:after {
  box-sizing: border-box;
}
.shares .share-btn .share-btn-text-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.shares .share-btn .share-btn-text {
  padding-left: 2px;
}
.shares .share-btn.share-btn-sm {
  height: 20px;
  font-size: 10px;
  padding: 0 8px;
  line-height: 1.6;
}
.shares .share-btn.share-btn-lg {
  height: 28px;
  font-size: 16px;
  line-height: 1.4;
}
.shares .share-btn.share-btn-branded {
  color: #fff;
}
.shares .share-btn.share-btn-branded.share-btn-twitter {
  color: #55acee;
}
.shares .share-btn.share-btn-branded.share-btn-twitter:hover {
  color: #55acee;
}
.shares .share-btn.share-btn-branded.share-btn-twitter:focus {
  color: #55acee;
}
.shares .share-btn.share-btn-branded.share-btn-twitter:active {
  color: #55acee;
}
.shares .share-btn.share-btn-branded.share-btn-facebook {
  color: #344e86;
}
.shares .share-btn.share-btn-branded.share-btn-facebook:hover {
  color: #344e86;
}
.shares .share-btn.share-btn-branded.share-btn-facebook:focus {
  color: #344e86;
}
.shares .share-btn.share-btn-branded.share-btn-facebook:active {
  color: #344e86;
}
.shares .share-btn.share-btn-branded.share-btn-googleplus {
  background: #dd4b39;
  color: #fff;
  border-color: #d73925;
}
.shares .share-btn.share-btn-branded.share-btn-googleplus:hover {
  background: #d73925;
  border-color: #c23321;
}
.shares .share-btn.share-btn-branded.share-btn-googleplus:focus {
  background: #d73925;
  border-color: #c23321;
}
.shares .share-btn.share-btn-branded.share-btn-googleplus:active {
  background: #c23321;
  border-color: #ac2d1e;
}
.shares .share-btn.share-btn-branded.share-btn-tumblr {
  background: #35465c;
  color: #fff;
  border-color: #2c3a4c;
}
.shares .share-btn.share-btn-branded.share-btn-tumblr:hover {
  background: #2c3a4c;
  border-color: #222d3c;
}
.shares .share-btn.share-btn-branded.share-btn-tumblr:focus {
  background: #2c3a4c;
  border-color: #222d3c;
}
.shares .share-btn.share-btn-branded.share-btn-tumblr:active {
  background: #222d3c;
  border-color: #19212b;
}
.shares .share-btn.share-btn-branded.share-btn-reddit {
  background: #ff4500;
  color: #fff;
  border-color: #e63e00;
}
.shares .share-btn.share-btn-branded.share-btn-reddit:hover {
  background: #e63e00;
  border-color: #cc3700;
}
.shares .share-btn.share-btn-branded.share-btn-reddit:focus {
  background: #e63e00;
  border-color: #cc3700;
}
.shares .share-btn.share-btn-branded.share-btn-reddit:active {
  background: #cc3700;
  border-color: #b33000;
}
.shares .share-btn.share-btn-branded.share-btn-linkedin {
  color: #08669c;
}
.shares .share-btn.share-btn-branded.share-btn-linkedin:hover {
  color: #08669c;
}
.shares .share-btn.share-btn-branded.share-btn-linkedin:focus {
  color: #08669c;
}
.shares .share-btn.share-btn-branded.share-btn-linkedin:active {
  color: #08669c;
}
.shares .share-btn.share-btn-branded.share-btn-delicious {
  background: #3399ff;
  color: #fff;
  border-color: #198cff;
}
.shares .share-btn.share-btn-branded.share-btn-delicious:hover {
  background: #198cff;
  border-color: #007fff;
}
.shares .share-btn.share-btn-branded.share-btn-delicious:focus {
  background: #198cff;
  border-color: #007fff;
}
.shares .share-btn.share-btn-branded.share-btn-delicious:active {
  background: #007fff;
  border-color: #0073e5;
}
.shares .share-btn.share-btn-branded.share-btn-stumbleupon {
  background: #eb4924;
  color: #fff;
  border-color: #e13b15;
}
.shares .share-btn.share-btn-branded.share-btn-stumbleupon:hover {
  background: #e13b15;
  border-color: #ca3412;
}
.shares .share-btn.share-btn-branded.share-btn-stumbleupon:focus {
  background: #e13b15;
  border-color: #ca3412;
}
.shares .share-btn.share-btn-branded.share-btn-stumbleupon:active {
  background: #ca3412;
  border-color: #b22e10;
}
.shares .share-btn.share-btn-branded.share-btn-pinterest {
  background: #cc2127;
  color: #fff;
  border-color: #b61d23;
}
.shares .share-btn.share-btn-branded.share-btn-pinterest:hover {
  background: #b61d23;
  border-color: #a01a1f;
}
.shares .share-btn.share-btn-branded.share-btn-pinterest:focus {
  background: #b61d23;
  border-color: #a01a1f;
}
.shares .share-btn.share-btn-branded.share-btn-pinterest:active {
  background: #a01a1f;
  border-color: #8a161a;
}
.shares .share-btn.share-btn-inverse {
  color: #eeeeee;
  background: #1f1f1f;
  border-color: #050505;
}
.shares .share-btn.share-btn-inverse:hover {
  background: #121212;
  border-color: #000000;
  color: #eeeeee;
}
.shares .share-btn.share-btn-inverse:focus {
  background: #121212;
  border-color: #000000;
  color: #eeeeee;
}
.shares .share-btn.share-btn-inverse:active {
  background: #050505;
  border-color: #000000;
  color: #eeeeee;
}
.shares .share-btn.share-btn-twitter .share-btn-icon {
  position: relative;
  top: 1px;
}
.shares .share-btn.share-btn-googleplus .share-btn-icon {
  position: relative;
  top: 1px;
}
.shares .share-btn.share-btn-tumblr .share-btn-icon {
  position: relative;
  top: 1px;
}
.shares .share-btn.share-btn-linkedin .share-btn-icon {
  position: relative;
  top: 1px;
}
.shares .share-btn.share-btn-pinterest .share-btn-icon {
  position: relative;
  top: 1px;
}
.shares .share-btn.share-btn-stumbleupon .share-btn-icon {
  position: relative;
  top: 1px;
}
.shares .share-btn.share-btn-delicious .share-btn-icon {
  position: relative;
  top: 1px;
}
.shares .share-btn.share-btn-more .share-btn-icon {
  position: relative;
  top: 1px;
}

.sticky-icon {
  border-radius: 5px 0px 0px 5px;
  -webkit-border-radius: 5px 0px 0px 5px;
  -moz-border-radius: 5px 0px 0px 5px;
  -ms-border-radius: 5px 0px 0px 5px;
  -o-border-radius: 5px 0px 0px 5px;
  position: fixed;
  right: 0px;
  top: 20%;
  z-index: 9999;
}
.sticky-icon ul {
  display: flex;
  flex-direction: column;
}
.sticky-icon ul li {
  list-style: none;
  padding: 2px 5px 2px 0px;
  font-size: 20px;
  color: #00aeef;
}
.sticky-icon ul li a {
  transition: all 0.4s ease-in-out;
  color: #00aeef;
}
.sticky-icon ul li a:hover {
  color: #0375a0;
}
.sticky-icon ul li .uil-facebook-f {
  background: #3B5998;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.sticky-icon ul li .uil-linkedin {
  background: #007bb6;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.sticky-icon ul li .uil-instagram {
  background: #ea2c59;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.sticky-icon ul li .uil-twitter {
  background: #55ACEE;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.sticky-icon ul li .uil-youtube {
  background: #a82400;
  color: #fff;
  padding: 4px;
  width: 31px;
  height: 33px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.desk {
  display: block;
}

.mob {
  display: none;
}

@media only screen and (min-width: 1400px) and (max-width: 1920px) {
  .intro .form {
    align-items: center;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .intro .slide__caption h1 {
    font-size: 40px;
  }
  .intro .form {
    width: 50%;
  }
  .header .logo {
    width: 250px;
  }
  .nav-menu > li > a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .intro {
    height: auto;
    justify-content: center;
    align-items: center;
  }
  .intro .slide__caption {
    left: 6%;
  }
  .intro .slide__caption h1 {
    font-size: 30px;
  }
  .inner-slider {
    height: auto;
  }
  .inner-slider img {
    height: auto;
  }
  .header .logo {
    margin: 30px 0px 0px 10px;
    width: 200px;
  }
  .cbp-af-header.cbp-af-header-shrink .logo {
    margin: 25px 0px 0px 10px;
  }
  .service .service-box .service-text {
    transform: translateY(195px);
  }
  .news-blog h2 {
    font-size: 20px;
  }
  .inner-container .mv .mvimg img {
    width: 65px;
  }
  .innerbanner {
    height: 60vh;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro {
    height: auto;
    justify-content: center;
    align-items: center;
  }
  .intro .slide__caption {
    left: 10%;
  }
  .intro .slide__caption h1 {
    font-size: 30px;
  }
  .inner-slider {
    height: auto;
  }
  .inner-slider img {
    height: auto;
  }
  .inner-slider .slide__caption {
    left: 10%;
  }
  .inner-slider .slide__caption h2 {
    font-size: 30px;
  }
  .innerbanner {
    height: 50vh;
  }
  .innerbanner h2 {
    font-size: 30px;
  }
  .header .logo {
    width: 170px;
  }
  .welcome h2 {
    font-size: 24px;
  }
  .welcome::before {
    width: 20%;
  }
  .ics h2 {
    font-size: 28px;
  }
  footer {
    -webkit-clip-path: polygon(75% 2%, 100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(75% 2%, 100% 0, 100% 100%, 0 100%, 0 0);
  }
  footer .shape6,
  footer .shape7 {
    display: none;
  }
  footer .ftrborder-top h3 {
    padding-left: 33px;
    font-size: 18px;
  }
  footer .ftrborder-top h3::before {
    width: 22px;
  }
  .news-blog h2 {
    font-size: 28px;
  }
  .news-blog .newsblog {
    flex-wrap: wrap;
  }
  .training-staff .trainingstaff-bg .trainingstaff-content {
    transform: translateY(120px);
  }
  .inner-container .mv .mvimg img {
    width: 40px;
  }
  .inner-container h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .desk {
    display: none;
  }
  .mob {
    display: block;
  }
  .timeline .timelinebg .timeline-text {
    height: 320px;
  }
  .inner-slider {
    height: auto;
  }
  .inner-slider img {
    height: auto;
  }
  .inner-slider .slide__caption h2 {
    font-size: 28px;
    left: 10%;
  }
  .innerbanner {
    height: 30vh;
  }
  .innerbanner h2 {
    font-size: 28px;
  }
  .intro {
    flex-direction: column;
    height: auto;
  }
  .intro .slide__caption {
    width: 80%;
    padding-top: 20px;
    margin: 0 auto;
    left: 10%;
  }
  .intro .slide__caption h1 {
    font-size: 24px;
    text-align: left;
    font-weight: 600;
  }
  .intro .botton-box {
    display: none;
  }
  section {
    padding: 50px 0px;
  }
  .ics h2 {
    font-size: 24px;
  }
  .ics .video-btn {
    width: 70px;
    height: 70px;
    margin: 20px auto;
  }
  .service .service-box {
    margin-bottom: 40px;
  }
  .testimonial_bg {
    padding: 80px 0px 60px;
  }
  .btn1 {
    font-size: 14px;
  }
  .header .logo {
    width: 170px;
  }
  .inner-container .contact-box {
    height: auto;
    min-height: auto;
  }
  .welcome h2 {
    font-size: 28px;
  }
  .welcome::before {
    display: none;
  }
  .welcome .welcome-img .video-btn {
    width: 80px;
    height: 80px;
  }
  footer {
    -webkit-clip-path: none;
            clip-path: none;
  }
  footer .shape6,
  footer .shape7 {
    display: none;
  }
  .news-blog h2 {
    font-size: 24px;
  }
  .news-blog .newsblog {
    flex-wrap: wrap;
  }
  footer {
    padding: 40px 0px 30px;
  }
  footer .ftr-flex {
    justify-content: flex-start;
  }
  footer .ftr-flex .contact-icon {
    font-size: 20px;
    padding: 10px;
    width: 45px;
    height: 45px;
  }
  footer .ftrborder-top {
    padding: 40px 0px 0px;
  }
  .powered .text-left,
  .powered .text-right {
    text-align: center !important;
  }
  .service .service-box .service-text {
    transform: translateY(140px);
  }
  .training-staff {
    padding: 100px 0px 60px;
  }
  .inner-container .mv .mvimg img {
    width: 65px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 40px 0px;
  }
  .inner-container .mv .mvimg img {
    width: 50px;
  }
  .owl-theme .owl-controls {
    display: none !important;
  }
  .topnav {
    display: none;
  }
  .cbp-af-header {
    top: 5px;
  }
  .intro {
    background-position: center;
    margin-top: 58px;
  }
  .intro .slide__caption {
    width: 95%;
    padding-bottom: 0px;
    left: 5%;
  }
  .intro .slide__caption h1 {
    font-size: 20px;
    font-weight: 600;
  }
  .inner-slider {
    margin-top: 58px;
  }
  .inner-slider .slide__caption {
    left: 5%;
  }
  .inner-slider .slide__caption h2 {
    font-size: 20px;
  }
  .innerbanner {
    margin-top: 58px;
    height: 20vh;
  }
  .innerbanner h2 {
    font-size: 20px;
  }
  .ics h2 {
    font-size: 24px;
  }
  .training-staff {
    padding: 70px 0px 60px;
  }
  h2 {
    font-size: 24px;
  }
  .welcome h2 {
    font-size: 22px;
  }
  .welcome p {
    font-size: 15px;
  }
  .inner-container .front h3 {
    font-size: 20px;
  }
  .inner-container .career h3 {
    font-size: 20px;
  }
}/*# sourceMappingURL=pbosecure.css.map */