@charset "UTF-8";


/*=========================
Fonts
==========================*/
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Days+One&display=swap');*/

/* Подключение Montserrat */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* Подключение Bebas Neue */
@font-face {
  font-family: 'Days One';
  src: url('../fonts/DaysOne-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}


/*=========================
Common Css
==========================*/

html {
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Days One", serif;
  color: #162542;
  margin: 0px;
  font-weight: 400;
}

h1 {
  font-size: 80px;
  line-height: 90px;
}

h2 {
  font-size: 50px;
  line-height: 1.2;
}

h3 {
  font-size: 30px;
  line-height: 40px;
}

h4 {
  font-size: 24px;
  line-height: 35px;
}

h5 {
  font-size: 20px;
  line-height: 28px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  color: #666666;
  margin: 0px;
}

input, textarea {
  display: inherit;
}

img {
  max-width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #666666;
  font-size: 17px;
  line-height: 32px;
  overflow-x: hidden;
	background: #F7FFFC;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1440px;
  }
}
.section-title-white span.span, .section-title-white h2 {
  color: #fff;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.parallax-bg {
  background-attachment: fixed;
}

.slick-slide {
  outline: 0;
}

ul.social-link li {
  display: inline-block;
}

.form_group {
  position: relative;
}

.form_control {
  width: 100%;
  padding: 0 30px;
  height: 55px;
  border: none;
	border-radius: 0.375rem;
}

textarea.form_control {
  padding-top: 15px;
  display: inherit;
}

.form-control {
    border: none;
    background-color: rgba(22, 37, 66, 0.05);
}

.section-title.section-title-left {
  text-align: left;
}
.section-title.section-title-left span.sub-title:after {
  display: none;
}
.section-title.section-title-right {
  text-align: right;
}
.section-title.section-title-right span.sub-title:before {
  display: none;
}
.section-title.section-title-white h2 {
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
@media (max-width: 400px) {
  .section-title h2 {
    font-size: 28px;
    line-height: 40px;
  }
}

span.sub-title {
  position: relative;
  margin-bottom: 15px;
  display: block;
  color: #0080AF;
  font-size: 22px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #0080AF;
}
@media (max-width: 767px) {
  span.sub-title {
    font-size: 15px;
  }
}
span.sub-title:after, span.sub-title:before {
  display: inline-block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #0080AF;
  vertical-align: middle;
}
span.sub-title:before {
  margin-right: 30px;
}
@media (max-width: 767px) {
  span.sub-title:before {
    margin-right: 10px;
  }
}
span.sub-title:after {
  margin-left: 30px;
}
@media (max-width: 767px) {
  span.sub-title:after {
    margin-left: 10px;
  }
}

.bg-with-overlay {
  position: relative;
  z-index: 1;
	background: url(../img/bg/banner-bg.jpg);
  background-size: cover;
  background-position: center;
}
.bg-with-overlay:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  /*background-color: rgba(22, 37, 66, 0.9);*/
  z-index: -1;
}
.bg-overlay {
  position: relative;
  z-index: 1;
	background: url(../img/bg/flag.jpg);
  background-size: cover;
  background-position: top;
}
.bg-overlay:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.9);
  z-index: -1;
}
.bg-with-overlay.bg-with-overlay-two:after {
  background-color: rgba(25, 23, 21, 0.86);
}

/* ===== All bg ===== */
.light-bg {
  background-color: rgba(22, 37, 66, 0.05);
}

.blue-bg {
  background-color: #162542;
}

/* ===== Extend Css ===== */
.features-item-one .icon i, .service-item-two .icon i {
  color: #0080AF;
}

.footer-wrapper-one .footer-widget .widget.footer-nav-widget ul.widget-link li a:hover, .news-details-container .post-nav-area .post-nav .content h6:hover, .news-details-container .post-author-box .author-content ul.social-link li:hover, .news-details-container .news-post-item .post-share-tag .social-share ul.social-link li a:hover, .news-post-item-six.news-post-bg .entry-content .post-meta ul li span:hover, .news-post-item-six.news-post-bg .entry-content .post-admin span:hover, .news-post-item-six.news-post-bg .entry-content h3.title:hover, .news-post-item-six .entry-content .post-admin span a:hover, .news-post-item-six .entry-content h3.title:hover, .news-post-item-five .entry-content .post-admin span a:hover, .news-post-item-five .entry-content h3.title:hover, .news-post-item-three .entry-content h3.title:hover, .news-post-item-two .entry-content .btn-link:hover, .news-post-item-two .entry-content h3.title:hover, .news-post-item-one .entry-content h3.title:hover, .arrow-btn:hover, .post-meta ul li span:hover, .team-item-one .team-content h3.title:hover, .case-item-three .case-content h3.title:hover, .case-item-two .case-img .case-overlay .case-content h3.title:hover, .case-item-one .case-content h3.title:hover, .service-item-four .content h3.title:hover, .service-item-three .content h3.title:hover, .service-item-one .content h3.title:hover, .header-logo-area .site-info .info-list li .info h5:hover {
  color: #0080AF;
}

.footer-wrapper-one .footer-widget .widget.footer-nav-widget ul.widget-link li a:hover:before, .footer-wrapper-one .footer-widget .widget.about-widget .share ul.social-link li a:hover, .sidebar-widget-area .widget.tag-cloud-widget a:hover, .news-details-container .news-post-item .post-share-tag .post-tag-cloud ul li a:hover, .team-details-section .team-content .social-link li a:hover, .team-item-one .team-img .team-overlay .team-social ul.social-link li a:hover, .pagination ul li a:hover {
  background-color: #0080AF;
}

/* ===== All Button Style ===== */
button {
  border: none;
}

.main-btn {
  position: relative;
  z-index: 1;
  background-color: #0080AF;
  padding: 13px 45px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 29px;
  text-transform: uppercase;
  overflow: hidden;
	border-radius: 6px;
}
.main-btn:hover {
  color: #fff;
}
.main-btn:hover:before {
  bottom: 0;
}
.main-btn:before {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #005091;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-btn.filled-btn {
  background-color: transparent;
  border: 2px solid #162542;
  color: #162542;
  line-height: 25px;
}

/* ========== nice select css ======== */
.nice-select {
  outline: none;
}
.nice-select.open:after {
  -webkit-transform: none;
          transform: none;
}
.nice-select:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  right: 20px;
  font-size: 12px;
  font-weight: 400;
  -webkit-transform: none;
          transform: none;
  border: none;
  top: 0;
  margin-top: 0;
  color: #2E2E2E;
}
.nice-select .list {
  width: 100%;
}

/* =======  search ======= */
#search-modal {
  background: rgba(23, 26, 33, 0.85);
}
#search-modal .modal-content {
  background: 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
#search-modal .modal-content:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#search-modal .search-close{
  position: absolute;
  color: #fff;
  right: 10px;
  top: -100px;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  border: 0;
  font-size: 25px;
  background: transparent;
  border-radius: .25rem;
  transition: color .5s ease-in-out;
}
#search-modal .search-close:hover{
  color: #0080AF;
}
#search-modal .form_control {
  padding-left: 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e5e5e5;
  color: #fff;
  margin-bottom: 0;
  height: 50px;
}
#search-modal .form_control:focus {
  border-color: #0080AF;
}
#search-modal .form_control::-webkit-input-placeholder {
  color: #fff;
}
#search-modal .form_control::-moz-placeholder {
  color: #fff;
}
#search-modal .form_control:-ms-input-placeholder {
  color: #fff;
}
#search-modal .form_control::-ms-input-placeholder {
  color: #fff;
}
#search-modal .form_control::placeholder {
  color: #fff;
}
#search-modal .search_btn {
  position: absolute;
  background: transparent;
  top: 10px;
  right: 10px;
  color: #fff;
}

/* =======Start Preloader css ======*/
.preloader {
  background-color: #163967;
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 99999;
}

.loader {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}

.loader-box {
  width: 50px;
  height: 50px;
  background: #fff;
  animation: loader-animate .5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
@keyframes loader-animate {
  17% { border-bottom-right-radius: 3px; }
  25% { transform: translateY(9px) rotate(22.5deg); }
  50% {
    transform: translateY(18px) scale(1,.9) rotate(45deg) ;
    border-bottom-right-radius: 40px;
  }
  75% { transform: translateY(9px) rotate(67.5deg); }
  100% { transform: translateY(0) rotate(90deg); }
} 
.loader-shadow { 
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  animation: loader-shadow .5s linear infinite;
}
@keyframes loader-shadow {
  50% {
    transform: scale(1.2,1);
  }
}


/* ========Start scroll_up css ==========*/
.back-to-top {
  background: #0080AF;
  border-radius: 50%;
  bottom: 30px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 337;
}
.back-to-top:hover, .back-to-top:focus {
  background: #0c1b36;
  color: #fff;
}

@-webkit-keyframes play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 0;
  }
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}
@keyframes play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 0;
  }
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}


/*=========================
 Header  css 
==========================*/
header {
  z-index: 1;
}

.transparent-header {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-top-bar {
  background-color: #163967;
  padding: 5px 0 8px;
}

.header-top-bar .text-block{
  text-align: center;
}

.header-top-bar .text-block p{
  color: #e5e3e3;
}

.header-top-bar .text-block p a {
  color: #0080AF;
  margin-left: 5px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  transition: all .5s ease-in-out;
}

.header-top-bar .text-block p a:hover{
  color: #fff;
}

.header-top-bar .top-social{
  text-align: center;
}

.header-top-bar .top-social a{
  margin-left: 16px;
  color: #e5e3e3;
  transition: all .5s ease-in-out;
}

.header-top-bar .top-social a:hover{
  color: #0080AF;
}

.header-logo-area .site-branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .header-logo-area .site-branding {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
  }
}
.header-logo-area .site-info {
  float: right;
}
@media (max-width: 767px) {
  .header-logo-area .site-info {
    display: none;
  }
}
.header-logo-area .site-info .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-logo-area .site-info .info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 70px;
  border-right: 1px solid #efefef;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-logo-area .site-info .info-list li {
    padding: 30px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-logo-area .site-info .info-list li {
    padding: 30px 20px;
  }
}
.header-logo-area .site-info .info-list li:first-child {
  border-left: 1px solid #efefef;
}
.header-logo-area .site-info .info-list li .icon {
  margin-right: 20px;
}
.header-logo-area .site-info .info-list li .icon i {
  color: #0080AF;
  font-size: 40px;
  line-height: 1;
}
.header-logo-area .site-info .info-list li .info {
  line-height: 13px;
}
.header-logo-area .site-info .info-list li .info span {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-logo-area .site-info .info-list li .info h5 {
    font-size: 16px;
  }
}
.header-navigation .main-menu ul > li.has-children > a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  display: inline-block;
  color: #162542;
  font-size: 16px;
  margin-left: 5px;
  margin-top: 2px;
  float: right;
}
.header-navigation .main-menu ul > li.has-children .sub-menu li.has-children:hover > a:after {
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-navigation .main-menu ul > li.has-children > a:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-navigation .main-menu ul > li.has-children > a:after {
    display: none;
  }
}
.header-navigation .main-menu ul > li.has-children > a.active:after {
  color: #0080AF;
}
.header-navigation .main-menu ul > li.has-children .sub-menu li.has-children:hover > a:after {
  color: #fff;
}
.header-navigation .main-menu ul > li.has-children .sub-menu li.has-children > a:after {
  margin-left: 0px;
  margin-right: 5px;
  color: #162542;
}
.header-navigation .main-menu ul li {
  display: inline-block;
  position: relative;
}
.header-navigation .main-menu ul li:first-child > a {
  padding-left: 0px;
}
.header-navigation .main-menu ul li > a {
  display: block;
  font-size: 17px;
  color: #162542;
  font-weight: 600;
  text-transform: uppercase;
  padding: 32px 20px;
  line-height: 1;
}
.header-navigation .main-menu ul li > a.active {
  color: #0080AF;
}
.header-navigation .main-menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  height: auto;
  text-align: left;
  -webkit-box-shadow: 0px 10px 60px 0px rgb(22 37 66 / 15%);
  box-shadow: 0px 10px 60px 0px rgb(22 37 66 / 15%);
}
.header-navigation .main-menu ul li .sub-menu li {
  display: block;
  margin: 0;
}
.header-navigation .main-menu ul li .sub-menu li:last-child > a {
  border-bottom: none;
}
.header-navigation .main-menu ul li .sub-menu li a {
  display: block;
  padding: 7px 15px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  line-height: 2;
  margin: 0;
  border-bottom: 1px solid #ececec;
  color: #1b3255;
}
.header-navigation .main-menu ul li .sub-menu li a:hover {
  background-color: #0080AF;
  color: #fff;
  border-color: transparent;
}
.header-navigation .main-menu ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}
.header-navigation .main-menu ul li .sub-menu li:hover .sub-menu {
  top: 0%;
}
.header-navigation .main-menu ul li .sub-menu li:hover > a {
  background-color: #0080AF;
  color: #fff;
}
.header-navigation .main-menu ul li:hover.menu-item-has-children > a:after {
  color: #0080AF;
}
.header-navigation .main-menu ul li:hover > a {
  color: #0080AF;
}
.header-navigation .main-menu ul li:hover > a:after {
  color: #0080AF;
}
.header-navigation .main-menu ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-navigation .main-menu ul li .dd-trigger {
  display: none;
}
.header-navigation.breakpoint-on .nav-menu {
  text-align: left;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 9999;
  width: 300px;
  height: 100%;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  padding: 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 70px;
}
.header-navigation.breakpoint-on .nav-menu.menu-on {
  left: 0;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li {
  display: block;
  margin: 0;
  border-bottom: 1px solid #ececec;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li:last-child {
  border-bottom: 0;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li.active .sub-menu {
  border-top: 1px solid #ececec;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #162542 !important;
  padding: 13px 20px;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  visibility: visible;
  opacity: 1;
  display: none;
  -webkit-transition: none;
  transition: none;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a {
  color: #162542;
  padding: 0px 20px 0 40px;
  line-height: 45px !important;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .dd-trigger {
  display: block;
  position: absolute;
  right: 0;
  height: 42px;
  width: 45px;
  top: 0;
  border-left: 1px solid #eaeaea;
  z-index: 2;
  background: transparent;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  color: #162542;
  font-size: 20px;
}
.header-navigation.breakpoint-on .nav-menu .main-menu.menu-on {
  left: 0;
}
.header-navigation.breakpoint-on .navbar-close,
.header-navigation.breakpoint-on .navbar-toggler {
  display: block;
}
.header-navigation .header-right-nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-navigation .navbar-toggler {
  display: none;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header-navigation .navbar-toggler span {
  position: relative;
  background-color: #162542;
  border-radius: 3px;
  display: block;
  height: 3px;
  margin-top: 5px;
  padding: 0;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}
.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}
.header-navigation .navbar-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: none;
  cursor: pointer;
  background: #0080AF;
}
.header-navigation .navbar-close i {
  color: #fff;
  font-size: 20px;
}

.header-area-one .header-navigation .navigation-wrapper {
  position: relative;
  padding: 0 40px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
  margin-bottom: -76px;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-one .header-navigation .navigation-wrapper {
    padding: 10px 15px;
  }
}
@media (max-width: 991px) {
  .header-area-one .header-navigation .navigation-wrapper {
    padding: 10px 15px;
  }
}
.header-area-one .header-navigation .header-right-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-area-one .header-navigation .header-right-nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-one .header-navigation .header-right-nav ul li.off-nav-btn {
    display: none;
  }
}
.header-area-one .header-navigation .header-right-nav ul li .search-btn {
  margin-right: 30px;
}
.header-area-one .header-navigation .header-right-nav ul li .main-btn {
  margin-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-one .header-navigation .header-right-nav ul li .main-btn {
    margin-right: 0px;
  }
}
@media (max-width: 991px) {
  .header-area-one .header-navigation .header-right-nav ul li .main-btn {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .header-area-one .header-navigation .header-right-nav ul li .main-btn {
    padding: 10px 9px;
    font-size: 13px;
  }
}
.header-area-one .header-navigation .header-right-nav ul li .off-menu {
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-one .header-navigation .header-right-nav ul li .off-menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-area-one .header-navigation .header-right-nav ul li .off-menu {
    display: none;
  }
}
.header-area-one .header-navigation .header-right-nav ul li .off-menu span {
  width: 30px;
  height: 3px;
  background-color: #162542;
  display: block;
}
.header-area-one .header-navigation .header-right-nav ul li .off-menu span:nth-child(2) {
  margin: 7px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-area-two .header-navigation {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-area-two .header-navigation .site-branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.header-area-two .header-navigation .site-branding .brand-logo {
      padding: 0px 20px 0px 20px;
}
@media (max-width: 1300px) {
  .header-area-two .header-navigation .site-branding .brand-logo {
    padding: 0px 10px 0px 10px;
  }
}
@media (max-width: 991px) {
  .header-area-two .header-navigation .site-branding .brand-logo {
    padding: 0px 20px 0px 20px;
  }
}
@media (max-width: 460px) {
  .header-area-two .header-navigation .site-branding .brand-logo {
    padding: 0;
  }
}
.header-area-two .header-navigation .primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-left: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header-area-two .header-navigation .primary-menu {
    padding-left: 0px;
  }
}
.header-area-two .header-navigation .main-menu ul > li.has-children > a:after {
  color: #fff;
}
.header-area-two .header-navigation .main-menu ul > li.has-children > a.active:after {
  color: #0080AF;
}
.header-area-two .header-navigation .main-menu ul > li.has-children .sub-menu li.has-children:hover > a:after {
  color: #fff;
}
.header-area-two .header-navigation .main-menu ul > li.has-children .sub-menu li.has-children > a:after {
  color: #162542;
}
.header-area-two .header-navigation .main-menu ul li > a {
  color: #fff;
}
.header-area-two .header-navigation .main-menu ul li > a.active {
  color: #0080AF;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header-area-two .header-navigation .main-menu ul li > a {
    padding: 32px 12px;
  }
}
.header-area-two .header-navigation .main-menu ul li:hover.has-children > a:after {
  color: #0080AF;
}
.header-area-two .header-navigation .main-menu ul li:hover > a {
  color: #0080AF;
}
.header-area-two .header-navigation .navbar-toggler span {
  background-color: #fff;
}
.header-area-two .header-navigation .header-right-nav {
  height: 100%;
}
.header-area-two .header-navigation .header-right-nav .main-btn {
  margin-right: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header-area-two .header-navigation .header-right-nav .main-btn {
    margin-right: 20px;
    padding: 13px 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-two .header-navigation .header-right-nav .main-btn {
    margin-right: 20px;
    padding: 13px 25px;
  }
}
@media (max-width: 991px) {
  .header-area-two .header-navigation .header-right-nav .main-btn {
    display: none;
  }
}
.header-area-two .header-navigation .header-right-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.header-area-two .header-navigation .header-right-nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 34px 40px;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header-area-two .header-navigation .header-right-nav ul li {
    padding: 34px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-two .header-navigation .header-right-nav ul li {
    padding: 34px 20px;
  }
  .header-area-two .header-navigation .header-right-nav ul li.off-nav-btn {
    padding: 20px 5px 20px 25px;
  }
}
@media (max-width: 991px) {
  .header-area-two .header-navigation .header-right-nav ul li {
    padding: 20px 25px;
  }
  .header-area-two .header-navigation .header-right-nav ul li.off-nav-btn {
    padding: 20px 5px 20px 25px;
  }
}
.header-area-two .header-navigation .header-right-nav ul li a {
  color: #fff;
}
.header-area-two .header-navigation .header-right-nav .off-menu {
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-two .header-navigation .header-right-nav .off-menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-area-two .header-navigation .header-right-nav .off-menu {
    display: none;
  }
}
.header-area-two .header-navigation .header-right-nav .off-menu span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  display: block;
}
.header-area-two .header-navigation .header-right-nav .off-menu span:nth-child(2) {
  margin: 7px 0;
}

.header-navigation.sticky.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-animation: sticky 1.2s;
          animation: sticky 1.2s;
}

.header-area-two .header-navigation.sticky {
	background-color: rgba(26, 39, 66, 0.8);
	/*backdrop-filter: blur(20px);*/
}

@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
.offcanvas-panel {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}
.offcanvas-panel.panel-on {
  visibility: visible;
  opacity: 1;
}
.offcanvas-panel.panel-on .offcanvas-panel-inner {
  visibility: visible;
  opacity: 1;
  margin-right: 0;
}
.offcanvas-panel .offcanvas-panel-inner {
  max-width: 400px;
  height: 100%;
  background-color: #F7FFFC;
  padding: 40px;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: -400px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}
.offcanvas-panel .offcanvas-panel-inner .panel-logo,
.offcanvas-panel .offcanvas-panel-inner .offcanvas-panel,
.offcanvas-panel .offcanvas-panel-inner .contact-us,
.offcanvas-panel .offcanvas-panel-inner .about-us {
  margin-bottom: 40px;
}
.offcanvas-panel .panel-widget-title {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  border-bottom: 2px solid #ededed;
  font-weight: 600;
}
.offcanvas-panel .contact-us ul li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}
.offcanvas-panel .contact-us ul li:last-child {
  margin-bottom: 0px;
}
.offcanvas-panel .contact-us ul li a:{
 transition: all .5s ease-in-out;
}
.offcanvas-panel .contact-us ul li a:hover{
  color: #0080AF;
}
.offcanvas-panel .contact-us ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #163967;
  border-radius: 50%;
  font-size: 14px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
}
.offcanvas-panel .social-area .social-link a{
  margin-right: 16px;
  font-size: 20px;
  color: #163967;
  transition: all .5s ease-in-out;
}
.offcanvas-panel .social-area .social-link a:hover{
  color: #0080AF;
}
.offcanvas-panel .panel-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 25px;
  line-height: 1;
  padding: 5px;
  color: #162542;
  z-index: 2;
}


