/* Colors */

:root {
    --yellow-color: #F5C62E;
    --black-color: #000000;
    --white-color: #ffffff;
}

* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins;
}

.wrapper {

    /* width: 1152px; */
    margin: 0 ;
    padding: 0;
}

/* Header Navigation */

.desktop-nav .menu-icon,
.mobile-nav {
  display: none;
}

.desktop-nav {
    display: flex;
    position: absolute;
    z-index: 1;
    width: 90%;
    justify-content: space-between;
    margin: 20px 25px;
}

.desktop-nav .logo {
    display: flex;
    justify-content: space-between;
    
}

.logo img {
    height: 70px;
    width: 160px;
}

.desktop-nav .logo .logo-text {
    font-size: 19px;
    font-weight: 600;
    line-height: 21px;
    color: var(--white-color);
    margin-left: 10px;
}

.desktop-nav .logo .logo-text span{
    color: var(--yellow-color);
}

.desktop-nav .menu-items {
    display: flex;
    margin-left: 500px;
    list-style: none;
    float: left;
}


.desktop-nav .menu-items li{
    margin: 0 10px;
}

.desktop-nav .menu-items li a {
    text-decoration: none;
    color: var(--white-color);
}

.logo-text a {
    text-decoration: none;
    color: var(--white-color);
}

.hero-container {
    /* position: absolute; */
    top: 0px;
    display: flex;
    /* z-index: 100; */
    /* background-image: url("images/hero_background.png"); */
    height: 800px;
    width: 100%;
    background-position: center;    
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.home-hero {

    background-image: url("images/home_hero_background.png");

}

.about-hero {

    height: 450px;
    background-image: url("images/about_hero_background.png");

}

.gallery-hero {

    height: 450px;
    background-image: url("images/gallery_hero_background.png");
}

.contact-hero {

    height: 450px;
    background-image: url("images/contact_hero_background.png");

}

.projects-hero {

    height: 450px;
    background-image: url("images/projects_hero_background.jpg");
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.6);

}

.hero-container .left {
    margin-top: 170px;
    margin-left: 100px;
}

.hero-container .left > p{
    
    color: var(--white-color);
    font-weight: 600;
    font-size: 38px;
    line-height: 42px;
}


.hero-container .left a{

    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    
    
}

.hero-container .left .btn{
    position: absolute;
    margin: 10px 100px;
    color: var(--white-color);   

    border: 3px solid var(--yellow-color);
    box-sizing: border-box;
    border-radius: 12px;
    padding: 10px 30px;
   
}

.hero-container h2 {
    font-weight: 600;
    font-size: 56.1124px;
    line-height: 62px;

    color: var(--white-color);
    align-items: center;
    display: flex;
    height: auto;
    margin: 0 auto;

}

/* About Section */

.home-about-section {
    margin-top: -150px;
}

.about-center {
    display: flex;
    justify-content: center;
}

section h2 {
    font-family: "Montserrat", sans-serif;
    color: var(--black-color);
    margin: 48px 0;
    text-align: center;
    position: relative;
    float: left;

    font-weight: 600;
    font-size: 56px;
    line-height: 110.5%;
}

.welcome {
    display: inline-block;
    
}

.welcome img {
    float: right;
    margin: 60px 0;
    height: 50px;
    width: 50px;
}
.home-about-section > p{
    
    position: relative;
    text-align: center;
    padding: 0 50px;
    /* align-items: center;s */
}


.about-section > p{
    
    position: relative;
    text-align: center;
    padding: 0 50px;
    /* align-items: center;s */
}

/* History Section */

.history-section {
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--yellow-color);
    margin-top: 20px;
}

.history-section .card {
    margin: 80px 50px;
}

.history-section .card-title > h2 {
    position: absolute;
    display: flex;
    /* top: 20px;
    left: 30px; */
    margin-left: 30px;
    margin-top: -50px;
}

.history-section .card-content > p {
    font-weight: 500;
    font-size: 14px;
    line-height: 117.5%;
    margin-top: 20px;
}

/* Facts Section */

.facts-section {    
    background-color: var(--black-color);

}

.facts-section >  h2 {
    text-align: center;
    color: var(--white-color);

    font-weight: 600;
    font-size: 30px;
    line-height: 110.5%;
    padding-top: 20px;
}

.facts-section .list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.facts-section .list .list-item {
    text-align: center;
    padding: 20px 30px;
}


.facts-section .list .list-item > h2 {
    color: var(--yellow-color);
    font-weight: 600;
    font-size: 51.6667px;
    line-height: 57px;
    margin-top: 20px;
}

.facts-section .list .list-item > p {
    color: var(--white-color);
    font-weight: 600;
    font-size: 20.8333px;
    line-height: 110.5%;
    
    margin-top: 20px;
}

/* Services Section */

