    button {
        border-radius: 50%;
    }
    
    i {
        font-size: 30px;
        font-weight: bold;
        color: black;
        float: left;
        width: 44px;
        height: 44px;
        background: #e7f5fb;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }
    
    body.theme-dark {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("../img/45.webp");
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        font-family: "Jost", sans-serif;
        color: white;
    }
    
    body.theme-light {
        background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.8)), url("../img/45.webp");
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        font-family: "Jost", sans-serif;
        color: black;
    }
    
    body.theme-dark p {
        font-family: "Jost", sans-serif;
        color: rgba(255, 255, 255, 0.6);
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    body.theme-light p {
        font-family: "Jost", sans-serif;
        color: rgba(0, 0, 0, 0.7);
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .section-title {
        text-align: center;
        padding-bottom: 30px;
    }
    
    section {
        padding: 30px 0;
        overflow: hidden;
    }
    /* hero */
    
    #hero {
        width: 100%;
        height: 80vh;
        padding: 120px 0;
    }
    
    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        /* color: #fff; */
    }
    
    #hero h2 {
        /* color: rgba(255, 255, 255, 0.6); */
        margin-bottom: 50px;
        font-size: 24px;
    }
    
    @media (max-width: 991px) {
        #hero {
            height: 100vh;
            text-align: center;
        }
        #hero .hero-img {
            text-align: center;
        }
        #hero .hero-img img {
            width: 70%;
        }
    }
    
    @media (max-width: 768px) {
        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }
        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }
    }
    /* clients */
    
    body.theme-dark #clients {
        background: black;
    }
    
    body.theme-light #clients {
        background: white;
    }
    
    #clients p {
        /* margin-bottom: 20px;
    font-size: 14px; */
        padding: 0 0 0 60px;
    }
    /* about */
    /* what-do */
    
    body.theme-dark #what-do {
        background: black;
    }
    
    body.theme-light #what-do {
        background: white;
    }
    
    #what-do p {
        /* margin-bottom: 20px;
    font-size: 14px; */
        padding: 0 0 0 60px;
    }
    
    #what-do ul {
        /* padding: 20px 0; */
        list-style: none;
    }
    /* why-us */
    
    body.theme-dark #why-us {
        background: black;
    }
    
    body.theme-light #why-us {
        background: white;
    }
    
    body.theme-dark #why-us .icon-box {
        background: black;
    }
    
    body.theme-light #why-us .icon-box {
        background: white;
    }
    
    body.theme-dark #why-us .icon-box::after {
        box-shadow: inset 0 0 10px 10px black;
    }
    
    body.theme-light #why-us .icon-box::after {
        box-shadow: inset 0 0 10px 10px white;
    }
    
    #why-us .icon-box {
        transition: all ease-in-out 0.4s;
        /* background: black; */
        position: relative;
        display: inline;
    }
    
    #why-us .icon-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* box-shadow: inset 0 0 10px 10px black; */
        display: inline;
    }
    
    #why-us .icon-box img {
        opacity: 0.3;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    /* contacts */
    
    #contacts .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        /* color: white; */
    }
    
    #contacts .info p {
        padding: 0 0 10px 60px;
        /* margin-bottom: 20px;
    font-size: 14px; */
        /* color: rgba(255, 255, 255, 0.6); */
    }
    /* footer */
    
    #footer {
        /* background: black; */
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    body.theme-dark #footer {
        background: black;
    }
    
    body.theme-light #footer {
        background: white;
    }
    
    #footer .copyright {
        float: left;
    }
    
    #footer .credits {
        float: right;
    }
    
    #footer .logo {
        float: center
    }