/*=========================
Hero Css
==========================*/
.hero-wrapper-one .single-slider {
  padding: 220px 0 145px;
}
.hero-wrapper-one .single-slider:after {
  background-color: rgba(0,32,76,0.80);
}
.hero-wrapper-one .hero-content h1 {
  font-size: 110px;
  line-height: 120px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hero-wrapper-one .hero-content h1 {
    font-size: 42px;
    line-height: 50px;
  }
}
.hero-wrapper-one .hero-content span.span {
  color: #e1a122;
  display: block;
  margin-bottom: 15px;
}
.hero-wrapper-one .hero-content span.span:before {
  display: inline-block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #e1a122;
  vertical-align: middle;
  margin-right: 30px;
}
.hero-wrapper-one .hero-content p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 35px;
}
.hero-wrapper-one .hero-content ul.button li {
  display: inline-block;
}
.hero-wrapper-one .hero-content ul.button li:last-child {
  margin-left: 5px;
}
.hero-wrapper-one .hero-content ul.button li .main-btn.filled-btn {
  border-color: rgba(255, 255, 255, 0.102);
  color: rgba(255, 255, 255, 0.3);
}
.hero-wrapper-one .hero-content ul.button li .main-btn.filled-btn:hover {
  border-color: #0080AF;
  color: #fff;
}
.hero-wrapper-one .hero-content ul.button li .main-btn.filled-btn:hover:before {
  background-color: #0080AF;
}
.hero-wrapper-one .hero-content.hero-content-left {
  text-align: left;
}
.hero-wrapper-one .hero-content.hero-content-right {
  text-align: right;
}
.hero-wrapper-one .hero-content.hero-content-center {
  text-align: center;
}

.hero-slider-one .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.hero-slider-one .slick-arrow.next {
  right: 160px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .hero-slider-one .slick-arrow.next {
    right: 30px;
  }
}
.hero-slider-one .slick-arrow.prev {
  left: 160px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .hero-slider-one .slick-arrow.prev {
    left: 30px;
  }
}
.hero-slider-one .slick-arrow:hover {
  background-color: #fff;
  color: #162542;
}

.hero-wrpper .hero-content {
  padding: 277px 0 178px;
}

@media (max-width: 560px) {
 .hero-wrpper .hero-content {
  padding: 200px 0 150px;
  text-align: center!important;
 }
}

.hero-wrpper .hero-content h1, .hero-content h4, .hero-wrpper .hero-content p, .hero-wrpper .hero-content span.span {
  background: #fff;
	/*background: linear-gradient(180deg, rgba(176,180,185,1) 0%, rgba(210,213,218,1) 100%);*/
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-wrpper .hero-content h1 {
  font-size: 2.25rem;
	line-height: 140%;
	letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .hero-wrpper .hero-content h1 {
    font-size: 42px;
    line-height: 55px;
  }
}
@media (max-width: 560px) {
  .hero-wrpper .hero-content h1 {
    font-size: 34px;
  }
	.hero-area .hero-content {
    padding-left: 1.5rem!important;
    padding-right: 1.5rem!important;
	}
}
@media (max-width: 450px) {
  .hero-wrpper .hero-content h1 {
    font-size: 29px;
		line-height: 35px;
  }
}
@media (max-width: 390px) {
  .hero-wrpper .hero-content h1 {
    font-size: 22px;
  }
}
.hero-wrpper .hero-content span.span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-wrpper .hero-content p {
  font-size: 18px;
	font-weight: 400;
	margin: 0 0 16px 0;
	line-height: 150%;
	letter-spacing: 0.03em;
}
.hero-wrpper .hero-content p.experience {
  margin-bottom: 0px;
}
.hero-wrpper .hero-content p.experience i {
  color: #0080AF;
}
.hero-wrpper .hero-content .main-btn:hover {
  color: #162542;
}
.hero-wrpper .hero-content .main-btn:before {
  background-color: #fff;
}
.hero-wrpper .hero-content .hero-lawyers-search {
  margin-bottom: 23px;
}
.hero-wrpper .hero-content .hero-lawyers-search .form_control {
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", serif;
}
.hero-wrpper .hero-content .hero-lawyers-search .form_control::-webkit-input-placeholder {
  color: #162542;
}
.hero-wrpper .hero-content .hero-lawyers-search .form_control::-moz-placeholder {
  color: #162542;
}
.hero-wrpper .hero-content .hero-lawyers-search .form_control:-ms-input-placeholder {
  color: #162542;
}
.hero-wrpper .hero-content .hero-lawyers-search .form_control::-ms-input-placeholder {
  color: #162542;
}
.hero-wrpper .hero-content .hero-lawyers-search .form_control::placeholder {
  color: #162542;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-wrpper .hero-content .hero-lawyers-search .main-btn {
    padding: 13px 25px;
  }
}
@media (max-width: 991px) {
  .hero-wrpper .hero-content .hero-lawyers-search .main-btn {
    margin-top: 20px;
  }
}
.hero-wrpper .hero-img {
  padding: 140px 0 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-wrpper .hero-img {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero-wrpper .hero-img {
    display: none;
  }
}

.headline-area {
  position: relative;
  padding: 230px 0 160px;
}
/*.headline-area.bg-with-overlay {
  background-color: rgba(22, 37, 66, 0.5);
}*/
.headline-area .page-title h1 {
  color: #fff;
  margin-top: 20px;
  text-align: center;
  font-size: 35px;
  line-height: 1.4;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .headline-area .page-title h1 {
    font-size: 42px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .headline-area .page-title h1 {
    font-size: 28px;
    line-height: 45px;
  }
}

@media (max-width: 36px) {
  .headline-area .page-title h1 {
    font-size: 24px;
  }
}

.headline-area .page-title h3 {
  color: #fff;
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
	line-height: 35px;
	margin-top: 20px;
}

@media (max-width: 460px) {
  .headline-area .page-title h3 {
  font-size: 20px;
 }
}

.headline-area .page-title .headline-link{
  display: flex;
  justify-content: center;
}
.headline-area .page-title .headline-link li {
  display: inline-block;
  color: #fff;
}
.headline-area .page-title .headline-link li:last-child:after {
  display: none;
}
.headline-area .page-title .headline-link li::after {
  display: inline-block;
  content: "";
  margin-left: 15px;
  margin-right: 10px;
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
}
.headline-area .page-title .headline-link li a {
  color: #fff;
}


/*=========================
About CSS
==========================*/
.about-content-box-one h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 18px;
}
.about-content-box-one p {
  margin-bottom: 30px;
}
.about-content-box-one h5 {
  font-style: italic;
  line-height: 32px;
  margin-bottom: 43px;
  font-family: "Montserrat", sans-serif;
}

.about-img-box-one {
  min-height: 600px;
  position: relative;
  margin-left: 50px;
}
@media (max-width: 767px) {
  .about-img-box-one {
    margin-left: 0px;
  }
}
.about-img-box-one .about-img-one {
  position: absolute;
  top: 90px;
  left: 0;
  -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}
@media (max-width: 767px) {
  .about-img-box-one .about-img-one {
    position: relative;
    top: auto;
    left: auto;
  }
}
.about-img-box-one .about-img-two {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-img-box-one .about-img-two {
    width: 50%;
    top: 100px;
  }
}
@media (max-width: 767px) {
  .about-img-box-one .about-img-two {
    position: relative;
    top: auto;
    left: auto;
    margin: 40px 0;
  }
}
.about-img-box-one .about-img-three {
  position: absolute;
  bottom: 0;
  right: 60px;
  max-width: 410px;
  width: 100%;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-img-box-one .about-img-three {
    right: 0;
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .about-img-box-one .about-img-three {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100%;
  }
}
.about-img-box-one .about-logo {
  position: absolute;
  bottom: 0;
  left: -50px;
}
@media (max-width: 767px) {
  .about-img-box-one .about-logo {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-content-box-two {
    margin-bottom: 40px;
  }
}
.about-content-box-two p {
  margin-bottom: 25px;
}
.about-content-box-two h5 {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  margin-bottom: 45px;
}

.play-content-img {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 515px;
  max-height: 515px;
}

.play-content-img .video-popup {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  color: #0080AF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


/*=========================
Service css 
==========================*/
.service-bg-map {
  position: relative;
  z-index: 1;
}
.service-bg-map:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 850px;
  z-index: -1;
  background-color: rgba(22, 37, 66, 0.05);
}

.service-bg-image {
  position: relative;
  z-index: 1;
}
.service-bg-image:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.93);
  z-index: -1;
}

.service-wrapper-one {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
}

.service-item-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  padding: 32px 30px 27px 30px;
  z-index: 1;
  background: #F7FFFC;
  border-left: 4px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
	border-radius: 12px;
}
.service-item-one .icon {
  margin-right: 30px;
}
.service-item-one .icon i {
  font-size: 65px;
  line-height: 1;
  color: #0080AF;
}
.service-item-one .content h3.title {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 5px;
}
.service-item-one:hover {
  border-color: #0080AF;
  margin-left: 10px;
}