.services-section {
    margin: 0px 30px;
}
.services-section >  h2 {
    text-align: center;
    color: var(--black-color);

    font-weight: 600;
    font-size: 56.1124px;
    line-height: 62px;
    padding: 50px 0;
}

.services-section .list {
    display: grid;    
    grid-template-columns: 1fr 1fr 1fr;
 
}

.services-section .list .list-item {
    text-align: center;
    padding: 20px 40px;
    margin-bottom: 10px;
    height: 350px;
}

.services-section .list .list-item > img {
        height:144px;
        width:288px;
        
    }

.services-section .list .list-item:hover {
    text-align: center;
    padding: 20px 40px;
    background-color: var(--yellow-color);    
}

.services-section .list .list-item:hover  h2 {
    color: var(--white-color);
}

.services-section .list .list-item:hover  p {
    color: var(--white-color);
}

.services-section .list .list-item > h2 {
    color: var(--black-color);
    font-weight: 600;
    font-size: 17.2721px;
    line-height: 19px;
    margin-top: 20px;

    text-align: left;
}

.services-section .list .list-item > p {
    color: #454545;
    font-weight: 500;
    font-size: 15px;
    line-height: 17px;
    
    margin-top: 20px;
    text-align: left;
}


/* Gallery Section */

.gallery-section {
    margin: 0px 30px;
    padding: 0px 30px;
}

.gallery-section .list {
    display: grid;    
    grid-template-columns: 1fr 1fr 1fr;
    /* padding: 0px 30px; */
    margin: 30px 0px;
}

.gallery-section .list .list-item {
    text-align: center;    
    margin-bottom: 10px;
    height: 270px;
}

.gallery-section .list .list-item img{
    text-align: center;    
    margin-bottom: 10px;
    height: 270px;
    width: 360px;
}


.gallery-section .list .list-item video{
    text-align: center;    
    margin-bottom: 10px;
    height: 270px;
    width:360px;
}

/* Projects Section */

.projects-section {
    margin: 0px 30px;
    padding: 0px 30px;
}

.projects-section .list {
    display: grid;    
    grid-template-columns: 1fr 1fr 1fr;
    /* padding: 0px 30px; */
    margin: 30px 0px;
}

.projects-section .list .list-item {
    text-align: center;    
    margin-bottom: 10px;
    /* height: 270px; */
}

.projects-section .list .list-item img{
    text-align: center;    
    margin-bottom: 10px;
    height: 270px;
    width: 360px;
}

/* Contact Section */

.contact-section {
    background-color: var(--yellow-color);
    position: relative;
    /* margin-bottom: 5px; */
}

.contact-title {
    text-align: center;
    align-items: center;
    /* position: absolute;
    display: flex; */
    padding-top: 50px;
}

.contact-title p {
    margin-top: -70px;
    margin-left: 200px;
    text-align: center;

    color: var(--white-color);
    font-weight: 600;
    font-size: 42.2425px;
    line-height: 47px;
}

.contact-email {
    text-align: center;
    padding-top: 50px;
}

.contact-email input {
    font-size: 20px;
    padding: 10px 30px;
    margin-bottom: 10px;
}

.contact-email textarea {
    font-size: 20px;
    padding: 10px 35px;
    margin-bottom: 10px;
}
.contact-email .email-button {
    background-color: var(--black-color);
    border-radius: 10px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
}

.address-list { 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 20px 50px;
    padding-bottom: 10px;
}

.address-list b p{
    font-weight: 600;
}

.address-list p {
    font-weight: 500;
    font-size: 15.9091px;
    line-height: 12px;
    padding-bottom: 5px;
}

.copyright {
    color: var(--white-color);
    background-color: var(--black-color);    
    text-align: left;
    width: 100%;
    padding-left: 10px;
}

.copyright a {
    color : #8f1bdc;
    text-decoration: none;
}

/* Media Queries */

