#home-page-content{
    position: relative;
    max-width:100%;

}
#content-container{
    position: relative;
    max-width: 100%;
    padding: 1rem;
    background-color: dodgerblue;
    background-image: linear-gradient(to top right, dodgerblue 15%, darkblue 100%);
    height: 70vh;
}

#inner-content-cont{
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#inner-most-content-cont{
    max-width: 60%;
    /* padding-bottom: 2rem; */
}
#saving-img-wrapper{
    width: 400px;
    height: 250px;
    border-radius: 15px;
    box-shadow: 0 0 8px 0px rgba(0,0,0,0.3);
    object-fit: cover;
    object-position: center;
}
#saving-img-wrapper>img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 0 8px 0px rgba(0,0,0,0.3);
}

#content-container h1{
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: 3.2rem;
    color: #f8f8f8;
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
    animation: landingPageAnimation1 3000ms ease-in;
    animation-fill-mode: forwards;
    animation-delay: 1000ms;
    transition: all 2000ms ease-in;

}

@keyframes landingPageAnimation1 {
    0%{
        transform: scale(0);
        visibility: hidden;
        opacity: 0;
    }
    100%{
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }
}

#content-container h2{
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    right: -1000%;
    visibility: hidden;
    opacity: 0;
    animation: landingPageAnimation3 1000ms ease-in;
    animation-fill-mode: forwards;
    animation-delay: 3700ms;
    transition: all 2000ms ease-in;
}
@keyframes landingPageAnimation3 {
    0%{
        right: -1000%;
        visibility: hidden;
        opacity: 0;
    }
    100%{
        right: 0%;
        visibility: visible;
        opacity: 1;
    }
}

#content-container h4{
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    visibility: hidden;
    left: -1000%;
    opacity: 0;
    animation: landingPageAnimation2 1000ms ease-in;
    animation-fill-mode: forwards;
    /* animation-delay: 4000ms; */
    transition: all 2000ms ease-in;
}

@keyframes landingPageAnimation2 {
    0%{
        left: -1000%;
        visibility: hidden;
        opacity: 0;
    }
    100%{
        left: 0;
        visibility: visible;
        opacity: 1;
    }
}

#content-container p{
    position: relative;
    max-width: 80%;
    margin-top: -0.8rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    font-size: 19px;
    color: #f8f8f8;
    padding-left: 10rem;
}

#action-btns-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.3rem 0;
    margin-top: 1rem;
}
#action-btns-wrapper>.btn{
    position: relative;
    background-color: transparent;
    outline: 0;
    border: none;
    transition: all0.4s ease-in;
}
#action-btns-wrapper>.btn>a{
    display: block;
    position: relative;
    background-color: orange;
    padding: 0.7rem 1.7rem;
    color: #f8f8f8;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid orange;
    border-radius: 30px;
    transition: all0.4s ease-in;
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.3);
}

#action-btns-wrapper>.btn:hover>a{
    background-color: transparent;
    border: 2px solid orange;
    color: orange;
}

.animate-items{
    margin-bottom: 50px;
    visibility: hidden;
    opacity: 0;
    animation: landingPageAnimation4 1000ms ease-in;
    animation-fill-mode: forwards;
    animation-delay: 4200ms;
    transition: all 2000ms ease-in;
}

@keyframes landingPageAnimation4 {
    0%{
        margin-bottom: 50px;
        visibility: hidden;
        opacity: 0;
    }
    100%{
        margin-bottom: 0px;
        visibility: visible;
        opacity: 1;
    }
}

.custom-shape-divider-bottom-1704470959 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1704470959 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.custom-shape-divider-bottom-1704470959 .shape-fill {
    fill: #FFFFFF;
}

#more-content-container{
    position: relative;
    max-width: 100%;
    margin: 3rem 0;
    padding-top: 0.5rem;
    background-image: url(../images/our-services-bg.jpg);
    background-image: linear-gradient(to top right, dodgerblue 15%, darkblue 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
}
#our-services-section{
    position: relative;
    width: 70%;
    margin: auto;
    padding: 1rem;
    background-color: #ffffff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    margin-bottom: 5rem;
}

#our-services-section>h2{
    position: relative;
    color: #000;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    margin: 1.5rem 0;
}

#services-lists{
    position: relative;
    width: 100%;
    list-style-type: none;
    color: #000;
    margin-top: 1rem;
}
#services-lists>li{
    position: relative;
    color: dodgerblue;
    font-weight: bold;
    line-height: 1.3;
    text-transform: capitalize;
}

#why-patronise-us-section{
    position: relative;
    background-color: #f7f7f7;
    width: 100%;
    padding: 2rem;
}
#why-patronise-us-section>h3{
    color: dodgerblue;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    max-width: 50%;
    margin: 2rem auto;
}

#container{
    position: relative;
    width: 100%;
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    grid-template-rows: auto;
}
.why-box{
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    border-radius: 5px;
}
.img-wrapper{
    position: relative;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px 5px 0 0;
}
.img-wrapper>img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px 5px 0 0;
}

