/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
*{
    box-sizing:border-box;
}
ul{
    padding: 0px;
}

/* ===== Initializr Styles ==================================================
   Author: Jonathan Verrecchia - verekia.com/initializr/responsive-template
   ========================================================================== */

body {
    font-family: 'Lato', sans-serif;
}
.wrapper{
    width: 100%;
    float:left;
}
.container{
    max-width: 1700px;
    margin: 0 auto;
    padding: 0px 20px;
}
.topbar{
    padding: 15px 0px 15px;
}
.topbar ul{
    float: right;
    display: flex;
    margin: 0px;
}
.topbar ul li{
    list-style:none;
    padding:3px 24px;
    border-right: 1px solid #999999;
}
.topbar ul li:last-child{
    padding-right: 0px;
    border-right: 0px;
}
.topbar ul li a{
    color: #000;
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
}
.topbar ul li.mob_phone a{
    background: url('../img/mob_icon.png') left center no-repeat;
    padding-left: 30px;
}
.topbar ul li.tel_phone a{
    background: url('../img/tel_phone.png') left center no-repeat;
    padding-left: 33px;
}


/*HEADER*/
header{
    background: url('../img/header_bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 25px 0px;
}
header .logo{
    float: left;
}
header .logo img{
    max-width: 400px;
}
header nav{
    float: right;
}
header nav ul{
    margin: 11px 0px 0px;
    display: flex;
}
header nav ul li{
    list-style:none;
    padding: 0px 24px;
}
header nav ul li:last-child{
    padding-right: 0px;
}
header nav ul li a{
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    transition: all ease .3s;
}
header nav ul li:hover a{
    color: #FF0000;
}


/*BANNER*/
.banner{
    background: url('../img/banner_bg.jpg') center center no-repeat;
    background-size: cover;
}
.banner .banner_caption{
    padding: 180px 0px 220px;
    text-align: center;
}
.banner .banner_caption h1{
    color: #fff;
    margin: 0px 0px 0px;
    font-size: 84px;
    font-weight: 600;
    text-transform: uppercase;
}
.banner .banner_caption p{
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    margin: 0px 0px 38px;
    text-transform: uppercase;
}
a.btn{
    font-size: 18px;
    background: #FF0000;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 11px 24px;
    display: inline-block;
    text-decoration: none;
}


/*SERVICES*/
.services{
    background: url('../img/services_bg.jpg') center center no-repeat;
    background-size:cover;
    padding: 80px 0px 80px;
}
.heading{
    text-align: center;
}
.heading h2, .services .left h4{
    color: #000;
    font-size: 36px;
    margin: 0px auto 0px;
    font-weight: 500;
    display: table;
    position: relative;
}
.heading h2:after{
    width: 140px;
    height: 1px;
    background: #FF0000;
    content: "";
    display: inline-block;
    margin: 0px 0px 0px 20px;
    position: relative;
    top: -10px;
}
.heading h2:before{
    width: 140px;
    height: 1px;
    background: #FF0000;
    content: "";
    display: inline-block;
    margin: 0px 20px 0px 0px;
    position: relative;
    top: -10px;
}
.services .service_content{
    display: flex;
    flex-wrap: wrap;
    padding: 95px 0px 0px;
}
.services .left{
    width: 43%;
    padding-right:85px;
    align-self: center;
}
.services .right{
    width: 57%;
}
.services .left h4{
    font-size: 30px;
    display: block;
}
.services .left p{
    font-size: 20px;
    font-weight: 300;
    margin: 15px 0px 34px;
    color: #333;
}
.services .left ul {
    margin: 0px auto 0px;
    display: flex;
    flex-wrap: wrap;
    max-width: 430px;
}
.services .left ul li{
    width: 50%;
    list-style:none;
    margin-bottom: 45px;
}
.services .left ul li .icon{
    float: left;
    width: 41px;
    height: 41px;
    border: 1px solid #FF0000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services .left ul li .icon span{
    background: #FF0000;
    width: 25px;
    height: 25px;
    border-radius: 50px;
}
.services .left ul li p{
    float: left;
    font-size: 20px;
    color: #000;
    margin: 5px 0px 0px;
    padding-left: 20px;
    font-weight: 500;
}
.services .right .col-9{
    float: left;
    width: 73%;
}
.services .right .col-3{
    float: left;
    width: 27%;
}
.services .right .col-12{
    margin-bottom: 20px;
}
.services .right img{
    max-width: 100%;
}


/*THE PROCESS*/
.the_process{
    background: #F7F8FC;
    padding: 120px 0px 20px;
}
.the_process .the_process_content{
    display: flex;
    flex-wrap: wrap;
}
.the_process .the_process_content .left{
    width: 50%;
    align-self: center;
}
.the_process .the_process_content .left h4{
    color: #999999;
    font-size: 107px;
    font-weight: 600;
    margin: -80px 0px -10px;
    text-transform: uppercase;
}
.the_process .the_process_content .left p{
    color: #FF0000;
    font-size: 36px;
    font-weight: 400;
    margin: 0px;
}
.the_process .the_process_content .right{
    width: 50%;
}
.the_process .the_process_content .right ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0px;
    justify-content: center;
}
.the_process .the_process_content .right ul li{
    width: 33.33%;
    margin-bottom: 90px;
    text-align: center;
}
.the_process .the_process_content .right ul li p
{
    color: #000;
    font-weight: 100;
    font-size:20px;
    margin: 50px 0px 0px;
    font-weight: 400;
}


