@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    font-size: 62.5%;
    /* 1rem = 10px */
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    display: inline-block;
}

img {
    display: inline-block;
    width: 100%;
}

li {
    list-style: none;
}

h1, h2, h3, h4 {
    color: black;
}

.para {
    font-size: 1.6rem;
    line-height: 1.7;
    font-weight: 400;
    color: black;
}

/* -------------------------------------------------------------
   Header & Navigation Code  
----------------------------------------------------------------- */
.header {
    height: 9.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8.4rem;
    position: relative;
  }
  
  .logo {
    font-size: 2rem;
    font-weight: bold;
  }

  .logo img {
        max-width: 250px;
    }
  
  .navbar {
    display: flex;
    align-items: center;
  }
  
  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.2rem;
    font-size: 1.5rem;
  }
  
  .navbar-list .navbar-btn {
    padding: 1.2rem 2.4rem;
    background-color: var(--white);
    border: 1px solid var(--helper-color);
    color: var(--helper-color);
    border-radius: 5rem;
    transition: all 0.3s ease-in-out;
  }
  
  .navbar-list .navbar-link:hover,
  .navbar-list .navbar-link:active {
    color: #ee1b46;
  }
  
  .navbar-btn:hover,
  .navbar-btn:active {
    background-color: #ee1b46;
    color: #FFF;
  }
  
  .navbar-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1A2C79;
  }
  
  .mobile-nav-icon {
    font-size: 4rem;
    color: #1A2C79;
  }

  
  .mobile-navbar-btn {
    display: none;
  }
  
.mobile-nav-icon[name="close"] {
    display: none;
}

ul.navbar-list ul {
    position: absolute;
    top: 60px;
    background: #ee1b46;
    z-index: 1;
    display: none;
}

ul.navbar-list ul li {
    display: list-item;
    width: 100%;
    float: none;
    padding: 0.5rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.7;
    position: relative;
}

ul.navbar-list ul li a {
    color: #ffffff;
   }

ul.navbar-list ul li:hover {
    background: #192255;
}

ul.navbar-list li:hover > ul {
    display: inherit;
}

ul.navbar-list ul::marker {
    display: none;
    list-style: none;
    list-style-type: none;
    font-size: 0px
} 

/* -------------------------------------------------------------
   Resuable Code  
----------------------------------------------------------------- */
.section {
    padding: 2.6rem 0 9.6rem;
}

.container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;
}

.grid {
    display: grid;
    gap: 9.6rem;
}

.grid-two-column {
    grid-template-columns: repeat(2, 1fr);
}

.grid-three-column {
    grid-template-columns: repeat(3, 1fr);
}

.grid-align-center {
    align-items: center;
}

.btn {
    font-size: 1.6rem;
    text-transform: capitalize;
    padding: 1.6rem 3.2rem;
    border-radius: 10rem;
    background-color: #ee1b46;
    color: #fff;
    border-width: 0;
    transition: all 0.2s linear;
}

.btn:hover,
.btn:active {
    transform: scale(1.05);
}

.text-white {
    color: #FFFFFF;
}

.text-center {
    text-align: center;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    z-index: 1;
}

.m-auto {
    margin: auto;
}

.mt-1 {
    margin-top: 1rem;
}
.mb-1 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 1.5rem;
}
.mb-2 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 2rem;
}
.mb-3 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

