@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}

:root {
    --mainColor: #FF0000;
    --secondColor: #FFFFFF;
    --grayColor: #F83e3e;
}

html {

    scroll-behavior: smooth;

}

body {

    overflow-x: hidden;

    background: #f2e3e3;

}

/* NAVBAR STYLE  */
.navbar {
    background: #f2e3e3;
    height: 90px;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar .max-width .logo img {
    width: 250px; 
    height: auto; 
    margin: 10px;
    position: absolute; 
    top: 0; 
    left: 0;
  
}

.navbar .max-width .links {
    display: flex;
    align-items: center;
}

.navbar .max-width .links li a {
    font-size: 15px;
    font-weight: 500;
    padding: 0 20px;
    color: #ff0000;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
}

.navbar .max-width .links li a:hover {
    color: #000000;
}

ul li ul.dropdown li {
    display: block;
}

ul li ul.dropdown {
    width: 100%;
    background: #f2e3e3 ;
    position: absolute;
    z-index: 999;
    display: none;
}

ul li a:hover {
    background: #f2e3e3;
}

ul li:hover ul.dropdown {
    display: block;
}


/* TOGGLE MENU  */
.toggle-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
}

.toggle-menu i {
    font-size: 22px;
    color: #FFFFFF;
}

/* RESPONSIVE */
@media (max-width:900px) {
    .navbar .max-width .links {
        position: fixed;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.9);
        min-height: 100vh;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        z-index: 3;
        transform: translateX(100%);
        transition: transform .3s ease-in-out;
    }

    .navbar .max-width .links.show {
        transform: translateX(0);
    }

    .toggle-menu {
        display: block;
        z-index: 4;
    }
}

.title {
    margin-bottom: 30px;
}

.title h4 {
    font-size: 17px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--mainColor);
}

.title h1 {
    font-size: 50px;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--mainColor);
    letter-spacing: .8px;
}

.title h1 span {
    color: var(--mainColor);
}

.title .title-line {
    background: var(--mainColor);
    width: 120px;
    height: 3px;
    border-radius: 4px;
}


a {
    text-decoration: none;
}

li {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
}

.grid > div {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2e3e3;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.grid > div img {
    max-width: 100%;
    height: auto;
}

.footer {
    width: 100%;
    height: 15rem;
    background-color: #17181b;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-content {
    width: 60%;
    display: flex;
    justify-content: space-between;
  }
  
  .copyright {
    font-family: "Raleway", sans-serif;
    font-size: 1.6rem;
    color: #a7a7a7;
  }
  
  .social-list a {
    margin: 0 2rem;
  }
  
  .social-list i {
    font-size: 2rem;
    color: #a7a7a7;
  }
  
  @media (max-width: 1500px) {
    .about-us-img-wrapper {
      grid-row: 3 / -1;
    }
  
    .card {
      width: 34rem;
    }
  
    .contact-wrapper {
      width: 80%;
      height: 65rem;
    }
  
    .footer-content {
      width: 80%;
    }
  }