/*OUR GALLERY*/
.our_gallery{
    padding: 90px 0px 95px;
}
.gallery_list{
    background:url('../img/gallery_bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 75px 0px;
    margin-top: 75px;
}
.gallery_list #eapps-instagram-feed-1{
    width: 100% !important;
}
.gallery_list .container{
    max-width: 1280px;
}
.gallery_list ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.gallery_list ul li{
    width: calc(33.33% - 14px);
    margin-right: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
.gallery_list ul li img{
    max-width: 100%;
    object-fit: cover;
}
.gallery_list ul li:nth-child(3n){
    margin-right: 0px;
}

/*CUSTOM KITCHEN*/
.custom_kitchen{
    background: url('../img/custom_kitchen_bg.jpg') center center no-repeat;
    background-size:cover;
    padding: 110px 0px;
    text-align: center;
}
.custom_kitchen p{
    color: #fff;
    font-size: 44px;
    margin: 0px 0px 40px;
    font-weight: 500;
}

/*ABOUT US*/
.about_us{
    padding: 85px 0px;
    background: #EEEEEE;
}
.about_us .about_wrap{
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
}
.about_us .about_wrap .left{
    width: 50%;
    align-self: center;
    max-width: 625px;
}
.about_us .about_wrap .left h3{
    font-size: 31px;
    color: #000000;
    font-weight: 300;
    margin: 0px 0px 15px;
    font-weight: 500;
}
.about_us .about_wrap .left p{
    color: #000;
    font-size: 20px;
    font-weight: 300;
    margin: 0px 0px 0px;
}
.about_us .about_wrap .right{
    width: 50%;
    margin-left: auto;
}
.about_us .about_wrap .right img{
    max-width: 100%;
}

/*CONTACT US*/
.contact_us{
    padding: 90px 0px 80px;
}
.contact_us .form{
    margin-top: 50px;
}
.contact_us .form iframe{
    width: 100%;
    height: 460px;
}

/*FOOTER*/
footer{
    background: url('../img/footer_bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 75px 0px 0px;
}
footer h5{
    font-size: 28px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0px 0px 24px;
    border-bottom: 1px solid #bd0000;
    padding-bottom: 2px;
    color: #fff;
    display: table;
}
footer .col-4{
    float: left;
    width: 25%;
    float: left;
}
 footer .col-4 p{
    font-size: 20px;
    color: #fff;
    font-weight: 300;
}
footer .col-4 ul.social_icon {
    padding: 0px;
}
footer .col-4 ul.social_icon li{
    margin-top: 13px;
    list-style: none;
    margin-right: 8px;
    float:left;
}
footer .col-4 ul.social_icon li:last-child{
    margin-bottom: 0px;
    margin-right: 0px;
}
footer .col-4 ul li p{
    font-size: 20px;
    color: #989898;
    margin: 0px;
}
footer .col-3 ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    display: block;
    margin-bottom: 18px;
    font-weight: 300;
}
footer .col-3{
    width: 20%;
    float: left;
}
footer .col-3:last-child{
    padding-left: 15px;
    margin-top: 100px;
}
footer .col-3:last-child div{
    float: left;
    padding: 0px 15px;
    width: 50%;
}
footer .col-3:last-child div img{
    max-width: 100%;
}
footer .col-3 ul li{
    list-style:none;
}
footer .col-3 ul{
    padding: 01px;
}
footer .col-3 iframe{
    height: 180px;
    width: 100%;
    margin-top: 25px;
}
footer .col-4 ul.location_list{
    list-style: none;
}
footer .col-4 ul.location_list li{
    margin-bottom: 18px;
    padding-left: 35px;
}
footer .col-4 ul.location_list li a{
    color: #fff;
    font-size:20px;
    text-decoration: none;
    font-weight: 300;
}
footer .col-4 ul.location_list li.tel_phone{
    background: url('../img/tel_icon_red.png') center left no-repeat;
}
footer .col-4 ul.location_list li.mob_phone{
    background: url('../img/phone_red.png') center left no-repeat;
}
footer .col-4 ul.location_list li.fax{
    background: url('../img/fax.png') center left no-repeat;
}
footer .col-4 ul.location_list li.email{
    background: url('../img/red_mail.png') center left no-repeat;
}
footer .col-4 ul.location_list li.map{
    background: url('../img/red_pin.png') center left 5px no-repeat;
}
footer .col-5{
    float: left;
    width: 30%;
}
footer .col-5 iframe{
    width:100%;
    height: 270px;
}

/*COPY RIGHT*/
.copy_right{
    padding: 28px 0px 25px;
    margin-top: 35px;
    border-top: 1px solid #FF0000;
}
.copy_right p{
    margin: 0px;
    color: #fff;
    font-size: 20px;
    float: left;
}
.copy_right p:last-child{
    float: right;
}
.copy_right p a{
    text-decoration: none;
    color: #FF0000;
}



/*INNER PAGES*/
.inner_page .banner .banner_caption{
    padding: 130px 0px 130px;
}
.inner_page .banner .banner_caption h1{
    margin: 0px 0px 18px;
}
.inner_page .services{
    padding: 90px 0px 90px;
    background: url('../img/service_01.png') center left no-repeat;
}
.inner_page .services .service_content{
    padding: 0px 0px 0px;
}
.inner_page .services .service_content .left{
    width: 50%;
}
.inner_page .services .service_content .right{
    width: 50%;
}
.inner_page .services .service_content .right  img{
    max-width: 100%;
}
.inner_page .services .service_content .left h4 span{
    display: block;
    color: #FF0000;
}
.inner_page .services .service_content ul{
    max-width: 100%;
    border: 1px solid #CCCCCC;
    box-shadow: 0px 3px 6px rgba(0,0,0,.3);
    padding: 65px 30px 60px;
    background: #fff;
}
.inner_page .services .service_content ul li{
    width: 33.33%;
    padding-bottom: 25px;
    margin-bottom: 0px;
    border-bottom: 1px solid #E6E6E6;
    border-left: 1px solid #E6E6E6;
}
.inner_page .services .service_content ul li:nth-child(4),.inner_page .services .service_content ul li:first-child{
    border-left: 0px;
}
.inner_page .services .service_content ul li:nth-last-child(-n+3){
    border-bottom: 0px;
    padding-top: 25px;
    padding-bottom:0px;
}
.inner_page .services .service_content ul li:nth-child(2) .wrap, .inner_page .services .service_content ul li:nth-child(5) .wrap{
    max-width: 118px;
    margin: 0 auto;
}
.inner_page .services .service_content ul li:nth-child(3n) .wrap{
    padding-left: 60px;
}
.about_page .about_us{
    background: url('../img/about_bg.jpg') center center no-repeat;
    background-size: cover;
}
.about_page .about_us .about_wrap{
    margin-top: 20px;
}
.about_page .about_us .about_wrap .left{
    width: 40%;
}
.about_page .about_us .about_wrap .right{
    width: 60%;
    text-align: right;
}
.about_page .about_us .about_wrap .right img{
    max-width: 100%;
}
.menu_bar{
    float: right;
    width: 28px;
    cursor: pointer;
    display: none;
}
.menu_bar li{
    width: 100%;
    list-style: none;
    height: 3px;
    margin-bottom: 7px;
    background: #ff0000;
}
.gallery_page .gallery_list{
    background: transparent;
    padding: 0px;
}
.gallery_list li{
    position: relative;
}
.gallery_list li .overlay {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
    opacity: 0;
    z-index: 999;
    text-align: center;
    cursor: pointer;
}
.gallery_list li .overlay img{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
}
.gallery_list li:hover .overlay {
    opacity: 1;
}

/*MEDIA QUERY*/
@media(max-width: 1400px){
    header nav ul li{
        padding: 0px 20px;
    }
    header nav ul li a{
        font-size: 18px;
    }
    header .logo img {
        max-width: 350px;
    }
    .banner .banner_caption {
        padding: 120px 0px 140px;
    }
    .banner .banner_caption h1{
        font-size: 68px;
    }
    .banner .banner_caption p{
        font-size: 23px;
    }
    a.btn{
        font-size: 17px;
    }
    .services{
        padding: 70px 0px 60px;
    }
    .services .left h4{
        font-size: 26px;
    }
    .services .right .col-9 {
        padding-right: 18px;
    }
    .services .service_content{
        padding: 55px 0px 0px;
    }
    .services .left {
        padding-right: 30px;
    }
    .services .left ul li{
        margin-bottom: 25px;
    }
    .the_process {
        padding: 90px 0px 25px;
    }
    .the_process .the_process_content .left h4 {
        font-size: 74px;
    }
    .the_process .the_process_content .left p {
        font-size: 32px;
    }
    .the_process .the_process_content .right ul li {
        margin-bottom: 45px;
    }
    .the_process .the_process_content .right ul li p {
        margin: 10px 0px 0px;
    }
    .our_gallery {
        padding: 70px 0px 75px;
    }
    .custom_kitchen{
        padding: 100px 0px;
    }
    .custom_kitchen p {
        font-size: 40px;
        margin: 0px 0px 36px;
    }
    .about_us {
        padding: 75px 0px;
    }
    .about_us .about_wrap{
        margin-top: 55px;
    }
    footer{
        padding: 70px 0px 0px;
    }
    footer h5{
        font-size: 24px;
    }
    footer .col-3 ul li a{
        font-size: 18px;
        margin-bottom: 14px;
    }
    footer .col-4 ul.location_list li a{
        font-size: 16px;
    }
    .copy_right p{
        font-size: 18px;
    }
    .inner_page .banner .banner_caption {
        padding: 110px 0px 110px;
    }
}
@media(max-width: 1280px){
    header nav ul{
        margin: 7px 0px 0px;
    }
    header nav ul li{
        padding: 0px 18px;
    }
    header nav ul li a{
        font-size: 18px;
    }
    header nav ul li:first-child a img{
            max-width: 30px;
    }
    header .logo img {
        max-width: 300px;
        margin-top: 6px;
    }
    .banner .banner_caption {
        padding: 100px 0px 120px;
    }
    .banner .banner_caption h1{
        font-size: 56px;
    }
    .banner .banner_caption p{
        font-size: 22px;
        margin: 0px 0px 30px;
    }
    a.btn{
        font-size: 16px;
    }
    .heading h2{
        font-size: 32px;
    }
    .services .left h4{
        font-size: 24px;
    }
    .services .left p{
        font-size: 18px;
    }
    .services .service_content {
        padding: 50px 0px 0px;
    }
    .services .left ul li p {
        font-size: 18px;
        margin: 8px 0px 0px;
        padding-left: 15px;
    }
    .the_process .the_process_content .left h4 {
        font-size: 68px;
    }
    .the_process .the_process_content .left p{
        font-size: 30px;
    }
    .gallery_list{
        margin-top: 55px;
    }
    .inner_page .banner .banner_caption {
        padding: 100px 0px 100px;
    }
}
@media(max-width: 1140px){
    header .logo img{
        max-width: 250px;
        margin-top: 4px;
    }
    header nav ul li a{
        font-size: 16px;
    }
    header nav ul li:first-child a img {
        max-width: 28px;
    }
    footer .col-3{
        display: none;
    }
    footer .col-4, footer .col-5 {
        width: 33.33%;
    }
}
@media(max-width: 1024px){
    .menu_bar{
        display: block;
        margin: 6px 0px 0px;
    }
    header .logo img {
        max-width: 280px;
        margin-top: 4px;
    }
    header nav {
        position: absolute;
        z-index: 999;
        top: 148px;
        background: #fff;
        left: 0px;
        width: 100%;
        display: none;
    }
    header nav  ul{
        width: 100%;
        margin: 0px;
        display: block;
    }
    header nav  ul li{
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding: 20px 0px;
    }
    header nav  ul li a{
        color: #333;
        font-size: 18px;
    }
    .services .service_content{
        display: block;
    }
    .services .right{
        width: 100%;
    }
    .services .left{
        width: 100%;
        padding-right: 0px;
        text-align: center;
        margin-bottom: 40px;
    }
    .the_process{
        padding: 65px 0px 25px;
    }
    .the_process .the_process_content{
        display: block;
    }
    .the_process .the_process_content .left{
        margin-bottom: 60px;
    }
    .the_process .the_process_content .left , .the_process .the_process_content .right{
        width: 100%;
        text-align: center;
    }
    .the_process .the_process_content .left h4{
        margin: 0px 0px -8px;
    }
    .custom_kitchen{
        padding: 80px 0px;
    }
    .custom_kitchen p {
        font-size: 34px;
        margin: 0px 0px 36px;
    }
    .about_us .about_wrap{
        display: block;
        text-align: center;
    }
    .about_us .about_wrap{
        margin-top: 40px;
    }
    .about_us .about_wrap .left h3{
        font-size: 24px;
    }
    .about_us .about_wrap .left{
        width: 100%;
        margin-bottom: 45px;
        max-width: 100%;
    }
    .about_us .about_wrap .right{
        width: 100%;
    }
    .inner_page .services .service_content .left, .inner_page .services .service_content .right, .about_page .about_us .about_wrap .left, .about_page .about_us .about_wrap .right{
        width: 100%;
    }
    .inner_page .services .service_content .right, .about_page .about_us .about_wrap .right{
        text-align: center;
    }
    .about_page .about_us{
        padding: 50px 0px;
    }
}
@media(max-width: 900px){
    .banner .banner_caption {
        padding: 90px 0px 100px;
    }
    .banner .banner_caption h1{
        font-size: 48px;
    }
    .banner .banner_caption p {
        font-size: 20px;
        margin: 0px 0px 28px;
    }
    footer .col-4:first-child{
        display: none;
    }
    footer .col-4, footer .col-5{
        width: 100%;
    }
    footer .col-5{
        margin-top: 40px;
    }
    footer {
        padding: 55px 0px 0px;
    }
}
@media(max-width: 767px){
    .banner .banner_caption {
        padding: 80px 0px 90px;
    }
    .banner .banner_caption h1{
        font-size: 40px;
    }
    .banner .banner_caption p {
        font-size: 18px;
        margin: 0px 0px 25px;
    }
    a.btn{
        font-size: 15px;
    }
    .services {
        padding: 60px 0px 60px;
    }
    .heading h2{
        font-size: 26px;
    }
    .heading h2::before , .heading h2::after{
        width: 80px;
    }
    .the_process .the_process_content .left h4 {
        font-size: 58px;
    }
    .the_process .the_process_content .left p{
        font-size: 26px;
    }
    .gallery_list{
        margin-top: 45px;
    }
    .custom_kitchen{
        padding: 60px 0px;
    }
    .custom_kitchen p {
        font-size: 28px;
        margin: 0px 0px 30px;
    }
    .copy_right p{
        width: 100%;
        text-align: center;
    }
    .copy_right p:last-child{
        margin-top: 8px;
    }
    .inner_page .banner .banner_caption {
        padding: 80px 0px 80px;
    }
    .inner_page .services .service_content ul li:nth-child(3n) .wrap {
        padding-left: 20px;
    }
    .inner_page .services {
        padding: 50px 0px 50px;
    }
    .gallery_list ul li{
        width: calc(50% - 10px);
    }
    .gallery_list ul li:nth-child(3n){
        margin-right: 20px;
    }
    .gallery_list ul li:nth-child(2n){
        margin-right: 0px;
    }
    .gallery_list{
        background: transparent;
        padding: 0px;
    }
}
@media(max-width: 640px){
    .topbar{
        display: none;
    }
    header nav {
        top: 85px;
    }
    .services .right .col-12 {
        margin-bottom: 15px;
    }
    .the_process .the_process_content .right ul li .icon img{
        max-width: 65px;
    }
    .contact_us {
        padding: 60px 0px 0px;
    }
    .inner_page .services .service_content ul{
        padding: 35px 30px 25px;
    }
    .inner_page .services .service_content ul li:nth-last-child(-n+3){
        padding-top: 0px;
        padding-bottom: 25px;
    }
    .inner_page .services .service_content ul li{
        border:0px !important;
        width: 100%;
    }
    .inner_page .services .service_content ul li:nth-child(3n) .wrap{
        padding-left: 0px;
    }
    .inner_page .services .service_content ul li:nth-child(2) .wrap, .inner_page .services .service_content ul li:nth-child(5) .wrap{
        max-width: 100%;
    }
    .contact_us .form {
        margin-top: 0px;
    }
}
@media(max-width: 480px){
    .banner .banner_caption {
        padding: 80px 0px 80px;
    }
    .banner .banner_caption h1{
        font-size: 30px;
    }
    .banner .banner_caption p {
        font-size: 17px;
        margin: 0px 0px 25px;
    }
    a.btn{
        font-size: 14px;
    }
    .services {
        padding: 50px 0px 10px;
    }
    .services .left ul li .icon {
        width: 36px;
        height: 36px;
    }
    .services .left ul li p {
        font-size: 17px;
        margin: 4px 0px 0px;
        padding-left: 10px;
    }
    .services .left ul li .icon span {
        width: 22px;
        height: 22px;
    }
    .services .right{
        display: none;
    }
    .services .service_content {
        padding: 20px 0px 0px;
    }
    .heading h2::before, .heading h2::after {
        display: none;
    }
    .services .left h4{
        font-size: 22px;
    }
    .the_process .the_process_content .right ul li{
        width: 50%;
    }
    .the_process .the_process_content .left h4 {
        font-size: 42px;
    }
    .the_process .the_process_content .left p{
        font-size: 24px;
    }
    .the_process {
        padding: 55px 0px 20px;
    }
    .gallery_list {
        padding: 45px 0px;
    }
    .our_gallery {
        padding: 60px 0px 65px;
    }
    .about_us {
        padding: 55px 0px;
    }
    .about_us .about_wrap {
        margin-top: 25px;
    }
    .about_us .about_wrap .left h3{
        font-size: 22px;
    }
    .about_us .about_wrap .left p{
        font-size: 18px;
    }

}
@media(max-width: 400px){
    header .logo img {
        max-width: 200px;
        margin-top: 6px;
    }
}