.service-item-two {
  position: relative;
  padding: 60px 50px;
  margin-bottom: 25px;
  border: 1px solid #efefef;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
}
@media (max-width: 767px) {
  .service-item-two {
    padding: 60px 20px;
  }
}
.service-item-two:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.8);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.8);
  border-color: transparent;
  border: hidden;
}
.service-item-two:hover .item-bg:before {
  visibility: visible;
  opacity: 1;
}
.service-item-two:hover .item-bg:after {
  visibility: hidden;
  opacity: 0;
}
.service-item-two:hover .content h4, .service-item-two:hover .content p {
  color: #fff;
}
.service-item-two:hover .content .icon-btn {
  background-color: #0080AF;
  color: #fff;
}
.service-item-two .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.service-item-two .item-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.85);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.service-item-two .item-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  visibility: visible;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.service-item-two .icon {
  margin-bottom: 20px;
}
.service-item-two .icon i {
  font-size: 75px;
  line-height: 1;
}
.service-item-two .content h4 {
  margin-bottom: 10px;
}
.service-item-two .content p {
  margin-bottom: 25px;
}
.service-item-two .content .icon-btn {
  background-color: rgba(22, 37, 66, 0.07);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

.service-item-three {
  background-color: #F7FFFC;
  border-left: 4px solid transparent;
  padding: 40px 50px 33px;
  transition: .5s;
	border-radius: 12px;
}

.service-item-three:hover {
  border-color: #0080AF;
}
/*
@media (max-width: 767px) {
  .service-item-three {
    padding: 40px 30px 33px;
  }
}*/
@media (max-width: 580px) {
  .service-item-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service-item-three .icon {
  margin-right: 30px;
}
@media (max-width: 400px) {
  .service-item-three .icon {
    margin-bottom: 20px;
  }
}
.service-item-three .icon i {
  color: #0080AF;
  font-size: 60px;
  line-height: 1;
}
.service-item-three .content {
  margin-top: -8px;
}
.service-item-three .content h3.title {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .service-item-three .content h3.title {
    font-size: 20px;
    line-height: 30px;
  }
}

.service-item-four {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.service-item-four:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 60%;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
  z-index: -1;
}
.service-item-four .service-img {
  position: relative;
}
.service-item-four .service-img img {
  -webkit-clip-path:  polygon(0% 0%, 100% 0, 100% 100%, 21% 88%, 0 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 21% 88%, 0 100%);
}
.service-item-four .service-img .icon {
  position: absolute;
  bottom: 0;
  left: 30px;
}
.service-item-four .service-img .icon i {
  width: 85px;
  height: 85px;
  background-color: #0080AF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 50px;
  color: #fff;
}
.service-item-four .content {
  padding: 30px 30px 12px;
}
.service-item-four .content h3.title {
  font-size: 24px;
}
.pl-70 {
  padding-left: 70px;
}
@media (max-width: 767px) {
  .pl-70 {
    padding-left: 0;
  }
}

.service-details-wrapper {
  border: 1px solid rgba(22, 37, 66, 0.102);
}
.service-details-wrapper .content {
  padding: 40px 60px 30px;
}
@media (max-width: 767px) {
  .service-details-wrapper .content {
    padding: 40px 30px 30px;
  }
}
.service-details-wrapper .content h3.title {
  font-size: 42px;
  line-height: 45px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .service-details-wrapper .content h3.title {
    font-size: 24px;
    line-height: 35px;
  }
}
.service-details-wrapper .content p {
  margin-bottom: 25px;
}
.service-details-wrapper .content h5 {
  font-size: 18px;
  line-height: 35px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}
.service-details-wrapper .content ul.list li {
  color: #162542;
  font-weight: 600;
}
.service-details-wrapper .content ul.list li:before {
  display: inline-block;
  content: "";
  font-family: "Font Awesome 5 Pro";
  color: #0080AF;
  font-weight: 400;
  margin-right: 12px;
}


/*=========================
Features css 
==========================*/
.container-fluid-custom {
  padding-left: 70px;
  padding-right: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container-fluid-custom {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container-fluid-custom {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.features-item-one {
  position: relative;
  padding: 60px 50px;
  border: 1px solid rgba(4, 13, 26, 0.15);
	border-radius: 12px;
  /*z-index: 1;*/
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .features-item-one {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-item-one {
    border: 1px solid rgba(4, 13, 26, 0.1);
  }
}
@media (max-width: 991px) {
  .features-item-one {
    border: 1px solid rgba(4, 13, 26, 0.1);
  }
}
@media (max-width: 767px) {
  .features-item-one {
    padding: 40px 20px;
    margin-bottom: 20px;
  }
}
.features-item-one:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.8);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.8);
  border-color: transparent;
}
.features-item-one:hover .item-bg:before {
  visibility: visible;
  opacity: 1;
}
.features-item-one:hover .item-bg:after {
  visibility: hidden;
  opacity: 0;
}
.features-item-one:hover .icon i {
  color: #fff;
}
.features-item-one:hover .content h4, .features-item-one:hover .content p {
  color: #fff;
}

.features-item-one:hover .content .icon-btn {
  background-color: #0080AF;
  color: #fff;
}
.features-item-one .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
	border-radius: 12px;
}
.features-item-one .item-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(19, 29, 70, 0.85);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
	border-radius: 12px;
}
.features-item-one .item-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F7FFFC;
  visibility: visible;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.features-item-one .icon {
  margin-bottom: 20px;
}
.features-item-one .icon i {
  font-size: 75px;
  line-height: 1;
}
.features-item-one .content h4 {
  margin-bottom: 10px;
	font-size: 22px;
	font-weight: 300!important;
}
.features-item-one .content p {
  margin-bottom: 25px;
}
.features-item-one .content .icon-btn {
  background-color: rgba(22, 37, 66, 0.07);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
	border-radius: 6px;
}

.features-content-box-two {
  margin-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-content-box-two {
    margin-left: 0px;
  }
}
@media (max-width: 991px) {
  .features-content-box-two {
    margin-left: 0px;
  }
}

.features-item-two {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(22, 37, 66, 0.07);
  margin-bottom: 35px;
}
.features-item-two:hover .content .icon-btn {
  background-color: #162542;
  color: #fff;
}
.features-item-two .icon {
  margin-right: 30px;
}
.features-item-two .icon i {
  font-size: 55px;
  line-height: 1;
  color: #0080AF;
}
.features-item-two .content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.features-item-two .content .icon-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  font-size: 15px;
  background-color: rgba(22, 37, 66, 0.07);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}


/*=========================
cons css 
==========================*/
.cons-area-one {
  position: relative;
  margin-bottom: -320px;
  z-index: 2;
}

.cons-wrapper-one .cons-item {
  position: relative;
  padding: 70px 70px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
  z-index: 1;
}
@media (max-width: 767px) {
  .cons-wrapper-one .cons-item {
    padding: 70px 30px;
  }
}
.cons-wrapper-one .cons-item:hover .cons-overlay:after {
  visibility: hidden;
  opacity: 0;
}
.cons-wrapper-one .cons-item:hover .cons-content h2, .cons-wrapper-one .cons-item:hover .cons-content p {
  color: #fff;
}

@media (max-width: 767px) {
  .cons-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 576px) {
  .cons-content h2 {
    font-size: 28px;
  }
}
@media (max-width: 366px) {
  .cons-content h2 {
    font-size: 23px;
  }
}

.cons-wrapper-one .cons-item .cons-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
	border-radius: 12px;
}
.cons-wrapper-one .cons-item .cons-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.8);
	border-radius: 12px;
}
.cons-wrapper-one .cons-item .cons-overlay:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F7FFFC;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
	border-radius: 12px;
}
.cons-wrapper-one .cons-item .cons-content span.sub-title {
  margin-bottom: 15px;
}
.cons-wrapper-one .cons-item .cons-content h2 {
  margin-bottom: 25px;
}
.cons-wrapper-one .cons-item .cons-content p {
  margin-bottom: 35px;
}

.cons-wrapper-minus {
  z-index: 2;
  margin-top: -90px;
}

.cons-bottom-minus {
  margin-bottom: -90px;
  z-index: 2;
}

.cons-wrapper-two {
  position: relative;
  background-color: #0080AF;
  padding: 50px 70px;
	border-radius: 12px;
}
@media (max-width: 991px) {
  .cons-wrapper-two .cons-content-box {
    margin-bottom: 20px;
  }
}
.cons-wrapper-two .cons-content-box h3 {
  font-size: 35px;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cons-wrapper-two .cons-content-box h3 {
    font-size: 32px;
  }
}
.cons-wrapper-two .button .main-btn {
  margin-left: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cons-wrapper-two .button .main-btn {
    padding: 13px 20px;
  }
}
.cons-wrapper-two .button .main-btn.filled-btn {
  border-color: #fff;
  color: #fff;
}
.cons-wrapper-two .button .main-btn.filled-btn:hover {
  background-color: #162542;
  border-color: #005091;
}

.cons-wrapper-three .cons-content-box .button .main-btn {
  margin-left: 5px;
  margin-right: 5px;
}
.cons-wrapper-three .cons-content-box .button .main-btn.filled-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}
.cons-wrapper-three .cons-content-box .button .main-btn.filled-btn:hover {
  color: #fff;
  border-color: #0080AF;
}
.cons-wrapper-three .cons-content-box .button .main-btn.filled-btn:hover:before {
  background-color: #0080AF;
}


/*=========================
Element css 
==========================*/
.object-shape-one .object {
  position: absolute;
}
.object-shape-one .object.object-1 {
  top: 100px;
  right: 50px;
}
.object-shape-one .object.object-2 {
  bottom: 0px;
  left: 0px;
}
@media (max-width: 767px) {
  .object-shape-one .object {
    display: none;
  }
}


/*=========================
Counter css
==========================*/
.counter-area-one {
  padding-top: 447px;
}

@media (max-width: 767px) {
  .counter-item-one {
    text-align: center;
  }
}
.counter-item-one{
  text-align: center;
  border: 1px solid #fff;
  padding: 15px 0;
	border-radius: 12px;
}
.counter-item-one .icon i {
  color: #0080AF;
  font-size: 52px;
  margin-bottom: 20px;
}
.counter-item-one .content h2, .counter-item-one .content span.sm-title {
  color: #fff;
}
.counter-item-one .content h2 {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 5px;
}
.counter-item-one .content span.sm-title {
  font-size: 17px;
  font-weight: 500;
}

.counter-item-two {
  padding-left: 30px;
  border-left: 3px solid rgba(22, 37, 66, 0.1);
}
.counter-item-two .content h2 {
  line-height: 1;
}

.counter-item-three {
  margin-bottom: 33px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(22, 37, 66, 0.103);
}
.counter-item-three .icon {
  margin-right: 40px;
  min-width: 50px;
  max-width: 50px;
}
.counter-item-three .icon i {
  font-size: 50px;
  line-height: 1;
  color: #0080AF;
}
.counter-item-three .content {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.counter-item-four {
  position: relative;
  background-color: #fff;
  border-left: 4px solid transparent;
  padding: 25px 20px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
  box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item-four {
    padding: 25px 14px;
  }
}
.counter-item-four:hover{
  border-color: #0080AF;
}

.counter-item-four .icon {
  margin-right: 20px;
  font-size: 52px;
  color: #0080AF;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item-four .icon {
    margin-right: 10px;
    font-size: 42px;
  }
}
.counter-item-four .content h2 {
  font-size: 45px;
  line-height: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item-four .content h2 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item-four .content p {
    font-size: 15px;
  }
}


/*=========================
Skill css
==========================*/
.skills-area-bg {
  position: relative;
  z-index: 1;
}
.skills-area-bg:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 650px;
  content: "";
  background: url(../img/bg/skill-bg-1.png) no-repeat center/cover;
  z-index: -1;
  height: 100%;
}

.skill-content-box-one p {
  margin-bottom: 35px;
}

.skill-img {
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .skill-img.pr-25 {
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .skill-img.pr-25 {
    padding-right: 0px;
  }
}
.skill-img .law-icon {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .skill-img .law-icon {
    display: none;
  }
}
.skill-img .law-icon:after, .skill-img .law-icon:before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.9);
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  -webkit-animation: playanimate 1.5s linear infinite;
  animation: playanimate 1.5s linear infinite;
  opacity: 0;
  z-index: -1;
}
.skill-img .law-icon:after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.skill-img .law-icon i {
  font-size: 40px;
  color: #0080AF;
}

.skill-list .single-skill {
  margin-bottom: 30px;
}
.skill-list .single-skill:last-child {
  margin-bottom: 0px;
}
.skill-list .single-skill .progress-title {
  margin-bottom: 15px;
}
.skill-list .single-skill .progress-title h5 {
  font-family: "Montserrat", sans-serif;
}
.skill-list .single-skill .progress-title h5 span {
  float: right;
}
.skill-list .single-skill .progress {
  height: 5px;
  border-radius: 0px;
  background-color: rgba(22, 37, 66, 0.1);
}
.skill-list .single-skill .progress .progress-bar {
  background-color: #0080AF;
}

.skills-padding-top-one {
  padding-top: 460px;
}

.skill-img-pl {
  padding-left: 125px;
}
@media (max-width: 767px) {
  .skill-img-pl {
    padding-left: 0px;
  }
}


/*=========================
Video css
==========================*/
.intro-area-one {
  position: relative;
  z-index: 2;
}

