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

html{
    scroll-behavior: smooth;
}
.navbar {
    background: #191919;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.img-logo{
    width: 90px;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

#navbar__logo{
    background-color: #ca1a0e;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.fa-gem{
    margin-right: 0.2rem;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar_item{
    height: 80px;
}

.navbar__links{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    color: #fff;
}

.button:hover{
    background: #724348;
    transition: all 0.3s ease;
}

.navbar__links:hover{
    color: #f77062;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px){
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
    }

    .navbar__menu.active{
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo{
        padding-left: 25px;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__toggle:hover :hover{
        color: #ff7062;
        transition: all 0.3s ease;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links{
        text-align: center;
        padding: 2 rem;
        width: 100%;
        display: table;
    }
    
    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn{
        padding-bottom: 2rem;
    }

    .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }

    .navbar__container .navbar__toggle .bar:hover{
        color: #f77062;
        transition: all 0.3s ease;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section CSS */

.main{
    background-color: #4d4949;
}

.main__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 95vh;
    background-color: #4d4949;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 25px;
}

.main__content h1{
    font-size: 4rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #423a3a 0%, #fff 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h2{
    font-size: 4rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #0877bc 0%, #42c0d6 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content p{
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.main__btn{
    font-size: 1rem;
    background-image: linear-gradient(to top, #2222db 0%, #51c4fe 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main__btn a{
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1f335e;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover{
    color: #fff;
}

.main__btn:hover:after{
    width: 100%;
}

.main__img--container{
    text-align: center;
}

#main__img{
   height: 80%;
   width: 80%; 
}

/* Mobile Responsive */

@media screen and (max-width: 960px) {
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    } 

    .main__content{
        text-align: center;
        margin-bottom: 3rem;
    }

    .main__content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2{
        font-size: 3rem;
    }

    .main__content p{
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .main__btn{
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* Services Section CSS */

.services{
    background: #191919;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.services h1{
    background-color: #0877bc;
    background-image: linear-gradient(to right, #51c4fe 0%, #60b9ed 0%, #1e99c5 21%, #267dce 52%, #2299e4 78%, #2878f0 100%);
    background-size: 100%;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    padding-top: 32px;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.services__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services__card{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.services__card:nth-child(2){
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%);
}

.services h2{
    position: absolute;
    color: #fff;
    text-align: center;
    top: 100px;
    left: 30px;
}

.services__card p{
    position: absolute;
    text-align: center;
    top: 165px;
    left: 15px;
}

.services__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.services__card button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #0877bc;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}
.btn{
    color: #fff;
    text-decoration: none;
}
button .btn:hover{
    background: #065e95;
    transition: all 0.3s ease;
}

.services__card:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    
}

@media screen and (max-width: 960px){
    .services{
        height: 1400px;
    }

    .services h1{
        font-size: 1.2rem;
        text-align: center;
    }

    .services__card{
        width: 300px;
    }
}

/* Equipment CSS */

.equipment{
    background: #4d4949;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.equipment h1{
    background-color: #0877bc;
    background-image: linear-gradient(to right, #51c4fe 0%, #60b9ed 0%, #1e99c5 21%, #267dce 52%, #2299e4 78%, #2878f0 100%);
    background-size: 100%;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    padding-top: 32px;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.equipment__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.equipment__card{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-color: #191919;
    background-size: cover;
    position: relative;
    color: #fff;
}

.equipment__card p{
    position: absolute;
    font-weight: 500;
    font-size: 200%;
    align-content: center;
    text-align: center;
    top: 200px;

}

.equipment__card:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

@media screen and (max-width: 960px){
    .equipment{
        height: 900px;
    }

    .equipment h1{
        font-size: 1.2rem;
    }

    .equipment__card{
        width: 300px;
    }
}

/* Footer CSS */

.footer__container{
    background-color: #191919;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.rights--wrap p{
    color: #fff;
}
.footer__link--items{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
}
.footer__link--items a{
    color: #fff;
    margin-bottom: 0.2rem;
}

/* Contact Form CSS */
.quote{
    width: 80%;
    margin: 50px auto;
}

.contact-box{
    background: #191919;
    display: flex;
}

.contact-left{
    flex-basis: 60%;
    padding: 40px 60px;
}

.contact-right{
    flex-basis: 60%;
    padding: 40px;
    background-image: linear-gradient(to top, #0877bc 0%, #42c0d6 100%);
    color: #fff;
}

h1{
    color: #fff;
    margin-bottom: 10px;
}

.quote p{
    margin-bottom: 10px;
    color: #fff;
}

h3{
    color: #fff;
}

.quote-page{
    background: #4d4949;
}

.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input-row .input-group{
    flex-basis: 45%;
}

input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 5px;
}

.input-row label{
    color: #fff;
}

label{
    color: #fff;
    margin-bottom: 6px;
    display: block;
}

textarea{
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}

.quote-submission{
    background: #0877bc;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    height: 35px;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
}

button:hover{
    transition: all 0.3s ease;
    background: #1f335e;
}

.contact-left h3{
    font-weight: 700;
    font-size: 150%;
    margin-bottom: 30px;
}

.contact-right h3{
    font-weight: 700;
    font-size: 150%;
    margin-bottom: 30px;
}

.contact-right p{
    font-size: larger;
}

.contact-link a{
    color: #fff;
    font-size: larger;
}

@media screen and (max-width: 960px) {
    .quote{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    } 

    .quote h1{
        text-align: left;
        margin-left: 1rem;
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .quote p{
        text-align: left;
        margin-left: 0.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .contact-box{
        width: 50%;
        height: 90%;
    }

    .input-group {
        margin: 0.5rem;
    }

    .contact-right{
        display: flexbox;
    }

    /*.main__content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2{
        font-size: 3rem;
    }

    .main__content p{
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .main__btn{
        padding: 12px 36px;
        margin: 2.5rem 0;
    }*/
}

.thankyou{
    background: #191919;
}

.thankyou h1{
    margin-bottom: 50px;
    margin-top: 100px;
    text-align: center;
    font-size: 300%;
    font-weight: 400;
}

.thankyou p{
    color: #fff;
    text-align: center;
    font-size: large;

}

