:root {
  --dark-blue: #00142b;
  --light-blue: #0793d9;
}
p,
ul,
ol,
dl,
blockquote,
address {
  margin-top: 0;
  margin-bottom: 20px;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

a,
.btn,
.nav-opener:before,
.nav-opener:after,
.nav-opener span,
#nav {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ellipsis {
  white-space: nowrap; /* 1 */
  text-overflow: ellipsis; /* 2 */
  overflow: hidden;
}
/*  ---------------------------------------------------------
	3. General reset
	---------------------------------------------------------*/

html.resize-active *,
html.resize-active *:before,
html.resize-active *:after {
  -webkit-transition: none !important;
  transition: none !important;
}

body {
  min-width: 375px;
  -ms-overflow-style: scrollbar;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: #3c3c3c;
  background: #fff;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  text-decoration: none;
  text-transform: none;
}

a,
.btn,
button {
  text-decoration: none;
}
a {
  color: #00142b;
}
a:hover {
  color: #0793d9;
}
a:focus,
a:active,
.btn:focus,
.btn:active,
button:focus,
button:active {
  outline: none;
}

strong,
b {
  font-weight: 500;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
  margin-bottom: 0 !important;
}
h1,
.h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 34px;
  margin-top: 0;
  margin-bottom: 20px;
}
h2,
.h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 32px;
  margin-top: 0;
  margin-bottom: 18px;
}
h3,
.h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;

  font-size: 20px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 16px;
}
h4,
.h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-size: 17px;
  line-height: 21px;
  margin-top: 0;
  margin-bottom: 14px;
}
h5,
.h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}
h6,
.h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-size: 13px;
  line-height: 16px;
  margin: 0;
}
h1,
h2,
h3,
h5,
h1 a,
h2 a,
h3 a,
h5 a {
  color: #00142b;
}
ul li a {
  color: #00142b;
}
h4,
h6,
h4 a,
h6 a {
  color: #0793d9;
}
h4 a:hover,
h6 a:hover {
  color: #00142b;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h5 a:hover,
li a:hover {
  color: #0793d9;
}
input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea,
textarea.wp-editor-area,
select {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  text-decoration: none;
  text-transform: none;
}
p:last-child {
  margin-bottom: 0 !important;
}

.btn {
  min-width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  border: none;
  padding: 15px 30px;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
}
.btn:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.09);
}
.btn.shadow {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.09);
}

.btn i {
  display: inline-flex;
  font-size: 18px;
  margin: 0 10px 0 0;
}
.btn-primary {
  color: #fff;
  background: #00142b;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #0793d9;
  color: #fff;
}

.btn-secondary {
  color: #fff;
  border-color: #0793d9;
  background: #0793d9;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  color: #fff;
  background: #00142b;
  border-color: #00142b;
}
.dark-blue {
  color: var(--dark-blue);
}
.light-blue {
  color: var(--light-blue);
}
.bg-dark-blue {
  background: var(--dark-blue) !important;
}
.bg-dark-blue h1,
.bg-dark-blue h2,
.bg-dark-blue h3,
.bg-dark-blue h4,
.bg-dark-blue h5,
.bg-dark-blue h6,
.bg-dark-blue p {
  color: #fff;
}
.bg-light-blue {
  background: var(--light-blue) !important;
}
.light-blue-op {
  background: rgba(0, 147, 217, 0.1);
}
.bg-white {
  background: #fff !important;
}
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-white p {
  color: var(--dark-blue);
}
.space-grotesk {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #00142b;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #00142b;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after,
.video-play-button:hover:before {
  background-color: #0793d9;
}
.fa-play,
.fa-location-arrow {
  position: relative;
  z-index: 5;
}
.fa-play::before,
.fa-location-arrow:before {
  font-size: 30px;
  color: #fff;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*  ---------------------------------------------------------
	4. Сommon site styles
	---------------------------------------------------------*/

/* main container styles */

/* header styles */

#header {
  width: 100%;
  min-width: 375px;
  position: relative;
  top: 0;
  z-index: 999;
  margin-bottom: 121px;
}
.header {
  padding: 15px 0;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 0.3s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.09);
}
#header .logo {
  max-width: 160px;
  margin: 0;
  width: 100%;
  transition: all 0.3s;
}
#header .header.header-fixed .logo {
  max-width: 120px;
}
#header .logo a {
  color: #00142b;
}
#header .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-opener {
  width: 59px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 0;
  background: var(--dark-blue);
}
.nav-opener:before,
.nav-opener:after,
.nav-opener span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 20px;
  left: 15px;
  right: 0;
  width: 25px;
}