.intro-wrapper-one {
  position: relative;
  padding: 220px 0;
  z-index: 1;
  margin-bottom: 120px;
}
.intro-wrapper-one:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(33, 30, 59, 0.85);
  z-index: -1;
}
.intro-wrapper-one .play-content .video-popup {
  position: relative;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  color: #0080AF;
  margin: auto;
}
.intro-wrapper-one .play-content .video-popup:after, .intro-wrapper-one .play-content .video-popup:before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.9);
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  -webkit-animation: playanimate 1.5s linear infinite;
          animation: playanimate 1.5s linear infinite;
  opacity: 0;
  z-index: -1;
}
.intro-wrapper-one .play-content .video-popup:after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes playanimate {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes playanimate {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/*=========================
 block_services css
==========================*/
.block_services-item-one:hover .block_services-img .block_services-overlay {
  visibility: visible;
  opacity: 1;
}
.block_services-item-one:hover .block_services-img .block_services-overlay .icon-btn {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.block_services-item-one .block_services-img {
  position: relative;
  overflow: hidden;
	border-radius: 12px;
	-webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
}
.block_services-item-one .block_services-img img{
  width: 100%;
}
.block_services-item-one .block_services-img .block_services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.block_services-item-one .block_services-img .block_services-overlay .icon-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #0080AF;
  color: #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.block_services-item-one .block_services-content {
  position: relative;
  padding: 20px 20px 25px;
  border-left: 4px solid #0080AF;
  width: 85%;
  margin: auto;
  margin-top: -55px;
  background-color: #fdfdfd;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
	border-radius: 12px;
}


/*=========================
Pricing css
==========================*/

@media (max-width: 991px) {
  .pricing-area {
    padding-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .pricing-area {
    padding-bottom: 65px;
  }
}
.pricing-area .pricing-wrapper {
  margin: 0 -15px;
  padding-top: 50px;
}
.pricing-area .pricing-wrapper .pricing-single {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 0;
  text-align: center;
  padding: 0 45px 55px;
  border-top: 4px solid #0080AF;
  box-shadow: 0px 7px 13.5px 1.5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1199px) {
  .pricing-area .pricing-wrapper .pricing-single {
    padding: 0 15px 55px;
  }
}
@media (max-width: 991px) {
  .pricing-area .pricing-wrapper .pricing-single {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media (max-width: 650px) {
  .pricing-area .pricing-wrapper .pricing-single {
    width: calc(100% - 30px);
    float: none;
  }
}
.pricing-area .pricing-single .type {
  background-color: #f3f3f3;
  display: inline-block;
  padding: 12px 30px;
  margin-top: 40px;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .pricing-area .pricing-single .type {
    padding: 10px 40px;
  }
}
.pricing-area .pricing-single .type h5 {
  font-size: 20px;
  font-size: 1.3333333333rem;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .pricing-area .pricing-single .type h5 {
    font-size: 16px;
    font-size: 1.0666666667rem;
  }
}
.pricing-area .pricing-header {
  background: #fff;
  border-radius: 30px;
	padding: 25px;
  margin: 30px auto;
  display: table;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}/*
@media (max-width: 991px) {
  .pricing-area .pricing-header {
    width: 140px;
    height: 140px;
  }
}*/
.pricing-area .pricing-header > div {
  display: table-cell;
  vertical-align: middle;
}
.pricing-area .pricing-header h3 {
  font-size: 50px;
  font-size: 2.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .pricing-area .pricing-header h3 {
    font-size: 40px;
    font-size: 2.6666666667rem;
  }
}
.pricing-area .pricing-header p {
  font-size: 18px;
  font-size: 1.2rem;
  color: #0080AF;
  margin: 0;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .pricing-area .pricing-header p {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.pricing-area .pricing-body ul {
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 991px) {
  .pricing-area .pricing-body ul {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .pricing-area .pricing-body ul li {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.pricing-area .pricing-body ul > li + li {
  margin-top: 12px;
}
.pricing-area .pricing-single .get-started {
  display: block;
  padding: 13px 0;
  border: 2px solid #0080AF;
  border-radius: 50px;
  color: #0080AF;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .pricing-area .pricing-single .get-started {
    padding: 10px 0;
    margin: 0 25px;
  }
}
.pricing-area .pricing-single .get-started:hover {
  background: #0080AF;
  color: #fff;
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2) {
  background: url(../img/bg/pricing.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2):before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 57, 103, 0.9);
  content: "";
  z-index: -1;
  border-radius: 12px;
}
@media screen and (min-width: 1200px) {
  .pricing-area .pricing-wrapper > .pricing-single:nth-child(2) {
    margin-top: -30px;
  }
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2) ul li {
  color: #ddd;
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2) .type {
  background-color: #062650;
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2) .type h5 {
  color: #fff;
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2) .pricing-header {
  background: #062650;
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2) .pricing-header .price {
  color: #fff;
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2) .get-started {
  background: #0080AF;
  color: #fff;
}
.pricing-area .pricing-wrapper > .pricing-single:nth-child(2) .get-started:hover {
  background: #0080AF;
  color: #fff;
}


/*=========================
 FAQ css
==========================*/

.faq-accordian-one .card {
  border-radius: 0px;
  border: none;
}
.faq-accordian-one .card .card-header {
  padding: 0px;
  margin-bottom: 0px;
  border-bottom: none;
  background-color: transparent;
}
.faq-accordian-one .card .card-header a {
  padding: 18px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
  font-family: "Montserrat", serif;
  color: #162542;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 400px) {
  .faq-accordian-one .card .card-header a {
    padding: 18px 15px;
  }
}
.faq-accordian-one .card .card-header a[aria-expanded]:after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #efefef;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media (max-width: 767px) {
  .faq-accordian-one .card .card-header a[aria-expanded]:after {
    min-width: 40px;
    height: 40px;
  }
}
.faq-accordian-one .card .card-header a[aria-expanded=true] {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
  border-color: transparent;
}
.faq-accordian-one .card .card-header a[aria-expanded=true]::after {
  background-color: #0080AF;
  color: #fff;
  border-color: transparent;
  content: "\f00d";
  font-weight: 400;
}
.faq-accordian-one .card .card-body {
  padding: 30px 35px 0px;
}
.faq-accordian-one .card .card-body p {
  padding-bottom: 15px;
}

.faq-content-box h2 {
  margin-bottom: 10px;
}
.faq-content-box p {
  margin-bottom: 35px;
}
.faq-content-box form .form_group i {
  position: absolute;
  top: 19px;
  right: 30px;
}
@media (max-width: 767px) {
  .faq-content-box form .form_group .main-btn {
    margin-top: 20px;
  }
}


/*=========================
   Newsletter css
==========================*/
.newsletter-wrapper-one {
  position: relative;
  background-color: #162542;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .newsletter-wrapper-one {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.newsletter-wrapper-one .map {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.newsletter-wrapper-one .newsletter-form .form_control {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-weight: 500;
  font-size: 17px;
}
.newsletter-wrapper-one .newsletter-form .form_control::-webkit-input-placeholder {
  color: #fff;
}
.newsletter-wrapper-one .newsletter-form .form_control::-moz-placeholder {
  color: #fff;
}
.newsletter-wrapper-one .newsletter-form .form_control:-ms-input-placeholder {
  color: #fff;
}
.newsletter-wrapper-one .newsletter-form .form_control::-ms-input-placeholder {
  color: #fff;
}
.newsletter-wrapper-one .newsletter-form .form_control::placeholder {
  color: #fff;
}
.newsletter-wrapper-one .newsletter-form .form_control:focus {
  border-color: #0080AF;
}
@media (max-width: 767px) {
  .newsletter-wrapper-one .newsletter-form .form_control {
    margin-bottom: 20px;
  }
}
.newsletter-wrapper-one .newsletter-form .main-btn{
  border-radius: 50px;
}
.newsletter-wrapper-one .newsletter-form .main-btn:hover {
  color: #162542;
}
.newsletter-wrapper-one .newsletter-form .main-btn:before {
  background-color: #fff;
}


/*=========================
Sponsor css
==========================*/
.sponsor-slider-one .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sponsor-slider-one .single-sponsor {
  padding: 0 20px;
}
.sponsor-slider-one .single-sponsor img {
  margin: auto;
}


/*=========================
Pagination css
==========================*/

.pagination ul li {
  display: inline-block;
  margin-right: 5px;
}
.pagination ul li a {
  border: 2px solid rgba(22, 37, 66, 0.07);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.pagination ul li a:hover {
  border-color: transparent;
  color: #fff;
  background: #0080AF;
}
.pagination ul li a.active{
  background: #0080AF;
  color: #fff;
}


/*=========================
 Custom Padding
==========================*/

.pl-70 {
  padding-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pl-70 {
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .pl-70 {
    padding-left: 0px;
  }
}


/*=========================
 Case css 
==========================*/
.case-img {
  position: relative;
}
.case-img img {
  width: 100%;
	border-radius: 12px;
}

.case-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
}
@media (max-width: 767px) {
  .case-arrows {
    float: left;
  }
}
.case-arrows .slick-arrow {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(22, 37, 66, 0.07);
  color: #162542;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.case-arrows .slick-arrow:hover {
  background-color: #162542;
  color: #fff;
}
.case-arrows .slick-arrow.next {
  margin-left: 10px;
}

.case-filter-nav .nav-tabs {
  border-bottom: none;
}
.case-filter-nav .nav-link {
  background-color: rgba(22, 37, 66, 0.07);
  border: none;
  margin-bottom: 0px;
  border-radius: 0px;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #162542;
  padding: 8px 20px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .case-filter-nav .nav-link {
    padding: 15px 25px;
  }
}
.case-filter-nav .nav-link.active {
  background-color: #162542;
  color: #fff;
}
.case-item-one:hover .case-img .case-overlay:before {
  visibility: visible;
  opacity: 1;
}
.case-item-one:hover .case-img .case-overlay:after {
  visibility: hidden;
  opacity: 0;
}
.case-item-one .case-img {
  overflow: hidden;
}
.case-item-one .case-img .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 30px 30px 25px;
  z-index: 1;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-item-one .case-img .case-overlay {
    padding: 30px 25px 25px;
  }
}
.case-item-one .case-img .case-overlay:after, .case-item-one .case-img .case-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
.case-item-one .case-img .case-overlay:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(22, 37, 66, 0.85098)), to(rgba(33, 30, 59, 0)));
  background: linear-gradient(0deg, rgba(22, 37, 66, 0.85098) 0%, rgba(33, 30, 59, 0) 100%);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.case-item-one .case-img .case-overlay:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#162542), color-stop(60%, rgba(22, 37, 66, 0.55)), to(rgba(22, 37, 66, 0.10196)));
  background: linear-gradient(0deg, #162542 0%, rgba(22, 37, 66, 0.55) 60%, rgba(22, 37, 66, 0.10196) 100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.case-item-one .case-content span.tag, .case-item-one .case-content h3.title {
  color: #fff;
}
.case-item-one .case-content h3.title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.case-slider-one .slick-slide{
  margin: 0 10px;
}
.case-item-two:hover .case-img .case-overlay:before {
  visibility: visible;
  opacity: 1;
}
.case-item-two:hover .case-img .case-overlay:after {
  visibility: hidden;
  opacity: 0;
}
.case-item-two:hover .case-img .case-overlay .icon-btn {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.case-item-two .case-img {
  overflow: hidden;
}
.case-item-two .case-img .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 30px 25px;
  z-index: 1;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .case-item-two .case-img .case-overlay {
    padding: 30px 15px 25px;
  }
}
.case-item-two .case-img .case-overlay:after, .case-item-two .case-img .case-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
.case-item-two .case-img .case-overlay:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(22, 37, 66, 0.85098)), to(rgba(33, 30, 59, 0)));
  background: linear-gradient(0deg, rgba(22, 37, 66, 0.85098) 0%, rgba(33, 30, 59, 0) 100%);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.case-item-two .case-img .case-overlay:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#162542), color-stop(60%, rgba(22, 37, 66, 0.55)), to(rgba(22, 37, 66, 0.10196)));
  background: linear-gradient(0deg, #162542 0%, rgba(22, 37, 66, 0.55) 60%, rgba(22, 37, 66, 0.10196) 100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.case-item-two .case-img .case-overlay .icon-btn {
  text-align: right;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.case-item-two .case-img .case-overlay .icon-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #0080AF;
  color: #fff;
  margin-left: auto;
}
.case-item-two .case-img .case-overlay .case-content {
  text-align: center;
}
.case-item-two .case-img .case-overlay .case-content h3.title, .case-item-two .case-img .case-overlay .case-content span.tag {
  color: #fff;
}
.case-item-two .case-img .case-overlay .case-content h3.title {
  font-size: 24px;
  line-height: 35px;
}
.case-item-three {
  margin-bottom: 43px;
}
.case-item-three:hover .case-img .case-overlay {
  visibility: visible;
  opacity: 1;
}
.case-item-three:hover .case-img .case-overlay .icon-btn {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.case-item-three .case-img {
  overflow: hidden;
}
.case-item-three .case-img .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.65);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.case-item-three .case-img .case-overlay .icon-btn {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.case-item-three .case-img .case-overlay .icon-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #0080AF;
  color: #fff;
}
.case-item-three .case-content {
  padding-top: 25px;
}
.case-item-three .case-content h3.title {
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .case-item-three .case-content h3.title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .case-item-three .case-content h3.title {
    font-size: 20px;
    line-height: 30px;
  }
}
.case-details-wrapper .case-img {
  margin-bottom: 42px;
}
.case-details-wrapper .case-content h3.title {
  font-size: 35px;
  line-height: 45px;
  margin: 50px 0 30px;
}
@media (max-width: 767px) {
  .case-details-wrapper .case-content h3.title {
    font-size: 24px;
    line-height: 35px;
  }
}
.case-details-wrapper .case-content p {
  margin-bottom: 10px;
}
.case-details-wrapper .case-content .features-item-three .case-content p {
  margin-bottom: 0px;
}
.case-details-wrapper .case-content .content-img {
  margin-top: 30px;
  margin-bottom: 30px;
}
.case-details-wrapper .case-content ul.list li:before {
  display: inline-block;
  content: "";
  margin-right: 10px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #0080AF;
}


/*=========================
Features Three 
==========================*/

.features-item-three {
  padding: 40px 40px 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fdfdfd;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
	border-radius: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-item-three {
    padding: 40px 20px 30px;
  }
}
@media (max-width: 767px) {
  .features-item-three {
    padding: 40px 20px 30px;
  }
}
.features-item-three:hover:after {
  right: -5px;
  bottom: -5px;
}
.features-item-three:after {
  position: absolute;
  bottom: 0px;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0080AF;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
	border-radius: 14px;
}
.features-item-three .icon {
  margin-right: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-item-three .icon {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .features-item-three .icon {
    margin-right: 15px;
  }
}
.features-item-three .icon i {
  font-size: 60px;
  color: #0080AF;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-item-three .content h4 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .features-item-three .content h4 {
    font-size: 22px;
  }
}
.features-item-three .content p {
  margin-bottom: 0px;
}


/*=========================
 Team css 
==========================*/
.team-item-one:hover .team-img .team-overlay {
  opacity: 1;
  visibility: visible;
}
.team-item-one:hover .team-img .team-overlay .team-social ul.social-link {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.team-item-one:hover .team-content {
  margin-top: -70px;
}
.team-item-one .team-img {
  position: relative;
  overflow: hidden;
}
.team-item-one .team-img img {
  width: 100%;
}
.team-item-one .team-img .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.team-item-one .team-img .team-overlay .team-social ul.social-link {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.37s ease-out 0s;
  transition: all 0.37s ease-out 0s;
}
.team-item-one .team-img .team-overlay .team-social ul.social-link li {
  margin-left: 2.5px;
  margin-right: 2.5px;
}
.team-item-one .team-img .team-overlay .team-social ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  background-color: #0080AF;
  color: #fff;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.team-item-one .team-img .team-overlay .team-social ul.social-link li a:hover {
  color: #0080AF;
  background: #fff;
}
.team-item-one .team-content {
  position: relative;
  padding: 25px 30px;
  background-color: #fff;
  border-bottom: 4px solid #0080AF;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
  margin: auto;
  width: 90%;
  text-align: center;
  margin-top: -50px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item-one .team-content {
    padding: 25px 10px;
  }
}
.team-item-one .team-content h3.title {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 3px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item-one .team-content h3.title {
    font-size: 18px;
    line-height: 30px;
  }
}
.team-item-one .team-content span.position {
  font-size: 17px;
  font-weight: 500;
  color: #666666;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item-one .team-content span.position {
    font-size: 15px;
    line-height: 26px;
  }
}
.team-item-one .team-content ul.social-link {
  margin-top: 15px;
}
.team-item-one .team-content ul.social-link li {
  margin-right: 5px;
}
.team-item-one .team-content ul.social-link li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #293750;
  color: #6f7e9c;
  font-size: 14px;
}
.team-item-one .team-content ul.social-link li a:hover {
  background-color: #0080AF;
  color: #fff;
}

.team-bg-wrapper {
  position: relative;
  z-index: 1;
}
.team-bg-wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.9);
  z-index: -1;
}

.team-margin-wrapper {
  margin-left: 18.6%;
}

.team-content-box-white p {
  color: #fff;
  margin-bottom: 30px;
}
.team-content-box-white .main-btn.filled-btn {
  border-color: rgba(182, 141, 90, 0.1);
  color: #fff;
}
.team-content-box-white .main-btn.filled-btn:hover {
  color: #0080AF;
  border-color: transparent;
}
.team-content-box-white .main-btn.filled-btn:hover:before {
  background-color: #fff;
}