.mb-4 {
    margin-bottom: 2.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.pt-5 {
    padding-top: 3rem;
}
.pb-5 {
    padding-bottom: 3rem;
}

.pt-4 {
    padding-top: 2.5rem;
}
.pb-4 {
    padding-bottom: 2.5rem;
}

.pt-3 {
    padding-top: 2rem;
}
.pb-3 {
    padding-bottom: 2rem;
}

.pt-2 {
    padding-top: 1.5rem;
}
.pb-2 {
    padding-bottom: 1.5rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.service-icons .eg-social a {
    color: #ee1b46;
}

/* -------------------------------------------------------------
   Hero Section 
----------------------------------------------------------------- */

.section-hero {
    position: relative;
}
  
.section-hero::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 7.6rem;
    right: 0;
    width: 30%;
    height: 50%;
    background: #ee1b46;
    z-index: -1;
}

.primary-heading {
    font-size: 6rem;
    font-weight: 700;
}

.section-hero .para {
    margin-top: 2rem;
    margin-bottom: 3.2rem;
}


.section-hero .hero-icon-style .para {
    line-height: 1.6;
    font-family: 1.4rem;
    margin: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.hero-image img {
    height: 90%;
    box-shadow: 0 0 10rem 0 rgba(0, 0, 0, 0.1);
}

.hero-img-overlay {
    position: absolute;
    bottom: 0;
    left: -10%;
    background-color: #1A2C79;
    padding: 4rem;
}

.hero-img-overlay .para {
    color: #FFF;
}

.hero-img-overlay .para:nth-child(2) {
    margin: 0;
    font-weight: bold;
}

.hero-img-overlay .para:last-child {
    margin: 0;
}

.section-hero ul {
    margin-top: 3rem;
}

.section-hero ul li {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #ee1b46;
}

.section-hero ul li a {
    color: #ee1b46;
}

.section-hero .ionicon {
    color: #ee1b46;
    font-weight: bold;
    line-height: 1;
    font-size: 1.8rem;
    vertical-align: text-bottom;
}

ul.eg-social {
    display: flex;
    gap: 2.5rem;
}

ul.eg-social .eg-social-icon {
    font-size: 2.6rem;
}

/* -------------------------------------------------------------
   Service Section 
----------------------------------------------------------------- */

.section-service {
    position: relative;
    background-color: #FFFFFF;
    padding: 4.6rem 0 4.6rem;    
}
.grid-three-column.grid {
    display: grid;
    gap: 4.6rem;
}

.section-service .card {
    background: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    border-radius: 1.5rem;
}

.section-service .card img {
    border-radius: 1.5rem;
}

h2.service-heading {
    font-size: 2.6rem;
    line-height: 2.6;
    font-weight: 600;
}

/* -------------------------------------------------------------
   New Services Section 
----------------------------------------------------------------- */
.learn-more-link a {
    display: flex;
    font-size: 16px;
    align-items: center;
    font-weight: 600;
    gap: 10px;
}

h2.primary-heading {
    font-size: 4rem;
}

/* -------------------------------------------------------------
   New Pricing Section 
----------------------------------------------------------------- */
.section-service .card {
    background: #FFFFFF;
    padding: 2.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    border-radius: 1.5rem;
}
.card img {
    max-width: 200px;
    margin: auto;
    text-align: center;
    display: block;
}

.card p {
    font-size: 1.6em;
    line-height: 1.5;
}
.card p.small {
    font-size: 1.4em;
    line-height: 1.7;
}

.card p.checkbox {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.5em;
}

/* -------------------------------------------------------------
   Forms Section 
----------------------------------------------------------------- */
.form-control {
    display: block;
    width: 100%;
    padding: 0.575rem 0.75rem;
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 0.375em;
}

textarea.form-control {
    min-height: 6em;
}

.card.contact-card {
    margin: auto;
    width: 100%;
    max-width: 900px;
}

/* -------------------------------------------------------------
   Footer Section 
----------------------------------------------------------------- */
section.section.section-footer {
    background: #192255;
    padding: 2.6rem 0 6.6rem;
}

.section-footer p.title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-footer .para {
    font-size: 14px;

}

.section-footer ul.eg-social .eg-social-icon {
    font-size: 2.6rem;
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid #ffffff24;
}

.footer-bottom p {
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: 1.4rem;
}

.footer-bottom a {
    color: #ee1b46;
}

.widget-01 img {
    max-width: 310px;
}
/* -------------------------------------------------------------
   Responsiveness
----------------------------------------------------------------- */
@media (max-width: 1280px) {
    /* Reusable Code */
    .container {
        max-width: 102rem;
    }

    /* Header Section */
    .header {
        padding: 0 14.4rem;
    }

    /* Service Section */
    h2.service-heading {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {

    /* Reusable Code */
    .container {
        max-width: 98rem;
    }

    /* Header Section */
    .header {
        padding: 0 6.4rem;
    }

    /* Hero Section */
    .primary-heading {
        font-size: 5rem;
    }
    .hero-img-overlay {
        padding: 2rem;
    }
    .hero-img-overlay .para:nth-child(1) {
        margin-top: 2rem;
        margin-bottom: 1.7rem;
    }
    .hero-img-overlay .para:nth-child(2) {
        margin: 0;
        font-weight: bold;
    }

    /* Service Section */
    h2.service-heading {
        font-size: 2rem;
        line-height: 2.6;
    }
}

@media (max-width: 991px) {

    /* Reusable Code */
    .container {
        max-width: 76rem;
    }

    .grid-two-column {
        grid-template-columns: 1fr;
    }

    /* Header Section */
    .header {
        padding: 0 6.4rem;
    }
    .hero-img-overlay {
        left: 0;
    }

    /* Hero Section */
    .primary-heading {
        font-size: 5rem;
    }
    .hero-img-overlay {
        padding: 2rem;
    }
    .hero-img-overlay .para:nth-child(1) {
        margin-top: 2rem;
        margin-bottom: 1.7rem;
    }
    .hero-img-overlay .para:nth-child(2) {
        margin: 0;
        font-weight: bold;
    }

    /* Service Section */
    h2.service-heading {
        font-size: 2rem;
        line-height: 2.6;
    }
    .section-service .grid-three-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Reusable Code */
    .container {
        max-width: 68rem;
    }

    .grid-two-column {
        grid-template-columns: 1fr;
    }

    /* Header Section */
    .header {
        padding: 0 1.4rem;
    }
    .hero-img-overlay {
        left: 0;
    }

    /* Hero Section */
    .primary-heading {
        font-size: 5rem;
    }
    .hero-img-overlay {
        padding: 2rem;
    }
    .hero-img-overlay .para:nth-child(1) {
        margin-top: 2rem;
        margin-bottom: 1.7rem;
    }
    .hero-img-overlay .para:nth-child(2) {
        margin: 0;
        font-weight: bold;
    }

    /* Service Section */
    h2.service-heading {
        font-size: 2rem;
        line-height: 2.6;
    }
    .section-service .grid-three-column {
        grid-template-columns: 1fr;
    }

    /* Navbar */
    .navbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
    
        display: flex;
        justify-content: start;
        align-items: center;
    
        transform: translateX(100%);
        transition: all 0.3s linear;
    
        opacity: 1;
        visibility: visible;
        pointer-events: none;
    }
    
    ul.navbar-list li {
        line-height: 1.7;
        font-size: 1.8rem;
        display: block;
        padding: 0.95rem 1.65rem;
    }
    .navbar .navbar-list {
        display: block;
        width: 100%;
    }
    ul.navbar-list li:hover > ul {
        display: block;
        float: none;
        position: static;
    }
    
    .navbar .navbar-link {
        color: #ffffff;
    }
    
    .mobile-navbar-btn {
        display: block;
        z-index: 9999;
    }
    
      .active .navbar {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        z-index: 999;
      }
    
      .active .mobile-navbar-btn .mobile-nav-icon[name="close"] {
        display: block;
        color: #ffffff;
      }
      .active .mobile-navbar-btn .mobile-nav-icon[name="menu"] {
        display: none;
        color: #ffffff;
      }
}

@media (max-width: 480px) {

    /* Resuable Code  */
    .grid-two-column {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .grid-two-column.row-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .grid-three-column {
        grid-template-columns: 1fr;
    }

    .para {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    /* Hero Section */
    .primary-heading {
        font-size: 4rem;
    }
    .hero-img-overlay .para:nth-child(1) {
        margin-top: 1rem;
        margin-bottom: 1.0rem;
    }
}