.nav-opener:before,
.nav-opener:after {
  content: "";
  top: 10px;
  width: 30px;
}

.nav-opener:after {
  top: 30px;
}

.nav-active .nav-opener span {
  opacity: 0;
}

.nav-active .nav-opener:before,
.nav-active .nav-opener:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
}

.nav-active .nav-opener:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-opener:hover {
  opacity: 0.9;
}

.nav-holder {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#nav {
  width: 100%;
  padding: 20px 15px;
  color: #00142b;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 120px;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  transform: translateX(100%);
  z-index: 99;
}
.header.header-fixed #nav {
  top: 100px;
}
.nav-active #nav {
  transform: translateX(0);
  background: var(--dark-blue);
}

#nav .main-nav {
  margin: 0;
}

#nav .main-nav li {
  padding: 0 0 10px;
  position: relative;
}
#nav .main-nav li a {
  padding: 10px;
  display: block;
  color: #fff;
}
#nav .main-nav li.active a,
#nav .main-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--light-blue);
}

#nav .main-nav li a {
  font-weight: 500;
  text-transform: uppercase;
}
#nav .main-nav li .righticon{
  position: absolute;
  right:0;
  top: 20px;
  font-size: 12px;
  transition: all 0.3s;
  line-height: 1;
  color: #fff;
}
#nav .main-nav li .sub-menu {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
#nav .main-nav li .sub-menu ul {
  flex-direction: column;
  grid-row-gap: 10px;
  padding: 10px;
  display: flex;
  width: 100%;
}
#nav .main-nav li .sub-menu ul li {
  margin: 0;
}

#nav .main-nav li.open .sub-menu {
  display: block;
  cursor: pointer;
}
#nav .main-nav li.open .sub-menu .righticon i {
   transform: rotate(180deg);
  }
.disabled-link {
    pointer-events: none;
}
/* .slider-section .step-slider {
	position: static;
} */
.slider-section .img-holder {
  padding-top: 0;
  min-height: 710px;
}
[style*="background-image"] {
  background-size: cover;
  background-position: center;
}
.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 100%;
  justify-content: center;
}
.slick-dots li {
  margin: 0 5px;
  font-size: 0;
  line-height: 0;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 100%;
  background: transparent;
  font-size: 0;
  line-height: 0;
}
.slick-dots li.slick-active button {
  background: #fff;
}
/* Slick slider styles */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 14px;
  background: #fff;
  border-radius: 100%;
  border: none;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.09);
  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;
  position: absolute;
}

.slick-arrow:hover {
  color: #fff;
  background: #0063b2;
}

