body {
    padding: 0;
    margin: 0;
    font-family: sans-serif !important;
}

main {
    width: 100%;
    background-color: white;
    padding: 50px 0px;
    min-height: 61vh;
}

/* section{
    margin: 50px 0px;
} */

.container {
    width: 85%;
    height: auto;
    margin: 0 auto;
}

header {
    width: 100%;
    background-color: rgb(35, 155, 185);
    box-shadow: 0px 0px 1px lightslategray;
}
.bg-image {
    background: url('divine_waves_logo2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 80%;
    height: 400px;
    margin: 0 auto;
}

.logo {
    width: 160px;
    height: 160px;
    padding: 10px 0px;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

li {
    color: white;
    font-weight: 500;
    margin: 0px 10px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
    font-weight: bold;
}
a{
    text-decoration: none;
    color: white;
}

p {
    color: white;
}

li:hover {
    border-bottom: 1px solid white;
}

.hamgurder{
    width: 40px;
    height: 40px;
    background-color: #94e1e1;
}
.hamgurder img{
    width: 100%;
    height: 100%;
}

/* image section start */
.content-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.content {
    width: 50%;
    margin-right: 10px;
}

h1 {
    color: rgb(32, 31, 31);
    position: relative;
    margin-bottom: 30px;
}

h1::after {
    content: '';
    width: 100px;
    height: 2px;
    background-color: rgb(35, 155, 185);
    position: absolute;
    bottom: -5px;
    left: 0;
}

p {
    color: rgb(78, 78, 78);
}

.img-content {
    width: 50%;
    height: 500px;
}

.img-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* image section end */

/* box section start */

.box-section{
    background-color: white;
    /* padding: 50px 0px; */
}

.box-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    border: 8px solid white;
    padding: 50px 0px;
    background-color: white;
    box-sizing: border-box;
}

.bg-box{
    width: 40%;
    height: 200px;
    background-color: #94e1e1;
    border-radius: 40px;
    margin: 50px 0px;
    cursor: pointer;
}

.box {
    width: 100%;
    height: 200px;
    color: rgb(35, 155, 185);
    border-radius: 20px;
    background-color: transparent;
    border: 8px solid rgb(35, 155, 185);
    transition: all 0.5s ease-in-out;
    display: flex;
    padding: 30px;
    box-sizing: border-box;
    align-items: center;
    margin-top: 40px;
    font-family: serif !important;
    font-style: italic !important;
    font-size: 22px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right 35px;
}
.box h2 a{
    color: rgb(35, 155, 185);
}

.bg-box:hover .box1{
    border-top-left-radius: 20px !important;
    border-top-right-radius: unset !important;
    border-bottom-left-radius: unset !important;
    border-bottom-right-radius: unset !important
}


.box1{
    background-image: url('mobile.jpeg');
}

.box2{
    background-image: url('book.jpeg');
}

.box3{
    background-image: url('talk.jpeg');
}

.box4{
    background-image: url('music.png');
}


/* box section end */

footer {
    width: 100%;
    min-height: 100px;
    height: auto;
    background-color: rgb(35, 155, 185);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* contact us */
.contact-us-container{
    display: flex !important;
    justify-content: center;
    /* flex-wrap: wrap; */
    width: 100%;
}
.contact-us-container .left{
    width: 30%;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-container .right{
    width: 50%;
    height: 500px;
}
.contact-us-container .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

@media screen and (max-width: 1250px) {
    footer{
        padding: 0px 10px;
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        padding: 0px 10px;
        box-sizing: border-box;
    }

    .content-container {
        display: block;
    }

    .content {
        width: 100%;
    }

    .img-content {
        width: 100%;
        margin-top: 10px;
    }

    li {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

    h1 {
        font-size: 20px;
    }
    h2{
        font-size: 18px;
    }

    .logo {
        width: 100px;
    }
}

@media screen and (max-width: 767px) {
    .box-container {
        display: block;
    }
    .bg-box{
        width: 80%;
        margin: 0 auto;
    }
    nav {
        display: block;
    }
    .logo{
        width: 100% !important;
        display: flex;
        justify-content: center;
    }
    .logo img{
        height: 150px !important;
        width: 150px !important;
    }
    ul{
        padding: 20px 0px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;

    }
    li{
        margin: 5px;
    }
    .contact-us-container{
        display: block !important;
    }
    .contact-us-container .left{
        width: 100%;
        margin-bottom: 20px;
    }
    .contact-us-container .right{
        width: 100%;
    }
    .contact-us-container .left .content{
        text-align: center;
    }
    .contact-us-container .left .content h1::after{
        content: '';
        display: none;
    }
}