:root {
    --color-1: #14334f;
    --color-2: #5fa8af;
    --color-3: whitesmoke;
}

/* COMMON */

.button-color-2 {
    display: block;
    width: max-content;
    padding: 10px 60px;
    border: none;
    border-radius: 20px;
    background: var(--color-2);
    color: white;
}

.button-color-2:hover {
    background: var(--color-1);
}

/* COMMON END */

/* HERO SECTION */
.hero {
    background: var(--color-3);
}

.hero-anchor{
    display: inline-block;
    text-decoration: none;
    width: 45%;
    padding: 10px;
    text-align: center;
    background: var(--color-1);
    color: white;
    font-weight: 700;
    border-radius: 20px;
}
.hero-anchor:hover{
    background: var(--color-2);
}

/* HERO SEECTION END */

/* LOCATION */
.locations{
    background: var(--color-2);
    color: white;
    font-weight: 600;
}
/* LOCATION END */

/* SERVICES SECTION */

.services {
    background: white;
}

.services-item {
    border-radius: 10px;
    background: var(--color-1);
    height: 100%;
    color: white;
}

.services-item-icon {
    width: 60px;
    aspect-ratio: 1;
    display: block;
}

/* SERVICES SECTION END */

/* HOW IT WORKS SECTION */

.how-it-works{
    background: var(--color-3);
}
.hiw-item{
    display: flex;
    align-items: center;
    gap: 5px;
}
.hiw-item-number{
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.number{
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 50%;
    aspect-ratio: 1;  
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-1);
    color: white;
    border: 1px solid var(--color-2);
}
.number:hover{
    background: var(--color-2);
}
.hiw-item-text{
    width: 80%;
    height: 100%;
}

/* HOW IT WORKS SECTION END */

/* ABOUT US SECTION */

.about-us{
    background: white;
}
.about-item{
    height: 100%;
    border-radius: 8px;
    background: var(--color-3);
}
.about-item-icon{
    width: 60px;
    aspect-ratio: 1;
    margin: 10px 0;
}

/* ABOUT US SECTION US */

/* FOOTER */

.footer{
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER END*/

@media all and (max-width:992px){
    #divider-div{
        display: none;
    }
}

@media all and (max-width:768px){
    .hiw-item-number{
        display: none;
    }
    .hiw-item-text{
        width: 100%;
    }
}