.team-details-section .team-img {
  padding-right: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-section .team-img {
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .team-details-section .team-img {
    padding-right: 0px;
  }
}
.team-details-section .team-content {
  padding-right: 170px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-section .team-content {
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .team-details-section .team-content {
    padding-right: 0px;
  }
}
.team-details-section .team-content h3.title {
  font-size: 35px;
}
.team-details-section .team-content span.position {
  display: block;
  margin-bottom: 17px;
  font-size: 18px;
  font-weight: 600;
}
.team-details-section .team-content p {
  margin-bottom: 30px;
}
.team-details-section .team-content .social-link {
  text-align: right;
}
@media (max-width: 767px) {
  .team-details-section .team-content .social-link {
    text-align: left;
    margin-top: 20px;
  }
}
.team-details-section .team-content .social-link li {
  margin-left: 5px;
  margin-bottom: 10px;
}
.team-details-section .team-content .social-link li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6f7e9c;
  font-size: 14px;
  background-color: rgba(41, 55, 80, 0.1);
}
.team-details-section .team-content .social-link li a:hover {
  color: #fff;
}


/*=========================
Testimonial css 
==========================*/
.testimonial-img{
  background: #0080AF;
  padding-right: 15px;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
.testimonial-img img{
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
.wt-title-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wt-title-thumb .wt-thumb {
  min-width: 65px;
  max-width: 65px;
  height: 65px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}

.wt-title-thumb .wt-thumb img{
  border-radius: 50%;
}

.wt-title-thumb .wt-title span.position {
  font-weight: 500;
  font-size: 17px;
}

.testimonial-wrapper-one .testimonial-item .wt-content {
  margin-bottom: 20px;
}
.testimonial-wrapper-one .testimonial-item .wt-content h3 {
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 10px;
}

.testimonial-wrapper-one .testimonial-item .wt-content h4 {
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 10px;
}

.testimonial-wrapper-one .testimonial-slider-one {
  position: relative;
  padding-left: 40px;
}
.testimonial-wrapper-one .testimonial-slider-one:after {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  content: "\f10c";
  font-family: flaticon !important;
  font-size: 360px;
  color: rgba(22, 37, 66, 0.05);
}
.testimonial-wrapper-one .testimonial-slider-one .slick-dots {
  margin-top: 60px;
}
.testimonial-wrapper-one .testimonial-slider-one .slick-dots li {
  width: 15px;
  height: 15px;
  border: 3px solid rgba(22, 37, 66, 0.2);
  border-radius: 50%;
  margin-right: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.testimonial-wrapper-one .testimonial-slider-one .slick-dots li.slick-active {
  border-color: #0080AF;
}

.testimonial-wraper-two {
  position: relative;
}
.testimonial-wraper-two .testimonial-slider-two {
  position: relative;
  padding: 50px 60px;
  background-color: #F7FFFC;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
	border-radius: 12px;
}
@media (max-width: 767px) {
  .testimonial-wraper-two .testimonial-slider-two {
    padding: 50px 30px;
  }
}
.testimonial-wraper-two .testimonial-item {
  position: relative;
  z-index: 1;
}
.testimonial-wraper-two .testimonial-item:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "\f10e";
  font-family: "Font Awesome 5 Pro";
  font-size: 250px;
  color: rgba(22, 37, 66, 0.05);
}
.testimonial-wraper-two .testimonial-item .wt-content {
  text-align: center;
}
.testimonial-wraper-two .testimonial-item .wt-content h3 {
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 25px;
}
.testimonial-wraper-two .testimonial-item .wt-content h4 {
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 25px;
}
.testimonial-wraper-two .testimonial-item .wt-title-thumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonial-wraper-two .testimonial-item .wt-title-thumb .wt-thumb img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-dots-images {
  width: 100%;
}
.testimonial-dots-images .slick-dots li {
  position: absolute;
}
.testimonial-dots-images .slick-dots li img {
  width: 65px;
  height: 65px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(22, 37, 66, 0.3);
          box-shadow: 0px 10px 30px 0px rgba(22, 37, 66, 0.3);
}
.testimonial-dots-images .slick-dots li:nth-child(1) {
  top: 0;
  left: 0;
}
.testimonial-dots-images .slick-dots li:nth-child(2) {
  top: 0;
  right: 0;
}
.testimonial-dots-images .slick-dots li:nth-child(3) {
  bottom: 0;
  left: 0;
}

.testimonial-dots-images .slick-dots li:nth-child(4) {
  bottom: 0;
  right: 0;
}
.testimonial-dots-images .slick-dots li img {
  width: 100%;
  border-radius: 50%;
}

.bottom-border {
  border-bottom: 1px solid rgba(22, 37, 66, 0.1);
}

.testimonial-bg-map {
  position: relative;
  z-index: 1;
}
.testimonial-bg-map:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #eff0f2;
}
.testimonial-bg-map:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(https://themes.themewild.com/lawrex/assets/img/service/map-1.png) no-repeat center;
  background-size: cover;
  z-index: -1;
}


/*=========================
news css 
==========================*/
.post-thumbnail img {
  width: 100%;
	border-radius: 12px 12px 0 0;
}

.post-meta ul li {
  display: inline-block;
}
.post-meta ul li span i {
  margin-right: 10px;
}

.btn-link {
  font-size: 15px;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
}
.btn-link:hover {
  text-decoration: none;
}

.arrow-btn {
  position: relative;
}
.arrow-btn:after {
  display: inline-block;
  content: "";
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.news-post-item-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .news-post-item-one {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-post-item-one .post-thumbnail {
  min-width: 235px;
  height: 215px;
  max-width: 235px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .news-post-item-one .post-thumbnail {
    margin-bottom: 30px;
  }
}
.news-post-item-one .post-thumbnail img {
  height: 100%;
}
.news-post-item-one .entry-content .post-meta ul li {
  margin-right: 25px;
  margin-bottom: 10px;
}
.news-post-item-one .entry-content h3.title {
  margin-bottom: 15px;
}
.news-post-item-two .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.news-post-item-two .post-thumbnail .post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 40px;
  background: -webkit-linear-gradient(90deg, #162542 0%, rgba(29, 32, 61, 0.5) 68%, rgba(33, 30, 59, 0) 100%);
  background: inear-gradient(90deg, #162542 0%, rgba(29, 32, 61, 0.5) 68%, rgba(33, 30, 59, 0) 100%);
}
.news-post-item-two .entry-content h3.title, .news-post-item-two .entry-content .btn-link, .news-post-item-two .entry-content .post-meta ul li span {
  color: #fff;
}
.news-post-item-two .entry-content .post-meta {
  margin-bottom: 10px;
}
.news-post-item-two .entry-content .post-meta ul li {
  margin-right: 10px;
}
.news-post-item-two .entry-content h3.title {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.news-post-item-three .entry-content {
  position: relative;
  padding: 40px 35px 35px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
	border-radius: 0 0 12px 12px;
}
.news-post-item-three .entry-content .post-meta ul li {
  margin-right: 20px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .news-post-item-three .entry-content .post-meta ul li {
    font-size: 15px;
    margin-right: 7px;
  }
}
@media (max-width: 991px) {
  .news-post-item-three .entry-content .post-meta ul li {
    margin-right: 10px;
  }
}
.news-post-item-three .entry-content h3.title {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .news-post-item-three .entry-content h3.title {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media (max-width: 991px) {
  .news-post-item-three .entry-content h3.title {
    font-size: 20px;
    line-height: 1.3;
  }
}
.news-post-item-three .entry-content .cat-btn {
  position: absolute;
  top: -20px;
  right: 20px;
  background-color: #0080AF;
  color: #fff;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(182, 140, 90, 0.66);
          box-shadow: 0px 10px 30px 0px rgba(182, 140, 90, 0.66);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 20px;
  line-height: 20px;
}

.news-post-item-five .post-thumbnail {
  position: relative;
}
.news-post-item-five .post-thumbnail .arrow {
  position: absolute;
  bottom: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news-post-item-five .post-thumbnail .arrow i {
  font-size: 18px;
  color: #162542;
}
.news-post-item-five .entry-content {
  padding: 35px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.06);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.06);
	border-radius: 12px;
}
.news-post-item-five .entry-content h3.title {
  font-size: 21px;
  line-height: 34px;
  margin-bottom: 25px;
}
.news-post-item-five .entry-content .post-admin {
  margin-bottom: 15px;
}
.news-post-item-five .entry-content .post-admin span {
  font-size: 17px;
  font-weight: 500;
}
.news-post-item-five .entry-content .post-admin span img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.news-post-item-five .entry-content .post-meta {
  padding-top: 15px;
  border-top: 1px solid #efefef;
}
.news-post-item-five .entry-content .post-meta ul li {
  margin-right: 22px;
}
@media (max-width: 767px) {
  .news-post-item-five .entry-content .post-meta ul li {
    margin-right: 10px;
  }
}
.news-post-item-five .entry-content .post-meta ul li:last-child {
  margin-right: 0px;
}
.news-post-item-five .entry-content .post-meta ul li span {
  font-size: 15px;
  font-weight: 500;
}

.news-post-item-six .post-thumbnail {
  position: relative;
}
.news-post-item-six .post-thumbnail .arrow {
  position: absolute;
  bottom: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news-post-item-six .post-thumbnail .arrow i {
  font-size: 18px;
  color: #162542;
}
.news-post-item-six .post-thumbnail .play-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.news-post-item-six .post-thumbnail .play-content .video-popup {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0080AF;
}
.news-post-item-six .entry-content {
  padding: 35px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.06);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.06);
}
.news-post-item-six .entry-content h3.title {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .news-post-item-six .entry-content h3.title {
    font-size: 22px;
    line-height: 35px;
  }
}
.news-post-item-six .entry-content p {
  margin-bottom: 25px;
}
.news-post-item-six .entry-content .post-admin {
  margin-bottom: 15px;
}
.news-post-item-six .entry-content .post-admin span {
  font-size: 17px;
  font-weight: 500;
}
.news-post-item-six .entry-content .post-admin span img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.news-post-item-six .entry-content .post-meta {
  padding-top: 15px;
  border-top: 1px solid #efefef;
}
.news-post-item-six .entry-content .post-meta ul li {
  margin-right: 22px;
}
@media (max-width: 767px) {
  .news-post-item-six .entry-content .post-meta ul li {
    margin-right: 10px;
  }
}
.news-post-item-six .entry-content .post-meta ul li:last-child {
  margin-right: 0px;
  float: right;
}
.news-post-item-six .entry-content .post-meta ul li span {
  font-size: 15px;
  font-weight: 500;
}
.news-post-item-six.news-post-bg .entry-content {
  position: relative;
  z-index: 1;
}
.news-post-item-six.news-post-bg .entry-content:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 37, 66, 0.9);
  z-index: -1;
}
.news-post-item-six.news-post-bg .entry-content h3.title {
  color: #fff;
  margin-bottom: 30px;
}
.news-post-item-six.news-post-bg .entry-content .post-admin {
  margin-bottom: 30px;
}
.news-post-item-six.news-post-bg .entry-content .post-admin span {
  color: #fff;
}
.news-post-item-six.news-post-bg .entry-content .post-meta {
  border-color: rgba(255, 255, 255, 0.15);
}
.news-post-item-six.news-post-bg .entry-content .post-meta ul li span {
  color: #fff;
}
.news-details-container {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.06);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.06);
	background: #fdfdfd;
}
.news-details-container .news-post-item .entry-content, .news-details-container .post-author-box, .news-details-container .post-nav-area, .news-details-container .comments-area, .news-details-container .comments-respond {
  margin: 0 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .news-details-container .news-post-item .entry-content, .news-details-container .post-author-box, .news-details-container .post-nav-area, .news-details-container .comments-area, .news-details-container .comments-respond {
    margin: 0 20px;
  }
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .entry-content, .news-details-container .post-author-box, .news-details-container .post-nav-area, .news-details-container .comments-area, .news-details-container .comments-respond {
    margin: 0 15px;
  }
}
.news-details-container .news-post-item .entry-content {
  padding-top: 60px;
}
.news-details-container .news-post-item .entry-content .post-meta ul li {
  margin-right: 33px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .news-details-container .news-post-item .entry-content .post-meta ul li {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .entry-content .post-meta ul li {
    margin-right: 10px;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .news-details-container .news-post-item .entry-content .post-meta ul li {
    margin-right: 15px;
    margin-bottom: 10px;
  }
}
.news-details-container .news-post-item .entry-content .post-meta ul li span img {
  margin-right: 10px;
  border-radius: 50%;
}
.news-details-container .news-post-item .entry-content h3.title {
  margin-bottom: 20px;
  font-size: 23px;
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .entry-content h3.title {
    font-size: 22px;
    line-height: 32px;
  }
}
.news-details-container .news-post-item .entry-content p {
  margin-bottom: 33px;
}
.news-details-container .news-post-item .entry-content blockquote {
  position: relative;
  background-color: #f4f4f4;
  padding: 40px 50px;
  border-radius: 7px;
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .entry-content blockquote {
    padding: 40px 15px;
  }
}
.news-details-container .news-post-item .entry-content blockquote::before {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
  content: "";
  width: 4px;
  height: 100%;
  background-color: #0080AF;
}
.news-details-container .news-post-item .entry-content blockquote h4 {
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .entry-content blockquote h4 {
    font-size: 22px;
  }
}
.news-details-container .news-post-item .entry-content blockquote h5 {
  font-size: 18px;
}
.news-details-container .news-post-item .entry-content blockquote h5:before {
  display: inline-block;
  content: "";
  margin-right: 20px;
  width: 50px;
  height: 3px;
  background-color: #162542;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .post-share-tag .post-tag-cloud {
    text-align: center;
  }
}
.news-details-container .news-post-item .post-share-tag .post-tag-cloud ul li {
  display: inline-block;
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .post-share-tag .post-tag-cloud ul li {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}
.news-details-container .news-post-item .post-share-tag .post-tag-cloud ul li a {
  padding: 5px 15px;
  background-color: #f4f4f4;
  color: #162542;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  margin-right: 5px;
}
.news-details-container .news-post-item .post-share-tag .post-tag-cloud ul li a:hover {
  color: #fff;
}
.news-details-container .news-post-item .post-share-tag .social-share {
  float: right;
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .post-share-tag .social-share {
    float: none;
    margin-top: 10px;
    text-align: center;
  }
}
.news-details-container .news-post-item .post-share-tag .social-share ul.social-link li a {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .news-details-container .news-post-item .post-share-tag .social-share ul.social-link li a {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.news-details-container .news-post-item .post-share-tag .item-heading {
  font-family: "Montserrat", serif;
  font-size: 18px;
  color: #162542;
  margin-right: 15px;
  font-weight: 700;
}
.news-details-container .post-author-box {
  background-color: #f4f4f4;
  padding: 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .news-details-container .post-author-box {
    padding: 40px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-details-container .post-author-box .author-thumb {
  min-width: 160px;
  max-width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 35px;
}
@media (max-width: 767px) {
  .news-details-container .post-author-box .author-thumb {
    margin-bottom: 35px;
  }
}
.news-details-container .post-author-box .author-thumb img {
  width: 100%;
  border-radius: 50%;
}
.news-details-container .post-author-box .author-content h4 {
  margin-bottom: 5px;
}
.news-details-container .post-author-box .author-content p {
  margin-bottom: 10px;
}
.news-details-container .post-author-box .author-content ul.social-link li {
  margin-right: 15px;
}
.news-details-container .post-nav-area {
  padding-top: 60px;
  padding-bottom: 40px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.news-details-container .post-nav-area .post-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.news-details-container .post-nav-area .post-nav .thumb {
  min-width: 70px;
  max-width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-details-container .post-nav-area .post-nav .content {
  margin-top: -4px;
}
.news-details-container .post-nav-area .post-nav .content h6 {
  font-size: 18px;
}
.news-details-container .post-nav-area .post-nav .content span.post-date {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
}
.news-details-container .post-nav-area .post-nav.prev-post .thumb {
  margin-right: 20px;
}
.news-details-container .post-nav-area .post-nav.prev-post .content span.post-date i {
  margin-right: 5px;
}
.news-details-container .post-nav-area .post-nav.next-post {
  direction: rtl;
  text-align: right;
}
.news-details-container .post-nav-area .post-nav.next-post .thumb {
  margin-left: 20px;
}
.news-details-container .post-nav-area .post-nav.next-post .content span.post-date i {
  margin-left: 5px;
}
.news-details-container .comments-area {
  padding-top: 50px;
  margin-bottom: 50px;
}
.news-details-container .comments-area .comments-list {
  padding-bottom: 45px;
  border-bottom: 1px solid #efefef;
}
.news-details-container .comments-area .comments-list .comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .news-details-container .comments-area .comments-list .comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-details-container .comments-area .comments-list .comment:last-child {
  margin-bottom: 0px;
}
.news-details-container .comments-area .comments-list .comment:nth-child(even) {
  margin-left: 60px;
}
.news-details-container .comments-area .comments-list .comment .comment-avatar {
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 30px;
}
.news-details-container .comments-area .comments-list .comment .comment-avatar img{
  border-radius: 50%;
}
@media (max-width: 767px) {
  .news-details-container .comments-area .comments-list .comment .comment-avatar {
    margin-bottom: 30px;
  }
}
.news-details-container .comments-area .comments-list .comment .comment-wrap .comment-author-content span.author-name {
  font-family: "Montserrat", serif;
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #162542;
}
.news-details-container .comments-area .comments-list .comment .comment-wrap .comment-author-content span.author-name span.date {
  float: right;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}
.news-details-container .comments-area .comments-list .comment .comment-wrap .comment-author-content .reply {
  font-size: 14px;
  font-weight: 700;
  color: #162542;
  text-transform: uppercase;
}
.news-details-container .comments-area .comments-list .comment .comment-wrap .comment-author-content .reply:after {
  display: inline-block;
  content: "";
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  vertical-align: middle;
  margin-left: 10px;
}
.news-details-container .comments-respond {
  padding-bottom: 60px;
}
.news-details-container .comments-respond form .form_control {
  background-color: #f4f4f4;
  margin-bottom: 35px;
  font-size: 18px;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.news-details-container .comments-respond form .form_control:focus {
  border-color: #0080AF;
  background-color: transparent;
}
.news-details-container .comments-respond form .form_control::-webkit-input-placeholder {
  color: #162542;
}
.news-details-container .comments-respond form .form_control::-moz-placeholder {
  color: #162542;
}
.news-details-container .comments-respond form .form_control:-ms-input-placeholder {
  color: #162542;
}
.news-details-container .comments-respond form .form_control::-ms-input-placeholder {
  color: #162542;
}
.news-details-container .comments-respond form .form_control::placeholder {
  color: #162542;
}
.news-details-container .comments-respond form textarea.form_control {
  height: 140px;
}
.news-details-container .comments-respond form .nice-select {
  color: #162542;
  font-weight: 600;
  font-size: 18px;
  background-color: #f4f4f4;
  border-radius: 0px;
  height: 55px;
  line-height: 55px;
  border: 2px solid transparent;
}

/*=========================
Sidebar css 
==========================*/

.sidebar-widget-area .widget{
  padding: 30px;
  -webkit-box-shadow: 0px 10px 60px 0px rgb(22 37 66 / 6%);
  box-shadow: 0px 10px 60px 0px rgb(22 37 66 / 6%);
	background: #fdfdfd;
}
.sidebar-widget-area .widget h4.widget-title {
  padding-bottom: 19px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
}
.sidebar-widget-area .widget.search-widget form .form_control {
  height: 60px;
  padding: 0 70px 0 20px;
  border: 1px solid  #efefef;
}
.sidebar-widget-area .widget.search-widget form .form_control::-webkit-input-placeholder {
  font-weight: 500;
}
.sidebar-widget-area .widget.search-widget form .form_control::-moz-placeholder {
  font-weight: 500;
}
.sidebar-widget-area .widget.search-widget form .form_control:-ms-input-placeholder {
  font-weight: 500;
}
.sidebar-widget-area .widget.search-widget form .form_control::-ms-input-placeholder {
  font-weight: 500;
}
.sidebar-widget-area .widget.search-widget form .form_control::placeholder {
  font-weight: 500;
}
.sidebar-widget-area .widget.search-widget form .search-btn {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 15px;
  width: 45px;
  height: 45px;
  background-color: #0080AF;
  color: #fff;
}
.sidebar-widget-area .widget.categories-widget .widget-link li {
  margin-bottom: 13px;
}
.sidebar-widget-area .widget.categories-widget .widget-link li:last-child {
  margin-bottom: 0px;
}
.sidebar-widget-area .widget.categories-widget .widget-link li a {
  display: block;
}
.sidebar-widget-area .widget.categories-widget .widget-link li a:hover {
  color: #0080AF;
}
.sidebar-widget-area .widget.categories-widget .widget-link li a span {
  float: right;
  color: #0080AF;
}
.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content:last-child {
  margin-bottom: 0px;
}
.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content img {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date .posted-on {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  line-height: 25px;
}
.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date .posted-on i {
  margin-right: 10px;
}
.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6 {
  line-height: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #666666;
}
.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6:hover {
  color: #162542;
}
@media (max-width: 400px) {
  .sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6 {
    font-size: 14px;
  }
}
.sidebar-widget-area .widget.tag-cloud-widget a {
  padding: 8px 15px;
  background-color: #f4f4f4;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 10px;
  margin-right: 5px;
  text-transform: uppercase;
  color: #162542;
}
.sidebar-widget-area .widget.tag-cloud-widget a:hover {
  color: #fff;
}
.sidebar-widget-area .widget.practice-nav-widget {
  padding: 50px 40px 40px;
  background-color: rgba(22, 37, 66, 0.07);
	border-radius: 12px;
}

@media (max-width: 460px) {
 .sidebar-widget-area .widget.practice-nav-widget {
    padding: 50px 20px 40px;
 }
}

.sidebar-widget-area .widget.practice-nav-widget h4.widget-title {
  margin-bottom: 10px;
}
.sidebar-widget-area .widget.practice-nav-widget .widget-nav ul li {
  margin-bottom: 12px;
}
.sidebar-widget-area .widget.practice-nav-widget .widget-nav ul li:last-child {
  margin-bottom: 0px;
}
.sidebar-widget-area .widget.practice-nav-widget .widget-nav ul li a {
  display: block;
  font-size: 18px;
  color: #162542;
  padding: 7px 20px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-widget-area .widget.practice-nav-widget .widget-nav ul li a.active, .sidebar-widget-area .widget.practice-nav-widget .widget-nav ul li a:hover {
  background-color: #fff;
  border-left: 4px solid #0080AF;
	border-radius: 6px;
}
.sidebar-widget-area .widget.banner-widget {
  padding: 60px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-widget-area .widget.banner-widget {
    padding: 60px 20px;
  }
}
@media (max-width: 767px) {
  .sidebar-widget-area .widget.banner-widget {
    padding: 60px 20px;
  }
}
.sidebar-widget-area .widget.banner-widget:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(22, 37, 66, 0.7);
}
.sidebar-widget-area .widget.banner-widget .banner-content span.span {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 600;
}
.sidebar-widget-area .widget.banner-widget .banner-content h3 {
  color: #fff;
  margin-bottom: 30px;
}
.sidebar-widget-area .widget.user-widget {
  padding: 50px 40px 40px;
  background-color: rgba(22, 37, 66, 0.07);
}
.sidebar-widget-area .widget.user-widget .user-content .thumb {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.sidebar-widget-area .widget.user-widget .user-content .thumb img {
  width: 100%;
  border-radius: 50%;
}
.sidebar-widget-area .widget.user-widget .user-content p {
  margin-bottom: 7px;
}
.sidebar-widget-area .widget.user-widget .user-content span.position {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.sidebar-widget-area .widget.user-widget .user-content ul.social-link li {
  margin-left: 5px;
  margin-right: 5px;
}
.sidebar-widget-area .widget.user-widget .user-content ul.social-link li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(41, 55, 80, 0.1);
  color: #6f7e9c;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-widget-area .widget.user-widget .user-content ul.social-link li a:hover {
  background-color: #0080AF;
  color: #fff;
}


/*=========================
Contact css 
==========================*/
.contact-wrapper-one {
  position: relative;
  background-color: #fdfdfd;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
  padding: 90px 60px 60px;
	border-radius: 12px;
}
@media (max-width: 767px) {
  .contact-wrapper-one {
    padding: 90px 30px 60px;
  }
}
.contact-wrapper-one .contact-form .form_control {
  background-color: rgba(22, 37, 66, 0.05);
  height: 60px;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 700;
	font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
	border-radius: 6px;
}
.contact-wrapper-one .contact-form .form_control::-webkit-input-placeholder {
  color: #162542;
}
.contact-wrapper-one .contact-form .form_control::-moz-placeholder {
  color: #162542;
}
.contact-wrapper-one .contact-form .form_control:-ms-input-placeholder {
  color: #162542;
}
.contact-wrapper-one .contact-form .form_control::-ms-input-placeholder {
  color: #162542;
}
.contact-wrapper-one .contact-form .form_control::placeholder {
  color: #7b8089;
	font-weight: 400;
}
.contact-wrapper-one .contact-form textarea.form_control {
  padding-top: 15px;
}
.contact-wrapper-one .contact-form .nice-select {
  background-color: rgba(22, 37, 66, 0.05);
  height: 65px;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 700;
  color: #162542;
  font-family: "Montserrat", serif;
  line-height: 65px;
  border-radius: 0px;
  border: none;
  margin-bottom: 30px;
}
.contact-wrapper-one .contact-form .nice-select:after {
  right: 30px;
  font-size: 18px;
}
.contact-wrapper-one .contact-form .nice-select .list{
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
  box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
}
.contact-wrapper-one .nice-select .option:hover,
.nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #0080AF;
}
.contact-wrapper-one .contact-form .main-btn {
  padding: 15px 45px;
  width: 100%;
  text-align: center;
}

.contact-wrapper-two {
  position: relative;
  z-index: 2;
  margin-left: 70px;
  padding: 48px 40px 25px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.07);
  /*margin-bottom: -70px;*/
	border-radius: 12px;
}
@media (max-width: 460px) {
	.contact-wrapper-two {
  padding: 48px 20px 25px;
	}
}
@media (max-width: 991px) {
  .contact-wrapper-two {
    margin-left: 0px;
    margin-bottom: 0px;
  }
}
.contact-wrapper-two .section-title h2 {
  margin-bottom: 10px;
}
.contact-wrapper-two .contact-form .form-group{
  margin-bottom: 20px;
}
.contact-wrapper-two .contact-form .form_control {
  background-color: rgba(22, 37, 66, 0.05);
  height: 65px;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Montserrat", serif;
}
.contact-wrapper-two .contact-form .form_control::-webkit-input-placeholder {
  color: #162542;
}
.contact-wrapper-two .contact-form .form_control::-moz-placeholder {
  color: #162542;
}
.contact-wrapper-two .contact-form .form_control:-ms-input-placeholder {
  color: #162542;
}
.contact-wrapper-two .contact-form .form_control::-ms-input-placeholder {
  color: #162542;
}
.contact-wrapper-two .contact-form .form_control::placeholder {
  color: #162542;
}
.contact-wrapper-two .contact-form textarea.form_control {
  padding-top: 15px;
  height: 150px;
}
.contact-wrapper-two .contact-form .nice-select {
  background-color: rgba(22, 37, 66, 0.05);
  height: 65px;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 700;
  color: #162542;
  font-family: "Montserrat", serif;
  line-height: 65px;
  border-radius: 0px;
  border: none;
}
.contact-wrapper-two .contact-form .nice-select:after {
  right: 30px;
}
.contact-wrapper-two .contact-form .nice-select .list{
  border: none;
  border-radius: 0px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}
.contact-wrapper-two .contact-form .main-btn {
  width: 100%;
  text-align: center;
}

.contact-wrapper-three {
  padding: 70px 70px 80px;
  background-color: rgba(182, 140, 90, 0.07);
}
@media (max-width: 767px) {
  .contact-wrapper-three {
    padding: 70px 30px 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-wrapper-three .section-title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
.contact-wrapper-three .contact-form form .form_control {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  height: 65px;
}
.contact-wrapper-three .contact-form form .form_control::-webkit-input-placeholder {
  color: #162542;
}
.contact-wrapper-three .contact-form form .form_control::-moz-placeholder {
  color: #162542;
}
.contact-wrapper-three .contact-form form .form_control:-ms-input-placeholder {
  color: #162542;
}
.contact-wrapper-three .contact-form form .form_control::-ms-input-placeholder {
  color: #162542;
}
.contact-wrapper-three .contact-form form .form_control::placeholder {
  color: #162542;
}
.contact-wrapper-three .contact-form form textarea.form_control {
  height: 150px;
}

.office-info {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .office-info {
    padding-bottom: 0px;
  }
}
.office-info .col .office-info-item {
	margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}
.office-info .office-info-item {
  text-align: center;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px;
	border-radius: 12px;
	background-color: #fdfdfd;
}
.office-info .office-info-item .office-info-icon {
  width: 85px;
  height: 85px;
  background: #0080AF;
  line-height: 100px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}
.office-info .office-info-item .office-info-icon .icon i {
  font-size: 35px;
  color: #fff;
}
.office-info .office-info-item .office-info-text h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 20px 0;
}
.office-info .office-info-item .office-info-text p {
  margin-bottom: 0;
}

.map-area .map-box iframe {
  display: inherit;
  width: 100%;
  height: 747px;
  border: none;
}



/* =======================
login
========================= */
.login-wrapper{
	background-color: #fff;
  border-top: 4px solid #0080AF;
	padding: 30px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.login-header{
	margin-bottom: 20px;
}
.login-form .form-group{
	margin-bottom: 20px;
}
.login-form .form-control{
	border-radius: 0px;
	height: 45px;
	box-shadow: none;
	transition: .5s;
}
.login-form .form-control:focus{
	border-color: #0080AF;
}
.login-form .login-btn{
	margin-top: 20px;
	border: none;
	padding: 8px 30px;
	background: #0080AF;
	color: #fff;
	transition: .5s;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 7%);
}
.login-form .login-btn:hover{
	background: #192847;
}
.login-form .login-bottom{
	margin-top: 20px;
}
.login-form .login-bottom a{
	color: #0080AF;
	transition: .5s;
}
.login-form .login-bottom a:hover{
	color: #192847;
}
.login-form .forgot-pass{
	color: #0080AF;
	transition: .5s;
}
.login-form .forgot-pass:hover{
	color: #192847;
}
.login-form .form-check-input{
	box-shadow: none;
  margin-top: 7px;
}
.login-form .form-check-input:focus{
	border-color: #0080AF;
}
.login-form .form-check-input:checked {
    background-color: #0080AF;
    border-color: #0080AF;
}
@media (max-width: 991.98px) {
	.login-wrapper{
		padding: 20px;
	}
}


/*=========================
error
==========================*/
.error-content{
  text-align: center;
  padding: 10px;
}
.error-content h1{
  font-size: 160px;
  margin-bottom: 40px;
}
.error-content span{
  color: #0080AF;
}
.error-content .main-btn{
  margin-top: 40px;
}
.error-content .main-btn i{
  color: #fff;
  margin-right: 7px;
}

/*=========================
   Footer css 
==========================*/
.footer-wrapper-one {
  position: relative;
  z-index: 1;
}
.footer-wrapper-one:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(22, 37, 66, 0.96);
}
.footer-wrapper-one .footer-widget .widget h4.widget-title {
  margin-bottom: 35px;
}
.footer-wrapper-one .footer-widget .widget h4.widget-title, .footer-wrapper-one .footer-widget .widget h4 {
  color: #fff;
}
.footer-wrapper-one .footer-widget .widget p {
  color: #aab5cc;
}
.footer-wrapper-one .footer-widget .widget.about-widget .footer-logo {
  margin-bottom: 25px;
  width: 240px;
}
.footer-wrapper-one .footer-widget .widget.about-widget p {
  margin-bottom: 30px;
}
.footer-wrapper-one .footer-widget .widget.about-widget .share h4 {
  margin-bottom: 15px;
}
.footer-wrapper-one .footer-widget .widget.about-widget .share ul.social-link li {
  margin-right: 5px;
}
.footer-wrapper-one .footer-widget .widget.about-widget .share ul.social-link li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #293750;
  color: #6f7e9c;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.footer-wrapper-one .footer-widget .widget.about-widget .share ul.social-link li a:hover {
  color: #fff;
}
.footer-wrapper-one .footer-widget .widget.footer-nav-widget ul.widget-link li {
  padding-bottom: 15px;
}
.footer-wrapper-one .footer-widget .widget.footer-nav-widget ul.widget-link li:last-child {
  padding-bottom: 0px;
}
.footer-wrapper-one .footer-widget .widget.footer-nav-widget ul.widget-link li a {
  position: relative;
  font-size: 17px;
  color: #6f7e9c;
}
.footer-wrapper-one .footer-widget .widget.footer-nav-widget ul.widget-link li a:before {
  display: inline-block;
  margin-right: 17px;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background-color: #495978;
  vertical-align: middle;
}
.footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
}
.footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content:last-child {
  margin-bottom: 0px;
}
.footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content img {
  min-width: 75px;
  max-width: 75px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
.footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content .post-title-date {
  margin-top: -3px;
}
.footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content .post-title-date .posted-on {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #7583a0;
}
.footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content .post-title-date .posted-on i {
  margin-right: 10px;
}
.footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content .post-title-date h6 {
  line-height: 25px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content .post-title-date h6 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content .post-title-date h6 {
    font-size: 15px;
  }
  .footer-wrapper-one .footer-widget .widget.about-widget .share ul.social-link li {
    margin-right: 2px;
  }
  .footer-wrapper-one .footer-widget .widget.about-widget .footer-logo {
    width: 200px;
}
}
.footer-wrapper-one .footer-widget .widget.recent-post-widget .post-widget-list .post-thumbnail-content .post-title-date h6:hover {
  color: #0080AF;
}
.footer-wrapper-one .footer-widget .widget.contact-info-widget .info-widget-content p {
  position: relative;
  line-height: 17px;
  padding-left: 30px;
  margin-bottom: 25px;
}
.footer-wrapper-one .footer-widget .widget.contact-info-widget .info-widget-content p:hover a {
  color: #0080AF;
}
.footer-wrapper-one .footer-widget .widget.contact-info-widget .info-widget-content p i {
  position: absolute;
  top: 0;
  left: 0;
  color: #0080AF;
}
.footer-wrapper-one .footer-widget .widget.contact-info-widget .info-widget-content h4 {
  margin-bottom: 15px;
}
.footer-wrapper-one .footer-widget .widget.contact-info-widget .info-widget-content h5 {
  color: #0080AF;
}
.footer-wrapper-one .footer-copyright {
  background-color: #1b2b4b;
  padding: 20px 0 25px;
}
.footer-wrapper-one .footer-copyright .copyright-text p {
  color: #909fba;
}
.footer-wrapper-one .footer-copyright .copyright-text p a {
  color: #0080AF;
}

.footer-newsletter {
  padding-top: 73px;
  padding-bottom: 47px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-newsletter .newsletter-form .form_control {
  width: 100%;
  height: 55px;
  background-color: #fff;
  font-weight: 700;
  border-radius: 50px;
  color: #162542;
}
.footer-newsletter .newsletter-form .form_control::-webkit-input-placeholder {
  color: #162542;
}
.footer-newsletter .newsletter-form .form_control::-moz-placeholder {
  color: #162542;
}
.footer-newsletter .newsletter-form .form_control:-ms-input-placeholder {
  color: #162542;
}
.footer-newsletter .newsletter-form .form_control::-ms-input-placeholder {
  color: #162542;
}
.footer-newsletter .newsletter-form .form_control::placeholder {
  color: #162542;
}
.footer-newsletter .newsletter-form .main-btn {
  padding: 14px 38px;
  line-height: 27px;
  border-radius: 50px;
}
.footer-newsletter .newsletter-form .main-btn:hover {
  color: #162542;
}
.footer-newsletter .newsletter-form .main-btn:before {
  background-color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-newsletter .newsletter-form .main-btn {
    padding: 14px 17px;
    font-size: 14px;
  }
}

.img-r-12 {
	border-radius: 12px;
	-webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.1);
}

.img-w-110 {
	width: 110px;
}

.img-w-1 {
	width: 85px;
}

.img-w-2 {
	width: 85px;
}

.img-w-3 {
	width: 84px;
}

.img-w-4 {
	width: 85px;
}

.img-w-5 {
	width: 85px;
}

@media only screen and (max-width: 992px) {
	.img-w-1 {
	width: 80px;
	margin-bottom: 15px;
 }
	.img-w-2 {
	width: 100px;
	margin-bottom: 15px;
 }
 	.img-w-3 {
	width: 150px;
	margin-bottom: 15px;
 }
 .img-w-4 {
	width: 60px;
 }
 .img-w-5 {
	width: 60px;
 }
}

@media only screen and (max-width: 580px) {
	.img-w-2 {
	width: 100px;
 }
  .img-w-4 {
	width: 100px;
 }
  .img-w-3 {
	width: 100px;
	margin-bottom: 15px;
 }
  .img-w-5 {
	width: 100px;
 }
}

.rounded-12 {
	border-radius: 12px!important;
}

.card-img, .card-img-top {
    border-top-left-radius: 12px!important;
    border-top-right-radius: 12px!important;
}

.card .entry-content h3.title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.card .entry-content {
    position: relative;
    padding: 40px 35px 35px;
}

.price-item-one .main-btn {
    position: relative;
    z-index: 1;
    background-color: #0080AF;
    padding: 8px 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 29px;
    text-transform: uppercase;
    overflow: hidden;
    border-radius: 6px;
}

.price-item-one .price-title {
    color: #162542;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

.price-item-one .price-text {
    color: #0080AF;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

.price-item-one {
  position: relative;
  padding: 20px 10px;
  border: 1px solid rgba(4, 13, 26, 0.15);
	border-radius: 12px;
	margin-bottom: 10px;
}

.price-item-one:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.3);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.3);
  border-color: transparent;
}
@media only screen and (max-width: 767px) {
.price-item-one .content {
   padding-bottom: 20px;
 }
}

.price-header {
  position: relative;
  padding: 10px 0;
  border: 1px solid rgba(4, 13, 26, 0.15);
	border-radius: 12px;
	margin-bottom: 20px;
	background: #0080AF;
}
.header-title {
  font-size: 23px;
	line-height: 25px;
	color: #fff;
}

.block-cons {
  position: relative;
	border-radius: 12px;
}
@media (max-width: 991px) {
  .block-cons .cons-content-box {
    margin-bottom: 20px;
  }
}
.block-cons h3 {
  font-size: 35px;
}

.block-cons h2 {
  font-size: 40px;
	color: #0080AF;
	padding-top: 20px;
}
@media (max-width: 767px) {
  .block-cons h2 {
  font-size: 35px;
 }
 .block-cons h3 {
 font-size: 30px;
 }
}
@media (max-width: 576px) {
  .block-cons h2 {
  font-size: 30px;
 }
  .block-cons h3 {
   font-size: 25px;
 }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .block-cons .cons-content-box h3 {
    font-size: 32px;
  }
}

.link-color {
	font-size: 32px;
	color: #0080AF;
}
@media (max-width: 576px) {
.link-color {
	font-size: 25px;
 }
}

.enlarged {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	max-width: 90%;
	max-height: 90%;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999;
	display: none;
}
.clickable-image {
	cursor: pointer;
}

/* =======  consultation ======= */
#consultation-modal {
  background: rgba(23, 26, 33, 0.85);
}
#consultation-modal .modal-content {
  background: 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
#consultation-modal .modal-content:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#consultation-modal .consultation-close{
  position: absolute;
  color: #fff;
  right: 10px;
  top: -100px;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  border: 0;
  font-size: 25px;
  background: transparent;
  border-radius: .25rem;
  transition: color .5s ease-in-out;
}
#consultation-modal .consultation-close:hover{
  color: #0080AF;
}
#consultation-modal .form_control {
  padding-left: 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e5e5e5;
  color: #fff;
  margin-bottom: 0;
  height: 50px;
}
#consultation-modal .form_control:focus {
  border-color: #0080AF;
}
#consultation-modal .form_control::-webkit-input-placeholder {
  color: #fff;
}
#consultation-modal .form_control::-moz-placeholder {
  color: #fff;
}
#consultation-modal .form_control:-ms-input-placeholder {
  color: #fff;
}
#consultation-modal .form_control::-ms-input-placeholder {
  color: #fff;
}
#consultation-modal .form_control::placeholder {
  color: #fff;
}
#consultation-modal .consultation_btn {
  position: absolute;
  background: transparent;
  top: 10px;
  right: 10px;
  color: #fff;
}

