@import url('https://fonts.googleapis.com/css2?family=Paprika&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&display=swap');
:root {
    --bgDarkBlue: #091829;
    --lightBlue: #0ac7df;
    --darkPurple: #42335b;
    --greenColor: #a3ca01;
    --fontColor: #43335a;
    --titleColor: #a2cb01;

    --fonts: 'Paprika', cursive;
    --bgTitle:  'Caveat', cursive;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    font-family: sans-serif;
    font-weight: 600;
}

h1 {
    font-family: var(--fonts);
}

.wrapper {
    width: 80%;
    margin: 0 auto;
}

li {
    list-style: none;
}

a {
    color: black;
    text-decoration: none;
}

header {
    box-shadow: inset 0px 0px 40px 10px rgba(255,255,255,0.5);
    padding: 0px 20px;
}

.blackLogo {
    height: 100px;
} 

.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-branding {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-link{
    color: black;
    padding: 10px 0px;
    transition: 0.3s ease-out;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}

.nav-link:hover{
    color: var(--lightBlue);
}

.hamburger{
    display: none;
    cursor: pointer;
    padding-right: 20px;
}

.bar{
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: black;
}

.price__title {
    text-align: left;
}

.price__title h1 {
    font-size: 80px;
    font-family: var(--bgTitle);
    color: var(--titleColor);
}

.price__title h2 {
    margin-top: -50px;
    font-size: 40px;
    color: var(--darkPurple);
    opacity: 0.7;
}

.offers {
    background-image: url('../image/ourServiceBg.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
}

.offers__content{
    margin: 100px auto;
    display: flex;
    column-gap: 20px;
}

.offers__left {
    width: 20%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f8f9;
}

.offers__right {
    width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 100px;
}

.offers__social a img {
    margin: 10px;
    width: 50px;
}

.offers__right div {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}

.offers__card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid black;
}

.offers__card img {
    padding: 1.5rem;
    background-color: white;
    border: 1px solid black;
    width: 200px;
    height: 200px;
}

.offers__card p {
    font-size: 16px;
    font-family: sans-serif;
    color: #909090;
}

.mid {
    text-align: center;
}

.mid h1 {
    font-size: 90px;
}

.mid h2 {
    font-size: 50px;
}

.small__cards {
    width: 100%;
    display: flex;
}

.small__card {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.small__card h1 {
    font-size: 26px;
    padding: 10px;
    color: var(--lightBlue);
}

.small__card h2 {
    padding: 10px;
    font-size: 24px;
    color: var(--titleColor);
}

.small__card p {
    width: 100%;
    padding: 10px;
    height: 200px;
}



/* Footer */
footer {
    width: 100%;
    background-color: white;
    border-top: 2px solid black;
    padding: 20px 0px;
    bottom: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    font-family: var(--titleColor);
}



@media(max-width:1024px){

    .wrapper {
        width: 100%;
        padding: 20px;
    }

    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu{
        position: fixed;
        left: -100%;
        top: 100px;
        gap: 0;
        flex-direction: column;
        background-color: var(--bgDarkBlue);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99999;
    }

    .nav-item{
        margin: 20px 0px;
    }

    .nav-item a {
        font-size: 30px;
        color: white;
    }

    .nav-menu.active{
        left: 0;
    }

    .next {
        margin-right: 20px;
    }

}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {
    .offers__content {
        flex-direction: column;
    }

    .offers__left {
        width: 100%;
    }


    .offers__right {
        width: 100%;
    }

    .offers__card div {
        flex-direction: column;
        text-align: center;
    }

    .small__card h1, .small__card h2 {
        width: 100%;
        text-align: center;
    }

    .offers__card__right {
        flex-direction: column;
        
    }

    .offers__card__right img {
        align-self: center;
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

}
