@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,300;10..48,400&family=Manrope&display=swap');
body {
    width: 100%;
    height: 100%;
}


.box {

    height: 50vh;
    width: 85%;
    margin-left: 10%;
    text-align: center;
}

.search {
    margin-top: 16vh;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.search a {
    color: black;
}

.search input {
    display: inline;
    border: 1px solid black;
    height: 4vh;
    width: 90%;
    border-radius: 15px;
}
.search select {
    display: inline;
    border: 1px solid black;
    height: 4vh;
    width: 90%;
    border-radius: 15px;
}
.search button {
    border: 1px solid black;
    border-radius: 50%;
    height: 4vh;
    width: 4vh;
}

.search i {
    margin-left: 2%;
}

.card-area {
    margin-right: 50px;
    margin-left: 50px;
    margin-top: 5%;
}

.card {
    width: 350px;
    height: 650px;
}
img.card-img-top{
    height: 400px;
}
.card-body {
    text-align: center;
    height: 300px;
}

.card-title {
    text-align: center;
}

span {
    text-align: center;
}

.card-body p {
    text-align: left;
}

.card button {
    border-radius: 30px;
    border: 1px solid black;
    height: 50px;
    width: 150px;
    margin-bottom: 0;
}

.hamburger div {
    width: 16px;
    height: 3px;
    margin: 2px 0;
    background: #212526;
}


@media only screen and (max-width: 1100px) {
    .search {
        width: 100%;
        margin-top: 20vh;

    }

    form {
        font-size: 10px;
        text-align: center;
    }

    input {
        text-align: center;
    }

    nav {
        position: absolute;
        left: -300px;
        top: 0;
        z-index: 999;
        width: 150px;
        height: 100vh;
        background-color: #fefefe;
        transition: 0.2s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
    }

    #nav_check:checked~nav {
        left: 0;
    }

    nav .logo {
        display: block;
        height: 30px;
        display: flex;
        align-items: center;
        margin-left: 30px;

    }

    .logo h4 {
        font-size: 20px;

    }

    nav .logo h4 {
        font-size: 15px;
        margin-left: -20px;

    }

    nav ul li a {
        margin-bottom: 5px;
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 13px;
    }

    nav ul {
        display: block;
        padding: 0 20px;
        margin-top: 30px;
        font-size: 30px;
    }

    .hamburger {
        display: block;
    }

    .search button {
        margin-top: 20px;
        height: 5vh;
        width: 5vh;
    }

    .card-area {
        margin-right: 0;
        margin-left: 0;
        margin-top: 5%;
    }

    .card {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}



footer {
    background: #101010;
    padding: 86px 0;
}

footer .single-content {
    text-align: center;
    padding: 115px 0;
}

footer .single-box p {
    color: #fff;
    line-height: 1.9;
    text-align:left;
}

footer .single-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

footer .single-box .card-area i {
    color: #ffffff;
    font-size: 20px;
    margin-right: 10px;
}

footer .single-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

footer .single-box ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 2.5;
    font-weight: 100;
}

footer .single-box h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

footer #basic-addon2 {
    background: #fe1e4f;
    color: #fff;
}

footer .socials i {
    font-size: 18px;
    margin-right: 15px;
}

@media (max-width: 767px) {
    footer .single-box {
        margin-bottom: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    footer .single-box {
        margin-bottom: 50px;
    }
}



@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,300;10..48,400&family=Manrope&display=swap');

header {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-family: 'Manrope', sans-serif;
    width: 80%;
    height: 140px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    overflow: hidden;
}

nav .logo {
    width: 120px;
    margin-top: 8px;
}

nav .logo {
    display: none;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: black;
    display: block;
    margin: 0 2px;
    font-weight: 600;
    padding: 8px 18px;
    transition: 0.2s;
    border-radius: 30px;
    cursor: pointer;
}

nav ul li a:hover {
    background-color: black;
    color: white;
}

nav ul li a:active {
    background-color: black;
    color: white;
}

.hamburger {
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
}

.hamburger:hover {
    background: #f6f4ff;
}

.hamburger div {
    width: 20px;
    height: 3px;
    margin: 3px 0;
    background: #212526;
}

@media only screen and (max-width: 1100px) {
    header {
        width: 90%;
        padding: 0 20px;
    }

   

    #nav_check:checked~nav {
        left: 0;
    }

   

   
    nav .logo h4 {
        font-size: 40px;
    }

    

    nav ul {
        display: block;
        padding: 0 20px;
        margin-top: 30px;
        font-size: 30px;
    }

    .hamburger {
        display: block;

       
    }
}