styles*/

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

body.active {
    overflow-y: hidden;
}
body.lock-scroll {
  overflow: hidden;
}
html.lock-scroll {
  overflow: hidden;
}
.container {
    max-width: 1600px;
    position: relative;
    height: 100%;
}

.container.sml {
    max-width: 1400px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.aos-animate {
    z-index: 9;
}

.icon {
    background: transparent;
}

.heading h1, .heading h2, .heading h3,
.sub-heading h1, .sub-heading h2, .sub-heading h3 {
    font-size: inherit !important;
    margin: inherit !important;
    font-style: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.breadcrumb {
  border-radius: 0;
  padding: 10px 60px;
  position: relative;
  background: transparent;
  margin-bottom: 0;
  width: fit-content;
  left: 50%;
  transform: translate(-50%);
  font-size: 18px;
  color: var(--primary);
}

.breadcrumb-list a {
  color: white;
  transition: all .5s ease;
}

.breadcrumb-list a:hover {
  text-decoration: none;
  color: var(--primary);
}

.breadcrumb_last {
  color: white;
}

.text-white {
  color: inherit !important;
}

body::-webkit-scrollbar {
  width: 8px;
}
 
body::-webkit-scrollbar-track {
  background-color: var(--secondary);
}
 
body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border: 0;
  outline: 0;
}

a {
  color: inherit;
}

/*404*/

.error-wrap {
  text-align: center;
  padding: 80px;
  border: 20px solid #f4f4f4;
  position: relative;
}

.error-main {
  font-size: 70px;
  font-weight: 600;
}

.error-sub {
  font-size: 20px;
}

.error-main h1, .error-sub h2 {
    font-size: inherit !important;
    margin: inherit !important;
    font-style: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

@media (max-width: 991px) {
  .error-wrap {
    margin-top: 140px;
  }
}

@media (max-width: 576px) {
  .error-wrap {
    margin-top: 117px;
    padding: 50px;
  }
}

@media (max-width: 400px) {
  .error-wrap {
    padding: 40px;
  }
  .error-main {
    font-size: 60px;
    font-weight: 600;
  }
  .error-sub {
    font-size: 18px;
  }
}

/* Header */

.header {
    position: relative;
    background: white;
    color: white;
    z-index: 999;
}

.header .main-header {
  background: white;
}

.header .main-header .top-bar {
  position: relative;
  background: var(--secondary);
  color: white;
}

.main-header .top-bar ul {
  padding: 0;
  margin: 0;
  display: inline-flex;
}

.main-header .top-bar ul li {
  position: relative;
  border-right: 1px solid #ffffff12;
  padding: 15px 20px;
}

.main-header .top-bar ul li a {
  color: white;
  transition: all 0.5s ease;
}

.main-header .top-bar ul li a i {
  color: var(--primary);
  font-size: 18px;
  vertical-align: middle;
  transition: all 0.5s ease;
  top: -2.5px;
}

.main-header .top-bar ul li a i.hub {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-left: 10px;
}

.main-header .top-bar ul.right-ul {
  float: right;
}

.main-header .top-bar ul.right-ul li {
  border-left: 1px solid #ffffff12;
  border-right: 0;
}

.main-header .top-bar ul.right-ul li a i {
  color: var(--primary);
  font-size: 18px;
  vertical-align: middle;
  margin-right: 5px;
}

.main-header .top-bar ul li a:hover, .main-header .top-bar ul li a:hover i {
  text-decoration: none;
  color: var(--primary);
}

.header.mid .main-header {
  position: fixed;
  left: 0;
  top: -250px;
  width: 100%;
  transition: all .8s ease;
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

.header.stuck .main-header {
  top: 0;
}

.header.mid .header-banner {
  margin-bottom: 177.5px;
}

.header.mid .main-header .logo {
  transition: all 0.5s ease;
}

.header .main-header .side-modal .logo {
  position: relative;
  height: auto;
  width: 320px;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  max-height: unset;
}

.main-header .side-modal {
  position: fixed;
  right: -480px;
  height: 100vh;
  background: white;
  padding: 100px 50px;
  top: 0;
  z-index: 1;
  max-width: 480px;
  text-align: left;
  color: black;
  transition: all 1s ease;
  overflow-y: scroll;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.03);
  width: 100%;
}

.main-header .side-modal .modal-logo {
  width: fit-content;
  position: relative;
  margin-bottom: 30px;
}

.main-header .frosted {
  position: fixed;
  right: 0;
  height: 100vh;
  top: 0;
  width: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition-delay: .5s;
  transition: all 1s ease;
}

.main-header .big-menu.active .side-modal {
 right: 0;
}

.main-header .big-menu.active .frosted {
 width: 100%;
 opacity: 1;
}

.main-header .modal-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.main-header .modal-sub {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.main-header .bottom-header {
  display: inline-flex;
  height: 100%;
}

.main-header .logo-hold {
  position: relative;
  height: 100%;
  padding: 0;
}

.header .logo {
  position: relative;
  height: auto;
  width: 275px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header .logo img {
    max-height: 125px;
    height: 100%;
}

.header .menu {
    position: relative;
    width: 100%;
    padding: 0 20px;
    height: 100%;
}

.header .menu ul {
	display: flex;
  justify-content: right;
  display: -webkit-box;
  -webkit-box-pack: end;
  -webkit-box-align: end;
  position: relative;
  margin: 0;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header .menu ul li {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    color: black;
    font-weight: 500;
    font-size: 16px;
}

.header .menu ul li a {
   color: black;
  transition: all 0.5s ease;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}

.header .menu ul li a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -53px;
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 1;
}

.header .menu ul li a:hover::before {
  width: 100%;
}

.header .menu ul li a:hover {
    text-decoration: none;
}

.header ul li i {
  position: relative;
  top: 0;
  font-size: 10px;
  vertical-align: middle;
  margin-left: 6px;
}

.header ul li ul.dropdown {
  position: absolute !important;
  right: 0;
  top: 75px;
  transition: all 0.5s ease;
  display: block !important;
  opacity: 0;
  border-radius: 0;
  line-height: 45px;
  padding: 14px 28px;
  height: auto;
  font-size: 15px;
  visibility: hidden;
  background: var(--secondary);
  color: white;
  border-top: 3px solid var(--primary);
  z-index: 2;
  transform: translateY(0);
  /*columns: 2;*/
}

.header ul li:hover > ul.dropdown {
  opacity: 1;
  right: 0;
  visibility: visible;
}

.header ul li ul.dropdown::before {
  position: absolute;
  content: "";
  left: 0;
  top: -40px;
  width: 100%;
  height: 40px;
  background: transparent;
  z-index: 1;
}

.header ul li ul.dropdown li {
  float: none;
  width: 100%;
}

.header ul li ul.dropdown li a {
  color: white;
  white-space: nowrap;
}

.header ul li ul.dropdown li a:hover {
  color: var(--primary);
}

.header ul li ul.dropdown li a::before {
  display: none;
}

.big-menu {
  position: relative;
  height: 100%;
  background: var(--primary);
  text-align: center;
  cursor: pointer;
  width: 120px;
  min-width: 112px;
}

.big-menu.active {
  cursor: default;
}

.big-menu i {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  font-size: 36px;
}

.big-menu .side-modal i {
  position: relative;
  display: block;
  font-size: 42px;
  color: var(--primary);
  top: unset;
  transform: unset;
}

.close-btn {
  position: absolute;
  top: 35px;
  right: 35px;
  width: fit-content;
  cursor: pointer;
}

.close-btn .heading {
  color: white;
  font-size: 40px;
  font-weight: 700;
}

.bill-button {
  background: var(--primary);
  padding: 30px;
}

.bill-button:hover {
  text-decoration: none;
}

.bill-button .heading {
  white-space: nowrap;
  position: relative;
  top: 48%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}

.logo-icon {
  height: 135px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 15px;
  position: relative;
  width: 135px;
  left: 50%;
  transform: translate(-50%);
  background-color: white;
  border-radius: 50%;
  border: 10px solid white;
}

@-webkit-keyframes SlideRightOne {
    0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}@keyframes SlideRightOne {
    0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}.SlideRightOne {
    -webkit-animation-name: SlideRightOne;
    animation-name: SlideRightOne;
}
.slick-active .slide-content1 {
    animation-name: SlideRightOne;
    animation-duration: .8s;
    opacity: 1;
}

@-webkit-keyframes SlideRightTwo {
    0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}@keyframes SlideRightTwo {
    0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}.SlideRightTwo {
    -webkit-animation-name: SlideRightTwo;
    animation-name: SlideRightTwo;
}
.slick-active .slide-content2 {
    animation-name: SlideRightTwo;
    animation-duration: 1.2s;
    opacity: 1;
}

@-webkit-keyframes SlideRightThree {
    0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}@keyframes SlideRightThree {
    0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}.SlideRightThree {
    -webkit-animation-name: SlideRightThree;
    animation-name: SlideRightThree;
}
.slick-active .slide-content3 {
    animation-name: SlideRightThree;
    animation-duration: 1.6s;
    opacity: 1;
}
.menu-burger {
  position: relative;
  height: 100%;
}
.ham-hold {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  float: right;
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  top: 5px;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:var(--primary);
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham1 .top {
  stroke-dasharray: 40 139;
}
.ham1 .bottom {
  stroke-dasharray: 40 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}

/*Home*/

.hero {
    position: relative;
    background: var(--secondary);
}

.hero-image {
    height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px;
}

.hero-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000009e;
}

.hero.sub-page .hero-image {
  height: 250px;
}

.hero.sub-page .heading {
  margin-bottom: 0;
}

.hero-content {
  position: absolute;
  width: 42%;
  left: 50%;
  padding: 30px;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-content .heading {
  font-size: 50px;
  line-height: 55px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 400;
}

.hero-content .heading strong {
  font-weight: 700;
  font-size: inherit;
}

.hero-content p {
  position: relative;
  margin-bottom: 25px;
  font-size: 18px;
}

.heading {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 400;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.heading strong {
  font-size: 30px;
  font-weight: 700; 
}

.block .heading, .panel-hold .heading {
  line-height: 36px;
}

.service-block .heading {
  font-size: 26px;
  line-height: 26px;
}

.service-block .heading strong {
  font-size: 28px;
}

.info-block .heading {
  font-weight: 700;
}

.sub-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: -5px;
  opacity: .7;
}

.heading.small {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 20px;
}

/*Buttons*/

.wpcf7-submit.btn {
  background: var(--primary);
  color: white;
}

.btn {
  background: transparent;
  border-radius: 0;
  padding: 14px 22px;
  font-size: 17px;
  border: 0;
  transition: all .7s ease;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-decoration: none !important;
  font-family: 'Poppins', sans-serif;
}

.btn:hover {
  color: white;
}

.btn::before {
  position: absolute;
  content: "";
  left: -150px;
  top: 40px;
  transform: translate(-50%);
  height: 200px;
  width: 400px;
  background: #64AE40;
  border-radius: 40%;
  transition: all 1.1s ease;
  z-index: -1;
}

.btn::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #70bf4a;
  transition: all .7s ease;
  z-index: -2;
}

.btn:hover::before {
  left: 100px;
  top: -70px;
}

.btn.dark::before {
  background: #181818;
}

.btn.dark::after {
  background: #282828;
}

.btn.darkened::before {
  background: #00000012;
}

.btn.darkened::after {
  background: #00000012;
}

.btn.white {
  color: #212529;
}

.btn.white::before {
  background: #fffffff0;
}

.btn.white::after {
  background: #ffffffc4;
}

.btn i {
  position: absolute;
  right: 35px;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all .7s ease;
}

.btn:hover i {
  right: 20px;
  opacity: 1;
}

.more {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  left: 20px;
  transition: all .5s ease;
}

.more:hover {
  color: var(--secondary);
  text-decoration: none;
}

.more::before {
  position: absolute;
  content: "";
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 6px;
  background: var(--primary);
  border-radius: 50%;
  transition: all .5s ease;
}

.more:hover::before {
  background: var(--secondary);
}

.block {
  padding: 60px;
  position: relative;
}

.inner-block {
  padding: 80px 60px;
  max-width: 850px;
}

.img-hold {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.transition {
  height: 100%;
}
.transform-hold {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.logo-img {
    width: 240px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 175px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.banner {
	position: relative;
	padding: 80px;
}

.banner.image-bg {
  background-position: center;
  background-size: cover;
  border: 8px solid var(--secondary);
}

.banner.image-bg.default::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: .8;
}

.banner.image-bg.dark::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  opacity: .8;
}

.banner.image-bg .container {
  position: relative;
  z-index: 1;
}

.banner .heading {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 10px;
}
.banner .heading.small {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 0;
}

.side-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 4px solid #ffffff26;
  outline-offset: 10px;
}
.side-image::before {
  position: absolute;
  content: "";
  left: -80px;
  top: -80px;
  width: 160px;
  height: 160px;
  background: transparent;
  border: 12px solid var(--primary);
  opacity: 0.6;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.side-image::after {
  position: absolute;
  content: "";
  right: -80px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  background: transparent;
  border: 12px solid var(--primary);
  opacity: 0.6;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.map iframe {
  width: 100% !important;
  margin-bottom: -8px;
  border-bottom: 12px solid var(--primary) !important;
}
.graphic {
  position: relative;
  height: 160px;
  background-size: contain;
  background-position: center;
  width: 160px;
  background-repeat: no-repeat;
  margin-bottom: 5px;
}

.graphic.lg {
  height: 160px;
  width: 300px;
}

.graphic.sml {
  height: 100px;
  width: 100px;
  width: 100%;
  margin-bottom: 10px;
}
ul.bullet-points {
  margin-bottom: 30px;
}
.point {
  font-size: 18px;
  position: relative;
}
.point i {
  font-size: 10px;
  position: relative;
  top: -2px;
  margin-right: 10px;
}

.info-block {
  position: relative;
  padding: 60px;
  border-right: 1px solid #eee;
  transition: all .4s ease;
  overflow: hidden;
  height: 100%;
}

.info-block:hover {
  padding-bottom: 70px;
  padding-top: 50px;
}

.info-block::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20px;
  height: 20px;
  width: 100%;
  background: var(--primary);
  transition: all .4s ease;
}

.info-block:hover::before {
  bottom: 0px;
}

.info-block i {
  font-size: 60px;
  display: block;
  position: relative;
  margin-bottom: 20px;
  color: var(--primary);
  opacity: .7;
}

.image {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  height: 100%;
}

.panel-hold {
  display: flex;
}

.panel {
  position: relative;
  height: 600px;
  padding: 50px;
  background-size: cover;
  background-position: center;
  flex: 1;
  transition: all .5s ease;
  overflow: hidden;
}

.panel.dark::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: .8;
}

.panel.primary::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: .8;
}

.panel.secondary::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  opacity: .8;
}

.panel:hover {
  flex: 1.2;
}

.panel-content {
  position: absolute;
  width: 80%;
  bottom: 60px;
  transition: all .5s ease;
}

.panel .heading {
  color: white;
}

.panel-content p {
  width: 450px;
  margin-bottom: 30px;
}

.service-block {
  position: relative;
  text-align: center;
  padding: 40px;
  border: 1px solid #ffffff1a;
}

.service-block::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  opacity: 1;
  transition: all .8s ease;
}

.service-block:hover::before {
  width: 100%;
}

.service-block::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  opacity: 1;
  transition: all .8s ease;
}

