@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --color-1 : #EFB007;
    --color-2 : #F65D10;
    --font-1 : 'Barlow', sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top : 50px;
}
h1,h2,h3,h4,h5,h6,a {
    font-family : var(--font-1);
}
a {
    text-decoration : none;
}
.p0 {
    padding : 0;
}
.lite {
    color : #fff;
}
.btn-1 {
    position : relative;
    display : inline-block;
    border : none;
    outline : none;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--color-1);
    padding : 10px 30px;
    text-transform: uppercase;
}
.btn-1.small {
    padding : 4px 12px;
    border-radius : 4px;
}
.btn-1.with-svg {
    padding-right : 45px;
}
.btn-1.small.with-svg {
    padding-right : 35px;
}
.btn-1 svg {
    position : absolute;
    right : 15px;
    top : 13px;
}
.btn-1.small svg {
    top : 5px;
    right : 8px;
}
.btn-1.inverse,
.btn-1:hover {
    background-color : var(--color-2);
    color : #fff;
}
.btn-1.inverse:hover {
    background-color: var(--color-1);
}

.title-1 {
    margin-bottom : 30px;
}
.title-1 img {
    width : 80px;
    margin-bottom : 0;
}
.title-1 img.logo {
    width : 130px;
    margin : 20px auto;
}
.title-1 h4 {
    color : #666;
    font-size : 18px;
}
.title-1 h2 {
    font-weight : bold;
    text-transform: uppercase;
    font-size : 26px;
}
/* HEADER */
.main-header {
    position : sticky;
    top : 0;
    width : 100%;
    z-index : 10;
}
.grid-main-header {
    display : grid;
    grid-template-columns : 225px auto 225px;
    background : #fff;
    padding : 0 20px;
}
.logo a {
    display : block;
    padding : 5px 0;
}
.logo img {
    width : 100%;
}
.main-menu {
    text-align : center;
}
.main-menu a {
    color : #222;
    display : inline-block;
    padding : 5px 15px;
    font-weight : bold;
    font-size: 14px;
    line-height : 65px;
    text-transform : uppercase;
}
.need-help a {
    position : relative;
    display : block;
    margin-top : 13px;
    padding-left : 50px;
}
.need-help a img {
    position : absolute;
    left : 0;
    top : 5px;
    width : 40px;
}
.need-help p,
.need-help h2 {
    margin : 0;
    color : #222;
}
.need-help p {
    font-size : 14px;
}
.need-help h2 {
    font-size : 20px;
    font-weight : bold;
}


.mobile-header {
    position : fixed;
    top : 0;
    width : 100%;
    z-index : 10;
    background : #fff;
    display : grid;
    grid-template-columns : 160px auto;
}
@media(max-width : 991px) {
    body:not(.no-padding) {
        padding-top: 55px;
    }
}
.mobile-header img {
    width : 100%;
}
.mobile-header-top {
    text-align : center;
    padding : 7px;
    background : #fff;
}
.mobile-header-top a {
    display : inline-block;
}
.mobile-header-top img {
    max-width : 150px;
}
.mobile-header-bottom {
    background : #fff;
    display : grid;
    background : var(--color-2);
    grid-template-columns : repeat(4, 1fr);
}
.mobile-header-bottom a {
    display : block;
    color : #fff;
    text-align : center;
    padding : 6px;
    line-height : 45px;
    font-weight : bold;
    font-size : 14px;
}
.sm-xs-phone {
  display : none;
  position : fixed;
  right : 10px;
  bottom : 120px;
  --value : 50px;
  width : var(--value);
  height : var(--value);
  line-height : var(--value);
  border-radius : var(--value);
  background : var(--color-2);
  color : #fff!important;
  font-weight : bold;
  text-align : center;
  font-size : 20px;
  border : none;
  z-index: 10;
}
@media(max-width : 767px) {
    .mobile-header-bottom a {
        font-size : 20px;
    }
    .sm-xs-phone {
        display : inline-block;
    }
}
/* INDEX PAGE OR HOME PAGE */
.grid-slider-block {
    display : grid;
    grid-template-columns : 1fr 1fr;
}
@media(max-width : 991px) {
    .grid-slider-block {
        display : block;
    }
}
.left-slider-block {
    display : flex;
    position : relative;
    background-image : url('../../images/bg-slider.jpg');
    background-size : cover;
    z-index : 1;
}
.left-slider-block::before {
    content : '';
    position : absolute;
    left : 0;
    top : 0;
    width : 100%;
    height : 100%;
    background : rgba(254, 177, 0, .92);
    z-index : -1;
}
.left-slider-block.before-black::before {
    background : rgba(0, 0, 0, .9);
}
.left-slider-block .holder {
    margin : auto;
    padding : 0 70px;
    color : #fff;
}
.left-slider-block .holder.dark {
    color : #222;
}
.left-slider-block.before-black .holder {
    padding : 100px;
}
@media(max-width : 767px) {
    .left-slider-block.before-black .holder {
        padding : 45px 30px;
    }
}
.left-slider-block.before-black h4 {
    font-size : 17px;
    color : var(--color-1)
}
.left-slider-block .holder h1 {
    font-weight : bold;
    font-size : 36px;
}
.carousel-control-prev,
.carousel-control-next {
    opacity : 1;
}
.right-slider-block img {
    width : 100%;
    height : 100%;
    object-fit : cover;
}

