@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');


/* 
    font-family: "Barlow Condensed", sans-serif;
    font-family: "Saira", sans-serif;
    font-family: "Livvic", sans-serif;
*/

:root{
    --theme-color:#f99410;
    --theme-color2:#3c1f08;
    --body-color:rgba(28, 28, 28,0.7);
    --heading-color:#1c1c1c;
    --body-font:"Livvic", sans-serif;
    --heading-font:"Saira", sans-serif;
    --heading-font2:"Barlow Condensed", sans-serif;
}


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}
body{ 
    margin:0;
    padding:0; 
    font-family: var(--body-font);
    width: 100%; 
    font-weight: 400;
    color: var(--body-color); 
    font-size: 18px; 
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    background: #fff;
}
body,html{
    overflow-x: hidden;
}
p{
    margin: 0 0 30px 0;
}
p:last-child{
    margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6{
    margin:0 0 30px 0;
    padding:0;
    font-family: var(--heading-font);
    color:var(--heading-color);
    font-weight: 600; 
    line-height: 1.2;
    letter-spacing: -2px;
}
h1,
.title-h1{
	font-size: 50px; 	
}
h2,
.title-h2{ 
    font-size: 50px; 
}
h3,
.title-h3{
    font-size: 35px;
}
h4,
.title-h4{
	font-size: 25px;
}
h5,
.title-h5{
	font-size: 20px;
}
h6,
.title-h6{
	font-size: 18px;
}
ul,li{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
a{ 
    font-family: var(--body-font);      
     margin:0;
     padding:0;
     text-decoration:none !important;
     outline:none !important; 
     color: var(--theme-color);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out; 
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:hover{
    color: var(--theme-color2);
}

::-webkit-input-placeholder{
    opacity: 0.7;
    color: var(--body-color);
}
:-ms-input-placeholder{
    opacity: 0.7;
    color: var(--body-color);
}
::-moz-placeholder{
    opacity: 0.7;
    color: var(--body-color);
}
:-moz-placeholder{
    opacity: 0.7;
    color: var(--body-color);
}

img{
    max-width: 100%;
}

input[type="text"],input[type="tel"],input[type="password"],input[type="email"],input[type="number"]{
    width: 100%;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0;
    color: var(--body-color);
    height: 52px;
    padding: 0 16px;
    background-color: #f8f8fa;
    border: 0px;
    color: rgba(28, 28, 28,0.7); 
}
textarea{
    resize: none;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
    border-radius: 0;
    padding: 16px;
    width: 100%;
    height: 155px;
    background-color: #f8f8fa;
    border: 0px;
    color: rgba(28, 28, 28,0.7); 
}
select{ 
    width: 100%; 
    height: 52px;
    padding: 0 16px; 
    background: url(images/caret-down.svg) no-repeat calc(100% - 16px) center; 
    background-color: #f8f8fa;
    background-size: 13px; 
    padding-right: 40px ; 
    outline: none ; 
    -webkit-appearance: none; 
    -moz-appearance: none; 
    -ms-appearance: none; 
    -o-appearance: none; 
    appearance: none; 
    border: 0px;
    color: rgba(28, 28, 28,0.7); 
} 
select option:checked {
    color: rgba(28, 28, 28,0.7); 
  }
select::-ms-expand { 
    display: none; 
}
.form-control{
    border-radius: 0;
    border: 1px solid #b8b8b8; 
    padding: 12px 16px;
}
input[type="submit"], input[type="reset"], input[type="button"]{
    background:var(--theme-color2); 
    color: #fff; 
    height: 45px; 
    border:none;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0; 
     padding-left: 30px; 
     padding-right: 30px; 
     text-transform: uppercase; 
     cursor: pointer;
     transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover{
    background:var(--theme-color);
    color: var(--body-color);
}
a,button{
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}

img.alignright { 
    float: right; 
    margin: 0 0 20px 20px; 
}
img.alignleft { 
    float: left; 
    margin: 0 20px 20px 0; 
}
img.aligncenter { 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 20px;  
    float: none; 
}
.alignright { 
    float: right;  
    margin: 0 0 20px 20px;
}
.alignleft { 
    float: left;
    margin: 0 20px 20px 0; 
}
.aligncenter { 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 20px;  
    float: none;
}

.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}

.text-right{
    text-align: right;
}

.cmn-gap{
    padding: 100px 0px;
}

.cmn-btn {
    padding: 11px 25px;
    display: inline-flex;
    font-family: var(--heading-font);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    min-width: 152px;
    background-color: var(--theme-color2);
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 8px;
    z-index: 1;
    transition:all .3s ease-in-out;
}

.cmn-btn.line{
    background-color: #fff;
    color: var(--heading-color);
}
.cmn-btn.line:hover{
    background-color: var(--theme-color2);
    color: #fff;
}

.cmn-btn:before {
    content: '';
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    position: absolute;
    top: 0px;
    right: 0px;
    border-top: 1px solid var(--theme-color2);
    border-right: 1px solid var(--theme-color2);
    transition:all .3s ease-in-out;
}
.cmn-btn.white:before{
    border-top-color: #fff;
    border-right-color: #fff;
}
.cmn-btn:after {
    content: '';
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-bottom: 1px solid var(--theme-color2);
    border-left: 1px solid var(--theme-color2);
    transition:all .3s ease-in-out;
}
.cmn-btn.white:after{
    border-bottom-color: #fff;
    border-left-color: #fff;
}
.cmn-btn.white{
    background-color: transparent;
    color: #fff;
}
.cmn-btn:hover {
    background: #fff;
    color: var(--heading-color);
}
.cmn-btn.white:hover{
    background-color: #fff;
    color: var(--heading-color);
}





  /* ============= main css ============= */

  .container{
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }

  .header-top {
    background-color: #f1f1f1;
    padding: 14px 0px;
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -15px;
}

.header-top-row > * {
    padding: 15px;
}

.header-top-left {
    font-size: 15px;
}

.header-top-left p {
    font-weight: 600;
}

.header-top-left p a {
    font-weight: 400;
    margin-left: 4px;
    color: var(--body-color);
}

.header-top-left p a:hover {
    color: var(--theme-color);
}

.header-top-right ul {
    display: flex;
    align-items: center;
    margin: -12px;
}

.header-top-right li {
    padding: 12px;
}

.header-top-right li a {
    color: var(--body-color);
}

.header-top-right li a:hover {
    color: var(--theme-color);
}

.header-nav {
    padding: 13px 0px;
    position: relative;
    box-shadow: 0px 17px 14.5px rgba(30,28,30,0.12);
    z-index: 9;
}

.header-nav-row {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 192px;
}

.brand-logo img{
    width: 100%;
}

.main-nav-menus {
    margin-left: auto;
}

.main-nav-menus {
    padding-left: 15px;
}

.main-nav-menus ul {
    display: flex;
}

.main-nav-menus li {
    margin-right: 34px;
}

.main-nav-menus li a {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--heading-color);
    font-weight: 500;
    font-family: var(--heading-font);
    position: relative;
}
.main-nav-menus li a.active{
    color: var(--theme-color);
}
.main-nav-menus li a:hover {
    color: var(--theme-color);
}
.main-nav-menus li a.active:after{
    width: 100%;
}
.main-nav-menus li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 0;
    height: 1px;
    margin: 0 auto;
    background: var(--theme-color);
    transition: all .3s ease-in-out;
}

.main-nav-menus li a:hover:after {
    width: 100%;
}

.header-nav-right-btn {
    margin-left: 10px;
}

.header-nav-right-btn a {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--heading-font);
    padding: 10px 25px;
    background-color: var(--theme-color);
    color: #fff;
}

