@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crete+Round:ital@0;1&display=swap');
:root {
  --ohc_primary-color: #000000;
  --ohc_secondary-color: #122b6b; 
  --ohc_heading-font: "Outfit", sans-serif;
  --ohc_body-font: "Rubik", sans-serif;
  --light-blue: #0072a4;
  --dark-blue: #122b6b;
  --grey: #f7f7f7;
  --black: #000;
  --white: #fff;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */ 
}
body {
  color: var(--black);
  font-weight: 400;
  font-style: normal;
  font-size: 18px; 
  font-family: var(--ohc_body-font);
  line-height: 1.6;
  margin: 0 auto; 
  position: relative;
}
h1, .h1 {
  font-size: 42px;
  line-height: 1.2; }

h2, .h2 {
  font-size: 36px; }

h3, .h3 {
  font-size: 28px; }

h4, .h4 {
  font-size: 24px; }

h5, .h5 {
  font-size: 24px; }

h6, .h6 {
  font-size: 16px; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--black);
  clear: both;
  font-family: var(--ohc_heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;  
}

p {
  color: var(--black);
  margin-bottom: 0.5em;
}
.black-bg {
  background-color: var(--black);
}
.grey-bg {
  background-color: var(--grey);
}
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}
.ohc-btn {  
  padding: 10px 22px;
  border: 1px solid var(--light-blue);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 50px;
}
.ohc-btn:hover {
  border: 1px solid var(--light-blue);
  text-decoration: none;
}
.btn--primary {
  z-index: 1;
  color: var(--white);
  background-color: var(--light-blue);
}
.btn--secondary {
  z-index: 1;
  color: var(--white);
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}
.btn--primary:hover {
  color: var(--white);
  background-color: var(--dark-blue);
  border-color: var(--dark-blue); 
}
.btn--secondary:hover { 
  color: #fff;
  background-color: var(--light-blue);
  border-color: var(--light-blue); 
}
.btn--white {
  z-index: 1;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn--white:hover {
  border: 1px solid var(--white);
  color: var(--light-blue);
  background-color: var(--white);
}
.pad-tb {
  padding: 50px 0;
}
.section-title {
  margin-bottom: 1rem;
}
.section-title.text-center {
  margin-bottom: 15px; 
  position: relative;
}
.section-title.text-left {
  margin-bottom: 15px;
  position: relative;
}
.section-title.text-left h2, .section-title.text-center h2 {
  padding-bottom: 15px;
  color: var(--black);
  position: relative;
}
.section-title.text-left h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background: var(--dark-blue);
}
.section-title.text-center h2:after {
  content: "";
  position: relative;
  margin: 15px auto 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background: var(--dark-blue);    
  display: block;
}
.header-wrap {
  z-index: 99999;
}
header .header-logo {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header {
  background: #fff;
  -webkit-box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4);
  box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4); 
  z-index: 99999;
  padding: 10px 0;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
