:root {
    --bg: #D9C7A31A;
    --bgd9: #D9C7A31A;
    --muted: #bfbfbf;
    --white: #fff;
    --dash-width: 4px;
    --line-color: #fff;
    --glow: 0 0 18px rgba(255, 255, 255, 0.12), 0 0 36px rgba(255, 255, 255, 0.06);
    --primary: #66CD1C;
    --grey-4a: #4A3F35;
    --warm: #D9C7A3;
    --black: #2D3134;
    --offwhite: #F7F5F2;
    --darkgray: #323232;
}

body {
    color: #676A6C;
    font-family: "Poppins", sans-serif;
}
* {
    color: inherit;
}
img {
    max-width: 100%;
}
.bg-d9 {
    background-color: var(--bgd9);
}
.bg-off-white {
    background-color: var(--offwhite);
}
.main-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0;
    color: var(--black);
    margin-bottom: 16px;
    width: 100%;
}
.title-wrapper {
    margin-bottom: 45px;
}
.title-wrapper h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0;
    color: var(--darkgray);
}
section {
    padding: 100px 0;
}
p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.md-show {
    display: none;
}
.container {
    max-width: 1744px;
    padding: 0 12px;
}
.btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-align: center;
    padding: 11px 26px;
    text-transform: uppercase;
    border-radius: 40px;
    border: 1px solid transparent;
    transition: .5s ease-in-out;
    /* transition: transform .35s ease, background .3s, color .3s; */
    transform-origin: left center; 
}
.btn:hover {
    background-color: var(--primary);
    color: var(--white);
}
.white-btn {
    border: 1px solid var(--primary);
    background-color: var(--white);
}
.green-btn {
    background-color: var(--primary);
    color: var(--white);
}
.green-btn:hover {
    background-color: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
}
.columns{
  column-count:3;
  column-gap:40px;
}

/* ===============  NAVIGATION =============== */
.nav-wrapper {
    max-width: 1800px;
    width: 100%;
}
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 0 12px;
}
.top-bar p {
    font-size: 14px;
    padding: 8px;
    font-weight: 400;
    margin-bottom: 0;
}
.top-bar .close-btn {
    background-color: transparent;
    border: none;
}
.top-bar .close-btn img {
    height: 14px;
}
.top-bar .close-btn img:focus-visible {
    border: none;
    outline: none;
}
.navbar {
    padding: 25px 24px;
    position: sticky;
    top: 0;
    z-index: 9;
}
.navbar-nav .nav-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--grey-4a);
    letter-spacing: 0;
    padding: 0;
    align-items: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex;
}
.navbar-nav .nav-link.show::after {
    transform: rotate(180deg);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary);
}
.navbar-nav .nav-link::after {
    background-image: url('../images/down-arrow.png');
    border: none;
    height: 8px;
    width: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-left: 10px;
    transition: .5s ease-in-out;
}
.navbar-nav .nav-item {
    display: flex;
    margin: 0 15px;
}


/* =============== Slider Design =============== */
.hero-slider {
  position: relative;
}
.bg-slider-img {
    position: relative;
    height: 100%;
}
.bg-slider-img::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(50, 50, 50, 0.5) 100%);
}
.hero-slider .swiper-slide {
  position: relative;
  height: 750px;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-slider .swiper-wrapper{
  transition-timing-function: linear !important;
}

/* =============== Content =============== */
.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--white);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content h2,
.single-banner h1  {
    font-weight: 700;
    font-size: 64px;
    line-height: 74px;
    width: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.slide-content h2 span,
.single-banner h1 span {
  color: var(--warm);
}
.slide-content p {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    margin-bottom: 34px;
}
 /* =============== Controls Wrapper =============== */
.slider-controls {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    right: 0;
    max-width: 1744px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    display: flex;
    margin: auto;
}
.swiper-pagination {
    bottom: 4px !important;
    left: 50px !important;
    width: auto !important;
    align-items: center;
    display: flex;
}
/* =============== Arrows =============== */
.swiper-button-prev,
.swiper-button-next {
    position: relative;
    top: auto;
    left: 0;
    right: auto;
    margin: 0;
    color: #fff;
    max-height: 22px;
    width: fit-content;
}

/* =============== Space between prev & next =============== */
.swiper-button-next {
  left: 123px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    max-height: 22px;
    font-size: 22px;
}
/* =============== Dots style =============== */
.swiper-pagination-bullet {
  opacity: 1;
  height: 16px;
  width: 16px;
  border: 2px solid var(--white);
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--white);
}

