body{
    padding-top: 100px;
}

/*navbar styles*/

nav{
    height: 100px;
    width: 100%;
    background: white;
}

label.logo{
    line-height: 100px;
    padding: 0 100px;
}

label.logo img{
/*    border-radius: 10px;*/
    height: 95px;
    width: 120px;
}

nav ul{
    float: right;
    margin-right: 20px;
}

nav ul li{
    display: inline-block;
    line-height: 100px;
    margin: 0 5px;
}

nav ul li a{
    color: black;
    font size: 17px;
    font-weight: bold;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

nav a:hover{
    color: #ed6509;
    transition: .5s;
}

.checkbtn{
    font-size: 30px;
    color: black;
    float: right;
    line-height: 100px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}

@media (max-width: 952px){
    label.logo{
        padding-left: 50px;
    }

    nav ul li a{
        font-size: 16px;
    }
}

@media (max-width: 858px){
    .checkbtn{
        display: block;
    }

    ul{
        position: fixed;
        width: 100%;
        background: white;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li{
        display: block;
        line-height: 40px;
    }

    nav ul li a{
        font-size: 15px;
    }

    nav ul li a:hover{
        color: #ed6509;
/*        color: black;*/
    }

    #check:checked ~ ul{
        left: 0;
    }

    .row{
        padding: 20px;
    }
}

/*navbar styles ends*/

/*new index styles*/
.home-section-1{
    color: white;
    background-image: url(../images/home-section-1-backg.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.home-section-1 h1{
    text-align: center;
    font-weight: bold;
    font-family: 'serif';
}

.home-section-1 h1 span{
    display: block;
    font-size: 80px;
    font-style: italic;
}

.home-section-1 h1 span.bottom{
    font-style: normal;
    font-size: 100px;
    margin-bottom: 20px;
}

.home-section-1 h1 a{
    font-size: 60px;
    color: white;
    text-align: center;
    padding: 0 40px;
    border-radius: 50px;
    border: 4px solid white;
    box-shadow: 0px -5px 10px 0px;
}

.home-section-2{
    padding: 20px 0;
}

.home-section-2 .columns{
    display: flex;
    text-align: center;
}

.home-section-2 .columns .column{
    flex: 30%;
}

.home-section-2 .columns .column img{
    width: 90%;
    height: 100%;
    object-fit: contain;
}

.home-section-3{
    text-align: center;
}

.home-section-3 h1{
    font-family: 'serif';
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase
}

.home-section-3 .columns{
    display: flex;
    background: lightgrey;
}

.home-section-3 .columns .column{
    flex: 25%;
}

.home-section-3 .columns .column img{
    width: 60%;
    object-fit: contain;
}

.home-section-3 .columns .column span{
    display: block;
    font-size: 25px;
    font-weight: bold;
    font-family: 'serif';
}

.home-section-3 h2{
    padding: 30px;
    background: lightgrey;
    margin-bottom: 0;
}

.home-section-3 h2 a{
    font-family: 'serif';
    font-weight: bold;
    color: white;
    background: black;
    padding: 10px 60px;
    border-radius: 50px;
}

.home-section-4 .columns{
    display: flex;
}

.home-section-4 .columns .column{
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-section-4 .columns .column img{
    width: 100%;
}

.home-section-4 .columns .column p{
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    padding: 0 30px;
}

.home-section-4 .columns .column p span{
    font-size: 25px;
    font-style: italic;
}

.home-section-5{
    background: #ed6509;
}

.home-section-5 .columns{
    display: flex;
}

.home-section-5 .columns .column{
    flex: 50%;
    padding: 20px;
    text-align: center;
}

.home-section-5 .columns .button{
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section-5 .columns h1{
    color: lightgrey;
    font-weight: bold;

}

.home-section-5 .columns p{
    font-size: 20px;
    font-weight: bold;
}

.home-section-5 .columns .button h1 a{
    color: white;
    background: lightgrey;
    padding: 5px 40px;
    border-radius: 50px;
    font-size: 30px;
}

@media (max-width: 858px){
    .home-section-1 h1 span{
        font-size: 40px;
    }

    .home-section-1 h1 span.bottom{
        font-size: 50px;
    }

    .home-section-1 h1 a{
        font-size: 30px;
        padding: 0 40px;
        border: 2px solid white;
    }

    .home-section-3 h1{
        font-size: 25px;
    }

    .home-section-3 .columns{
        padding: 0 20px;
    }

    .home-section-3 .columns .column{
        margin: 0 5px;
    }

    .home-section-3 .columns .column span{
        font-size: 15px;
    }

    .home-section-3 h2{
        padding: 10px;
        font-size: 20px;
    }

    .home-section-3 h2 a{
        padding: 5px 30px;
    }

    .home-section-4 .columns{
        display: block;
    }

    .home-section-4 .columns .column p{
        font-size: 15px;
    }

    .home-section-4 .columns .column p span{
        font-size: 20px;
    }

    .home-section-5 .columns{
        display: block;
        padding: 20px;
    }

    .home-section-5 .columns .column{
        padding: 0;
    }

    .home-section-5 .columns h1{
        font-size: 30px;
    }

    .home-section-5 .columns p{
        font-size: 15px;
    }

    .home-section-5 .columns .button{
        padding-top: 0;
    }

    .home-section-5 .columns .button h1 a{
        padding: 5px 20px;
        font-size: 15px;
    }
}
/*new index styles ends*/

/*NEW SERVICES STYLES*/
.services{
    display: grid;
    grid-template-columns: 50% 50%;
    background: lightgrey;
}

.services img{
    width: 100%;
}

.services .text{
    text-align: center;
    margin: auto;
    font-family: 'serif';
}

.services .text h1{
    font-size: 60px;
    margin-bottom: 0;
}

.services .text h1.bold{
    font-weight: bold;
}

.services .text .button{
    margin-top: 30px;
}

.services .text .button a{
    color: white;
    background: blue;
    padding: 20px 50px;
    font-size: 25px;
    font-weight: bold;
}

@media (max-width: 858px){
    .services .text{
        padding: 8px;
    }
    .services .text h1{
        font-size: 18px;
    }

    .services .text .button{
        margin-top: 20px;
    }

    .services .text .button a{
        padding: 5px 10px;
        font-size: 10px;
    }
}
/*NEW SERVICES STYLES ENDS*/

/*background styles*/

#backgr{
    background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url("../images/bgb.jpeg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    padding: 20px;
}

#backg{
    padding-top: 30px;
    background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url("../images/bgb.jpeg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

/*background styles ends*/

/*about styles*/
.about-section-1{
    text-align: center;
    padding: 20px;
}

.about-section-1 h1{
    font-weight: bold;
    font-family: serif;
    color: steelblue;
}

.about-section-1 p{
    font-size: 18px;
    color: #ed6509;
    font-weight: bold;
}

.about-section-2{
    text-align: center;
}

.about-section-2 .columns{
    display: flex;
}

.about-section-2 .columns .column{
/*    flex: 50%;*/
    margin: auto;
}

.about-section-2 .columns .column img{
    width: 100%;
    object-fit: contain;
}

.about-section-2 .columns .column p{
    padding: 20px;
    font-weight: bold;
}

.about-section-2 p{
    padding: 25px 50px;
}

@media(max-width:991px){
    .about-section-1 h1{
        font-size: 30px;
    }

    .about-section-1 p{
        font-size: 15px;
    }

    .about-section-1 img{
        width: 30%;
    }

    .about-section-2 .columns{
        display: block;
    }
}
/*about styles ends*/

/*projects styles*/

.single{
    width: 290px;
}

@media(max-width:991px){
    .single{
        width: 100%;
        margin: 0 auto;
    }
}

.product{
    background: #ffffff;
    border: solid 1px #e6e6e6;
    margin-bottom: 30px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #ed6509;
}

.product .text{
    padding: 10px 10px 0px;
}

.product .text p.price{
    font-size: 18px;
    text-align: center;
    font-weight: 400;
}

.product .text{
    text-align: center;
    clear: both;
    margin-bottom: 10px;
}

.product .text h3{
    text-align: center;
    font-size: 20px;
}

.product .text h3 a{
    color: rgb(85, 85, 85);
}

.product .img-responsive{
    height: 300px;
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}

/*project styles ends*/

/*contact styles*/

.contact-map{
    display: grid;
    grid-template-columns: 50% 50%;
    font-family: serif;
    padding: 30px;
}

.contact-map .text h1{
    font-weight: bold;
}

.contact-map .text h2{
    font-weight: bold;
}

.contact-map .google-map{
    padding-bottom: 50%;
    position: relative;
}

.contact-map .google-map iframe{
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.contact-section{
    background: lightgrey;
    display: grid;
    grid-template-columns: 50% 50%;
    font-family: serif;
}

.contact-section .contact-information{padding: 30px;
}

.contact-section .contact-information h1, .contact-section .contact-information h2{
    font-weight: bold;
}

.contact-section .contact-information h3 a li{
    list-style: none;
    color: black;
}

.contact-section .contact-information h3 a li:hover{
    color: #ed6509;
}

#cont{
    color: #000;
}

label{
    font-weight: bold;
}

.form-group input{
    border-color: #ed6509;
    border-radius: 0;
}

.form-group textarea{
    border-color: #ed6509;
    height: 220px;
    border-radius: 0;
}

.btn{
    background: #000;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
}
.btn:hover{
    color: white;
}

#error_message{
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0px;
    background: #FF0000;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.5s ease;
    border-radius: 5px;
}

#success_message{
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    background: #00FF00;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.5s ease;
    border-radius: 5px;
}

@media (max-width: 991px){
    .contact-map .text h1{
        font-size: 25px;
    }

    .contact-map .text h2{
        font-size: 22px;
    }

    .contact-map .text h3{
        font-size: 18px;
    }

    .contact-section{
        display: block;
    }

    #cont{
/*        background: grey;*/
        width: 100%;
    }

    .contact-section .contact-information h1{
        font-size: 25px;
    }

    .contact-section .contact-information h2{
        font-size: 22px;
    }

    .contact-section .contact-information h3{
        font-size: 18px;
    }
}

    #error_message{
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0px;
        background: #FF0000;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        transition: all 0.5s ease;
        border-radius: 5px;
    }

    #success_message{
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 10px;
        background: #00FF00;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        transition: all 0.5s ease;
        border-radius: 5px;
    }
}

/*contact styles ends*/

/*social styles*/

#social{
    background-color: #000;
}

#social i{
    font-size: 30px;
}

/*social styles ends*/

/*footer styles*/

.page-footer{
/*    background-color: #ed6509;*/
    background: white;
}

.page-footer h6{
    color: #ed6509;
}

.page-footer a{
    font-weight: bold;
}

.page-footer ol li, .page-footer ol li a, .page-footer ol a li{
    color: black;
}

.page-footer a:hover, .page-footer a li:hover{
    color:#ed6509;
}

.page-footer hr{
    background-color: #ed6509;
}

/*footer styles ends*/