@media (max-width: 650px){
    .wrapper {
        padding: 0;
        width: auto;
    }

    .desktop-nav .menu-items {
        display: none;
    }

    .desktop-nav .menu-icon {
        display: block;
        float: left;
        text-align: end;
        cursor: pointer;
        height: 50px;
        width: 50px;
    }

    .hero-container .left > p{
    
        font-size: 28px;

    }

    .history-section {
        
        grid-template-columns: 1fr;
        
    }

    .facts-section .list {
        
        grid-template-columns: 1fr;
    }

    .services-section .list {
    
        grid-template-columns: 1fr;

    }

    .address-list { 
        grid-template-columns: 1fr;
    }


    .services-section .list .list-item {
        width: 300px;
    }

    .services-section .list .list-item > img {
        
        width: 250px;
    }

    .services-section .list .list-item {
        
        padding: 20px 20px;
        
    }
    .services-section .list .list-item:hover {
    
        padding: 20px 20px;
    
    }
    /*
    .services-section .list .list-item > h2 {
        width:250px;
    }

    .services-section .list .list-item > p {
        width: 250px;
    }
 */
    .gallery-section {
        margin: 0;
    }

    .gallery-section .list {
        
        grid-template-columns: 1fr;
        
    }

    .gallery-section .list img{
        
        width: 300px;
        
    }

    .gallery-section {
        margin: 0;
    }

    .gallery-section .list {
        
        grid-template-columns: 1fr;
        
    }

    .gallery-section .list img{
        
        width: 300px;
        
    }
    
    .projects-section {
        margin: 0;
    }

    .projects-section .list {
        
        grid-template-columns: 1fr;
        
    }

    .projects-section .list .list-item img{

        height: 180px;
        width: 270px;
    }

    .gallery-section .list .list-item img{
        height: 180px;
        width: 270px;
    }


    .gallery-section .list .list-item video{
        height: 180px;
        width: 270px;
    }

    .address-list b p{
        padding-bottom: 10px;
        
    }

    .address-list p {        
        padding-bottom: 10px;
        line-height: 20px;
        word-wrap: break-word;
        width: 250px;
    }

    .contact-title p {
        margin-left: 150px;
        font-size: 32.2425px;
    }

    .history-section .card {
        margin: 40px 50px;
    }
    .contact-email input {
        margin-bottom: 10px;
    }

    .contact-email input {
        width: 289px;
    }
    .contact-email textarea {
        
        width: 289px;
        padding: 10px 25px;
    }

    .hero-container .left .btn{
        padding: 10px 30px;
        margin: 10px 20px;
    
    }
}



@media (min-width: 650px) and (max-width:950px){
    .wrapper {
        padding: 0;
        width: auto;
    }

    .desktop-nav .menu-items {
        display: none;
    }

    .desktop-nav .menu-icon {
        display: block;
        float: left;
        text-align: end;
        cursor: pointer;
        height: 50px;
        width: 50px;
    }

    .hero-container .left > p{
    
        font-size: 28px;

    }

    .history-section {
        
        grid-template-columns: 1fr 1fr;
        
    }

    .facts-section .list {
        
        grid-template-columns: 1fr 1fr;
    }

    .services-section .list {
    
        grid-template-columns: 1fr 1fr;

    }

    .address-list { 
        grid-template-columns: 1fr 1fr;
    }


    .services-section .list .list-item {
        width: 300px;
    }

    .services-section .list .list-item > img {
        
        width: 250px;
    }

    .services-section .list .list-item {
        
        padding: 20px 20px;
        
    }
    .services-section .list .list-item:hover {
    
        padding: 20px 20px;
    
    }
    /*
    .services-section .list .list-item > h2 {
        width:250px;
    }

    .services-section .list .list-item > p {
        width: 250px;
    }
 */
    .gallery-section {
        margin: 0;
    }

    .gallery-section .list {
        
        grid-template-columns: 1fr 1fr;
        
    }

    .gallery-section .list img{
        
        width: 300px;
        
    }

    .gallery-section {
        margin: 0;
    }

    .gallery-section .list {
        
        grid-template-columns: 1fr 1fr;
        
    }

    .gallery-section .list img{
        
        width: 300px;
        
    }
    
    .projects-section {
        margin: 0;
    }

    .projects-section .list {
        
        grid-template-columns: 1fr 1fr;
        
    }

    .projects-section .list .list-item img{

        height: 180px;
        width: 270px;
    }

    .gallery-section .list .list-item img{
        height: 180px;
        width: 270px;
    }


    .gallery-section .list .list-item video{
        height: 180px;
        width: 270px;
    }

    .address-list b p{
        padding-bottom: 10px;
        
    }

    .address-list p {        
        padding-bottom: 10px;
        line-height: 20px;
        word-wrap: break-word;
        width: 250px;
    }

    .contact-title p {
        margin-left: 150px;
        font-size: 32.2425px;
    }

    .history-section .card {
        margin: 40px 50px;
    }
    .contact-email input {
        margin-bottom: 10px;
    }

    .contact-email input {
        width: 289px;
    }
    .contact-email textarea {
        
        width: 289px;
        padding: 10px 25px;
    }

    .hero-container .left .btn{
        padding: 10px 30px;
        margin: 10px 20px;
    
    }
}

/* Mobile Nav */

.mobile-nav {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    left: 0;
    float: left;    
    background: var(--black-color);
    right: 0;
    z-index: 1;

    opacity: 0;
    pointer-events: none;
    top: -100%;
    transition: 400ms;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
    top: 0;
}

.mobile-nav .menu-items {
    list-style: none;
    padding: 0;
}

.mobile-nav .menu-items li {
    margin: 20px 0;
}

.mobile-nav .menu-items li a {
    color: var(--white-color);
    text-decoration: none;
}


.map {
    margin-top: 50px;
}