#consultation-modal textarea.form_control {
  min-height: calc(1.5em + 0.75rem + 2px);
	height: 150px;
}

/* Стили для сообщения о результате */
#resultMessage {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Скрываем форму после отправки */
#telegramForm {
    width: 100%;
}


/* =======  serviceModal ======= */
#serviceModal {
  background: rgba(23, 26, 33, 0.85);
}
#serviceModal .modal-content {
  background: 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
#serviceModal .modal-content:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#serviceModal .consultation-close{
  position: absolute;
  color: #fff;
  right: 10px;
  top: -100px;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  border: 0;
  font-size: 25px;
  background: transparent;
  border-radius: .25rem;
  transition: color .5s ease-in-out;
}
#serviceModal .consultation-close:hover{
  color: #0080AF;
}
#serviceModal .form_control {
  padding-left: 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e5e5e5;
  color: #fff;
  margin-bottom: 0;
  height: 50px;
}
#serviceModal .form_control:focus {
  border-color: #0080AF;
}
#serviceModal .form_control::-webkit-input-placeholder {
  color: #fff;
}
#serviceModal .form_control::-moz-placeholder {
  color: #fff;
}
#serviceModal .form_control:-ms-input-placeholder {
  color: #fff;
}
#serviceModal .form_control::-ms-input-placeholder {
  color: #fff;
}
#serviceModal .modal-title {
  color: #fff;
}
#serviceModal .modal-header {
  justify-content: center;
	margin-bottom: 30px;
}
#serviceModal .form_control::placeholder {
  color: #fff;
}
#serviceModal .consultation_btn {
  position: absolute;
  background: transparent;
  top: 10px;
  right: 10px;
  color: #fff;
}

