body{
    margin: 0;    
    padding: 0;
    font-family: 'Playfair Display', serif;
}
*{
    box-sizing: border-box;
}
p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #666666;    
    line-height: 24px;
}
p:last-of-type{
    margin-bottom: 0;
}
.container{
    margin: 0 auto;
    width: 96%;
    max-width: 1200px;
}
a{
    text-decoration: none;
}

button{
    cursor: pointer;
    background: transparent;
    border: none;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
img{
    max-width: 100%;
    display: block;
}
img.full{
    width: 100%;
}
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.justify-content-start{
    justify-content: flex-start;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-end{
    justify-content: flex-end;
}
.align-items-start{
    align-items: flex-start;
}
.align-items-center{
    align-items: center;
}
.align-items-end{
    align-items: flex-end;
}
.toggle-btn{
    display: none;
}
.deafault-btn{
    font-size: 18px;
    line-height: 22px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    border-radius: 150px;
    padding: 17px 70px 17px 40px;
    transition: all linear .3s;
    border: solid 1px #fff;
    position: relative;
}
.deafault-btn:after,.deafault-btn.white:hover:after {
    position: absolute;
    content: "";
    width: 42px;
    transition: all linear .3s;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/icon-arrow.png') no-repeat 14px 0px;
}
.deafault-btn:hover,.deafault-btn.white{
    background: #fff;
    color: #ED1C24;
}
.deafault-btn:hover:after,.deafault-btn.white:after{
    background: url('../images/icon-arrow-red.png') no-repeat 14px 0px;
}
.deafault-btn.white:hover{
    color: #fff;
    background: transparent;
} 
.deafault-btn.red{
    color: #ED1C24;
    border-color: #ED1C24;
}
.deafault-btn.red:after{
    background: url('../images/icon-arrow-red.png') no-repeat 14px 0px;
    transition: all linear .3s;
}
.deafault-btn.red:hover{
    background-color: #ED1C24;
    color: #fff;
}
.deafault-btn.red:hover:after{
    background: url('../images/icon-arrow.png') no-repeat 14px 0px;
}
.heading-text{
    font-style: normal;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 70px;
    display: inline-block;
    text-align: center;
}
.heading-text span{
    color: #ED1C24;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: inline-block;
    line-height: 24px;
}
.heading-text span:before, .heading-text span:after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: #ED1C24;
    left: -65px;
    top: 10px;
}
.heading-text.sub {
    line-height: 50px;
    text-align: left;
    font-size:38px;
}
.heading-text.sub span:before{
    display: none;
}
.heading-text span:after{
    left: auto;
    right: -65px;
}
header.header {
    position: fixed;
    transition: all linear .3s;
    background: rgba(0,0,0,.3);
    width: 100%;
    z-index: 99;
}
.logo {
    width: 140px;
    padding: 10px 0;
    transition: all linear .3s;
}
.logo svg{
    width: 100%;
    height: auto;
}
header.small{
    background: rgba(0,0,0,1); 
}
.header .container{
    position: relative;
}
header.small .logo{
    width: 100px;
   
}
.resp-menu,
.close-menu {
    display: none;
}
.header .menu {
    width: calc(100% - 180px);
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}
.header .menu .nav li.submenu>a:after {
    position: relative;
    content: "";
    margin-left: 12px;
    transform: rotate(135deg);
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: solid 1px currentcolor;
    border-right: solid 1px currentcolor;
    top: -3px;
}
.header .menu .nav a {
    color: #fff;
    font-size: 18px;
    transition: all linear .3s;
    padding: 5px 30px 35px 0;
}
.header .menu .nav li:hover>a{
    color: #9a9a9a;
}
.header .menu li ul.dropdown {
    position: absolute;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    background: #fff;  
    left: 0;  
    font-weight: 600;
    transition: all linear .2s;
    font-size: 16px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    border: solid 1px #f1f1f1;
    top: 115px;
    padding: 20px 20px 10px;
}
.header .menu li ul.dropdown li {
    width: 18%;
    margin: 1% 1% 0;
}
.header .menu li ul.dropdown li .image {
    background: #000;
}
.header .menu li ul.dropdown li .image img{
    width: 100%;
    transition: all linear .3s;
}
.header .menu li ul.dropdown a{
    color: #000;
    transition: all linear .3s;
}
.header .menu li ul.dropdown span {
    margin-top: 20px;
    display: block;
    line-height: 1;
}
.header .menu .nav li:hover ul.dropdown{
    visibility: visible;
    opacity: 1;
    top: 95px;
}
.header .menu .nav li ul.dropdown li:hover a{
    color: #ED1C24;
}
.header .menu .nav li ul.dropdown li:hover img{
    opacity: .7;
}
button.search-icon {
    margin-right: 20px;
}
.header.small .menu .nav a {
    padding-bottom: 25px;  
}
.header.small .menu .nav li:hover ul.dropdown{
    top: 70px;
}
.social-media a {
    padding: 5px 0 5px 10px;
    transform: scale(.8);
    transition: all linear .3s;
    position: relative;
}
.social-media a:hover{
    transform: scale(1);
}
/*.social-media a:hover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
    animation: ripple 1.5s ease-out infinite;
}*/
.banner{
    position: relative;
}
.banner .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;  
    background: #ffffff;   
}
.banner .owl-dots {
    position: absolute;   
    top: 50%;    
    right: 100px;
    width: 25px;   
    transform: translateY(-50%);
}
.banner .owl-theme .owl-dots .owl-dot.active span, .banner .owl-theme .owl-dots .owl-dot:hover span {
    background: #ed1c24;
}
.banner .image {
    position: relative;
    max-height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.scroll-down {
    position: absolute;
    left: -30px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    cursor: pointer;
    top: calc(100vh - 100px);
    transform: rotate(-89deg);
    z-index: 9;
    padding-left: 35px;
}
.scroll-down::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 10px;
    background: url('../images/icon-arrow.png') no-repeat 0 0;
    transform: rotate(180deg);
    left: 0;
    top: 5px;
}
.banner .image .container {
    position: absolute;
    top: 50%;   
    left: 0;
    right: 0;
    margin: 0 auto;    
    transform: translateY(-50%);
}
.banner .image .container .text {
    width: 550px;
    color: #fff;
   
}
.banner .image .heading {
    font-size: 60px;
    font-weight: 600;
    font-size: 60px;
    line-height: 65px;
}
.banner .image .heading span{
    color: #ED1C24;
    display: block;
}
.banner .image  p{
    font-weight: 200;
    margin-top: 20px;   
    color: #fff;
    display: none;
}
.banner .image .container .text .btn {
    margin-top: 40px;
}
.about-section {
    padding: 40px 0;
    text-align: center;
}
.about-section .text {
    margin: 0 100px;
}
.about-section p{
    font-size: 18px;
    line-height: 27px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #666666;
}
.about-section .company-ratio {
    padding-top: 30px;
    border-top: solid 1px #EDEDED;
    margin: 30px 0 70px;
}
.about-section .company-ratio li {
    width: 23%;
    font-family: 'Roboto', sans-serif;
    transition: all linear .3s;
    font-size: 14px;
    text-align: left;
    color: #666666;
}
.about-section .company-ratio li:hover{
    transform: translateY(-10px);
}
.about-section .company-ratio li .detail {
    width: calc(100% - 80px);
}
.about-section .company-ratio li span.number{
    font-size: 48px;
    font-weight: 600;
    color: #000;
    padding-bottom: 10px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    display: block;
}
.services-section,.contact-section{
    padding: 0 0 40px;
    text-align: center;
}
.services-section .services {
    margin-top: 30px;
}
.services-section .services li {
    border-left: solid 2px #ED1C24;  
    margin-top: 15px;  
}
.services-section .services .text, .services-section .services .image {
    width: 49%;
    text-align: left;
    box-sizing: border-box;
}
.services-section .services .no-image-section .text{
    width: 100%;
}
.services-section .services .image{
    background: #000;
}
.services-section .services .image img{
    width: 100%;
    opacity: 1;
    transition: all linear .3s;
}
.services-section .services .image img:hover{
    opacity: .7;
}
.services-section .services .text{
    padding: 20px;
}
.services .text .title{
    font-size: 32px;
    font-weight: 600;
}
.services .text p{   
    text-align: justify;    
}
.services .text .btn {
    display: block;
    margin-top: 35px;
}
.services-section .services li:nth-last-of-type(even),.services-section .services li.rev-order,
.services-section .services.bottom-service-sec li:nth-last-of-type(odd){
    border-right: solid 2px #ED1C24;
    border-left: none;
    padding-left: 0;    
}
.services-section .services li:nth-last-of-type(even) .text,.services-section .services li.rev-order .text,
.services-section .services.bottom-service-sec li:nth-last-of-type(odd) .text{
    order: 2;
}
.services-section .services.bottom-service-sec li:nth-last-of-type(even){
    border-left: solid 2px #ED1C24;
    border-right: none;
}
.services-section .services.bottom-service-sec li:nth-last-of-type(even) .text{
    order: 1;
}
.contact-detail{
    text-align: left;
    margin-top: 30px;
}
.contact-detail .office-add{
    width: 380px;
    padding: 20px;
    border-left: solid 2px #ED1C24;
    background: rgba(209, 29, 35,.05);    
}
.contact-detail .enquiry-form{
    width: calc(100% - 400px);
    font-family: 'Roboto', sans-serif;
}
.contact-detail .title{
    font-size: 32px;
    color: #000;
    font-weight: 600;
    margin: 25px 0px;
    display: block;
}
.contact-detail .office-add .full {
    margin-top: 20px;
    font-size: 16px;
    color: #666666;
    font-weight: 200;
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
}
.contact-detail .office-add .full a{
    color: #666666;
    transition: all linear .6s;
}
.contact-detail .office-add .full a:hover{
    color: #ED1C24;
}
.contact-detail .office-add .full span{
    display: block;
    margin-bottom: 5px;
}
.enquiry-form li{
    width: 49%;
    margin-bottom: 30px;
}
.enquiry-form li.full{
    width: 100%;
}
.enquiry-form li.no-margin {
    margin: 0;
}
.enquiry-form li label{
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    line-height: 24px;
}
.form-layout input, .form-layout textarea, .form-layout select {
    width: 100%;
    border: solid 1px #D7D7D7;
    padding: 20px 10px;
    font-family: 'Roboto', sans-serif;
    color: #666666;
}
.contacts-page .enquiry-form li {   
    margin-bottom: 20px;
}
.contacts-page .form-layout input, .contacts-page .form-layout textarea, .contacts-page .form-layout select {   
    padding: 10px;    
}
.footer {
    background: #000;
    font-family: 'Roboto', sans-serif;
    padding: 40px 0 0;    
    /*position: relative;
    z-index: 10;*/
}
.footer .overview {
    width: 290px;
    margin-top: 30px;
    color: #fff;
}
.footer p{
    font-size: 14px;
    font-weight: 200;
    color: #fff;
    line-height: 24px;
    text-align: justify;

}
.footer .links{
    width: calc(100% - 390px);
    font-size: 14px;
    font-weight: 200;
}
.footer .links .title{
    display: block;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    padding: 20px 0;

}
.footer .links img {
    margin-top: 5px;
}
.footer a{
    color: #fff;
    transition: all linear .3s;
}
.footer a:hover{
    opacity: .7;
}
.footer .links li a{
    padding: 6px 0;
    display: block;
}
.bottom-footer {
    border-top: solid 1px rgba(229, 229, 229,.1);    
    position: relative;
    margin-top: 15px;
    background: #000;
    z-index: 10;
    padding: 10px 0 20px;
}
.enquiry-fixed .btn-enq {
    position: fixed;
    font-weight: 400;
    z-index: 9;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
    bottom: 0;
    background: #ED1C24;
    color: #fff;   
    right: 20px;
    padding: 15px 70px 15px 30px;
    border-radius:  15px 15px 0px 0px;
}
.enquiry-fixed .btn-enq:after {
    position: absolute;
    content: "";
    width: 16px;
    height: 14px;
    background: url(../images/icon-enq-arrow.png) no-repeat 0 0;
    left: 145px;   
    top: 19px;
}
.enquiry-fixed .form {
    position: fixed;
    right: 20px;
    z-index: 100;
    bottom: 0;
    display: none;
    width: 300px;
    background: #fff;
    border-radius: 20px 20px 0px 0px;
    border: 1px solid #dbdbdb;
    padding: 20px;
}
.enquiry-fixed .form .btn-close {
    position: absolute;
    border: solid 1px #838383;
    width: 30px;
    border-radius: 60px;
    transition: all linear .3s;
    right: 15px;
    height: 30px;
    color: #838383;
    font-size: 18px;   
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.enquiry-fixed .form .btn-close:hover{
    background: #ED1C24;
    color: #fff;
    border: solid 1px #ED1C24;
}
.enquiry-fixed .form .heading-text {
    font-size: 32px;
    line-height: 1;
    margin-top: 5px;
}
.enquiry-fixed .form p {
    color: #ED1C24;
    text-align: left;
    font-weight: 400;
    line-height: 20px;
}
.enquiry-fixed .form li {
    width: 100%;
    margin: 10px 0;
    position: relative
}
.enquiry-fixed .form li span.error {
    position: absolute;
    left: 0;
    bottom: -10px;
    font-size: 10px;
    right: 0;
    text-align: right;
    color: #ed1c24;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}
.enquiry-fixed .form li .deafault-btn {
    width: 100%;
    background: #ED1C24;
}
.enquiry-fixed .form li .deafault-btn:hover{
    background: #fff;
    color: #ED1C24;
    border: solid 1px #ED1C24;
}
.enquiry-fixed .form li .deafault-btn:hover:after{
    background: url('../images/icon-arrow-red.png') no-repeat 14px 0px;
}
.enquiry-fixed .form li input,.enquiry-fixed .form li select,.enquiry-fixed .form li textarea{
    padding: 10px;
}
.enquiry-fixed.product-from-popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.7);
    z-index: 999;
    display: flex!important;
    flex-wrap: wrap;
    justify-content: center;
    top: 0;
    left: 0;
}
.enquiry-fixed.product-from-popup .btn-enq {
    display: none;
}
.enquiry-fixed.product-from-popup .form {
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    display: block!important;
    width: 600px;
    text-align: center;
    top: 0;   
    bottom: 0;
    height: auto;    
    border-radius: 20px;
    padding-bottom: 30px;
}
.enquiry-fixed.product-from-popup .form p {   
    text-align: center;   
}
.enquiry-fixed.product-from-popup .form li {
    width: 49%;    
}
.enquiry-fixed.product-from-popup .form li.full{
    width: 100%;
}
.enquiry-fixed .form li .deafault-btn {   
    max-width: 260px;
}
.after-submit{
    text-align: center;
}
.after-submit img {
    margin: 0 auto 20px;
    width: 60px;
}
.enquiry-fixed .after-submit p {
    color: #666666;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 30px;
}
.form-layout .after-submit,.form-layout.submitSuccess .form-view{
    display: none;
}
.form-layout.submitSuccess .after-submit{
    display: block;
    padding: 50px 0;
}

