@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}
h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}
h4 {
    font-size: 20px;
    color: #222;
}
h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}
.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: white;
    background-color: transparent;
    border-radius: none;
    cursor: pointer;
    border: 1px solid white;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}



/* Header Start */
#header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 1%;
  
    padding-left: 1%;
    padding-right: 1%;
    background-color: #ffffff;
    z-index: 999;
   
}

#header .logo {
    width: 180px;
    margin-left: 25px;
}

#header .contactButtons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 5%;
}

#header .contactButtons .phoneButton, #header .contactButtons .emailButton {
    background-color: #000000;
    color: #ffffff;
    width: 80px;
    height: 80px;
    margin-right: 10px;
   
    border: none;
    border-radius: 200px;
    box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);

}

#header .contactButtons .phoneButton:hover, #header .contactButtons .emailButton:hover {
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

#header .contactButtons .phoneButton i, #header .contactButtons .emailButton i {
    size: 100%;
    font-size: 35px;
}

#navbar {
    display: flex;
    flex-direction: row;
    justify-content: left;
}



#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #c70000;
    transition: 0.3s ease-in-out;
}

#navbar li a:hover,
#navbar li a.active {
    color: #ff0000;
    font-weight: 600;
    cursor: pointer;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: " ";
    width: 56%;
    height: 3px;
    background: #c70000;
    position: absolute;
    bottom: -4px;
    left: 20px;
}
#navbar li i {
    font-size: 20px;
}

#hero {
    background-image: url(img/HeroMain.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 15%;
    padding-bottom: 15%;
}

#hero h2 {
    color: #ffffff;
    font-size: 40px;
    text-shadow: 2px 2px #000000;

}

#hero h1 {
    color: #ffffff;
    text-shadow: 2px 2px #000000;

}

#hero span {
    color: #c70000;
    font-size: 50px;
    text-shadow: 2px 2px #000000;

}

#hero .servicesButton {
    background-color: #000000;
    width: 300px;
    height: 60px;
    margin-top: 1%;
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-weight: 650;
    font-size: 18px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

}

#hero .servicesButton:hover{
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

#services {
    text-align: center;
    padding-top: 3%;
    padding-bottom: 3%;
}


#services  .serviceContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding-left: 15%;
    padding-right: 15%;
    
}

#services .serviceContainer .service {
    background-color: #F3F3F3;
    width: 300px;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 1%;
    padding-right: 1%;
    box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
-webkit-box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
-moz-box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
margin-top: 2%;
}

#services .serviceContainer .service img {
    width: 90%;
    border-radius: 15px;
    margin-bottom: 5%;
    box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
-webkit-box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
-moz-box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
}

#services .serviceContainer .service button {
    background-color: #c70000;
    color: #ffffff;
    width: 100%;
    height: 100%;
    padding-top: 7%;
    padding-bottom: 7%;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 550;
    box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
 
}

#services .serviceContainer .service button:hover {
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

#services .serviceContainer .service p {
    color: #000;
    font-size: 13px;
}

/* Secondary Service Container */

#services  .serviceContainer2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding-left: 15%;
    padding-right: 15%;
    
}

#services .serviceContainer2 .service {
    background-color: #F3F3F3;
    width: 300px;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 1%;
    padding-right: 1%;
    box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
-webkit-box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
-moz-box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
margin-top: 2%;
margin-right: 10%;
}

#services .serviceContainer2 .service img {
    width: 90%;
    border-radius: 15px;
    margin-bottom: 5%;
    box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
-webkit-box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
-moz-box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
}

#services .serviceContainer2 .service button {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    height: 100%;
    padding-top: 7%;
    padding-bottom: 7%;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 550;
    box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
 
}

#services .serviceContainer2 .service button:hover {
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

#services .serviceContainer2 .service p {
    color: #000;
    font-size: 13px;
}


#reviews {
    background-color: #F2F2F2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    padding-top: 2%;
    padding-bottom: 2%;
}

#reviews .reviewContainer .review {
    width: 85%;
}

#reviews .reviewContainer .review .green {
    color: #c70000;
}

#reviews .reviewContainer .review .stars i {
    color: #000000;
}

#reviews .reviewContainer .review p {
    color: #000;
}

#reviews .reviewContainer .review h2 {
    color: #c70000;
    font-size: 30px;
}

#about {
    padding-top: 6%;
    padding-bottom: 6%;
    padding-left: 10%;
    padding-right: 10%;
}