.why-box>h4{
    position: relative;
    color: dodgerblue;
    text-align: center;
    font-size: 1.2rem;
    margin: 1rem 0;
}
.why-box p{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    margin: 1rem;
}
.contact-details-section{
    position: relative;
    margin: 3rem;
}
.contact-details-section>h4{
    position: relative;
    color: dodgerblue;
    text-align: center;
    font-size: 1.2rem;
    margin: 1rem 0;
    margin-bottom: 2rem;
}
.contact-details-cont{
    position: relative;
    width: 100%;
    gap: 0.7rem;
    /* flex-wrap: wrap; */
    background-image: url(../images/contact-channels-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    grid-template-rows: 200px;
    place-content: center;
    padding: 1.5rem;
    border: 3px solid #fff;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}
.contact-details-cont::before{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}

.contact{
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.7rem;
    transition: border 0.5s ease-in-out;

}
.contact:hover{
    max-width: 100%;
    border: 2px solid #fff;
    padding: 0.7rem;
}

.contact-icon-wrapper{
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}
.contact>p{
    max-width: 60%;
    margin: auto;
    text-align: center;
    color: #ffffff;
}
.contact a{
    text-decoration: none;
    color: #fff;
}

.contact-icon-wrapper>.contact-icon{
    font-size: 1.5rem;
    color: orange;

    
}
@media (max-width:1100px){
    
    #content-container h1{
        font-size: 2.5rem;
    
    }

    #content-container h2{
        font-size: 1.5rem;
    }
    @keyframes landingPageAnimation3 {
        0%{
            right: -1000%;
            visibility: hidden;
            opacity: 0;
        }
        100%{
            right: 0%;
            visibility: visible;
            opacity: 1;
        }
    }
    
    #content-container h4{
        font-size: 1.7rem;
    }
    
    @keyframes landingPageAnimation2 {
        0%{
            left: -1000%;
            visibility: hidden;
            opacity: 0;
        }
        100%{
            left: 0;
            visibility: visible;
            opacity: 1;
        }
    }
    
    #content-container p{
        font-size: 16px;
    }
    
    #action-btns-wrapper{
        margin: 1rem 0;
        margin-top: 0.7rem;
    }
    #action-btns-wrapper>.btn>a{
        font-size: 14px;
        padding: 0.5rem 1rem;
    }
    
}



@media (max-width:800px){

    #content-container h1{
        font-size: 2.1rem;
    }

    #content-container h2{
        font-size: 1.3rem;
    }

    #content-container h4{
        font-size: 1.4rem;
    }
    
   
    #content-container p{
        font-size: 15px;
        max-width: 95%;
    }

    #inner-most-content-cont>.animate-items{
        font-size: 15px;
        width: 95%;
        padding-left: 5rem;
    }
    
    #action-btns-wrapper{
        margin: 1rem 0;
        margin-top: 0.7rem;
    }
    #action-btns-wrapper>.btn>a{
        font-size: 14px;
        padding: 0.5rem 1rem;
    }

    #why-patronise-us-section>h3{
        max-width: 90%;
    }
    

}


@media (max-width:700px){
    #content-container h1{
        font-size: 1.7rem;
    }

    #content-container h2{
        font-size: 1.1rem;
    }
    
    
    #content-container h4{
        font-size: 1.2rem;
    }
    
    #inner-most-content-cont>.animate-items{
        font-size: 15px;
        width: 100%;
        padding-left: 2rem;
    }
    
   
}

@media (max-width:590px){

    #content-container{
        min-height: 100vh;
    }
    

    #inner-content-cont{
        gap: 1rem;
        flex-direction: column;
    }
    #inner-most-content-cont{
        max-width: 100%;
        order: 2;
    }
    #saving-img-wrapper{
        width: 100%;
        order: 1;
    }

    .contact-details-section{
        margin: 3rem 0rem;
    }
    
    .contact-details-cont{
        padding: 1.5rem 0.5rem;
    }
}


@media (max-width:460px){
    #content-container h1{
        font-size: 1.5rem;
    }

    #content-container h2{
        font-size: 0.9rem;
    }
    
    
    #content-container h4{
        font-size: 1rem;
    }
    
    #inner-most-content-cont>.animate-items{
        font-size: 14px;
        padding-left: 1rem;
    }
    #our-services-section{
        width: 90%;
    }

    #why-patronise-us-section>h3{
        max-width: 100%;
    }

}


@media (max-width:415px){
    #content-container h1{
        font-size: 1.2rem;
    }

    #content-container h2{
        font-size: 0.9rem;
    }
    #inner-most-content-cont>.animate-items{
        font-size: 13px;
        padding-left: 0rem;
    }

    #action-btns-wrapper>.btn>a{
        padding: 0.5rem 1rem;
        font-size: 12px;
    }

    #our-services-section{
        width: 90%;
    }
    #why-patronise-us-section{
        padding: 1rem;
    }
}

@media (max-width:314px){
    #content-container h1{
        font-size: 1rem;
    }

    #content-container h2{
        font-size: 0.7rem;
    }

     
    #content-container h4{
        font-size: 1rem;
    }
    #inner-most-content-cont>.animate-items{
        font-size: 13px;
        padding-left: 0rem;
    }

    #action-btns-wrapper>.btn>a{
        padding: 0.5rem 0.7rem;
    }

    #our-services-section{
        width: 95%;
    }
    #our-services-section>h2{
        font-size: 2rem;
    }
}


@media (max-width:266px){
    #content-container{
        height: auto;
    }

    #content-container h1{
        font-size: 0.8rem;
    }

    #content-container h2{
        font-size: 0.6rem;
    }

    #inner-most-content-cont>.animate-items{
        font-size: 12px;
        padding-left: 0rem;
    }

    #action-btns-wrapper>.btn{
        margin-top: -0.5rem;

    }
    
    #action-btns-wrapper>.btn>a{
        padding: 0.3rem 0.5rem;
        font-size: 10px;
    }
    .contact:hover{
        padding: 0.3rem;
    }
    
}