/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 45px;
    bottom: 17px;
    z-index: 99;
}
/*scroll for modal*/
.modal-body {
  max-height: 70vh; /* or adjust as needed */
  overflow-y: auto;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/* ===== Shared Styles for Auto-Switching Buttons ============== */
.btn-quote,
.btn-impact,
.btn-call {
  font-size: 0; /* Hide original HTML text but keep button shape */
  white-space: nowrap; /* Prevent awkward breaks */
}

.btn-quote::after,
.btn-impact::after,
.btn-call::after {
  font-size: 1rem;
  display: inline-block;
  transition: opacity 0.3s ease; /* Smooth fade */
}

/* ===== Default Text (All Screens) ===== */
.btn-quote::after {
  content: "REQUEST A FREE QUOTE";
}
.btn-impact::after {
  content: "Explore Our Impact";
}
.btn-call::after {
  content: "📞 Talk To An Agent"; /* Icon stays with text */
}

/* ===== Small Screens (≤576px) — Adjust Size + Stack Buttons ===== */
@media (max-width: 576px) {
  .btn-quote::after,
  .btn-impact::after,
  .btn-call::after {
    font-size: 0.9rem; /* Slightly smaller text */
  }
  .btn-quote,
  .btn-impact,
  .btn-call {
    padding: 0.6rem 1.4rem !important; /* Reduce padding */
    width: 100%; /* Full-width buttons for stacking */
    text-align: center;
  }

  /* Stack container if buttons are in flex */
  .btn-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ===== Extra-Small Screens (≤320px) — Shorten Text ===== */
@media (max-width: 320px) {
  .btn-quote::after {
    content: "Get A free Quote";
    animation: fadeInBtn 0.3s ease forwards;
  }
  .btn-impact::after {
    content: "Explore Our Impact";
    animation: fadeInBtn 0.3s ease forwards;
  }
  .btn-call::after {
    content: "📞 Tak to An Agent"; /* Still shows icon */
    animation: fadeInBtn 0.3s ease forwards;
  }
}

/* ===== Fade Animation (Shared) ===== */
@keyframes fadeInBtn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/***Step cards***/
  .steps-section {
    padding: 1.5rem 0;
  }

  .step-card {
    transition: transform 0.5s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  }

  .step-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .step-card:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0 auto 0.5rem;
    color: #fff;
    position: relative;
  }

  .step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #0d6efd;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }

  .bg-step-1 { background-color: #0d6efd; }
  .bg-step-2 { background-color: #198754; }
  .bg-step-3 { background-color: #ffc107; color: #000 !important; }
  .bg-step-4 { background-color: #dc3545; }
  .bg-step-5 { background-color: #0dcaf0; }

  .card-title {
    font-weight: 600;
  }

  .step-card[data-delay="1"] { transition-delay: 0.1s; }
  .step-card[data-delay="2"] { transition-delay: 0.3s; }
  .step-card[data-delay="3"] { transition-delay: 0.5s; }
  .step-card[data-delay="4"] { transition-delay: 0.7s; }
  .step-card[data-delay="5"] { transition-delay: 0.9s; }

/*** Navbar ***/
.navbar-brand{
    margin-left: 10px;
}
.navbar-brand img {
    border-radius: 100px;
    margin-left: 75px ! important;
}
.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#131FA8;
}
/*add some blue underline effect on hover*/
@media (min-width: 768px) {
  .nav-link .link-text {
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
  }

  .nav-link .link-text::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #131FA8;
    transition: width 0.3s ease;
  }

  .nav-link:hover .link-text::after {
    width: 100%;
  }
}


/*END OF blue underline effect on hover*/

/*.navbar .dropdown {
 text-transform: uppercase;
}*/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #131FA8;
    color: #fff; /* optional for readability */
    transition: background-color 0.3s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar a.btn {
    background-color: #131FA8 !important;
    color: #fff !important;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s;
}
.navbar a.btn:hover {
    background-color: #e6b800; /* slightly darker gold */
    color: #fff !important;
    transform: scale(1.05);
}

/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)); /* NEW */
    z-index: 1;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/carousel-14.jpeg) center center no-repeat;
    background-size: cover;
}
 .page-header1 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/m1.jpg) center center no-repeat;
    background-size: cover;
}
 .page-header2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/prop.jpg) center center no-repeat;
    background-size: cover;
}
.page-header3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/burg.png) center center no-repeat;
    background-size: cover;
}
.page-header4 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/trav.jpg) center center no-repeat;
    background-size: cover;
}
.page-header5 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/marine.jpeg) center center no-repeat;
    background-size: cover;
}
.page-header6 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/d2.jpg) center center no-repeat;
    background-size: cover;
}
.page-header7 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/w2.jpg) center center no-repeat;
    background-size: cover;
}
.page-header8 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/domest.png) center center no-repeat;
    background-size: cover;
}
.page-header9 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/in2.jpg) center center no-repeat;
    background-size: cover;
}
.page-header10 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/abt.jpg) center center no-repeat;
    background-size: cover;
}
.page-header11 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/services.jpg) center center no-repeat;
    background-size: cover;
}
.page-header12 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/c1.jpg) center center no-repeat;
    background-size: cover;
}
.page-header13 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/faqs.jpg) center center no-repeat;
    background-size: cover;
}
.page-header14 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/news.jpg) center center no-repeat;
    background-size: cover;
}
.page-header15 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
                url(../img/img_header/abt.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}
