@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: rgb(196, 29, 29);
    font-family: "Poppins", sans-serif;
    margin: 0;
    transition: background 0.4s ease-in-out;
}

a {
    color: white;
    text-decoration: none;
}

.menu {
    position: fixed;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
}

.phone {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
}

.logo {
    color: white;
    font-size: 1.7rem;
    margin: 1rem 0;
    text-align: center;
}

.logo i {
    font-size: 2rem;
}

.logo h2 {
    font-weight: normal;
    margin: 0;
}

.logo p {
    color: #1f1f1f;
    font-weight: bold;
    margin: 0;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    height: 70vh;
    width: 95vw;
    margin-top: 1rem;
}

.carousel {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(0);
    transition: transform 0.4s ease-in-out;
    display: flex;

}

.slide {
    width: 100vw;
    text-align: center;
}

.slide img {
    object-fit: cover;
    max-width: 400px;
    max-height: 400px;
}

.slide h1 {
    color: rgb(17, 31, 49);
    font-size: 3.5rem;
    margin-top: -1.8rem;
}

.slide a {
    background-color: #1f1f1f;
    padding: 0.8rem 3rem;
    font-size: 1rem;
}

.arrow {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: black;
    opacity: 0.5;
}

.left-arrow {
    left: 2rem;
}

.right-arrow {
    right: 2rem;
}





















