main {
    width: 100%;
    margin-top: -150px;
    height: calc(100vh + 270px);
    background-color: black;
    background-image: url(../images/Live\ pic.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    display: flex;
    justify-content: center;
    align-items: center;    
}

main .main-intro h1 {
    font-size: 8.4rem;
    line-height: 1.15;
    margin-top: 50px;
}

main .main-intro h2 {
    font-size: 3.6rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.35;
    text-align: center;
    color: #fff
}

main .main-intro {
    position: relative;
    bottom: 45vh;
}

/* Contact Page section */

.index-category {
    width: 100%;
    height: 900px;
    background-image: url(../images/croc-skin-pattern.jpg); 
    position: relative;
    isolation: isolate;
}

.index-category::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: #a1b776;
    opacity: 0.8;
}

.section-intro {
    font-size: 5.6rem;
    line-height: 1.15;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: black;
    text-align: center;
    padding-top: 100px;
}

.contact-container {
    height: 100vh;
    display: flex;
    align-items: top;
    padding-top: 16vh;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    padding: 15px 20px 30px 20px;
    border-radius: 15px;
    background-color: #333;
    height: fit-content;
}


.contact-left-title h6{
    font-weight: 600;
    color: #fff;
    font-size: 3.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 120px;
    height: 5px;
    background-color: #71834f;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-size: 1.6rem;
    font-weight: 500px;
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 15px;
    background-color: #e7e7e7;  
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 15px;
    background-color: #e7e7e7;
    padding-right: 20px;
}

.contact-inputs:focus{
    border: 4px solid #a1b776;
    transition: 0.2s;
}
.contact-inputs::placeholder {
    color: #333;
}

.contact-left button {
    display: flex;
    align-items: center;
    padding-top: 15px 30px;
    font-size: 1.6rem;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #71834f, #a1b776);
    padding: 10px 30px 10px 30px;
    cursor: pointer;
}

.section-paragraph h4 {
    font-weight: 600;
    color: black;
    font-size: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-paragraph p {
    color: black;
    font-size: 2.2rem;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Connect with us section */

.index-connect {
    width: 100%;
    height: 50vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.connect-title {
    font-size: 5.6rem;
    line-height: 1.15;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.sm-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.sm-icons-fb {
    width: 50px;
    height: 50px;
    background-image: url(../images/Facebook\ White.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s
}

.sm-icons-fb:hover {
    background-image: url(../images/Facebook\ Colour.png);
    opacity: 0.3s;
}

.sm-icons-ig {
    width: 50px;
    height: 50px;
    background-image: url(../images/Instagram\ White.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s
}

.sm-icons-ig:hover {
    background-image: url(../images/Instagram\ Colour.png);
    opacity: 0.3s;
}

/* MOBILE VERSION */

@media only screen and (max-width: 600px) {

    main {
        width: 100%;
        height: calc(100vh + 25vh);
        margin-top: -175px;
        background-color: black;
        background-image: url(../images/Live\ pic.jpg);
        background-size: 300%;
        background-repeat: no-repeat;
        background-position: center;  
        display: flex;  
        justify-content: center;
        align-items: center;    
    }
    
    main .main-intro h1 {
        font-size: 3rem;
        line-height: 1.15;
        text-align: center;
        margin-top: 300px;
    }
    
    main .main-intro h2 {
        font-size: 2.4rem;
        line-height: 1.35;
        text-align: center;
        color: #fff
    }
    
    main .main-intro {
        position: relative;
        bottom: 37vh;
    }

            /* Contact section */

    .index-category {
        height: 110%;
        padding: 0;
        margin-top: -10vh;
    }
    
    .section-intro {
        font-size: 3rem;
        padding-top: 50px;
    }

    .section-paragraph {
        display: none;
    }

    .contact-container {
        padding-top: 50px;
    }    

    .contact-left {
        width: 80%;
    } 

    .contact-left-title {
        width: 80%;
    }    

    .contact-left-title h6{
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .contact-left-title hr {
        width: 75px;
        height: 3px;
        margin-bottom: 10px;
    }

    .contact-inputs {
        width: 100%;
    }    

            /* Connect with us section */

    .index-connect {
        width: 100%;
        height: 33vh;
        margin: 0;
        padding: 0;
    }
    
    .connect-title {
        font-size: 3rem;
        line-height: 1.15;
    }
    
    .sm-icons-fb {
        width: 35px;
        height: 35px;
    }
    
    .sm-icons-ig {
        width: 35px;
        height: 35px;
    }

}