.slick-arrow i {
  display: block;
}
.header.header-fixed {
  top: 0;
  position: fixed;
  transition: all 0.3s;
}
.top-header {
  background: #0793d9;
  padding: 10px 0;
}
.top-header .top-area {
  display: flex;
}
.top-header .top-area address {
  margin: 0 10px 0 0;
}
.top-header .top-area i {
  margin-right: 5px;
}
.top-header .top-area a {
  color: #fff;
  font-size: 16px;
}
.top-header .top-area a:hover {
  color: #00142b;
}
.banner .container-fluid {
  padding: 0;
}
.banner .row {
  margin: 0;
  flex-wrap: wrap;
}
.ban-column {
  padding: 0;
  flex: 1 1 100%;
  color: #fff;
  background-color: #00142b;
  transition: all 0.3s linear 0s;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  width: auto;
}
.banner-content {
  height: 450px;
  overflow: hidden;
  position: relative;
  display: grid;
}
.banner-img,
.text-container {
  overflow: hidden;
  grid-area: 1/-1;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 0 !important;
  overflow: hidden;
  text-align: center;
}
.banner-img {
  display: inline-flex;
  width: 100%;
  position: relative;
}
.banner-img:before {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  transition: inherit;
  background-color: rgb(0, 0, 0);
  background-image: linear-gradient(20deg, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0.43;
}
.banner-img a {
  display: block;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.banner-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.text-container {
  display: grid;
  align-self: flex-end;
  padding: 20px;
  padding-bottom: 120px;
  padding-right: 50px;
  padding-left: 50px;
  width: 100%;
  text-align: left;
  margin-left: auto;
}
.ban-column .content-title {
  position: relative;
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  margin-bottom: 15px;
}
.ban-column .content-title h5 {
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1;
}
.ban-column .content-title h5 a {
  color: #fff !important;
}
.banner-content-description {
  position: relative;
}
.banner-btn {
  transition: all 0.3s ease-in-out;
  position: relative;
}
.banner-btn a {
  color: #fff !important;
  font-size: 16px;
}
.ban-column .banner-btn a:hover {
  text-decoration: underline;
}
.two-columns .container-fluid {
  padding: 0;
}
.two-columns .container-fluid .row {
  margin: 0;
  align-items: center;
}
.two-columns .container-fluid .row > * {
  padding: 0;
}
.two-columns .two-column-img {
  position: relative;
}
.two-columns .two-column-img img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}
.two-columns .two-column-content {
  padding: 0 20px 50px;
}
.two-columns .two-column-content.bg {
  background: url(../images/bg-frame.webp) no-repeat;
  background-size: 30%;
  background-position: center right;
}
.two-columns .two-column-img .permotion {
  position: absolute;
  bottom: 100px;
  left: 0;
  padding: 0 20px;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.two-columns .two-column-img .permotion .titie {
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.two-columns .two-column-img .permotion .btn-primary {
  max-width: 190px;
  margin: 10px auto;
  border-radius: 0;
}
.single-column {
  padding: 100px 0;
  background: url(../images/bg-section-01.webp) no-repeat;
  background-size: cover;
  background-color: rgba(7, 147, 217, 0.2);
  background-attachment: fixed;
  background-position: center center;
  opacity: 1;
  mix-blend-mode: darken;
}

.small-area {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.medium-area {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.section-t-head {
  margin-bottom: 30px;
}
.single-column .single-column-img {
  margin-bottom: 30px;
}
.single-column .single-column-img img {
  display: block;
  width: 100%;
  height: auto;
}
.list-item {
  margin-bottom: 30px;
}
.column-2 {
  column-count: 2;
}
.list-item li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.list-item li:before {
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
}
h6 {
  position: relative;
  text-transform: uppercase;
}
h6::after {
  content: "";
  display: block;
  width: 75px;
  height: 2px;
  margin: 8px 0 16px 0;
  background-color: #0793d9;
}
.text-center h6::after {
  margin: 8px auto 16px;
}
.step-services-slider {
  padding-bottom: 50px;
}
.services-slider .slick-dots li button {
  border: 1px solid var(--dark-blue);
  border-radius: 100%;
  background: transparent;
  font-size: 0;
  line-height: 0;
}
.services-slider .slick-dots li.slick-active button {
  background: var(--dark-blue);
}
.service-slider-content {
  position: relative;
  overflow: hidden;
}
.services-slider .con {
  padding: 20px;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  z-index: 20;
  height: auto;
  box-sizing: border-box;
  background: -moz-linear-gradient(
    top,
    transparent 0,
    rgba(0, 0, 0, 0.1) 2%,
    rgba(0, 0, 0, 0.75) 90%
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    rgba(0, 0, 0, 0.01) 2%,
    rgba(0, 0, 0, 0.75) 90%
  );
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(0, 0, 0, 0.01) 2%,
    rgba(0, 0, 0, 0.75) 90%
  );
}
.services-slider .con h5,
.services-slider .con h5 a {
  position: relative;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 10px;
}
.services-slider .con i {
  color: #fff;
  font-size: 18px;
}
.services-slider .con i:hover {
  color: #fff;
}
/* line animation */
.services-slider .line {
  text-align: center;
  height: 1px;
  width: 60px;
  background-color: #fff;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  margin: auto 0 20px;
}
.line {
  width: 60px;
  border-top: 1px solid #fff !important;
  margin-bottom: 20px;
}
.services-slider .slide:hover .line {
  width: 100%;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

.services-slider .con .permalink {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline;
}
.services-slider .con .permalink a {
  color: #fff;
  text-align: right;
}
.services-slider .con .permalink i {
  font-size: 10px;
  text-align: right;
}
.services-slider .con .permalink a:hover,
.services-slider .con .permalink a:hover i {
  color: #24547b;
}
.services-slider .slide:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-filter: brightness(70%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.services-slider .slide:hover .con {
  bottom: 0;
}
.services-slider .slide img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
.bg-window {
  position: relative;
}
.bg-window::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-window.webp);
  background-position: top;
  background-repeat: repeat;
  background-size: 35% 100%;
  opacity: 0.3;
  background-color: #dfebf6;
}
.grid-container {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1;
  grid-auto-rows: auto;
}
.grid-item {
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.grid-item:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s;
}
.grid-item:hover img {
  scale: 1.1;
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
  z-index: 999;
}

.lightbox .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  z-index: 9999;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  font-weight: normal;
  text-shadow: none;
}

.lightbox .lightbox-slider {
  position: relative;
  width: 100%;
}

.lightbox img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #24547b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}

.lightbox .prev:hover,
.lightbox .next:hover {
  opacity: 0.7;
}
.map-area {
  position: relative;
  background: var(--dark-blue);
  color: #fff;
}
.map-area h2, .map-area h3 {
  color: #fff;
}
.map-area .form-col {
  position: relative;
  z-index: 5;
  border: none;
  background: #fff;
  padding: 30px 37px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  color: #3c3c3c;
}
.map-area .contact-info {
  margin-bottom: 30px;
}
.map-area .contact-info li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.map-area .contact-info li a {
  color: #fff;
  font-size: 16px;
}
.map-area .contact-info li a:hover {
  color: var(--light-blue);
}
.map-area .contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
}
.map-area .logo {
  padding: 0 0 150px;
  background: url(../images/transparent-logo.webp) no-repeat;
  background-size: contain;
}
.map-area .social {
  display: flex;
  margin-bottom: 30px;
}
.map-area .social li {
  margin-right: 15px;
}
.map-area .social li i {
  font-size: 26px;
  color: var(--dark-blue);
  line-height: 1;
}
.map-area .social li a {
  display: flex;
  text-align: center;
  background: #fff;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  color: var(--dark-blue);
}
.map-area .social li a:hover {
  background: var(--light-blue);
  color: #fff;
}
.map-area .social li a:hover i {
  color: #fff;
}
.map-area.cta-inner {
  background: #fff;
  color: #3c3c3c;
}
.map-area.cta-inner h2 {
  color: #3c3c3c;
}
.map-area.cta-inner .contact-info li a {
  color: #3c3c3c;
}
.map-area.cta-inner .contact-info li a:hover {
  color: var(--light-blue);
}
.map-area.cta-inner .social li a {
  background: var(--light-blue);
}
.map-area.cta-inner .social li a:hover {
  background: var(--dark-blue);
}
.map-area.cta-inner .social li a i {
  color: #fff;
}
.map-iframe iframe {
  width: 100%;
  display: block;
}
footer {
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.09);
}
.footer-top .widget {
  margin-bottom: 20px;
}
.footer-top .widget .logo {
  max-width: 200px;
  width: 100%;
  margin-bottom: 30px;
}
.footer-top .widget .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-top .widget .widget-title {
  margin-bottom: 25px;
  color: var(--dark-blue);
}
.textwidget {
  margin-bottom: 20px;
}
.textwidget P {
  font-size: 16px;
}
.textwidget p i {
  margin-right: 10px;
}
.textwidget .contact-info li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.textwidget .contact-info li a {
  font-size: 16px;
}
.textwidget .contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
}
.footer-nav li {
  margin-bottom: 10px;
  font-size: 16px;
}
.footer-nav li a {
  color: var(--dark-blue);
  line-height: 19px;
}
.footer-nav li a:hover {
  color: var(--light-blue);
}
.textwidget a {
  color: var(--dark-blue);
}
.textwidget a:hover {
  color: var(--light-blue);
}
.footer-bottom {
  padding: 10px 0;
  border-top: 1px solid #fff;
  background-color: var(--dark-blue);
  font-size: 14px;
}
.footer-bottom .developed {
  color: #fff;
}
.footer-bottom p {
  color: #fff;
}
footer .social {
  display: flex;
  margin-bottom: 30px;
}
footer .social li {
  margin-right: 15px;
}
footer .social li i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
footer .social li a {
  display: flex;
  text-align: center;
  background: var(--dark-blue);
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
footer .social li a:hover {
  background: var(--light-blue);
}
.icon-column {
  color: var(--dark-blue);
  padding: 20px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 22px;
  height: 100%;
  transition: all 0.3s;
}
.icon-column .icon {
  background: var(--dark-blue);
  width: 85px;
  height: 85px;
  border-radius: 100%;
  margin: 0 auto 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-column:hover {
  cursor: pointer;
  background: var(--light-blue) !important;
}
.icon-column .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.icon-column h3 {
  font-size: 22px;
}
.icon-column:hover h3,
.icon-column:hover p {
  color: #fff;
}
.payment-cards img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 200px;
}
.gallery {
  margin: 0 auto;
}

.grid-item {
  width: calc(50% - 10px);
  margin: 0 0 10px;
  float: left;
  transition: all 0.3s ease;
}

.grid-item img {
  max-width: 100%;
  height: auto;
}
.col-sidebar aside {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.09);
  margin-bottom: 30px;
  padding: 20px;
}
.col-sidebar aside img,
.col-sidebar aside iframe {
  display: block;
  width: 100%;
  height: auto;
}
.col-sidebar aside h3 {
  font-size: 20px;
}
.col-sidebar aside .list-item{
  margin-bottom: 0;
}
.col-sidebar aside .contact-info {
  margin-bottom: 20px;
}
.col-sidebar aside .contact-info li {
  margin-bottom: 10px;
}
.col-sidebar aside .contact-info li a {
  display: flex;
}
.col-sidebar aside .contact-info li a i {
  margin-right: 10px;
  margin-top: 2px;
}
.col-sidebar aside .social{
  display: flex;
  align-items:center;
}
.col-sidebar aside .social li{
  margin: 0 10px 0 0;
}
.col-sidebar aside .social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  color: #fff;
}
.col-sidebar aside .social li a:hover {
  background: var(--dark-blue);
  color: #fff;
}
.banner-page {
  background-image: url('../images/page-banner-mirrors.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
  max-height: 600px;
  min-height: 425px;
  position: relative;
}
.banner-about {
  background-image: url('../images/page-banner-about-mobile.webp');
  background-position: bottom center;
}
.banner-gallery {
  background-image: url('../images/page-banner-gallery-mobile.webp');
  background-position: bottom center;
}
.banner-glass {
  background-image: url('../images/page-banner-glass-mobile.webp');
  background-position: bottom center;
}
.banner-services {
  background-image: url('../images/page-banner-services-mobile.webp');
  background-position: bottom center;
}
.banner-shower-doors {
  background-image: url('../images/page-banner-shower-doors-mobile.webp');
  background-position: bottom center;
}
.o-glass {
  background-image: url('../images/page-banner-auto-glass-mobile.webp');
  background-position: bottom center;
}

.banner-about::before,
.banner-gallery:before,
.banner-glass:before,
.banner-services:before,
.banner-shower-doors:before,
.banner-mirrors:before,
.banner-auto-glass:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}
.inner-banner-content {
  padding-top: 275px;
  padding-bottom: 50px;
}
.inner-banner-content .page-title h1 {
  color: #ffffff;
}
.inner-banner-content .page-description {
  color: #ffffff;
  width: 100%;
  max-width: 480px;
}
.banner-contact {
  background-image: url('../images/reed-contact-us-banner.webp');
  background-position: bottom center;
}
.banner-mirrors {
  background-image: url('../images/page-banner-mirror-mobile.webp');
  background-position: bottom center;
}
.product-item {
  border: 1px solid var(--dark-blue);
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.listing-row {
	grid-row-gap: 30px;
}
.product-img {
  padding: 20px;
  height: 300px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: all 0.3s;

}
.product-desc {
  padding: 20px;
  transition: all 0.3s;
}
.product-desc .prod-title {
  color: var(--dark-blue);
}
.product-item:hover {
  cursor: pointer;
}
.product-item:hover .product-img img {
  transform: scale(1.1);
}
.product-item:hover .product-desc {
  background: var(--dark-blue);
  color: #fff;
}
.product-item:hover .product-desc h4 {
  color: #fff;
}
.product-item .product-desc span {
  display: block;
}
@media (min-width: 576px) {
  .two-columns .two-column-img .permotion {
    flex-direction: row;
  }

  .two-columns .two-column-img .permotion .btn-primary {
    margin: 0;
  }
}

@media (min-width: 768px) {
  #header .logo {
    max-width: 200px;
  }
  .banner-content {
    height: 600px;
  }
  .banner-content-description {
    width: 48%;
  }
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 0;
    margin-bottom: 24px;
  }
  h2,
  .h2 {
    font-size: 28px;
    line-height: 36px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  h3,
  .h3 {
    font-size: 22px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 18px;
  }
  h4,
  .h4 {
    font-size: 18px;
    line-height: 22px;
    margin-top: 0;
    margin-bottom: 16px;
  }
  h5,
  .h5 {
    font-size: 16px;
    line-height: 20px;
    margin-top: 0;
    margin-bottom: 14px;
  }
  h6,
  .h6 {
    font-size: 14px;
    line-height: 18px;
  }
  .header {
    padding: 15px;
  }
  .top-header {
    padding: 10px 15px;
  }
  .two-columns .two-column-content {
    padding: 50px;
  }
  .two-columns .two-column-content .column-content-text {
    max-width: 670px;
    width: 100%;
  }
  .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
  .banner-content {
    height: 700px;
  }
  .banner-img:before {
    opacity: 0.7;
  }
  .ban-column:hover .banner-img::before {
    opacity: 0.43;
  }
  .ban-column:hover .text-container {
    width: 90%;
  }
  .ban-column .content-title {
    position: absolute;
    width: max-content;
    transform: translateX(-50px) rotate(270deg);
    transform-origin: 0 0;
    left: 60%;
    bottom: 50px;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    margin-bottom: 15px;
  }
  .ban-column .content-title h5 {
    font-size: 50px;
    letter-spacing: 2px;
  }
  .ban-column .content-title h5 a {
    color: #fff !important;
  }
  .ban-column:hover .content-title {
    left: 60px;
  }
  .banner-content-description {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    right: -100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    width: 20vw;
    position: relative;
    z-index: 0;
  }
  .ban-column:hover .banner-content-description {
    visibility: visible;
    opacity: 1;
    right: 0;
    transition: all 0.3s linear 0s;
  }
  .banner .row {
    flex-wrap: nowrap;
  }
  .ban-column {
    width: 20%;
    flex: 1 1 33.33%;
  }
  .ban-column:hover {
    flex-basis: 48%;
  }
  .banner-btn {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    right: -100%;
    position: relative;
  }
  .banner-btn a {
    color: #fff !important;
  }
  .ban-column .banner-btn a:hover {
    text-decoration: underline;
  }
  .ban-column:hover .banner-btn {
    visibility: visible;
    opacity: 1;
    right: 0;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
  }
  .grid-item {
    width: calc(33% - 10px);
  }
}