/* =============== PRODUCT CARDS =============== */
.product-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--offwhite);
    transition: 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.card-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.card-content {
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0 0 24px 24px;
    height: calc(100% - 300px);
    border: 1px solid #8C7D6B80;
}

.card-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--darkgray);
}

.card-content p {
    color: var(--grey-4a);
    margin-bottom: 24px;
}
.product-card .btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.4px;
    height: fit-content;
    margin-top: auto;
}
.all-cards.dots-right-bottom {
    margin-bottom: 50px;
}
.all-cards {
    overflow: hidden;
}
.all-cards.sparkle-left-top::after {
    z-index: -1;
}
/* =============== BACKGROUND SHAPES =============== */
.sparkle-left-top,
.dots-right-bottom,
.shape-Dawn,
.vector-lines,
.sparkle-left-bottom {
    position: relative;
}
.sparkle-left-top::after,
.dots-right-bottom:before,
.sparkle-left-bottom::after {
    position: absolute;
    background-image: url('../images/lime-green-sparkle.png');
    left: 0;
    top: 21%;
    background-size: contain;
    background-repeat: no-repeat;
    height: 219px;
    width: 176px;
    z-index: 1;
    content: '';
}
.sparkle-left-bottom::after {
    top: auto;
    bottom: 44px;
    left: -32px;
    opacity: .5;
}
.dots-right-bottom::before {
    background-image: url('../images/pattern-dots.png');
    right: 40px;
    bottom: 50px;
    left: auto;
    top: auto;
    height: 174px;
}