#serviceModal textarea.form_control {
  min-height: calc(1.5em + 0.75rem + 2px);
	height: 150px;
}

.hero-area .hero-content {
    background-color: rgb(10,49,77, .5)!important;
    backdrop-filter: saturate(200%) blur(30px);
    border-radius: 25px;
    padding: 45px;
    max-width: 575px;
}
.hero-area .hero-wrpper {
    height: 800px;
    padding-top: 230px;
}
.heading-1 {
    width: 100%;
    height: 147px;
    padding-top: 72px;
}
.heading-1.right {
    background: url(../img/bg-image/title-bg-right.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.heading-1 h2 {
		font-size: 68px;
		line-height: 100%;
}
@media (max-width: 899px) {
	.heading-1.right {
    background: url(../img/bg-image/bg-upper.png);
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 90px;
	}
}
.heading-1.right h2 {
    float: right;
    width: 50%;
}
@media (max-width: 1200px) {
.heading-1 h2 {
		font-size: 55px;
	}
}
@media (max-width: 990px) {
.heading-1 h2 {
    font-size: 50px;
	}	
}
@media (max-width: 899px) {
.heading-1 h2 {
	float: none!important;
	width: 100%!important;
	text-align: center!important;
	}
}
@media (max-width: 766px) and (min-width: 491px) {
.heading-1 h2 {
    font-size: 39px! important;
	}
}
@media (max-width: 490px) {
.heading-1 h2 {
	font-size: 30px;
}
}

.heading-right {
    margin-top: -145px;
		z-index: 1;
    position: relative;
}

@media (max-width: 899px) {
.heading-right	.mt-95 {
    margin-top: 50px;
	}
}

@media (max-width: 766px) {
.heading-right	.mt-95 {
    margin-top: 10px;
	}
}

.heading-1.left {
    background: url(../img/bg-image/title-bg-left.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 899px) {
	.heading-1.left {
    background: url(../img/bg-image/bg-upper.png);
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 90px;
	}
}
.heading-1.left h2 {
    text-align: center;
    width: 54%;
}
@media (max-width: 899px) {
.heading-left	.mt-100 {
    margin-top: 50px;
	}
}
@media (max-width: 491px) {
.heading-left	.mt-100 {
    margin-top: 30px;
	}
}
@media (max-width: 490px){
	.heading-left h3 {
    font-size: 20px! important;
		line-height: 30px;
	}
	.heading-left .mt-40 {
    margin-top: 0px;
 }
}


.heading.center {
    background: url(../img/bg-image/bg-upper.png);
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 90px;
    text-align: center;
}
.heading.center h2 {
	font-size: 40px;
	padding-right: 12rem;
  padding-left: 12rem;
	padding-bottom: 4rem;
}
@media (max-width: 460px) {
.heading.center h2 {
	padding-bottom: 2rem;
	}
.gos-block .container .px-5 {
	padding-right: 1rem!important;
  padding-left: 1rem!important;
	}
}
.color-primary {
	color: #0080AF!important;
}

.btn-blue {
    position: relative;
    padding: 13px 5px;
    border-radius: 6px;
    background-color: #0080AF;
    -webkit-box-shadow: 0px 10px 20px #A6ABBD, 0px 0px 20px #FAFBFF;
    box-shadow: 0px 10px 20px #A6ABBD, 0px 0px 20px #FAFBFF;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #fff;
		font-size: 15px;
    font-weight: 700;
		text-transform: uppercase;
		text-align: center;
		width: 62%;
}
@media (max-width: 460px) {
	.btn-blue {
    padding: 13px 12px;
	}
}
.btn-blue:hover, .btn-blue:focus, .btn-blue:active {
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #005091;
    -webkit-transform: scaleX(0.95) translateY(2px);
    -ms-transform: scaleX(0.95) translateY(2px);
    transform: scaleX(0.95) translateY(2px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.bg-overlay p {
	color: #fff!important;
}

.bg-img {
    background-image: url('../img/bg/flag.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
/*
.bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}*/

.col-lg-10.mx-auto.shadow.br-25.pb-5 .color-dark-2 {
    position: relative;
    z-index: 2;
}

.br-12 {
	border-radius: 12px;
}

@media (max-width: 990px) {
.heading.center h2 {
	padding-right: 0rem;
  padding-left: 0rem;
	}
}
@media (max-width: 766px) and (min-width: 550px) {
.heading.center h2 {
    font-size: 37px! important;
	}
}
@media (max-width: 551px) {
.heading.center h2 {
    font-size: 30px! important;
	}
}
@media (max-width: 460px) {
.heading.center h2 {
    font-size: 25px! important;
	}
}
@media (max-width: 420px) {
.heading.center h2 {
    font-size: 21px! important;
	}
}
@media (max-width: 490px) {
.heading-right h3 {
    font-size: 20px! important;
	}
.heading-right .container .mt-40 {
    margin-top: 10px;
	}
}

.features-item-1 .icon i, .service-item-two .icon i {
  color: #0080AF;
}
.features-item-1 {
  position: relative;
  padding: 30px 10px;
  border: 1px solid rgba(4, 13, 26, 0.15);
	border-radius: 12px;
  /*z-index: 1;*/
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-item-1 {
    border: 1px solid rgba(4, 13, 26, 0.1);
  }
}
@media (max-width: 991px) {
  .features-item-1 {
    border: 1px solid rgba(4, 13, 26, 0.1);
  }
}
@media (max-width: 767px) {
  .features-item-1 {
    padding: 10px 20px;
    margin-bottom: 20px;
  }
}
.features-item-1:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.8);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.8);
  border-color: transparent;
}
.features-item-1:hover .item-bg:before {
  visibility: visible;
  opacity: 1;
}
.features-item-1:hover .item-bg:after {
  visibility: hidden;
  opacity: 0;
}
.features-item-1:hover i {
  color: #fff;
}
.features-item-1:hover .row h5, .features-item-1:hover .row p {
  color: #fff;
}

.features-item-1:hover .row .icon-btn {
  background-color: #0080AF;
  color: #fff;
}
.features-item-1 .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
	border-radius: 12px;
}
.features-item-1 .item-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(19, 29, 70, 0.85);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
	border-radius: 12px;
}
.features-item-1 .item-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F7FFFC;
  visibility: visible;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.features-item-1 .icon {
  margin-bottom: 20px;
}
.features-item-1 .icon i {
  font-size: 75px;
  line-height: 1;
}
.features-item-1 .row h5 {
  margin-bottom: 10px;
	font-size: 22px;
	font-weight: 300!important;
}
.features-item-1 .row p {
  margin-bottom: 25px;
}
.features-item-1 .card-body a {
  color: #0080AF!important
}
.features-item-1 a:hover {
  color: #fff!important
}
.features-item-1 .row .icon-btn {
  background-color: rgba(22, 37, 66, 0.07);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
	border-radius: 6px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-item-1 .col-lg-4, .features-item-1 .col-lg-8 {
    flex: 0 0 auto!important;
    width: 100%!important;
  }
}
@media (max-width: 460px) {
	.features-item.features-item-1 .card-body.px-4 {
		padding-right: 0rem!important;
    padding-left: 0rem!important;
	}
}

.wraper {
    position: relative;
}
.wraper .services.top {
    position: absolute;
    top: -56px;
    left: 30px;
    z-index: 1;
}
.wraper .services .service {
    box-shadow: 67px 116px 54px rgba(0, 0, 0, 0.03), 38px 66px 45px rgba(0, 0, 0, 0.1), 17px 29px 34px rgba(0, 0, 0, 0.17), 4px 7px 18px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
    height: 95px;
    background: #a70c0c;
    border-radius: 12px;
    padding: 30px 20px 10px;
    color: #fff;
}
.wraper .warning {
    border-radius: 12px;
}
.wraper .warning h2, .wraper .warning p {
    color: #fff;
}
@media (max-width: 460px) {
	.wraper .warning .p-5 {
		padding: 2.8rem 1.8rem 1.8rem!important;
	}
}

@media (max-width: 490px){
	.wraper .warning h2 {
    font-size: 30px;
	}
}

.company-block {
  background-color: #F7FFFC;
  border-left: 4px solid transparent;
  padding-bottom: 10px;
  transition: .5s;
	border-radius: 12px;
}
.company-block:hover {
  border-color: #0080AF;
}
.border-1 {
	border: 1px solid #e5e5e5 !important;
}
@media (max-width: 460px) {
	.contact-wrapper-two h3 {
		font-size: 25px;
		line-height: 30px;
	}
}
@media (max-width: 379px) {
		.show-on-very-small-screens {
				display: block;
		}
}

@media (min-width: 380px) {
		.show-on-very-small-screens {
				display: none;
		}
}
.show-on-380-and-up {
		display: none;
}

@media (min-width: 380px) {
		.show-on-380-and-up {
				display: block;
	}
}

.points li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px;
}
.points li::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 10px;
    background: #0080AF;
    transform: rotate(45deg);
}
.bg-white {
    background-color: #F7FFFC !important;
}
.modal-dialog .modal-content .modal-header {
    border-bottom: 0;
}