.header-nav-right-btn a:hover {
    background-color: var(--theme-color2);
}

.menubar-area {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme-color2);
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-trigger{
    cursor: pointer;
    position: relative;
    z-index: 9;
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-trigger span {
    width: 41px;
    height: 2px;
    background: #fff;
    display: block;
    position: relative;
}

.menu-trigger span {
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}

.menu-trigger span:last-child {
    width: 20px;
    margin-bottom: 0px;
    margin-left: auto;
}

.menu-trigger span:first-child {
    width: 20px;
    margin-left: auto;
}

.menu-side-bar {
    position: absolute;
    right: 0;
    top: 0;
    width: 360px;
    background: var(--theme-color2);
    padding: 130px 20px 20px;
    height: calc(100dvh - 55px);
    transform: translateX(100%);
    transition: all .3s ease-in-out;
}

.menu-side-bar li a {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-family: var(--heading-font);
}

.menu-side-bar li {
    margin-bottom: 15px;
}

.menu-side-bar li a:hover {
    color: var(--theme-color);
}

.menu-side-bar.open {
    transform: translateX(0);
}

.menu-trigger.open span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.open span:first-child {
    transform: rotate(45deg);
    width: 40px;
    top: 12px;
}

.menu-trigger.open span:last-child {
    transform: rotate(-45deg);
    width: 40px;
    top: -12px;
    position: relative;
}


.home-banner-inner-sld-arws >*>img {
    width: 25px;
}

.home-banner-wrapper {
    padding: 40px;
    background: var(--theme-color);
    position: relative;
}

.home-banner-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    clip-path: polygon(58% 0, 100% 0, 100% 100%, 30% 100%);
}

