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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 1000px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    transition: 0.6s;
    z-index: 1000;
}

.stickey {
    padding: 5px 50px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stickey .logo,
.stickey ul li a {
    color: #000;
}

header .logo {
    position: relative;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
}

header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    position: relative;
    list-style: none;
}

header ul li a {
    position: relative;
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 300;
    transition: 0.6s;
}

.banner {
    position: relative;
    width: 100%;
    background-color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner img {
    width: 100%;
}

.banner h2 {
    color: #fff;
    font-size: 90px;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    line-height: 1em;
}

.banner h2 span {
    color: #4978ff;
}

.utility {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
}

.search{
    margin: 20px;
}

.search input {
    padding: 4px 60px 4px 10px;
    font-size: 1.5em;
    width: fit-content;
    border-radius: 500px;
    border: 2px solid gray;
    width: 100%;
}

.search i {
    margin-left: -15%;
    font-size: 1.7em;
    padding: 7px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #fff;
}

.dropdown {
    position: relative;
    border: 1px solid gray;
}
.dropdown-title{
    padding: 5px 10px;
    cursor: pointer;
    text-align: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ddd;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    margin: 0;
    z-index: 1;
}
.dropdown-content p{
    font-size: inherit;
    white-space: nowrap;
    padding: 10px 10px;
    margin: 0;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.dropdown p:hover{
    color: white;
    background-color: #333;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.sec {
    background: #fff;
    padding: 20px 50px;
    min-height: 10vh;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
}

.sec .cont {
    position: relative;
    text-align: center;
    width: 100%;
}

.mxw800p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h3 {
    font-size: 40px;
    font-weight: 100;
    margin-bottom: 10px;
}

p {
    position: relative;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.7px;
}

.services {
    text-align: center;
    position: relative;
    margin: 20px;
    margin-top: 40px;
    cursor: pointer;
}

.services .box {
    width: 300px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.services .box .iconbox {
    height: 60%;
    background-color: lightblue;
    object-fit: cover;
}

.services .box .iconbox img {
    width: 100%;
}

#contact a {
    color: black;
}

#contact a i {
    box-sizing: border-box;
    font-size: 42px;
    margin: 0px 20px;
    padding: 5px;
}

.toggle {
    display: none;
}

@media (max-width: 720px) {
    .toggle {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .toggle:before {
        content: "";
        position: absolute;
        top: 4px;
        width: 100%;
        height: 2px;
        background: #000;
        z-index: 1;
        box-shadow: 0 10px 0 #000;
        transition: 0.5s;
    }

    .toggle:after {
        content: "";
        position: absolute;
        bottom: 4px;
        width: 100%;
        height: 2px;
        background: #000;
        z-index: 1;
        transition: 0.5s;
    }

    header {
        background-color: #fff;
    }

    header ul {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100vh;
        text-align: center;
        overflow: auto;
        background: #fff;
        visibility: hidden;
        opacity: 0;
    }

    header.active ul {
        visibility: visible;
        opacity: 1;
        display: block;
        padding-top: 20px;
    }

    header.active ul li {
        margin: 20px 0;
        font-size: 20px;

    }

    header .logo,
    header ul li a {
        color: #000;
    }

    .banner {
        margin-top: 70px;
        background-color: red;
    }

    .banner h2 {
        font-size: 60px;
    }
    .utility{
        margin: 10px 10px;
        padding: 0;
    }
    .search{
        flex: 1;
    }
    .search{
        margin: 0;
    }
    .search input{
        margin: 0;
        width: 90%;
        font-size: 1.0rem;
        border: 1px solid gray;
    }
    .search i{
        font-size: 1.0rem;
    }
    .dropdown{
        width: 100px;
        padding: 8px 2px;
        font-size: 0.9rem;
    }
    .dropdown-title{
        padding: 0;
    }
    .dropdown-content{
        translate: -25%;
    }
    .sec {
        padding: 0px 50px 100px 50px;
    }
}