.grid-about-home {
    display : grid;
    grid-template-columns : 1fr 1fr;
    padding : 50px 40px;
    grid-gap : 40px;
}
@media(max-width : 991px) {
    .grid-about-home {
        display : block;
    }
    .grid-about-home .left-about-home {
        display : none;
    }
}
.left-about-home img {
    width : 100%;
}
.right-about-home h3 {
    color : #666;
    margin : 0;
    font-size : 22px;
    text-transform: uppercase;
    font-weight : bold;
}
.right-about-home h2 {
    margin-top : 5px;
    font-weight : bold;
    max-width : 550px;
}
.right-about-home p {
    font-family: "Barlow", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: #555555;
    margin: 0px 0px 15px 0px;
}
.box-propreitor img {
    --value : 140px;
    width : var(--value);
    height : var(--value);
    border-radius : var(--value);
    border : 4px solid var(--color-1)
}
.box-propreitor h5 {
    margin : 0;
}

section.services-block {
    background : #eee;
    padding : 40px 40px 40px;
}
.grid-services {
    display : grid;
    grid-template-columns : repeat(4, 1fr);
    grid-gap : 20px;
}
@media(max-width : 991px) {
    .grid-services {
        grid-template-columns : repeat(3, 1fr);
    }
}
@media(max-width : 767px) {
    .grid-services {
        grid-template-columns : 1fr 1fr;
    }
}
@media(max-width : 559px) {
    .grid-services {
        grid-template-columns : 1fr;
    }
}
.services-box {
    border-radius : 6px;
    overflow : hidden;
    background-color: #fff;
    color: #666;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
    display : block;
}
@media(min-width : 768px) {
    .services-box.grid-type {
        display : grid;
        grid-template-columns : 1fr 1fr;
    }
}
.services-box:hover {
    color : #666;
}
.services-box figure {
    margin : 0;
    overflow : hidden;
}
.services-box figure img {
    transition : .6s ease;
    width : 100%;
    height : 100%;
    object-fit : cover;
}
.services-box:hover img {
    transform : scale(1.1);
}
.services-box .content {
    padding : 20px;
    text-align : center;
    position : relative;
}
.modal-1 .services-box .content {
    background: #DAE1CF;
    padding: 35px;
}
.modal-1 .services-box:hover img {
    transform : none;
}
.modal-1 .btn-1 {
    width : 100%;
}
.services-box.grid-type .content {
    text-align : left;
}
.services-box .content h2 {
    margin : 0 0 5px;
    font-size : 18px;
    font-weight : bold;
    color : #444;
}
.services-box .content h2.eC {
    font-size : 15px;
    color : #222;
}
.modal .btn-close {
    position : absolute;
    right : 15px;
    top : 5px;
    opacity : 1;
}
.services-box button {
    margin-top : 10px;
}
.btn-text-only {
    border : none;
    display : block;
    width : 100%;
    margin-top : 20px;
    background : transparent;
    text-transform: uppercase;
}
.btn-text-only {
    display : inline-block;
    text-align : left;
    font-weight : bold;
    color : #fff;
}


