@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: center;
}

.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;
}

.contacts {
    background-image: url('../image/ourServiceBg.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
}

.contacts__main {
    display: flex;
    flex-direction: column;
    padding: 50px 0px;
}

.contacts__mid {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contacts__card {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin: 50px 0px;
}

.contacts__card h2 {
    color: var(--titleColor);
    font-family: var(--bgTitle);
    font-size: 36px;
}

.contacts__mid a h2 {
    color: var(--titleColor);
    font-family: var(--bgTitle);
    font-size: 36px;
}

.contacts__card p {
    font-size: 20px;
}

.contacts__card p:hover {
    color: var(--lightBlue);
}

.a__card p {
    width: 150px;
}

.contacts__social{
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacts__social div a img {
    margin: 10px;
    width: 60px;
}

.contacts__foot {
    display: flex;
    margin-bottom: 100px;
    gap: 20px;
}

.contacts__foot div {
    width: 50%;
}

.contacts__foot div iframe {
    width: 100%;
    height: 100%;
}

.contacts__form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacts__form h1 {
    width: 100%;
}

.contacts__form {
    display: flex;
    flex-direction: column;
}

.contacts__form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts__form form div {
    width: 100%;
    display: flex;
    column-gap: 20px;
}

.contacts__form input {
    height: 50px;
    width: 100%;
    border-radius: 50px;
    padding-left: 20px;
}

.contacts__form textarea {
    width: 100%;
    border-radius: 50px;
}

.contacts__form button {
    width: 150px;
    height: 50px;
    color: white;
    background-color: var(--lightBlue);
    align-self: center;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    border: none;
}

.contacts__form button:hover {
    background-color: var(--titleColor);
}

.contacts__foot {
    padding-top: 100px;
    border-top: 10px solid lightgray;
}




/* 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) {
    .contacts__mid {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contacts__card {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contacts__foot{
        flex-direction: column;
    }

    .contacts__foot div {
        width: 100%;
        row-gap: 50px;
    }
}