@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
  }
  h2,
  .h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 16px;
  }
  h3,
  .h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 16px;
  }
  h4,
  .h4 {
    font-size: 25px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 8px;
  }
  h5,
  .h5 {
    font-size: 18px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 16px;
  }
  h6,
  .h6 {
    font-size: 16px;
    line-height: 1.2;
  }
  #header {
    margin-bottom: 0;
  }
  .header {
    padding: 15px 0;
    position: static;
  }
  .top-header {
    padding: 10px 0;
  }
  .nav-opener {
    display: none;
  }
  #nav {
    width: auto;
    padding: 0;
    flex-grow: 1;
    position: static;
    overflow: visible;
    color: inherit;
    border: none;
    background: none;
    transform: none;
    flex-direction: row;
    align-items: center;
  }

  .nav-active #nav {
    box-shadow: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  #nav .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  #nav .main-nav li {
    padding: 0;
    position: relative;
    margin: 0 0 0 15px;
  }
  #nav .main-nav li a {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
    background: none;
    color: var(--dark-blue);
    padding: 0;
  }
  #nav .main-nav li.active a,
  #nav .main-nav li a:hover {
    color: var(--light-blue);
    text-decoration: none;
    background: none;
  }
  #nav .main-nav li.dropdown {
    padding-right: 5px;
    margin-right: 10px;
  }
  #nav .main-nav li .righticon{
    position: absolute;
    right: -13px;
    top: 3px;
    transition: all 0.3s;
    color: var(--dark-blue);
  }
  #nav .main-nav li:hover .righticon i {
   transform: rotate(180deg);
  }
  #nav .main-nav li .sub-menu {
    display: none;
    position: absolute;
    width: 250px;
    padding: 40px 0 0;
  }
  #nav .main-nav li .sub-menu ul {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.09);
    background: #fff;
  }
  #nav .main-nav li .sub-menu ul li {
    margin: 0;
  }
  #nav .main-nav li:hover .sub-menu {
    display: block;
  }
  .two-columns .two-column-content {
    padding: 50px 80px;
  }
  .banner-about {
    background-image: url('../images/page-banner-about.webp');
  }
  .banner-gallery {
    background-image: url('../images/page-banner-gallery.webp');
  }
  .banner-glass {
    background-image: url('../images/page-banner-glass.webp');
  }
  .banner-services {
    background-image: url('../images/page-banner-services.webp');
  }
  .banner-shower-doors {
    background-image: url('../images/page-banner-shower-doors.webp');
  }
  .banner-mirrors {
    background-image: url('../images/page-banner-mirror.webp');
  }
  .banner-auto-glass {
    background-image: url('../images/page-banner-auto-glass.webp');
  }
}
@media (min-width: 1300px) {
  .header {
    padding: 15px 50px;
  }
  .top-header {
    padding: 10px 50px;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .grid-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; 
  }
}

.grid-items {
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.grid-items:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.grid-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s;
}
.grid-items:hover img {
  scale: 1.1;
}
.success {
	color: green;
}
.fail {
	color: red;
}

.potinput {
  display: none;
}