@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins';
    line-height: 1.5;
}

.white-text {
    color: white;
}

li {
    list-style-type: none;
}

header {
    position: relative;
}

.header-top {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem 0 2rem 0;
}

.header-top div {
    display: flex;
    gap: 1rem;
    padding: 4px;
}

.header-top hr {
    margin: 4px;
}

.header-floating {
    display: flex;
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    border-radius: 32px;
    border: 1px solid;
}

.header-floating nav{
    justify-self: stretch;
}
.header-floating nav ul {
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
}

.header-floating nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.logo {
    text-transform: uppercase;
}

.orange-text {
    color: rgba(233, 85, 27);
}

.hero-section {
    background-image: url(./images/carousel-1.jpg);

    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 4px solid rgba(128, 128, 128, 0.581);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.hero-section * {
    text-align: center;
    padding-bottom: 1rem;
}

.hero-section h3 {
    text-transform: uppercase;
}

.hero-section h1 {
    font-size: 3rem;
    width: 45%;
}

.hero-section button {
    background-color: black;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
}

.green-section {
    display: flex;
    flex-direction: column;
    padding: 4rem 0;
    align-items: center;
    background-color: rgba(226, 242, 208);
    color: rgba(85, 85, 85);
}

.green-section h2 {
    padding: 1rem;

}

.divider {
    border: 2px solid rgba(0, 0, 0, 0.69);
    width: 10%;
    border-radius: 4px;
}

.green-ctr {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.about,
.img-wrapper,
.features {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.img-wrapper {
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
}

.orange-button {
    background-color: rgba(233, 85, 27);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
}

.black-button {
    background-color: black;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    gap: 1.5rem;
}

.logo-links {
    display: flex;
    gap: 0.5rem;
}

.logo-links p {
    border: 3px solid rgba(0, 119, 255, 0.31);
    padding: 0.5rem;
    text-align: center;
    border-radius: 50%;
}

.contacts {
    display: flex;
    gap: 1rem;
}

.divider-footer {
    height: auto;
    border-left: 1px solid black;
}

.touch {
    text-align: right;
}

.openhours {
    text-align: left;
}
.sm-text {
    font-size: 0.8rem;
}
.bold-text {
    font-weight: 600;
    color: rgba(104, 108, 111, 0.964);
}
.footer>p>span {
    font-weight: 500;
}