/*Inner Pages*/
.banner .image .container.breadcrumb {
    top: auto;
    bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #fff;
}
.breadcrumb li{
    margin-right: 15px;
}
.breadcrumb li a {
    color: #fff;
    position: relative;
    padding-right: 15px;
}
.breadcrumb li a:after{
    position: absolute;
    content: "-";
    right: 0;
}
.about-page{
    padding: 40px 0;
}
.mission-vision-sec {
    text-align: left;
}
.mission-vision-sec .mission, .mission-vision-sec .vision {
    width: 49%;
    margin-top: 30px;
    text-align: justify;
}
.mission-vision-sec .icon span {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    width: calc(100% - 68px);
}
.common-information-sec{
    width: 100%;
    min-height: 310px;
    margin-top: 30px;
    padding: 30px;
    text-align: center;
    color: #fff;
    background: url(../images/common-information-sec-bg.jpg) no-repeat 0 0;
    background-size: 100% 100%;
}
.common-information-sec div{
    width: 100%;
}
.common-information-sec p{
    color: #fff;
    font-weight: 200;
    font-size: 18px;
}
.common-information-sec .btn{
    margin-top: 20px;
}
.common-information-sec .btn a{
    display: inline-block;
}
.contacts-page{
    padding-bottom: 40px;
}
.contacts-page .contact-detail {
    margin: 50px 0 70px;
}
.service-feature {
    margin-top: 40px;
}
.service-feature .heading-text.sub {
    font-size: 32px;
}
.service-feature ul {
    position: relative;
    margin-top: 30px;
}
.service-feature ul:after,.service-feature ul:before{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #fff;
    right: 1px;
    z-index: 1;
}
.service-feature ul:before{
    width: 100%;
    height: 1px;
    bottom: 5px;
}
.service-feature li {
    width: 33.33%;
    padding: 25px;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #000;
    text-align: center;
    position: relative;
}
.service-feature li::after,.service-feature li::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 94%;
    background: #EDEDED;
    top: 0;
    right: 0;
}
.service-feature li::before {
    width: 94%;
    height: 1px;
    top: auto;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.service-feature li img{
    margin: 15px auto;
}
ul.check-list li, li .text ul li {
    margin: 0;
    padding: 5px 0 5px 45px!important;
    background: url(../images/icon-checklist.png) no-repeat 0 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 18px;
    border: none!important;
}
.thanks-page {
    padding: 40px 0;
    text-align: center;
}
.thanks-page .btn {
    margin-top: 40px;
    display: block;
}
.thanks-page .btn a.deafault-btn.red {
    display: inline-block;
}
.thanks-page img {
    margin: 0 auto 20px;
    width: 90px;
}
@keyframes ripple {
    from {
      opacity: 1;
      transform: scale(0);
    }
    to {
      opacity: 0;
      transform: scale(3);
    }
}
@keyframes dropdownEffect{
    from{
        opacity: 0;
        top: 60px;
    }
    to{
        opacity: 1;
        top: 95px;
    }
}