.vector-lines::after {
    position: absolute;
    background-image: url('../images/vector-lines.png');
    height: 26px;
    width: 30px;
    right: -50px;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
}
.shape-Dawn::after {
    position: absolute;
    top: 50px;
    bottom: auto;
    background-image: url('../images/Dawn.png');
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    height: 197px;
    width: 140px;
    content: '';
}
.lock-collection.sparkle-left-top.lock-collection::after {
    height: 181px;
    left: -15px;
}
/* =============== image content linear =============== */
.grid-two-wrap.sparkle-left-top::after {
    left: -25px;
    top: 40px;
    height: 181px;
}
.grid-two-wrap .content-wrap p {
    color: var(--grey-4a);
}
.grid-two-wrap .content-wrap {
    max-width: 780px;
    z-index: 4;
    position: relative;
}
.grid-two-wrap .content-wrap button {
    margin-top: 15px;
}
.grid-two-wrap {
    overflow: hidden;
}
.image-frame {
    display: flex;
    justify-content: flex-end;
}
.image-frame .main-image {
    top: 0;
}
.image-frame {
    margin-top: 24px;
}
.image-frame .img-wrap.main-image {
    max-height: 500px;
    max-width: 750px;
    width: 100%;
    margin-top: -24px;
    border-radius: 24px;
    height: 100%;
    overflow: hidden;
}
.image-frame .img-wrap img {
    height: 100%;
    width: 100%;
    object-position: bottom;
    object-fit: cover;
}
.frame-img {
    margin-right: 27px;
}
.image-frame .small-image {
    width: 170px;
    height: 202px;
    left: 0;
    right: auto;
    top: 107px;
    border-radius: 24px;
    object-position: center;
    overflow: hidden;
}
.image-frame .small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid-two-wrap .flex-row-reverse .image-frame {
    justify-content: flex-start;
}
.grid-two-wrap .flex-row-reverse .frame-img {
    margin-right: 0;
    margin-left: 30px;
}
.grid-two-wrap .flex-row-reverse .image-frame .small-image {
    left: auto;
    right: 0;
}
.grid-two-wrap .content-wrap .title-wrapper {
    margin-bottom: 20px;
}
/* =============== LOGO SLIDER =============== */
.logo-slider .swiper-slide {
  background: var(--white);
  border: 1px solid #D9C7A3;
  border-radius: 24px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.g-map-wrap  iframe {
    width:100%;
    height:100%;
    border:0;
    display:block;
}
.gmap-block {
    padding-bottom: 120px;
}
/* MAP iframe */
.embed-map-responsive {
    position:relative;
    text-align:right;
    width:calc(100% - 20px);
    height:0;
    padding-bottom:53.57142857142857%;
    border-radius: 24px;
    overflow: hidden;
}
.g-map-wrap {
    position: relative;
}
.g-map-wrap::after {
    position: absolute;
    left: auto;
    top: 20px;
    right: 0;
    bottom: 0;
    border: 1px solid var(--primary);
    height: 100%;
    border-radius: 24px;
    width: 100%;
    z-index: -1;
    content: '';
}
.embed-map-container{
    overflow:hidden;
    background:none!important;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
}
.embed-map-frame{
    width:100%!important;
    height:100%!important;
    position:absolute;
    top:0;
    left:0;
}

/* =============== footer =============== */
.site-footer {
  background: var(--darkgray);
  color: var(--white);
  padding: 100px 0 40px;
}
.footer-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    max-width: 420px;
    margin-bottom: 0;
}
.subscribe-form {
    position: relative;
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
}
.subscribe-form input {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    padding: 23px 170px 23px 24px;
    width: 100%;
    border: 0;
    color: #323232;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px 24px 10px 10px;
    bottom: 0;
}
hr {
    margin: 30px 0;
    border: 0.5px solid #F7F5F2;
}
.footer-logo {
  max-width: 220px;
  margin-bottom: 20px;
}
.footer-desc {
  color: #F7F5F2;
  max-width: 325px;
}
footer .all-links .each-links {
    width: 33.33%;
}
footer .right-side {
    max-width: 750px;
    width: 100%;
    margin-left: auto;
}
footer .all-links h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    margin-bottom: 20px;
    color: var(--offwhite);
}
.footer-links {
    padding-left: 22px;
    list-style-type: none;
}
.footer-links li {
    margin-bottom: 8px;
    position: relative;
}
.footer-links li::after {
    position: absolute;
    left: -20px;
    top: 4px;
    bottom: 0;
    background-image: url('/images/offwhite-arrow.png');
    height: 15px;
    width: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
}
.footer-links a {
    color: var(--offwhite);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    transition: .5s ease-in-out ;
}
.footer-links a:hover {
  color: #6cc04a;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2b7bb9;
  border-radius: 50%;
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}
.social-icons a:last-child {
  background: #3b5998;
}
.contact-info p,
.contact-info  a {
    margin-bottom: 0;
    text-decoration: none;
    color: #fff;    
}

/* products */
.product-banner {
    width: 100%;
    overflow: hidden;
}
.product-banner img {
    width: 100%;
}
.breadcrumbs ul {
    list-style-type: none;
    display: flex;
    padding-left: 0;
}
.breadcrumbs ul li {
    position: relative;
    padding-right: 40px;
}
.breadcrumbs ul li::after {
    background-image: url('../images/offwhite-arrow.png');
    width: 11px;
    height: 14px;
    display: flex;
    background-repeat: no-repeat;
    left: auto;
    right: 13px;
    top: 5px;
    position: absolute;
    content: '';
}
.breadcrumbs ul li:last-child::after {
    display: none;
}
.breadcrumbs ul a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}
.breadcrumbs ul a.active{
    color: var(--warm);
}
.center-title {
    max-width: 1120px;
    margin:  auto auto 60px;
}
    