header.header-appear {
  position: fixed;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  top: 0;
  width: 100%;
}
header .main-menu > li {
  position: relative;
}
header .main-menu > li > a {
  color: var(--black);
  padding: 8px 1.5vw;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu > li.active > a {
  color: var(--light-blue);
}
header .main-menu > li:hover > a {
  color: var(--light-blue);
  text-decoration: none;
}
header .main-menu > li > a > i {
  color: var(--light-blue);
}
header .main-menu > li > a:hover > i {
  color: #fff;
}
header .main-menu > li:hover > a i {
  color: #fff;
}
header .main-menu > li:last-child > a { 
  background: var(--light-blue);
  color: #fff;
  border-radius: 50px;
}
header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 285px;
  overflow: hidden;
  border-top: 2px solid var(--white);
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  z-index: 5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
header .main-menu .sub-menu a {
  padding: 8px 10px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu .sub-menu a i {
  color: var(--black);
}
header .main-menu .sub-menu a:hover {
  background: var(--dark-blue);
  color: #fff;
  text-decoration: none;
}
header .main-menu > li:hover .sub-menu {
  display: block;
}
header .header-logo figure img {
  max-width: 200px;
}
header .demo-link {
  margin-left: 1vw;
}
header .side-menu-close {
  background: transparent;
}
header .side-menu-close span {
  background: var(--black);
  width: 28px;
}
/* side menu */
.side-menu-wrap {
  width: 300px;
  position: fixed;
  right: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 999999;/*15000*/
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-wrap.opened {
  right: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.side-menu-logo {
  border-bottom: 2px solid var(--grey-bg);
  padding-left: 0.5rem;
  display: none!important;
}
.side-menu-nav .main-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu > li > a > i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--green);
  background: #fff;
  display: none;
}
.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;    
  font-size: 15px;
  text-transform: uppercase;
}
.side-menu-nav .main-menu .sub-menu a i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu ~ i {
  font-size: 0.8em;
  position: absolute;
  padding: 21px 11px;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a:hover {
  background: #f5f5f5;
}
.side-menu-nav .main-menu > li > a {
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 20px 15px 20px;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-nav .main-menu > li > a:hover {
  text-decoration: none;
}
.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.side-menu-close {
  height: 40px;
  width: 40px;
  background: var(--light-blue); 
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.side-menu-close span {
  height: 2px;
  width: 20px;
  background: var(--white);
  position: relative;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-close span:nth-child(1) {
  top: -5px;
}
.side-menu-close span:nth-child(3) {
  bottom: -5px;
}
.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}
.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}
.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}
/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
/**/
.breadcrumb_wrap {
  padding: 110px 0;
  background-color: #eee;
  background-size: cover!important;
  background-position: center center!important;
  position: relative;
  background-image: url(../images/breadcrumb-bg.jpg);
}
.breadcrumb_title h1 {
  text-transform: uppercase;
  font-size: 38px;
  color: var(--white);
  position: relative;
  margin-bottom: 0;
}
.breadcrumb_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
}
label {
  display: block;
}
.form-control {
  border: 1px solid #bbb;   
  padding: 0.5rem 0.75rem;
  color: var(--black);    
  height: 52px;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--light-blue);
}
textarea.form-control {
  height: 170px;
}
.img-wrap {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.img-wrap img {
  transition: 0.2s linear;
}
.img-wrap:hover img {
  transform: scale(1.08);
}
ul.ohc-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
ul.ohc-list > li {
  margin-bottom: 5px;  
  position: relative;
  padding-left: 25px;
}
ul.ohc-list > li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  position: absolute;
  left: 0;
  font-weight: 400;
  color: var(--light-blue);
}
.servicedetail-content {
  padding: 0px 15px;
}
.inner-services-detail h3 {
  font-size: 32px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: var(--dark-blue);
}
.inner-services-detail .col-md-push-6 {
  position: relative;
  left: 50%;
}
.inner-services-detail .col-md-pull-6 {
  position: relative;
  right: 50%;
}
.inner-services-detail h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--light-blue);
}
.services_info .section-title.text-center h2 {
  padding-bottom: 0;
}
/*slider*/
.banner-wrap h1 {
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow: 2px 2px rgba(0,0,0,0.6);
}
.banner-wrap h2 { 
  margin-bottom: 25px;
}
.banner-wrap .fullscreen {
  height: 100vh !important;/* height: 650px!important; */
  background-attachment: fixed;
}
.banner-inner-wrap {
  max-width: 750px;
  margin: auto;
}
.banner-wrap .btn--primary:hover {
  color: var(--light-blue);
  background-color: var(--white);
  border-color: var(--white); 
}
/* overlay */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-dark {
  background-color: #1d1d21 !important;
}
/* opacity */
.opacity-full {
  opacity: 1;
}
.opacity-3 {
  opacity: 0.3;
}
.opacity-4 {
  opacity: 0.4;
}
.opacity-5 {
  opacity: 0.5;
}
.opacity-6 {
  opacity: 0.6;
}
.opacity-7 {
  opacity: 0.7;
}
.opacity-8 {
  opacity: 0.8;
}
.opacity-9 {
  opacity: 0.9;
}
/* ===================================
    Parallax Images
====================================== */
.bg-img5 {
  background: url(../images/slide.jpg);
}
[class*="bg-img"] {
  position: relative;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.fullscreen {
  height: 100vh !important;
  width: 100%;
}
.fullscreen .center-col {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
/**/
.about-content {
  text-align: center;
} 
.about-content p {
  font-family: "Crete Round", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  margin: 10px auto 0;
  max-width: 1200px;
}
.about-content h3 {
  background: linear-gradient(to right, #0072a4 10%, #01648f 60%, #122b6b 80%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #333;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  display: inline-block;
  padding-bottom: 0;
  clear: both;
}
@keyframes textclip{to{background-position:200% center}}
/**/
.services-wrap {
  background: #f5f5f5;
  padding: 50px 0 30px;
  position: relative;
  overflow-x: hidden;
}
.services-item {
  --space: 75px;
  position: relative;
  background: #ffffff;
  padding: 15px 15px 20px 15px;
  z-index: 2;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  text-align: center;
}
.services-item::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: var(--dark-blue);
  transition: 0.2s linear;
}
.services-item:hover:before {
  width: 100%;
}
.services-item .btn--primary {
  color: var(--light-blue);
  background-color: white;
}
.services-item .btn--primary:hover, .services-item:hover .btn--primary {
  color: white;
  background-color: var(--light-blue);
  border-color: var(--light-blue);
}
.services-item_img {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  max-height: unset;
  overflow: hidden;
}
.services-item_img img {
  transition: 0.2s linear;
}
.services-item:hover .services-item_img img {
  transform: scale(1.04);
}
.services-item_title {
  font-size: 24px;
  line-height: 28px;
  text-align: center;  
  margin: 0 0 8px;
}
/**/
.footer {
  position: relative;
  background-color: var(--dark-blue); 
  margin-top: 0px; 
}
.footer-top {
  padding: 40px 0 30px;
  position: relative;
}
.footer-top .col-off-40 {
  margin-left: -40px;
  margin-right: 40px; 
}
.footer-widget {
  margin-bottom: 15px;
}
.footer-widget h3 {
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  font-weight: 500;
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul.widget-links > li {
  margin-bottom: 5px;
}
.footer-widget ul.widget-links > li a {
  color: var(--white);
  position: relative;
  padding-left: 20px;
  display: block;
} 
.footer-widget ul.widget-links > li a:hover {
  color: var(--white);
  text-decoration: none;
} 
.footer-widget ul.widget-links > li a:before {
  content:"-";
  position: absolute;
  left: 0;
  font-weight: 600;
}
.icn_txt {
  position: relative;
  display: block;
  margin-bottom: 8px;
}
.icn {
  position: absolute;
  left: 0;
  color: #fff;
}
.txt {
  padding-left: 30px;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #2d4583; 
  padding: 15px 0;position: relative;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--light-blue);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  border-radius: 50%;
}
ul.social-links > li a:hover {
  background: var(--white); 
  color: var(--light-blue);
}
.footer-bottom ul {
  margin-bottom: 0;
  float: right;
  margin-right: 30px;
}
.footer-widget h3.widget_title_one {
  opacity: 0;
} 
.design-by {
  display: none;
}
.bg-white {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.enquiry-form {
  padding: 50px 0 70px;
}
.enquiry-form textarea.form-control {
  height: 110px;
} 
label {
  margin-bottom: .2rem;
}   
.enquiry-form .form-group a {
  color: var(--green);
  text-decoration: underline;
}
.enquiry-form .ohc-btn {
  padding: 10px 30px;
}
.thanks-sec {
  text-align: center;
  border-top: 1px solid #e1e1e1;
  padding: 55px 0;
}
.thanks-sec h2 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #211d21;
  font-size: 48px;
}
.thanks-sec h3 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}
.vm-box-wrap, .contact-box-wrap {
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 20px 15px;
  border-radius: 5px;
}
.vm-icon {
  display: inline-block;
  background: var(--light-blue);
  color: #fff;
  width: 80px;
  height: 80px;
  line-height: 85px;
  font-size: 42px;
  margin-bottom: 15px;
  border-radius: 50%;
}
.vm-box-wrap:hover .vm-icon, .contact-box-wrap:hover .contact-icon {
  background: var(--dark-blue);
}
.vm-box-wrap:hover h3, .contact-box-wrap:hover h3 {
  color: var(--light-blue);
}
.contact-box-wrap { 
  min-height: 220px;
}
.contact-icon {
  display: inline-block;
  background: var(--light-blue);
  color: #fff;
  width: 65px;
  height: 65px;
  line-height: 70px;
  font-size: 30px;
  margin-bottom: 15px;
  border-radius: 50%;
}
.contact-box-wrap p a {
  color: var(--black);
}
.contact-box-wrap p a:hover {
  color: var(--light-blue);
}
.contact-map-wrap.pad-tb {
  padding: 0px 0px 55px;
}
.contact-map-wrap iframe {
  border-radius: 5px;
}
.industries-wrap .services-item {
  padding: 10px 10px 15px;
  margin-top: 0;
}
.industries-wrap .services-item_title {
  margin: 0;
}
.industries-wrap .services-item_img {
  margin-bottom: 10px;
}