#about .aboutContainer {
    background-color: #c70000;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
  
}
#about .aboutContainer h1 {
    color: #ffffff;
    text-align: center;
}

#about .aboutContainer button {
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    width: 30%;
    height: 60px;
    border: none;
    border-radius: 15px;
    font-weight: 500;
    font-size: 18px;
    margin-left: 35%;
    margin-top: 3%;
    box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
}

#about .aboutContainer button:hover {
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

#about .aboutContainer p {
    color: #ffffff;
}

#contact {
    background-image: url(img/ContactBG.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 4%;
    padding-bottom: 4%;
    padding-left: 4%;
    padding-right: 4%;
}

#contact .contactContainer {
    display: flex;
    flex-direction: column;
    background-color: #c70000;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3%;
    padding-bottom: 3%;
    border-radius: 20px;
    box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
}

#contact .contactContainer h1 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1%;
}

#contact .contactContainer form {
    display: flex;
    flex-direction: column;
}

#contact .contactContainer form input, #contact .contactContainer form select {
    height: 35px;
    margin-bottom: 1%;
    border-radius: 12px;
    padding-left: 2%;
    padding-right: 2%;
    border: none;
}

#contact .contactContainer form textarea {
    margin-bottom: 1%;
    border-radius: 12px;
    padding-left: 2%;
    padding-right: 2%;
    border: none;
    padding-top: 1%;
    padding-bottom: 1%;
}

#contact .contactContainer form button {
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    width: 30%;
    height: 60px;
    border: none;
    border-radius: 15px;
    font-weight: 500;
    font-size: 18px;
    margin-left: 35%;
    margin-top: 3%;
    box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
-moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
}

#contact .contactContainer form button:hover {
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

#gallarySection {
    background-color: #ffffff;
    padding-top: 2%;
  
}

#gallaryTop {
    text-align: center;
    padding-top: 2%;
    background-color: #ffffff;
    flex: none;
    text-align: center;
}

#gallarySection .gallaryContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-left: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
    background-color: #ffffff;
    flex-wrap: wrap;
}

#gallarySection .gallaryContainer .gallery {
    margin: 5px;
    border: 1px solid #ffffff;
    width: 180px;
    
  }
  
  #gallarySection .gallaryContainer .gallery:hover {
    border: 1px solid #777;
  }
  
  #gallarySection .gallaryContainer .gallery img {
    width: 100%;
    height: auto;
  }
  
  #gallarySection .gallaryContainer .gallery .desc {
    padding: 15px;
    text-align: center;
  }


footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #f0f0f0;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo {
    margin-bottom: 30px;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow{
    margin-top: 20px;
}

footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
    color: #474747;
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .paymentMethods {
    width: 100%;
    text-align: center;
    margin-bottom: 2%;
}
footer .copyright {
    width: 100%;
    text-align: center;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

@media (max-width:912px) {
    .section-p1 {
        padding: 40px 40px;
    }
    #header{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: none;
        padding-top: 3%;
        background-color: #ffffff;
       
    }


    #navbar {
        display: flex;
        align-items:center;
        justify-content: center;
    }
    
    
    
    #navbar li{
        list-style: none;
        padding: 1.5%;
        position: relative;
    }
    
    #navbar li a{
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
   
        transition: 0.3s ease-in-out;
    }
    
    #navbar li a:hover,
    #navbar li a.active {

        font-weight: 600;
        cursor: pointer;
    }
    
    #navbar li a.active::after,
    #navbar li a:hover::after{
        content: " ";
        width: 56%;
        height: 3px;

        position: absolute;
        bottom: -4px;
        left: 20px;
    }
    #navbar li i {
        font-size: 20px;
    }
    #header .contactButtons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-right: 5%;
        margin-top: 1%;
    }
    
    #header .contactButtons .phoneButton, #header .contactButtons .emailButton {
        background-color: #000000;
        color: #ffffff;
        width: 50px;
        height: 50px;
        margin-right: 0;
        margin-left: 10px;
       
        border: none;
        border-radius: 200px;
        box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
    -webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
    -moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
    
    }
    
    #header .contactButtons .phoneButton:hover, #header .contactButtons .emailButton:hover {
        cursor: pointer;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
    }
    
    #header .contactButtons .phoneButton i, #header .contactButtons .emailButton i {
        size: 100%;
        font-size: 25px;
    }

    #header .logo {
        width: 180px;
        margin-left: 0px;
        margin-bottom: 5px;
    }

    #services  .serviceContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: #ffffff;
        padding-left: 15%;
        padding-right: 15%;
        flex-wrap: wrap;
        
    }
    
    #services .serviceContainer .service {
        background-color: #F3F3F3;
        width: 500px;
        padding-top: 1%;
        padding-bottom: 3%;
        padding-left: 1%;
        padding-right: 1%;
        box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
    -webkit-box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
    -moz-box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
    margin-top: 2%;
    margin-bottom: 1%;
    }
    
    #services .serviceContainer .service img {
        width: 90%;
        border-radius: 15px;
        margin-bottom: 5%;
        box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
    -webkit-box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
    -moz-box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
    }
    
    #services .serviceContainer .service button {
        background-color: #000000;
        color: #ffffff;
        width: 90%;
        height: 90%;
        padding-top: 7%;
        padding-bottom: 7%;
        border: none;
        border-radius: 15px;
        font-size: 20px;
        font-weight: 550;
        box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
    -webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
    -moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
     
    }
    
    #services .serviceContainer .service button:hover {
        cursor: pointer;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
    }
    
    #services .serviceContainer .service p {
        color: #000;
        font-size: 13px;
    }
    
    /* Secondary Service Container */
    
    #services  .serviceContainer2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: #ffffff;
        padding-left: 15%;
        padding-right: 15%;
        flex-wrap: wrap;
        
    }
    
    #services .serviceContainer2 .service {
        background-color: #F3F3F3;
        width: 100%;
        padding-top: 1%;
        padding-bottom: 3%;
        padding-left: 1%;
        padding-right: 1%;
        box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
    -webkit-box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
    -moz-box-shadow: -11px 9px 0px -2px rgba(0,0,0,0.4);
    margin-top: 2%;
    margin-bottom: 1%;
    margin-right: 0%;
    }
    
    #services .serviceContainer2 .service img {
        width: 90%;
        border-radius: 15px;
        margin-bottom: 5%;
        box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
    -webkit-box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
    -moz-box-shadow: -8px 20px 31px -17px rgba(0,0,0,0.63);
    }
    
    #services .serviceContainer2 .service button {
        background-color: #000000;
        color: #ffffff;
        width: 90%;
        height: 90%;
        padding-top: 7%;
        padding-bottom: 7%;
        border: none;
        border-radius: 15px;
        font-size: 20px;
        font-weight: 550;
        box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
    -webkit-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
    -moz-box-shadow: -17px 3px 53px -19px rgba(0,0,0,0.75);
     
    }
    
    #services .serviceContainer2 .service button:hover {
        cursor: pointer;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
    }
    
    #services .serviceContainer2 .service p {
        color: #000;
        font-size: 13px;
    }

    #about .aboutContainer button {
        width: 100%;
        margin-left: 0;
    }
    
}

@media (max-width: 477px) {
    h1 {
        font-size: 30px;
    }

    #hero {
        padding-top: 30%;
    }

    #hero h1 {
        font-size: 20px;
        line-height: 35px;
    }

    #hero span {
        font-size: 25px;

    }

    #hero h2 {
        font-size: 20px;
        line-height: 35px;
    }

    #hero .servicesButton {
        font-size: 16px;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 90%;
        margin-top: 3%;
    }

    #reviews {
        flex-wrap: wrap;
        padding-left: 5%;
        padding-right: 5%;
    }

    #reviews .reviewContainer {
        width: 100%;
        margin-top: 15%;
    }

    #reviews .reviewContainer .review .green {
        margin-bottom: 0%;
        line-height: 12px;
    }

    #reviews .reviewContainer .review {
        width: 100%;
    }

    #reviews .reviewContainer .review h2 {
        font-size: 20px;
    }

    #contact {
        padding-left: 2px;
        padding-right: 2px;
    }

    #contact .contactContainer {
        padding-top: 10%;
        padding-bottom: 10%;
        padding-left: 3%;
        padding-right: 3%;
    }

    #contact .contactContainer form input {
        margin-bottom: 3%;
    }

    #contact .contactContainer form textarea {
        margin-top: 3%;
        padding-top: 4%;
    }

    #contact .contactContainer form button {
        width: 100%;
        margin-left: 0%;
    }   

    footer {
        align-items: baseline;
        display: flex;
        flex-direction: column;
    }

    footer .col{
        text-align: left;
    }
}