.sparkle-left-top.lock-collection::after {
    top: 70px;
    z-index: 2;
}
.lock-collection {
    padding: 100px 0 80px;
}
.lock-logos .logo {
    border: 1px solid #D9C7A3;
    display: flex;
    height: calc(100% - 25px);
    margin-bottom: 25px;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 24px;
}
.lock-logos .logo img {
    max-height: 80px;
    max-width: 270px;
}
.lock-logos .logo a {
    padding: 20px;
    width: 100%;
    justify-content: center;
    display: flex;
}
.product-banner .bg-slider-img {
    height: 550px;
}
.product-banner .bg-slider-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.w-1380 {
    max-width: 1380px;
    width: 100%;
}
.project-grid .title-wrapper b {
    color: #4A3F35;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
}
.project-grid .title-wrapper h2 {
    padding-right: 50px;
    margin-bottom: 20px;
}
.project-grid .title-wrapper {
    margin-bottom: 24px;
}
.check-list {
    list-style-type: none;
}
.check-list.ellipse-bullet li:after {
    background-image: url('../images/ellipse-bullet.png');
    top: 1px;
}
.check-list li {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 12px;
}
.check-list li:after {
    position: absolute;
    background-image: url('../images/check-green.png');
    width: 20px;
    height: 20px;
    left: -33px;
    right: 0;
    top: 3px;
    background-size: contain;
    content: '';
}
.project-grid {
    overflow: hidden;
}
.references-wrapper.dots-right-bottom {
    z-index: 1;
}
.references-wrapper.dots-right-bottom::before {
    right: -90px;
    top: 106px;
}
.references-wrapper {
    overflow: hidden;
    padding-bottom: 80px;
}
.global-form {
    padding: 40px;
    border: 1px solid #8C7D6B80;
    border-radius: 24px;
}
.mb-24 {
    margin-bottom: 24px;
}
.form-label .req {
    color: #ff0000;
}
.form-label {
    color: #8C7D6B;
}
.global-form .form-control {
    padding: 11px;
}
::placeholder{
  color:#32323266 !important;
}
.content-wrap .title-wrapper b {
    color: #8C7D6B;
}
.content-wrap .title-wrapper h2 {
    margin-bottom: 16px;
}
.content-wrap .check-list li {
    color: var(--grey-4a);
    font-weight: 500;
}
.gate-grid .title-wrapper p {
    color: var(--grey-4a);
    margin-bottom: 0;
}
.contact-banner .bg-slider-img img {
    object-position: bottom;
}
.contact-banner .bg-slider-img::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(50, 50, 50, 0.99) 100%);
}
.gate-grid-two.sparkle-left-top::after {
    left: -15px;
    top: 20px;
    height: 118px;
}
.gate-grid-two {
    overflow: hidden;
}
.about-banner .bg-slider-img img,
.project-banner .bg-slider-img img {
    transform: rotateY(180deg);
    object-position: center 23%;
}
.project-banner .bg-slider-img img  {
    object-position: center;
}
.automation-banner .bg-slider-img img {
    object-position: center 50%;
    transform: unset;
}
.quote-grid.grid-two-wrap.sparkle-left-top::after {
    height: 118px;
    left: 0;
}
.quote-grid.grid-two-wrap .title-wrapper {
    margin-bottom: 20px;
}
.gmap-block.sparkle-left-bottom::after {
    height: 188px;
}
.assembly-grid-two .title-wrapper {
    margin-bottom: 0;
}
.assembly-grid-two .content-wrap b {
    color: #8C7D6B;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}
.assembly-grid-two .content-wrap img {
    max-width: 280px;
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid #D9C7A3;
    border-radius: 12px;
    width: 100%;
    display: flex;
    margin-bottom: 19px;
}
.assembly-grid-two.grid-two-wrap.sparkle-left-top::after {
    height: 118px;
}
.assembly-grid-two {
    overflow: hidden;
}
.gmap-block .content-wrap .title-wrapper {
    margin-bottom: 0;
}
.all-cards .row {
    z-index: 3;
    position: relative;
}
.project-grid.grid-two-wrap.sparkle-left-top::after {
    top: 20px !important;
}
@media(min-width: 992px) {
    .btn:hover {
        transform: scaleX(1.1);
    }
}
@media(min-width: 992px) and (max-width: 1800px) {
    .container,
    .slider-controls {
        max-width: 90%;
    }
    .all-cards.sparkle-left-top::after {
        top: 150px;
        height: 160px;
    }
}
@media(max-width: 1799px) {
    .image-frame .img-wrap.main-image {
        max-height: calc(480px - 30px);
        max-width: calc(100% - 60px);
    }
    .embed-map-responsive {
        padding-bottom: 80.571429%;
    }   
}
@media(max-width: 1600px) {
    .image-frame .small-image {
        top: 60px;
    }
}
@media(max-width: 1440px) {
    .card-img img {
        height: 250px;
    }
    .card-content {
        height: calc(100% - 250px);
    }
    .image-frame .small-image {
        width: 130px;
        height: 155px;
    }
    .lock-logos .logo img {
        max-height: 70px;
        max-width: 200px;
    }
}
@media(max-width: 1299px) {
    .embed-map-responsive {
        padding-bottom: 100%;
        margin-bottom: 30px;
    }
}
@media(max-width: 1199px) {
    .product-card {
        margin-bottom: 20px;
        height: calc(100% - 20px);
    }
    .all-cards.dots-right-bottom {
        margin-bottom: 0;
    }
    .dots-right-bottom::before {
        right: 15px;
    }
    .image-frame .small-image {
        top: 34px;
    }
}
@media(max-width: 1099px) {
    footer .right-side {
        max-width: 100%;
        margin-left: 0;
    }
    footer .left-side {
        width: 100%;
        margin-bottom: 30px;
    }
    .references-wrapper.dots-right-bottom::before {
        top: -30px;
    }
}
@media(max-width: 1080px) {
    footer .all-links {
        max-width: 100%;
    }
    .all-cards.sparkle-left-top::after {
        top: 25px;
    }
    .global-form {
        padding: 30px;
    }
}
@media(min-width: 992px) and (max-width: 1024px) {
    .card-img img {
        height: 200px;
    }
    .card-content {
        height: calc(100% - 200px);
    }
}
@media(max-width: 992px) {
    section {
        padding: 70px 0;
    }
    p {
        font-size: 14px;
    }
    .navbar .btn:hover {
        background-color: transparent;
    }
    .card-content h4 {
        font-size: 18px;
    }
    .md-hide {
        display: none;
    }
    .md-show {
        display: block;
    }

    .navbar .nav-wrapper {
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
    }
    .navbar {
        display: flex;
        flex-wrap: nowrap;
    }
    .navbar-collapse {
        position: absolute;
        top: 100px;
        background: var(--white);
        width: 100%;
        left: 0px;
    }
    .navbar-nav .nav-item {
        justify-content: end;
    }
    .navbar-collapse .btn-contact  {
        margin-left: 15px;
        margin-right: auto;
        justify-content: flex-end;
        display: flex;
        width: fit-content;
        border: none;
        text-transform: none;
        font-weight: 400;
        color: var(--grey-4a);
        padding: 0;
        font-size: 16px;
    }
    .navbar-nav .dropdown-menu {
        width: 100%;
        border: none;
    }
    .navbar-nav .nav-item {
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    .navbar-nav .nav-item:last-child {
        margin-bottom: 0;
    }
    .navbar-collapse {
        padding-bottom: 30px;
    }
    .navbar-nav .nav-link {
        width: 100%;
    }
    .navbar-collapse {
        border-top: 1px solid var(--primary);
    }
    .navbar-nav {
        padding-top: 15px;
    }
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    .slide-content h2,
    .single-banner h1 {
        font-size: 60px;
        line-height: 64px;
    }
    .dots-right-bottom::before {
        right: 0;
        bottom: 99px;
    }
    .all-cards.sparkle-left-top::after {
        top: 2%;
        right: -11%;
        left: auto;
        height: 170px;
    }
    .grid-two-wrap .content-wrap {
        margin-bottom: 30px;
    }
    .image-frame {
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }
    .image-frame .small-image {
        width: 180px;
        height: 240px;
    }
    .grid-two-wrap .content-wrap {
        max-width: 100%;
    }
    .grid-two-wrap.shape-Dawn::after {
        height: 153px;
        width: 110px;
        top: 0;
    }
    .g-map-wrap {
        height: 300px !important;
    }
    .embed-map-responsive {
        padding-bottom: 450px;
    }
    .project-grid.grid-two-wrap.sparkle-left-top::after {
        left: auto;
        right: -95px;
        top: 20px;
    }
    .columns { 
        column-count:2; 
    }
    .gmap-block.sparkle-left-bottom::after {
        bottom: 0;
        height: 115px;
    }
    .gate-grid  .title-wrapper {
        margin-bottom: 15px;
    }
    .g-map-wrap {
        min-height: 450px;
    }
    .site-footer {
        padding: 60px 0 40px;
    }
    .subscribe-form input {
        padding: 14px 170px 14px 24px;
        font-size: 14px;
    }
    .subscribe-form button {
        font-size: 14px;
        margin: 5px 6px 5px 10px;
        line-height: normal;
    }
    .lock-collection.sparkle-left-top.lock-collection::after {
        height: 134px;
        top: 12px;
    }
}
@media(max-width: 767px) {
    .navbar-collapse {
        top: 95px;
    }
    .subscribe-form {
        margin-left: 0;
    }
    .btn {
        font-size: 14px;
    }
    .main-title {
        font-size: 38px;
    }
    section {
        padding: 60px 0;
    }
    .footer-bottom p {
        margin-bottom: 20px !important;
    }
    .references-wrapper.dots-right-bottom::before {
        top: -60px;
    }
    .footer-top h5  {
        margin-bottom: 20px;
    }
}
@media(max-width: 620px) {
    footer .all-links .each-links {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-bottom p {
        margin-bottom: 20px !important;
    }
    .image-frame .small-image {
        width: 150px;
        height: 200px;
    }
    .shape-Dawn::after {
        height: 126px;
        width: 80px;
    }
    .product-banner .bg-slider-img {
        height: 670px;
    }
    .project-grid.grid-two-wrap.contect-grid.sparkle-left-top::after {
        top: 20px !important;
        height: 125px;
    }
}
@media(max-width: 575px) {
    .slide-content h2,
    .single-banner h1 {
        font-size: 48px;
        line-height: 50px;
    }
    .navbar-collapse {
        top: 92px;
    }
    .slide-content p {
        font-size: 16px;
        line-height: 24px;
    }
    .hero-slider  .swiper-slide {
        height: 510px;
    }
    .hero-slider  .slider-controls {
        bottom: 22px;
    }
    .hero-slider .swiper-pagination-bullet {
        height: 12px;
        width: 12px;
    }
    .hero-slider .swiper-button-next {
        left: 112px;
    } 
    .main-title {
        font-size: 34px;
    }
    .all-cards.sparkle-left-top::after {
        top: -1%;
        right: -18%;
    }
    .all-cards.dots-right-bottom::before {
        bottom: 43px;
    }
    .grid-two-wrap .frame-img img {
        display: none;
    }
    .image-frame .img-wrap.main-image {
        max-height: 100%;
        position: unset !important;
    }
    .grid-two-wrap .image-frame .small-image {
        bottom: -45px;
        top: auto;
    }
    .image-frame {
        margin-bottom: 40px;
    }
    .grid-two-wrap .flex-row-reverse .frame-img {
        margin-left: 0;
    }
    .lock-logos .logo {
        min-height: 100px;
        max-width: 80%;
        margin: auto auto 20px;
    }
    .columns {
        column-count:1; 
    }
    .grid-two-wrap.sparkle-left-top::after {
        right: -95px;
        left: auto;
        height: 140px;
        top: 0;
    }
}
@media(max-width: 420px) {
    .lock-logos .logo {
        max-width: 90%;
    }
    .lock-logos .logo img {
        max-height: 50px;
    }
    .title-wrapper h2 {
        font-size: 34px;
        line-height: 40px;
    }
   .product-banner .bg-slider-img {
        height: 600px;
    }
    .logo-slider .swiper-slide img {
        height: auto;
        margin: 20px;
        max-width: 90%;
    }
    .project-banner.single-banner h1 {
        font-size: 36px;
        line-height: 40px;
    }
    .project-grid .title-wrapper h2 {
        padding-right: 0;
    }
}
@media(max-width: 380px) {
    .navbar-collapse {
        top: 90px;
    }
    .slide-content h2,
    .single-banner h1  {
        font-size: 44px;
    }
    .image-frame .small-image {
        width: 100px;
        height: 120px;
    }
    
    .subscribe-form input {
        padding: 14px 145px 14px 24px;
    }
}