.service-block:hover::after {
  width: 100%;
}

.video-float {
	position: relative;
	z-index: 2;
	top: 48%;
	transform: translateY(-50%);
	margin: 25px;
	border-bottom: 12px solid #70bf4a;
}

/*Slick*/

.slick-dots {
  position: absolute;
  bottom: 0px;
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  width: fit-content;
  left: 50%;
  transform: translate(-50%);
  background: var(--secondary);
  padding: 8px 20px 12px 20px;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
  left: 58%;
  position: relative;
  transform: translate(-50%);
}

.slick-dots li button::before {
    font-family: slick;
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button::before {
  opacity: .4;
  color: #fff;
}

.slick-dots li.slick-active button::before {
  opacity: .9;
  color: #fff;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-next::before, .slick-prev::before {
    display: none;
}

.slick-arrow.slick-prev {
    left: 35px;
    z-index: 9;
}

.slick-arrow.slick-next {
    right: 35px;
    z-index: 9;
}

.slick-arrow {
    position: absolute;
    color: var(--primary);
    font-size: 50px;
    border: none;
    box-shadow: none;
    transition: all .5s;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.slick-next, .slick-prev {
  width: 52px;
  height: 52px;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
  color: white;
}

/*Contact Form 7*/

input.wpcf7-form-control.wpcf7-text, textarea.wpcf7-form-control.wpcf7-textarea, select.wpcf7-form-control.wpcf7-select {
    width: 100%;
    margin: 12px 0;
    padding: 12px;
    border: 0;
    border: 1px solid #ebebeb;
    border-bottom: 3px solid var(--primary);
    border-radius: 0;
    background: white;
    transition: all 0.5s ease;
}

input.wpcf7-form-control.wpcf7-text:hover, textarea.wpcf7-form-control.wpcf7-textarea:hover {
    outline: 0;
    border-bottom-color: var(--secondary);
}

input.wpcf7-form-control.wpcf7-text:focus, textarea.wpcf7-form-control.wpcf7-textarea:focus {
    outline: 0;
    border-bottom-color: var(--secondary);
}

textarea.wpcf7-form-control.wpcf7-textarea {
    height: 125px;
    margin-bottom: 20px;
}

.wpcf7-form .btn {
  float: right;
}

/*Blog*/

.blog-wrap {
  padding: 10px;
  border: 2px solid #f7f7f7;
}

.blog-image {
  max-height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-content {
  padding: 20px 10px;
}

.blog-wrap .heading {
  font-size: 28px;
}

/*Footer*/

.footer {
    padding: 75px 20px 60px 20px;
    line-height: 42px;
    font-size: 15px;
    color: #fff;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.footer-heading {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #2d2d2d;
  line-height: 30px;
  color: white;
  border-bottom: 1px solid #ffffff0d;
  padding-bottom: 12px;
}

.footer-heading strong {
  font-size: 28px;
  font-weight: 700; 
}

.footer .contact-li {
  line-height: 28px;
  margin-bottom: 20px;
}

.footer-text {
  opacity: .8;
  position: relative;
  line-height: 20px;
  font-size: 14px;
  max-width: 80%;
  margin-top: 26px;
  display: block;
}

.footer ul i {
  font-size: 8px;
  position: relative;
  top: -2px;
  margin-right: 5px;
  color: var(--primary);
}

.footer ul li a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    opacity: .7;
}

.footer ul li a:hover {
    text-decoration: none;
    color: var(--primary);
}

.footer-bottom {
  position: relative;
  background: var(--secondary);
  filter: brightness(.9);
}

.footer-bottom ul li a {
  color: white;
}

ul.policies {
  display: inline-flex;
  position: relative;
  margin: 0;
  padding: 15px;
  filter: brightness(1);
}

ul.policies li {
  margin-right: 25px;
}

/*Responsive*/

@media (max-width: 1200px) {

	.panel-hold {
	display: block;
	}
	.panel {
	position: relative;
	height: 100%;
	padding: 40px;
	width: 100%;
	}
	.panel-content {
	position: relative;
	width: 100%;
	bottom: 0;
	}
	.panel-content p {
	width: 100%;
	}

	.main-header .top-bar ul.right-ul li a span {
	display: none !important;
	}

	.header .main-header .top-bar, .main-header .top-bar ul li a span.hub {
	font-size: 11px;
	}

	.main-header .top-bar ul li a span {
	font-size: 15px;
	}

	.header .menu ul li a {
	font-size: 15px;
	}

	.hero-content {
	width: 75%;
	}

	.header .logo {
	max-width: 275px;
	width: 100%;
	padding: 0 10px;
	}

  .big-menu {
    width: 100%;
    min-width: unset;
  }

  .main-header .container {
    padding: 0;
  }

}

@media (max-width: 991px) {

  .big-menu .side-modal ul li i {
    position: relative;
    display: inline;
    font-size: 10px;
    color: var(--primary);
    transform: unset;
    margin-left: 0;
    margin-right: 2px;
    top: -2px;
  }

  .big-menu .side-modal p {
    font-size: unset !important;
  }

  .big-menu .side-modal ul li a:hover {
    text-decoration: none;
  }

    .header .main-header, .header.mid .main-header, .header.stuck .main-header {
      position: fixed;
      left: 0;
      top:  0;
      width: 100%;
      transition: all .8s ease;
      box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    }

    .top-bar {
      display: none;
    }

    .header .logo {
      width: 230px;
      padding: 0;
    }

    .header .menu {
        position: relative;
        top: 0;
        transform: none;
    }

    .header .menu ul li {
        width: 100%;
        text-align: center;
    }

    .main-header .side-modal {
      padding: 100px 30px;
    }

    .header ul {
        display: block;
    }

    .header ul li {
        display: inline-block;
        padding: 5px 0;
        position: relative;
        transition: all 0.5s ease;
        text-align: left;
        width: 100%;
    }

    .header ul li a {
        color: black;
        position: relative;
        padding: 0;
        margin: 0;
        transition: all 0.5s ease;
        font-size: inherit;
        line-height: inherit;
    }

    .header .menu ul li a {
        line-height: 40px;
        color: white;
    }

    .header .menu ul li a {
  	font-size: 22px;
  	}

    .header .menu ul li {
        display: block;
    }

    .header .menu ul {
        height: 100vh;
        width: 100vw;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        display: block;
        padding: 80px 50px;
        transform: translateY(0);
        overflow-y: scroll;
    }

    .header ul li ul.dropdown {
      position: relative !important;
      left: 0;
      top: 0;
      margin-left: 0;
      background: white;
      line-height: unset;
      padding: 10px 0 0 0;
      background: transparent;
      border-top: 0;
      width: 100%;
      overflow: unset;
      visibility: visible;
	  opacity: 1;
    }

    .header ul li ul.dropdown li a {
	  white-space: unset;
	}

    .header .menu ul.active {
        opacity: 1;
        visibility: visible;
    }

    .header .menu ul li a, .header ul li ul.dropdown li a {
      color: black;
    }

    .header .menu ul li a::before {
        display: none;
    }

    .hero {
  	  padding-left: 0;
  	  padding-right: 0;
      margin-top: 134.5px;
  	}

    .hero-image {
  	  height: 650px;
  	}

    .hero-content {
    	width: 100%;
      position: relative;
      padding: 10px;
      top: 50%;
      left: unset;
      transform: unset;
      transform: translateY(-50%);
    }

    .hero-content p {
  	  margin-bottom: 20px;
  	  font-size: 16px;
  	  line-height: 22px;
  	}

  	.hero-content .heading {
  	  font-size: 40px;
  	  line-height: 40px;
  	  margin-bottom: 25px;
  	}

  	.info-block {
  	  border-bottom: 1px solid #eee;
  	}

  	.service-block {
  		margin-bottom: 25px;
  	}

    .main-header .logo-hold {
      border: 0;
      padding: 8px;
      float: left;
    }

    .side-image {
      height: 300px;
    }

    iframe {
      max-height: 350px;
    }

    .inner-block {
      padding: 80px 20px !important;
    }

    ul.policies {
      display: block;
    }

    ul.policies li {
      margin-right: 0;
      margin-bottom: 10px;
    }

    .btn {
    	margin-bottom: 5px;
    	max-width: 300px;
    	width: 100%;
    }



}

@media (max-width: 768px) {

   p {
    font-size: 14px;
  }

  .btn {
    font-size: 16px;
  }

  .block {
    padding: 50px 20px !important;
  }

  .inner-block {
    padding: 60px 20px !important;
  }

  .video-float {
    position: relative;
    top: 0;
    transform: translateY(0);
    margin: 0;
  }

  iframe {
    max-height: 300px;
  }

  .footer-text {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 576px) {

  .ham-hold {
    transform: translateY(-50%) scale(.8);
  }

  .hero {
    margin-top: 98.5px;
  }

  .hero-image {
    padding: 60px 10px;
  }

  .info-block {
    padding: 35px;
  }

  .info-block:hover {
    padding-bottom: 45px;
    padding-top: 25px;
  }

  .inner-block {
    padding: 20px 10px !important;
  }


  .block {
    padding: 20px 10px;
  }

  .block .container {
    padding: 0;
  }

  p {
    font-size: 13px;
  }

  .btn {
    font-size: 15px;
  }

  .block.blue .heading {
    line-height: 30px;
    margin-bottom: 10px;
  }

  .block.blue .heading strong {
    font-size: 30px;
  }

  .heading {
    font-size: 24px;
  }

  .block .heading {
    font-weight: 400 !important;
    line-height: 26px !important;
    margin-bottom: 12px !important;
    color: inherit !important;
  }

  .block .heading strong {
    font-size: 24px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }

  .graphic {
    height: 125px;
  }

  .graphic.sml {
    height: 85px;
  }

  .footer .col-lg-3 {
    margin-bottom: 20px;
  }

  .banner {
    padding: 30px 10px !important;
  }

  .banner p {
    margin-bottom: 0 !important;
  }

  .banner .heading {
    font-size: 26px !important;
    line-height: 28px !important;
  }

  .heading.small {
    font-size: 22px !important;
    font-weight: 300 !important;
    line-height: 25px !important;
    margin-bottom: 0px !important;
  }

  .footer {
    padding: 50px 5px 20px 5px;
  }

  .side-image {
    height: 225px;
  }

  .breadcrumb {
    padding: 0;
  }

  iframe {
    max-height: 250px;
  }

  ul.policies {
    padding: 15px 5px;
  }

  .header .logo {
    width: 160px;
  }

}

@media (max-width: 400px) {

   p {
    font-size: 12px;
  }

  iframe {
    max-height: 200px;
  }

  .service-block {
    padding: 20px;
  }
  
  .block {
    padding: 30px 20px !important;
  }

}