.counters {
    background : #eee;
}
.grid-counters {
    display : grid;
    grid-template-columns : repeat(4, 1fr);
    grid-gap : 15px;
    margin : 40px 0;
}
@media(max-width : 991px) {
    .grid-counters {
        grid-template-columns : 1fr 1fr;
    }
}
@media(max-width : 559px) {
    .grid-counters {
        grid-template-columns : 1fr;
    }
}
.counter-box {
    border-radius : 4px;
    background : #fff;
    padding : 20px 25px;
}
.counter-box h4 {
    margin: 0;
    color: #222;
    font-size: 19px;
    font-weight: 400;
}
.counter-box h2 {
    margin: 10px 0;
    color: #222;
    font-size: 70px;
    font-weight: bold;
    line-height: 0.9;
}
.counter-box p {
    margin-bottom : 0;
    color : #555;
}
.split-block {
    position : relative;
}
.play-icon {
    position : absolute;
    width : 100%;
    height : 100%;
    display : flex;
    text-align : center;
    font-size : 36px;
}
@media(max-width : 991px) {
    .play-icon {
        display : none;
    }
}
.play-icon-xs {
    margin-bottom : 25px;
}
.play-icon-xs a,
.play-icon a {
    display : block;
    margin : auto;
    background : var(--color-2);
    width : 110px;
    height : 110px;
    border-radius : 110px;
    line-height : 90px;
    z-index : 99;
    color : #fff;
    font-size : 32px;
    border : 6px solid rgba(0, 0, 0, .65);
    z-index : 2;
    text-align : center;
}
.modal-backdrop.show {
    opacity: .8;
}
#youtubeVideoPopup .modal-content,
#youtubeVideoPopup .modal-body {
    background : transparent;
    border : none;
}
.youtube-video-holder iframe {
    width : 100%;
    height : 400px;
}
@media(max-width : 768px) {
    .youtube-video-holder iframe {
        width : 100%;
        height : 280px;
    }
}

/* FOOTER */
.footer .container-fluid {
    padding : 0;
}
.title-footer {
    color : #E45200;
    text-transform: uppercase;
    margin-bottom : 15px;
    font-size : 24px;
}
.footer iframe {
    width : 100%;
    height : 100%;
    line-height : 0;
}
.grid-footer {
    display : grid;
    grid-template-columns : 1fr 1fr;
}
@media(max-width : 991px) {
    .grid-footer {
        grid-template-columns : 1fr;
    }
    .grid-footer iframe {
        height : 350px;
    }
}
.footer .logo-footer {
    width : 160px;
    margin-bottom : 15px;
}
ul.address {
    margin : 0;
    padding : 0;
    list-style : none;
}
ul.address li {
    position : relative;
    padding-left : 30px;
    font-size : 17px;
    margin-bottom : 15px;
}
ul.address li span.icons {
    position : absolute;
    left : 0;
    top : 0;
}

/* SUCCESS PAGE */
.success-block {
    min-height : 100vh;
    height : 100%;
    background : var(--color-2);
    padding : 50px 10px;
    border-top : 5px solid #fff;
    display : flex;
}
.success-block .container {
    margin : auto;
}
.shopping-box {
    max-width: 500px;
    margin: 0 auto;
    display: block;
    position: relative;
  }
  .grid-form {
    position: relative;
    background: #fff;
    max-width: 100%;
    margin: 10px auto;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
      0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
      0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
      0 100px 80px rgba(0, 0, 0, 0.12);
  }
  .grid-form::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    top: -15px;
  }
  @media (max-width: 559px) {
    .grid-form {
      padding: 25px 15px;
    }
  }
  img.success {
      --value : 100px;
      width : var(--value);
      height : var(--value);
      border-radius : var(--value);
      margin : 15px auto;
  }

/* MEDIA QURIES */
.visible-xs,
.visible-sm-xs {
    display : none;
}
@media(max-width : 767px) {
    .hidden-xs {
        display : none;
    }
    .visible-xs {
        display : block;
    }
}
@media(max-width : 991px) {
    .hidden-sm-xs {
        display : none;
    }
    .visible-sm-xs {
        display : block;
    }
    .sm-xs-center {
        text-align : center;
    }
}
.modal-sm {
    max-width : 400px;
}