/* ============================
   Fixed Header (Topbar + Navbar)
   ============================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Prevent content from hiding behind header */
body {
  padding-top: 130px; /* adjust depending on total header height */
}

/* Keep logo sized nicely */
.navbar-brand img {
  max-height: 60px;
  width: auto;
}
/* ====================================
   Shrink Header on Scroll
   ==================================== */

/* Default header (before scroll) */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Adjust page spacing for fixed header */
body {
  padding-top: 130px; /* same as before */
}

/* Default logo and navbar spacing */
.main-header .navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.main-header .navbar-brand img {
  max-height: 60px;
  transition: all 0.3s ease;
}

/* When scrolled */
.main-header.shrink {
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.main-header.shrink .navbar {
  padding: 5px 0;
}

.main-header.shrink .navbar-brand img {
  max-height: 45px;
}

/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.bg-primary {
    background-color: #0F7CFF !important;
}

/*** home video modal pop up ***/
.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.custom-modal-border {
  border: 8px solid #887408; /* Green border */
  border-radius: 2px;
}

.video-btn span {
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.video-btn:hover {
    background: gold;
}
.custom-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1055;
    transition: 0.3s ease;
}

.custom-close:hover {
    color: gold;
}
    /*FAQs Frequently Asked Questions Section*/
    .faq {
            background: #f8f9fa;
            padding-top: 60px;
            padding-bottom: 20px;
        }
        .faq .content {
            text-align: left;
            padding-right: 20px;
        }
        .faq .content h2 {
            font-weight: 700;
            font-size: 36px;
            color: #333;
        }
        .faq .content p {
            font-size: 16px;
            color: #6c757d;
        }
        .faq .accordion-item {
            border: 0;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
        }
        .faq .accordion-button {
            padding: 18px;
            font-weight: 600;
            font-size: 18px;
            color: #444;
            background: #fff;
            border: none;
            display: flex;
            align-items: center;
            transition: 0.3s;
        }
        .faq .accordion-button:hover {
            background: #f1f1f1;
        }
        .faq .accordion-button .num {
            margin-right: 10px;
            font-size: 20px;
            color: #007bff;
            font-weight: bold;
        }
        .faq .accordion-button:focus {
            box-shadow: none;
        }
        .faq .accordion-body {
            padding: 20px;
            background: #ffffff;
            font-size: 16px;
            line-height: 1.6;
            border-left: 4px solid #007bff;
            transition: all 0.3s ease-in-out;
        }
        

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #131FA8;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}
    .zoom-hover {
      transition: transform 0.3s ease; /* Smooth zoom */
      border-radius: 0px;
    }

    .zoom-hover:hover {
      transform: scale(1.05); /* Slight zoom in */
    }
   .service-item:hover .service-icon {
    color: #FFFFFF;
    background: #30F281;
}

/*** Feature ***/
/*** 5 steps ***/
body {
    background-color: #f8f9fa;
  }

  .steps-section {
    padding: 5rem 0;
  }

  .step-card {
    transition: transform 0.5s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  }

  .step-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .step-card:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0 auto 0.5rem;
    color: #fff;
    position: relative;
  }

  .step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #0d6efd;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }

  .bg-step-1 { background-color: #0d6efd; }
  .bg-step-2 { background-color: #198754; }
  .bg-step-3 { background-color: #ffc107; color: #000 !important; }
  .bg-step-4 { background-color: #dc3545; }
  .bg-step-5 { background-color: #0dcaf0; }

  .card-title {
    font-weight: 600;
  }

  .step-card[data-delay="1"] { transition-delay: 0.1s; }
  .step-card[data-delay="2"] { transition-delay: 0.3s; }
  .step-card[data-delay="3"] { transition-delay: 0.5s; }
  .step-card[data-delay="4"] { transition-delay: 0.7s; }
  .step-card[data-delay="5"] { transition-delay: 0.9s; }
/*** ctaa Call to Action ***/
.ctaa h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;

}
.ctaa p {
  color: #fff;
  text-align: center;
  margin-bottom: 2px;
}
.ctaa .ctaa-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 10px;
  transition: background 0.4s, border 0.4s;
  background-color: #007BFF;
  border: 2px solid #007BFF;
  color: #fff;
  text-decoration: none;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}