@media (max-width: 1199px) {
.off-menu {
		display: block;
	}
}

@media (min-width: 1200px) {
.off-menu {
		display: none;
	}
.header-area-two .header-navigation .header-right-nav ul li {
border-left: none;
	}
}

@media (max-width: 991px) {
    #left-section {
        background-image: url('../img/bg/header-img.jpg');
        background-size: cover;
        background-position: center;
				background-color: #162542!important;
    }
}
.right-section img {
		object-fit: cover;
		object-position: center;
}

.z-index-0 {
	z-index: 0!important;
}

.z-index-1 {
	z-index: 1!important;
}

.z-index-2 {
	z-index: 2!important;
}

.z-index-3 {
	z-index: 3!important;
}
.header-2 h1 {
	font-size: 50px;
  line-height: 55px;
	color: #8ee7ff
}

.header-2 h5 {
	font-size: 25px;
  line-height: 40px;
	color: #d5e2e5
}

.bg-info {
    background-color: #162542!important;
}

.min-vh-25 {
	min-height: 25vh!important;
}

.min-vh-35 {
	min-height: 35vh!important;
}

.min-vh-45 {
	min-height: 45vh!important;
}

.min-vh-50 {
	min-height: 50vh!important;
}

.min-vh-55 {
	min-height: 55vh!important;
}

.min-vh-65 {
	min-height: 65vh!important;
}

.min-vh-70 {
	min-height: 70vh!important;
}

.min-vh-75 {
	min-height: 75vh!important;
}

.min-vh-80 {
	min-height: 80vh!important;
}

.min-vh-85 {
	min-height: 85vh!important;
}

.min-vh-90 {
	min-height: 90vh!important;
}

.min-vh-95 {
	min-height: 95vh!important;
}

.min-vh-100 {
	min-height: 100vh!important;
}

.header-2 .hero-content {
	padding: 195px 55px 210px;
}

.header-top {
	margin-top: -145px;
  z-index: 1;
  position: relative;
	padding-bottom: 80px
}

.header-top .heading.center h2 {
	padding-bottom: 0rem;
}




.image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.centered-image {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
    transform: translate(-50%, -50%);
    object-fit: contain;
    pointer-events: none;
}

.rotating {
    animation: rotate 10s linear infinite;
    transform-origin: center center;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.block-color {
    position: relative;
    padding: 30px;
    border-radius: 12px;
		border: 2px solid #fff;
		background-image: url('../img/bg/bg-img.jpg');
		background-size: cover;
		background-position: center;
}
.block-color h5, .block-color p {
    color: #fff;
}
.block-img {
	position: relative;
	padding: 30px;
	border-radius: 12px;
	border: 2px solid #fff;
	background-image: url('../img/bg/bg-security.jpg');
  background-size: cover;
  background-position: center;
}
.block-img h5, .block-img p {
	color: #fff;
}
.nested-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  padding: 10px 30px 10px 30px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
	border-radius: 12px;
}
.nested-block .icon {
  margin-right: 30px;
}
.nested-block .icon i {
  font-size: 35px;
  line-height: 1;
  color: #0080AF;
}
.nested-block .content h3.title {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
.structures .row	.img-fluid.w-80 {
			width: 60%!important;
	}
.structures .row .col-md-5 {
    flex: 0 0 auto;
    width: 33.33333333%;
	}
}
@media (max-width: 767px) {
.structures .row	img {
		padding-bottom: 1rem;
	}
.structures.features-item-1 {
    padding: 30px;
	}
}
@media (max-width: 460px) {
.structures .row	.col-md-5 {
		flex: 0 0 auto;
    width: 50%;
	}
}
@media (max-width: 360px) {
.structures .row	.col-md-5 {
		flex: 0 0 auto;
    width: 70%;
	}
}
.card-price {
		position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border-radius: 12px;
    margin: 0 15px 30px;
    text-align: center;
    padding: 0 35px 55px;
    border-top: 4px solid #0080AF;
    box-shadow: 0px 7px 13.5px 1.5px rgba(0, 0, 0, 0.05);
}


.card-price {
	justify-content: space-between; /* Чтобы тело и кнопка были разведены */
}

.pricing-body {
	margin-top: auto; /* чтобы заняла оставшееся пространство и кнопка ушла вниз */
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.get-started {
	margin-top: auto; /* кнопка прижимается к низу .pricing-body */
}


.card-price .type {
    background-color: #f3f3f3;
    display: inline-block;
    padding: 12px 30px;
    margin-top: 40px;
    border-radius: 30px;
}
.card-price .type h5 {
    font-size: 20px;
    font-size: 1.3rem;
    margin: 0;
    text-transform: uppercase;
}
.card-price .get-started {
    display: block;
    padding: 13px 0;
    border: 2px solid #0080AF;
    border-radius: 50px;
    color: #0080AF;
    font-weight: 500;
}
@media (max-width: 1199px) {
  .card-price .get-started {
    padding: 10px 0;
    margin: 0 25px;
  }
}
.card-price .get-started:hover {
  background: #0080AF;
  color: #fff;
}

.pricing-area .row > div:nth-child(2) .card-price {
  background: url(../img/bg/pricing.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
}
.pricing-area .row > div:nth-child(2) .card-price::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 57, 103, 0.9);
  content: "";
  z-index: -1;
  border-radius: 12px;
}
.pricing-area .row > div:nth-child(2) .card-price ul li {
  color: #ddd;
}
.pricing-area .row > div:nth-child(2) .card-price .type {
  background-color: #062650;
}
.pricing-area .row > div:nth-child(2) .card-price .type h5 {
  color: #fff;
}
.pricing-area .row > div:nth-child(2) .card-price .pricing-header {
  background: #062650;
}
.pricing-area .row > div:nth-child(2) .card-price .pricing-header .price {
  color: #fff;
}
.pricing-area .row > div:nth-child(2) .card-price .get-started {
  background: #0080AF;
  color: #fff;
}
.pricing-area .row > div:nth-child(2) .card-price .get-started:hover {
  background: #0080AF;
  color: #fff;
}

@media (max-width: 1399px) {
  .header-2 .hero-wrpper-two .col-lg-7 {
    flex: 0 0 auto;
    width: 62%;
  }
}
@media (max-width: 1199px) {
  .header-2 .hero-wrpper-two .col-lg-7 {
    flex: 0 0 auto;
    width: 79%;
  }
	.header-2 .hero-content {
    padding: 195px 0px 210px;
	}
}
@media (max-width: 996px) {
  .header-2 .hero-wrpper-two .col-lg-7 {
    flex: 0 0 auto;
    width: 100%;
  }
	.header-2 .hero-content {
    padding: 195px 0px 210px;
	}
}
@media (max-width: 767px) {
  .header-2 .hero-wrpper-two h1 {
    font-size: 37px;
    line-height: 45px;
	}
	.header-2 .hero-wrpper-two h5 {
    font-size: 25px;
    line-height: 35px;
	}
}
@media (min-width: 768px) and (max-width: 1199.98px) {
	.pricing-area .col-lg-4 {
		flex: 0 0 auto;
    width: 50%;
	}
}

.strike-red {
  text-decoration: line-through;
  text-decoration-color: #af0000;
}
.case-slider-one {
  display: flex;
  flex-wrap: wrap;
}

.case-slider-one .col-lg-3 {
  display: flex;
}

.case-slider-one .card {
  flex: 1;
  display: flex;
  flex-direction: column;
	height: 100%;
}
.warning {
	background: #951212;
}

.btn-white {
    position: relative;
    padding: 13px 5px;
    border-radius: 6px;
    background-color: #951212;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #fff;
		font-size: 15px;
    font-weight: 700;
		text-transform: uppercase;
		text-align: center;
		width: 62%;
}
@media (max-width: 460px) {
	.btn-white {
    padding: 13px 12px;
	}
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #951212;
		-webkit-box-shadow: 0px 5px 20px #A6ABBD, 0px 0px 20px #FAFBFF;
    box-shadow: 0px 5px 20px #A6ABBD, 0px 0px 20px #FAFBFF;
    -webkit-transform: scaleX(0.95) translateY(2px);
    -ms-transform: scaleX(0.95) translateY(2px);
    transform: scaleX(0.95) translateY(2px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.bg-transparent {
	background-color: transparent!important;
}
.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-body i {
	font-size: 3rem;
}
.modal-body h4 {
	font-size: 40px;
	line-height: 1.2;
}
hr.horizontal.white {
    background-image: linear-gradient(90deg,transparent,rgb(255,0,0),transparent);
}
hr.horizontal {
    background-color: transparent;
}
hr {
    border-top: none!important;
    height: 1px;
}
.responsive-table li {
  border-radius: 3px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
	border-radius: 12px;
}
@media (max-width: 460px) {
	.responsive-table li {
		padding: 25px 20px;
	}
	.responsive-table .col.col-lg-6 {
    padding-right: 0px!important;
	}
	.table-row h5 {
    font-size: 19px!important;
	}
	.programms .services.top {
    left: 22px!important;
	}
	.programms .description h3 {
    font-size: 17px!important;
	}
}
.responsive-table .table-header {
  background-color: #95A5A6;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}/*
.responsive-table .table-row {
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
}*/
.responsive-table .col-1 {
  flex-basis: 10%;
}
.responsive-table .col-2 {
  flex-basis: 40%;
}
.responsive-table .col-3 {
  flex-basis: 25%;
}
.responsive-table .col-4 {
  flex-basis: 25%;
}
.responsive-table .col.col-lg-6 {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-right: 20px;
}
@media all and (max-width: 767px) {
  .responsive-table .table-header {
    display: none;
  }
  .responsive-table li {
    display: block;
  }
  .responsive-table .col {
    flex-basis: 100%;
  }
  .responsive-table .col {
    display: flex;
    padding: 10px 0;
  }
}
.heading-center {
	  margin-top: -145px;
    z-index: 1;
    position: relative;
}
.heading-1.center {
	  background: url(../img/bg-image/bg-upper.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    height: 600px;
    padding-top: 150px;
		text-align: center!
}
.table-row {
  position: relative;
  border: 1px solid rgba(4, 13, 26, 0.15);
	border-radius: 12px;
  /*z-index: 1;*/
}
.table-row:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.8);
          box-shadow: 0px 10px 60px 0px rgba(22, 37, 66, 0.8);
  border-color: transparent;
	border-radius: 12px;
}
.table-row:hover .item-bg:before {
  visibility: visible;
  opacity: 1;
}
.table-row:hover .item-bg:after {
  visibility: hidden;
  opacity: 0;
}
.table-row:hover h5, .table-row:hover  p {
  color: #fff;
}
.table-row .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
	border-radius: 12px;
}
.table-row .item-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(19, 29, 70, 0.85);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
	border-radius: 12px;
}
.table-row .item-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F7FFFC;
  visibility: visible;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.table-row h5 {
  margin-bottom: 10px;
	font-size: 22px;
	font-weight: 300!important;
}
.programms {
    position: relative;
		height: 100%;
}
.programms .services.top {
    position: absolute;
    top: -56px;
    left: 30px;
    z-index: 1;
}
.programms .services .service {
    box-shadow: 67px 116px 54px rgba(0, 0, 0, 0.03), 38px 66px 45px rgba(0, 0, 0, 0.1), 17px 29px 34px rgba(0, 0, 0, 0.17), 4px 7px 18px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
    height: 95px;
    background: #F7FFFC;
    border-radius: 12px;
    padding: 30px 20px 10px;
    color: #0080AF;
}
.programms .description {
    border-radius: 12px;
		height: 100%;
}
.programms .description h3, .programms .description p {
    color: #666666;
}
.programms .description h3 {
    font-size: 20px;
}
@media (max-width: 460px) {
	.programms .description .p-5 {
		padding: 2.8rem 1.8rem 1.8rem!important;
	}
	.programms .services.top h3 {
		font-size: 21px;
	}
}

.header-navigation .header-right-nav > a {
  display: block;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 32px 20px;
  line-height: 1;
}
.header-navigation .header-right-nav a:hover {
  color: #0080AF;
}
@media only screen and (min-width: 991px) and (max-width: 1102px) {
  .navigation-wrapper .col-lg-7 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .navigation-wrapper .col-lg-3 {
    flex: 0 0 auto;
    width: 65%;
  }
}
@media (max-width: 560px) {
  .navigation-wrapper .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }
  .navigation-wrapper .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
  }
  .header-area-two .header-navigation .site-branding .brand-logo img {
    max-width: 60%;
  }
  .header-area-two .header-navigation .site-branding .brand-logo {
	text-align: center!important;
  }
  .header-navigation .header-right-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-area-two .header-navigation .site-branding .brand-logo {
    padding: 20px 0 0 0;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .header-area-two .header-navigation .site-branding .brand-logo img {
    max-width: 140%;
  }
}