.home-ban-slider .item {
    min-height: 750px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-banner-inner {
    position: relative;
    z-index: 1;
}

.hm-ban-text-area {
    max-width: 1084px;
    width: 100%;
    background: rgba(0,0,0,0.36);
    margin: 0 auto;
    padding: 50px;
}

.hm-ban-text-area .spl-title {
    font-size: 20px;
    font-family: var(--heading-font2);
    line-height: 1.2;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    background: var(
    --theme-color2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 5px 5px 12px;
    position: relative;
    margin-top: 75px;
    margin-bottom: 25px;
}

.hm-ban-text-area {
    position: relative;
}

.hm-ban-text-area:after {
    content: '';
    position: absolute;
    border: 1px solid #fff;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    pointer-events: none;
}

.hm-ban-text-area .spl-title:before {
    content: '';
    width: 1px;
    height: 50px;
    background: #fff;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
}

.hm-ban-text-area h1 {
    color: #fff;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hm-ban-text-area p {
    color: #fff;
}

.hm-ban-btn-wrap {
    margin-top: 40px;
}

.home-banner-inner-sld-arws {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-banner-inner-sld-arws > * {
    padding: 15px 20px;
    cursor: pointer;
}

.hm-slider-arw-left {
    transform: rotate(180deg);
}

.hm-slider-arw-left img {
    margin-top: -7px;
}


.wlcm-info-row {
    display: flex;
    flex-wrap: wrap;
}

.wlcm-info-left {
    width: 50%;
    padding-right: 60px;
}

.wlcm-info-right {
    width: 50%;
}

.cmn-top-title {
    font-size: 20px;
    font-family: var(--heading-font2);
    letter-spacing: 4px;
    line-height: 0.7;
    text-transform: uppercase;
    color: var(
    --theme-color);
    margin-bottom: 10px;
}

.cmn-btn-wrap {
    margin-top: 40px;
}

.wlcm-para {
    text-align: justify;
}

.wlcm-img-grp {
    padding-left: 170px;
    position: relative;
}

.wlcm-main-img {
    width: 100%;
}

.wlcm-ov-img {
    position: absolute;
    bottom: 0;
    left: 0;
    border: 10px solid #fff;
    border-bottom: 0px;
    border-left: 0px;
    width: 320px;
    height: 428px;
    object-fit: cover;
}

.wlcm-img-wrap-text {
    max-width: 180px;
    min-height: 180px;
    background: var(--theme-color);
    position: absolute;
    top: 150px;
    left: 90px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.wlcm-img-wrap-title {
    font-size: 40px;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 4px;
}

.wlcm-img-wrap-text p {
    font-size: 26px;
    font-weight:500;
    line-height: 1.2;
    font-family: var(--heading-font);
}



.cmn-top-title-wrap {
    display: inline-flex;
    align-items: flex-end;
}

.cmn-top-title-wrap .cmn-top-title {
    margin: 0px 10px;
}

.cmn-top-title-wrap {
    margin-bottom: 10px;
}

.cmn-top-title-wrap > img {
    width: 40px;
}

.sec-head {
    margin-bottom: 60px;
}

.our-project-sec.cmn-gap {
    padding-top: 0;
}

.our-project-slider {
    padding: 0px 40px;
    margin: 0px -15px;
}

.prj-item {
    padding: 0px 15px;
}

.prj-box {
    position: relative;
    z-index: 1;
}

.prj-img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.prj-box-text {
    background: #fff;
    padding: 25px 15px;
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    text-align: center;
    transform: scale(0);
    opacity: 0;
    transition: all .5s ease-in-out;
}

.prj-box-text span {
    display: block;
    font-size: 18px;
    font-family: var(--heading-font2);
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.prj-box-text h3 {
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 0px;
    letter-spacing: 0px;
}

.prj-box:hover .prj-box-text{
    transform: scale(1);
    opacity: 1;
    transition: all .5s ease-in-out;
}

.our-project-slider .slick-prev.slick-arrow {
    left: 75px;
}

.our-project-slider .slick-arrow {
    background: #fff;
    width: 56px;
    height: 56px;
    z-index: 2;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.36);
}

.our-project-slider .slick-next.slick-arrow {
    right: 75px;
}

.our-project-slider .slick-arrow:before {
    content: '' !important;
    background-image: url('images/slider-theme-arw2.svg');
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    width: 12px;
    height: 19px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(0deg);
}

.our-project-slider .slick-arrow.slick-next:before {
    transform:translate(-50%,-50%) rotate(180deg)
}

/* .our-project-slider .slick-arrow:hover{
    background-color: var(--heading-color);
}
.our-project-slider .slick-arrow:hover:before{
    filter: brightness(0) invert(-1);
} */


.service-sec {
    position: relative;
    z-index: 1;
    background: #f9f9f9;
    padding-bottom: 0px;
    padding-top: 60px;
}

.service-sec:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    clip-path: polygon(0 0, 40% 0, 65% 100%, 0 100%);
    z-index: -1;
}

.service-sec-inner {
    position: relative;
    padding: 40px 0px;
}

.service-sec-inner:after {
    box-shadow: 0px 13px 15px 0px rgba(0,0,0,0.1);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - ((100% - 1430px ) / 2));
    height: 100%;
    background: #fff;
    z-index: -1;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.service-top-left .sec-head {
    margin-bottom: 0px;
    text-align: left !important;
}
.service-top-left .cmn-top-title-wrap{
    padding-left: 4px;
}
.cmn-top-title-wrap.lft .cmn-top-title {
    margin-left: 0px;
}

.cmn-top-title-wrap.lft h2 {
    margin-bottom:0px
}

.service-top-left h2 {
    margin-bottom: 0px;
}

.srv-sld-arws {
    display: flex;
    align-items: center;
    margin: -5px;
}

.srv-sld-arw {
    width: 55px;
    height: 56px;
    background-color: #ffffff;
    border: 1px solid #020202;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-sld-arws > * {
    margin: 5px;
    cursor: pointer;
}

.srv-sld-arw.srv-sld-arw-next {
    transform: rotate(180deg);
}

.srv-slider-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.service-top-left {
    padding-right: 30px;
}

.srv-item {
    padding: 10px;
    width: 401px;
}

.srv-box {
    text-align: center;
    background-color: #fff;
    background-image: url('images/service-image-back.png');
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    padding: 25px 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: all .3s ease-in-out;
    position: relative;
    padding-bottom:80px;
}

.srv-btn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}

.srv-box figure {
    width: 94px;
    height: 94px;
    margin: 0 auto 20px;
    border-radius: 47px;
    filter: drop-shadow(0px 1px 6.5px rgba(0,0,0,0.09));
    background-color: var(--theme-color);
    border: 5px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.srv-box figure img {
    width: 45px;
    filter: brightness(0) invert(1);
}

.srv-box h3 {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 18px;
    transition: all .3s ease-in-out;
}

.srv-box p {
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.srv-box .cmn-btn {
    background-color: transparent;
    color: var(--heading-color);
}

.srv-box:hover {
    background-color: var(--theme-color2);
    color: #fff;
}

.srv-box:hover > * {
    color: #fff;
}

.srv-box:hover figure {
    background-color: transparent;
}
.srv-box:hover .cmn-btn{
    color:#fff !important;
}
.srv-box:hover .cmn-btn:before,
.srv-box:hover .cmn-btn:after{
    border-color: #fff;
}


.blog-card-row {
    display: flex;
    flex-wrap: wrap;
    margin: -25px -15px;
}

.blog-col {
    width: 33.3333%;
    padding: 25px 15px;
}

.blog-card {
    border: 1px solid #ebebeb;
    position: relative;
}

.blog-card-text {
    padding: 0px 75px 40px 25px;
}

.blog-date {
    min-width: 60px;
    min-height: 60px;
    background: #fff;
    border-bottom: 2px solid var(--theme-color);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    margin-bottom: 25px;
    position: relative;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: 500;
    color: #000;
}

.blog-card figure {
    margin-bottom: -40px;
}

.blog-card figure img {
    height: 298px;
    width: 100%;
    object-fit: cover;
}

.blog-date span {
    font-weight: 600;
    font-size: 23px;
}

.blog-card-text h3 {
    font-size: 28px;
    font-weight: 500;
}

.blog-btn-wrap {
    position: absolute;
    bottom: -20px;
    left: 26px;
}



.key-feature-sec.cmn-gap {
    position: relative;
    z-index: 1;
}

.key-feature-sec {
    padding: 50px 0px 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.key-feature-sec:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 31, 8, 0.98);
    z-index: -1;
}

.white [class^="cmn-"],
.white h2{
    color: #fff;
}

.white .cmn-top-title-wrap img {
    filter: brightness(0) invert(1);
}

.key-ftr-row {}

.key-ftr-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.key-ftr-item {
    width: 25%;
    text-align: center;
    border-right: 2px solid rgba(255,255,255,0.3);
    padding: 55px 15px;
}

.key-ftr-item h3 {
    font-size: 70px;
    font-family: var(--heading-font2);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 5px;
    color: #fff;
}

.key-ftr-item p {
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: 400;
    font-family: var(--heading-font);
    text-transform: capitalize;
    color: #fff;
}

.key-ftr-item:last-child {
    border-right: 0px;
}

.quote-form-sec {
    padding-top: 0;
    margin-top: -115px;
    position: relative;
    z-index: 1;
}

.quote-form-cont {
    filter: drop-shadow(0px 1px 14.5px rgba(30,28,30,0.12));
    background-color: #ffffff;
    padding: 45px;
    position: relative;
}

.quote-form-row {
    display: flex;
    flex-wrap: wrap;
}

.quote-form-left {
    width: 60%;
    padding-right: 45px;
}

.quote-form-right {
    width: 40%;
}

.quote-form-left h2 {
    font-size: 35px;
}

.quote-form-left button{
    border: 0;
}

.frm-row {
    margin: -8px;
    display: flex;
    flex-wrap: wrap;
}

.frm-col {
    width: 100%;
    padding: 8px;
}

.frm-col-half {
    width: 50%;
}

.frm-col.frm-col-submit {
    text-align: right;
}



.quote-form-img-area {
    position: relative;
    z-index: 1;
    padding-right: 18px;
    padding-bottom: 18px;
}

.quote-form-main-img {
    width: 100%;
}

.qut-img-box {
    position: absolute;
    right: -18px;
    bottom: 0;
    min-width: 186px;
    min-height: 182px;
    background-color: #f99410;
    background-image: url('images/quote-box-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 16px solid #ffffff;
    padding: 20px 5px;
    text-align: center;
}

.qut-img-box figure {
    width: 40px;
    margin: 0px auto 10px;
}

.qut-img-box > * {
    color: #fff;
}

.qut-img-box span {
    font-family: var(--heading-font);
    display: block;
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
}

.qut-img-box p {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
}





.footer-top {
    padding: 75px 0px;
    background-image:url('images/footer-top-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: rgba(255, 255, 255, 0.7);
}

.footer-top-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.footer-top-col {
    width: 21.5%;
    padding: 15px;
}

.footer-top-col.fst {
    width: 30%;
}

.footer-top-col.snd {
    width: 27%;
}
.lnr-btn{
    display:inline-flex;
    align-items:center;
}
.lnr-btn:before{
    content:'';
    width:28px;
    height:1px;
    display:inline-block;
    background:#fff;
    margin-right:15px;
}
.lnr-btn a {
    color: #fff;
    border-bottom: 1px solid #fff;
    font-weight: 500;
    font-family: var(--heading-font);
    position: relative;
}

.lnr-btn a:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.ft-title {
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    font-family: var(--heading-font);
    margin-bottom: 20px;
    color: #fff;
}

.ft-links li a {
    color: rgba(255,255,255,0.7);
}

.ft-links li {
    margin-bottom: 6px;
}

.ft-links li a:hover {
    color: var(--theme-color);
}

.ft-infos li {
    font-weight: 500;
}

.ft-infos li a {
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}

.ft-infos li a:hover {
    color: var(--theme-color);
}

.ft-infos li {
    margin-bottom: 6px;
}

.ft-scls {
    margin-top: 30px;
}

.ft-scls ul {
    display: flex;
    margin: -15px;
}

.ft-scls li {
    padding: 15px;
}

.ft-scls li a {
    color: #fff;
}

.ft-scls li a:hover {
    color: var(--theme-color);
}

.footer-btm {
    padding: 15px 0;
    text-align: center;
}

.footer-btm p {
    font-size: 16px;
    font-family: var(--heading-font);
}

.footer-btm p a {
    color: var(--body-color);
    text-transform: uppercase;
}

.footer-btm p a:hover {
    color: var(--theme-color);
}





/**=====news page css starts =========**/
.innerpage-banner-wrapper {
    padding: 40px;
    background: var(--theme-color);
    position: relative;
}
.innerpage-banner-inner {
    position: relative;
    z-index: 1;
}
.innerpage-banner {
    min-height: 365px;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.innerpage-banner img.black_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.innerpage-banner .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: rgba(60, 31, 8, 0.6);
}
.innerpage-banner-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    clip-path: polygon(67% 0, 100% 0, 100% 100%, 41% 100%);
}
.ban-text-area{
    position: relative;
    z-index: 4;
}
.ban-text-area h2{
    color: #fff;
    text-align: left;
    margin-bottom: 12px;
}
.ban-text-area ul.breadcrumbs {
    padding-left: 3px;
    list-style-type: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.ban-text-area ul.breadcrumbs li{
    font-size: 20px;
    font-family: var(--heading-font2);
    letter-spacing: 8px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
}
.ban-text-area ul.breadcrumbs li.divider {
    width: 6px;
    margin-right: 20px;
    margin-left: 14px;
}
.ban-text-area ul.breadcrumbs li a{
    transition: .25s;
    font-family: var(--heading-font2);
}
.ban-text-area ul.breadcrumbs li a:hover{
    opacity: 0.7;
    color: var(--theme-color);
}
.blog-sec.newspage{
    padding-top: 130px;
    padding-bottom: 90px;
}
.blog-sec.newspage .blog-col{
    margin-bottom: 0px;
}
.blog-sec.newspage .blog-card-text h3{
    margin-bottom: 12px;
}
.blog-sec.newspage .pagination-wrapper {
    padding-top: 120px;
}
ul.blg-pagination{
    display: flex;
    align-items: center;
    padding-left: 0;
    justify-content: center;
}
ul.blg-pagination li{
    
}
ul.blg-pagination li a{
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eeeeee;
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
    font-family: var(--body-font);
    margin-right: 5px;
    margin-left: 5px;
}
ul.blg-pagination li a img{
    width: 15px;
}
ul.blg-pagination li a.active{
    background-color: #3c1f08;
    color: #fff;
}





/**=====contact_us page css starts =========**/
.contact-infos-sec{
    padding-top: 130px;
    padding-bottom: 85px;
    position: relative;
    overflow-x: hidden;
}
.contact-infos-sec img.bg_map {
    position: absolute;
    top: -150px;
    left: -30px;
    z-index: 2;
}
.contact-infos-sec .contact-info-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}
.contact-infos-sec .contact-info-left{
    width: 48%;
    padding-right: 70px;
}
.contact-infos-sec .contact-info-right{
    width: 52%;
}
.contact-infos-sec .sec-head{
    text-align: left !important;
    margin-bottom: 15px;
}
.contact-infos-sec .cmn-top-title-wrap {
    padding-left: 2px;
    margin-bottom: 8px;
}
.contact-infos-sec .sec-head h2{
    margin-bottom: 0;
}
.contact-right-form{
    padding: 42px 55px 50px 55px;
    background-color: #ffffff;
    box-shadow: 1px 1px 29px 6px rgba(0,0,0,0.12);
-webkit-box-shadow: 1px 1px 29px 6px rgba(0,0,0,0.12);
-moz-box-shadow: 1px 1px 29px 6px rgba(0,0,0,0.12);
}
.contact-right-form .cmn-btn{
    border: 1px;
}
.contact-infos-sec .contact-para p.medium{
    font-size: 20px;
    font-weight: 500;
    color: rgba(28, 28, 28, 0.7);
    line-height: 27px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.contact-infos-sec .contact-para p{
    color: rgba(28, 28, 28, 0.7);
    line-height: 27px;
    letter-spacing: 1px;
}
.contact-infos-sec .how_to_contact{
    padding-top: 40px; 
}
.how_to_contact a.contact_box{
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 25px;
}
.how_to_contact a.contact_box .icon{
    width: 50px;
    height: 50px;
    background-color: #f8f8fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 28px;
}
.how_to_contact a.contact_box .icon img{
    width: 30px;
    height: auto;
    filter: invert(70%) sepia(21%) saturate(7248%) hue-rotate(354deg) brightness(101%) contrast(95%);
}
.how_to_contact a.contact_box .txt h6{
    font-size: 20px;
    margin-bottom: 3px;
    letter-spacing: 0px;
}
.how_to_contact a.contact_box .txt span{
    color: rgba(28, 28, 28, 0.7);
    transition: .25s;
}
.how_to_contact a.contact_box:hover .txt span{
    color: #f99410;
}
.contact-infos-sec .frm-col.frm-col-submit {
    text-align: center;
    margin-top: 15px;
}
.contact-infos-sec .socialmedia_links{
    padding-top: 25px;
}
.contact-infos-sec .socialmedia_links h4{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}
.socialmedia_links ul{
    display: flex;
    align-items: center;
}
.socialmedia_links ul li a{
    width: 50px;
    height: 50px;
    background-color: #f8f8fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    margin-left: 5px;
    border: 1px solid #f8f8fa;
    transition: .25s;
}
.socialmedia_links ul li a:hover{
    border: 1px solid #f99410;
}
.socialmedia_links ul li:first-child a{
    margin-left: 0px;
}
.socialmedia_links ul li:last-child a{
    margin-right: 0px;
}
.socialmedia_links ul li a img{
    height: 16px;
    width: auto;
    filter: invert(77%) sepia(11%) saturate(166%) hue-rotate(173deg) brightness(90%) contrast(83%);
}
.socialmedia_links ul li a:hover img{
    filter: invert(70%) sepia(21%) saturate(7248%) hue-rotate(354deg) brightness(101%) contrast(95%);
}






/**=====about_us page css starts =========**/
.about-company-sec{
    padding-top: 130px;
    padding-bottom: 100px;
}
.about-company-row{
    display: flex;
    flex-wrap: wrap;
} 
.about-company-left{
    width: 50%;
}
.about-company-right{
    width: 50%;
}
.about-company-sec .sec-head {
    text-align: left !important;
    margin-bottom: 18px;
}
.about-company-sec .sec-head h2{
    margin-bottom: 0;
}
.about-company-sec .company-img-grp{
    padding-right: 50px;
    position: relative;
    padding-left: 75px;
}
.about-company-sec .company-main-img {
    width: 100%;
}
.about-company-sec .company-ov-img {
    position: absolute;
    bottom: -140px;
    left: 0;
    border: 21px solid #fff;
    border-bottom: 0px;
    border-left: 0px;
    width: 515px;
    height: 410px;
    object-fit: cover;
}
.company-para p{
    color: rgba(28, 28, 28, 0.7);
}
.company-para p.medium {
    font-size: 20px;
    font-weight: 500;
    color: rgba(28, 28, 28, 0.7);
    line-height: 27px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.company-para p span{
    font-weight: 600;
}
.about-company-sec .company-services{
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.company-services .service_box{
    width: 31%;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.05);
}
.company-services .service_box figure{
    width: 66px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.company-services .service_box figure img{
    width: 100%;
    height: auto;
}
.company-services .service_box h5{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.company-services .service_box p{
    font-size: 16px;
}








.why-choose-us{
    padding-top: 65px;
    padding-bottom: 100px;
    position: relative;
}
.why-chooseus-row{
    display: flex;
    flex-wrap: wrap;
}
.choose-us-left{
    width: 50%;
}
.choose-us-left .sec-head{
    margin-bottom: 15px;
}
.choose-us-left .sec-head h2{
    max-width: 500px;
    margin-bottom: 0px;
}
.choose-us-para p{
    color: rgba(28, 28, 28, 0.7);
    margin-bottom: 12px;
    line-height: 27px;
}
.choose-us-img-grp {
    position: absolute;
    right: 0;
    top: 100px;
    width: 50%;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 5% 100%);
}

.facilities-sec{
    padding-top: 110px;
    padding-bottom: 80px;
    position: relative;
    overflow-x: hidden;
    margin-top: -30px;
}
.facilities-sec img.bg-shape-pic{
    position: absolute;
    top: 0;
    left: 0;
    width: 91%;
    z-index: 2;
}
.facilities-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    z-index: 3;
}
.facilities-col{
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
}
.facilities-box{
    background-color: #fff;
    padding: 35px 20px 30px 20px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: .25s;
}
.facilities-box figure{
    width: 92px;
    height: 92px;
    border-radius: 100%;
    background-color: #f8f8fa;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    transition: .25s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.facilities-box:hover figure{
    background-color: #3c1f08;
}
.facilities-box figure img{
    width: 56px;
    height: auto;
    filter: invert(70%) sepia(21%) saturate(7248%) hue-rotate(354deg) brightness(101%) contrast(95%);
    transition: .25s;
}
.facilities-box:hover figure img {
    filter: brightness(300);
}

.facilities-box h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.facilities-box p {
    font-size: 18px;
    line-height: 27px;
    color: rgba(28, 28, 28, 0.7);
    margin-bottom: 10px;
}




/**=====our_service page css starts =========**/


.our-service-sec{
    padding-top: 250px;
}
.our-service-sec .service-box{
    border: 2px solid #c2c2c2;
    padding: 50px;
    margin-bottom: 210px;
}
.our-service-sec .service-box .service-box-row{
    display: flex;
    flex-wrap: wrap;
}
.service-box .box-pic-sec{
    width: 45%;
    padding-right: 60px;
}
.service-box .box-cont-sec{
    width: 55%;
}
.service-box .service-pic-sec {
    position: relative;
    padding-top: 115%;
    margin-top: -170px;
} 
.service-box .service-pic-sec img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-box .icon_box {
    width: 120px;
    height: 120px;
    border: 2px solid #c2c2c2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-top: -110px;
    background-color: #fff;
}
.service-box .icon_box img{
    width: 75px;
    height: auto;
}
.service-box .txt-wrap {
    padding-top: 30px;
}
.service-box .txt-wrap h3{
    margin-bottom: 20px;
}
.service-box .service-box-para p{
    line-height: 27px;
    margin-bottom: 16px;
}
.service-box .service-box-para p:last-child{
    margin-bottom: 0;
}
.service-box .txt-wrap .cmn-btn-wrap {
    margin-top: 40px;
}
.service-container-wrap .service-box:nth-child(even) .service-box-row{
    flex-direction: row-reverse;
}
.service-container-wrap .service-box:nth-child(even) .icon_box{
    margin-left: 0;
    margin-right: auto;
}
.service-container-wrap .service-box:nth-child(even) .box-pic-sec {
    padding-right: 0px;
    padding-left: 60px;
}
.service-container-wrap .service-box:last-child{
    margin-bottom: 90px;
}





/**=====project_listing page css starts =========**/

.project-listing-sec{
    padding-top: 130px;
    padding-bottom: 90px;
}
.project_listing-row{
    margin-bottom: 90px;
}
.project-listing-sec .sec-head{
    margin-bottom: 35px;
}
.recent-projects-wrap {
    text-align: center;
}
.recent-projects-wrap .btn-filter{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    box-shadow: 1px 1px 29px 4px rgba(0,0,0,0.12);
    -webkit-box-shadow: 1px 1px 29px 4px rgba(0,0,0,0.12);
    -moz-box-shadow: 1px 1px 29px 4px rgba(0,0,0,0.12);
}
.btn-filter button.btn{
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    color: #1c1c1c;
    padding: 0;
    background-color: #fff;
    border-radius: 0px;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 11px 20px;
}
.btn-filter button.btn.active{
    background-color: #3c1f08;
    color: #fff;
}

#project-box-parent{
    display: flex;
    flex-wrap: wrap;
}
#project-box-parent .prjct-box{
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
#project-box-parent .prjct-box a.prjct-box-wrap{
    position: relative;
    padding-top: 130%;
    display: block;
    text-align: center;
    border: 1px solid #ccc;
}
.prjct-box a.prjct-box-wrap img.box-pic{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
.prjct-box a.prjct-box-wrap .cont{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 4;
    width: 90%;
}
a.prjct-box-wrap .cont img.magnifier{
    width: 30px;
    height: auto;
    filter: invert(1);
    margin-bottom: 20px;
    opacity: 0;
    transition: all .5s ease-in-out;
}
a.prjct-box-wrap:hover .cont img.magnifier{
    opacity: 1;
    transition: all .5s ease-in-out;
}
a.prjct-box-wrap .cont h4{
    color: #fff;
    opacity: 0;
    transition: all .5s ease-in-out;
}
a.prjct-box-wrap:hover .cont h4{
    opacity: 1;
    transition: all .5s ease-in-out;
}
.prjct-box a.prjct-box-wrap .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 3;
    opacity: 0;
    transition: all .5s ease-in-out;
}
.prjct-box a.prjct-box-wrap:hover .overlay{
    opacity: 1;
}
.prjct-box a.prjct-box-wrap:hover {
    transform: scale(1);
    opacity: 1;
    transition: all .5s ease-in-out;
}





/**=====service_details page css starts =========**/


.service-details-sec{
    padding-top: 130px;
    padding-bottom: 55px;
}
.service-details-row{
    display: flex;
    flex-wrap: wrap;
}
.service-details-row .service-details-left{
    width: 68%;
    padding-right: 25px;
}
.service-details-row .service-details-right{
    width: 32%;
    padding-left: 25px;
}
.service-details-right h3.sec-heading{
    margin-bottom: 18px;
}
.service-details-right .service-categories ul li a{
    font-size: 20px;
    font-weight: 500;
    font-family: var(--heading-font);
    color:var(--heading-color);
    letter-spacing: -1px;
    padding-left: 50px;
    position: relative;
    background-color: #f8f8fa;
    display: block;
    border: 1px solid #f8f8fa;
    padding-top: 14px;
    padding-bottom: 14px;
}
.service-details-right .service-categories ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    left: 18px;
    background-image: url(images/slider-arw-theme1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 10px;
}
.service-details-right .service-categories ul li a.active::before{
    filter: invert(57%) sepia(34%) saturate(1285%) hue-rotate(354deg) brightness(105%) contrast(95%);
}
.service-details-right .service-categories ul li{
    margin-bottom: 1px;
}
.service-details-right .service-categories ul li a.active{
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}
.service-details-right .service-categories ul{
    margin-bottom: 40px;
}


.service-details-right .contact-us-box{
    background-color: var(--theme-color2);
    position: relative;
    padding: 35px 25px;
    text-align: center;
}
.service-details-right .contact-us-box img.bg-map{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.service-details-right .contact-us-box .phone-icon{
    width: 61px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
}
.service-details-right .contact-us-box .phone-icon img{
    width: 100%;
    height: auto;
}
.service-details-right .contact-us-box h3{
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 3;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--heading-font);
}
.service-details-right .contact-us-box h4{
    font-size: 25px;
    color: #fff;
    position: relative;
    z-index: 3;
    margin-bottom: 12px;
    font-weight: 400;
    font-family: var(--heading-font);
}
.service-details-right .contact-us-box ul{
    margin-bottom: 15px;
}
.service-details-right .contact-us-box ul li a.phn{
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 3;
}
.service-details-right .contact-us-box ul li a{
    position: relative;
    z-index: 3;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}
.service-details-left .service-wrap{
    padding-top: 12px;
}
.service-details-left h1{
    margin-bottom: 20px;
}
.service-details-left .service-type-box{
    margin-bottom: 25px;
}
.service-type-box h4{
    font-size: 30px;
    margin-bottom: 12px;
}
.service-type-box p{
    line-height: 30px;
}
.service-type-box ul li span{
    font-size: 20px;
    font-weight: 600;
}
.service-slider-container{
    padding: 20px 20px 20px 0px;
    position: relative;
    margin-bottom: 55px;
    z-index: 3;
}
.service-slider-container::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    clip-path: polygon(21% 0, 100% 0%, 100% 100%, 41% 100%);
    z-index: 2;
}
.service-slider-container-wrap{
    background-color: #eeeeee;
    padding: 18px;
    position: relative;
    z-index: 3;
}
.service-slider-content {
    padding: 12px 12px 21px;
}
.service-slider-content .item-slick{
    position: relative;
    padding-top: 370px;
}
.service-slider-content .item-slick img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-slider-thumb .item-slick{
    position: relative;
    padding-top: 100px;
    margin-left: 7px;
    margin-right: 7px;
}
.service-slider-thumb .item-slick img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-slide.slick-active .slider-thumb .item-slick img{
    border: 2px solid #eeeeee;
}
.slick-slide.slick-current.slick-active .slider-thumb .item-slick img{
    border: 2px solid var(--theme-color);
}
.service-slider-container button.slick-prev.slick-arrow {
    width: 39px;
    height: 39px;
    background-color: #fff;
    left: 12px;
    z-index: 4;
}
.service-slider-container button.slick-next.slick-arrow {
    width: 39px;
    height: 39px;
    background-color: #fff;
    right: 12px;
    z-index: 4;
}
.service-slider-container .slick-prev:before {
    content: '';
    background-image: url(images/prev.png);
    background-repeat: no-repeat;
    width: 20px;
    background-size: cover;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    position: absolute;
}
.service-slider-container .slick-next:before {
    content: '';
    background-image: url(images/next.png);
    background-repeat: no-repeat;
    width: 20px;
    background-size: cover;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    position: absolute;
}
.service-type-box h5.service-sub-heading {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--body-color);
}
.service-type-box ul li span.small{
    font-size: 18px;
}

.show_email_area{
    padding: 100px 0px;
    text-align: center;
    min-height: 100vh;
}













/* ========== responsive css =========== */



@media (max-width: 1680px) {

}

@media (max-width: 1400px) {
   
}

@media(max-width:1199px){

}

 @media(max-width:1024px){

}



@media (max-width: 991px) { 
  
  
}



@media (max-width: 767px) {


}

@media (max-width: 575px) {
	

}



@media (max-width: 479px) {	


}
