@charset "utf-8";
@font-face {
    font-family: 'Futura PT Cond';
    src: url('../fonts/FuturaPTCond-Bold.woff2') format('woff2'),
        url('../fonts/FuturaPTCond-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT Book';
    src: url('../fonts/FuturaPT-Book.woff2') format('woff2'),
        url('../fonts/FuturaPT-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Bold.woff2') format('woff2'),
        url('../fonts/FuturaPT-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT Cond Book';
    src: url('../fonts/FuturaPTCond-Book.woff2') format('woff2'),
        url('../fonts/FuturaPTCond-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT Cond';
    src: url('../fonts/FuturaPTCond-Medium.woff2') format('woff2'),
        url('../fonts/FuturaPTCond-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT Cond Extra';
    src: url('../fonts/FuturaPTCond-ExtraBold.woff2') format('woff2'),
        url('../fonts/FuturaPTCond-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT Demi';
    src: url('../fonts/FuturaPT-Demi.woff2') format('woff2'),
        url('../fonts/FuturaPT-Demi.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT Extra';
    src: url('../fonts/FuturaPT-ExtraBold.woff2') format('woff2'),
        url('../fonts/FuturaPT-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Heavy.woff2') format('woff2'),
        url('../fonts/FuturaPT-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Light.woff2') format('woff2'),
        url('../fonts/FuturaPT-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Medium.woff2') format('woff2'),
        url('../fonts/FuturaPT-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BakerSignet';
    src: url('../fonts/BakerSignet.eot');
    src: url('../fonts/BakerSignet.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BakerSignet.woff2') format('woff2'),
        url('../fonts/BakerSignet.woff') format('woff'),
        url('../fonts/BakerSignet.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*=========== POWERED BY MERIDIAN SOLUTIONS INC ============*/


/*************** DEFAULT CSS ***************/
:root {
    --body-font: 'Futura PT Book';
    --body-font-Size: 20px;
    --body-color: #132a14;
    --primary-color: #1a3281;
    --secondary-color: #ea1e25;
    --black: #000;
    --white: #fff;
    --grey: #898989;
	--grey-light: #E7E7E7;
    --heading-font: 'Futura PT'; 
    --title-font:'BakerSignet';  
    
}
body{
    
    font-family: var(--body-font);
    font-size:var(--body-font-Size);
    font-style: normal;
    line-height: normal;
    font-weight:500;
    color: var(--body-color);
    text-decoration: none;
    margin:0px;
    -webkit-font-smoothing: antialiased;
    padding:0;
    
}

html{ scroll-behavior: smooth;}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
::selection {
    background: var(--primary-color); /* Safari */
    color:#fff;
        }
::-moz-selection {
    background: var(--primary-color); /* Firefox */
    color:#fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  padding:1px ;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 40px;
}

a {
    color:var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    }
    a:hover {
    color: var(--secondary-color);
    }

p {
    margin:0px 0 30px 0;
    clear:left;
    padding:0;
    font-weight: normal;
    line-height: 27px;
    }
h1, h2, h3, h4, h5, h6 {
    margin:0 0 20px 0;
    padding:0;
    font-weight:normal;
    font-family: var(--heading-font);
    }
    h2{
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 10px
    }
  
hr {
    margin:50px  0 50px 0;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    position:relative;
}

img{
    border:0;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    
}   
a img {
    border: 0;
    }

/*-----------text styles------------*/
.text-white{
    color:var(--white)!important;
}
.text-black{
    color: #000  !important;
}
.text-primary{
    color: var(--primary-color) !important;
} 
.text-secondary{
    color: var(--secondary-color) !important;
} 
.text-center{ text-align: center; }
.text-justify{ text-align: justify; }
.uppercase{text-transform: uppercase;}
/*-----------background styles------------*/
.bg-blue{background-color: var(--primary-color)}
.bg-red{background-color: var(--secondary-color)}
.bg-lightblue{background: #f0f1f7}
/*************** PRELOADER ***************/
#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* change if the mask should have another color then white */
    z-index:999999; /* makes sure it stays on top */
}
#status {
    width:100%;
    height:100%;
    position:absolute;
    left:0; /* centers the loading animation horizontally one the screen */
    top:0; /* centers the loading animation vertically one the screen */
    background-image:url(../images/loading.png); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:0; /* is width and height divided by two */
}
#status{
/* -webkit-animation: flipInY 1s infinite alternate;
  -moz-animation: flipInY 1s infinite alternate;
  -ms-animation: flipInY 1s infinite alternate;
  -o-animation: flipInY 1s infinite alternate;
  animation: flipInY 1s infinite alternate;*/
    }
/*************** BACK TO TOP ***************/

/*************** COLUMS AND ROWS ***************/
main{
    position:relative;
    }

.container{
    width:1360px;
    margin:0 auto;
}
.fullwidth{
    width:100%;
    display:block;
}
.two-col{
    width: 46%;
    margin-right: 8%;
}
.three-col{
    width:30%;
    margin-right:5%;
}
.four-col{
    width:22%;
    margin-right:4%;
}
.last{
    margin-right:0 !important;
}


section , footer {
    width: 100%;
    position: relative;
}



/*************** HOME PAGE CSS ***************/
header{  
	width: 100%; 
	z-index: 2;
	 -webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 }
.header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 1px 0;
    position: relative;
}
.logo{ 
 }
.logo img{
	max-width:370px;
	}
.header-right{
	 display: flex;
    align-items: center;
}


.social {
    font-size: 16px;
    line-height:25px;
}
.social a i{
    margin-right: 7px;
    font-size: 19px;
    color: #2e4187;
    }
    .social a:hover i{
    color: #2e4187;
    }
.topbar{
    display: flex;
    justify-content: flex-end;
}
.inline {
    display: inline-block;
    padding: 4px 8px;
    line-height: 20px;
    color: #fff;
}
.number{
    position: relative;
    font-size: 18px;
    line-height: 16px;
    font-weight: 500;
    color: var(--black);
    display: inline-block;
    text-transform: uppercase;
    padding: 9px 20px 8px 55px;
    border: 1px solid #ccc;
    border-radius: 50px;
    margin-left: 11px;
    /* height: 46px; */
}
.number:hover i{
    background-color: var(--secondary-color);
  -webkit-animation: tada 3s infinite alternate;
  -moz-animation: tada 3s infinite alternate;
  -ms-animation: tada 3s infinite alternate;
  -o-animation: tada 3s infinite alternate;
  animation: tada 3s infinite alternate;
    }
.number i{
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 4px;
    left: 5px;
    font-size: 12px;
}

.dwnld-btn{
    position: relative;
    font-size: 18px;
    line-height: 16px;
    font-weight: 500;
    color: var(--black);
    display: inline-block;
    text-transform: uppercase;
    padding:  24px;
    border: 1px solid #ccc;
    border-radius: 50px;
    margin-left: 5px;
    /* height: 46px; */
}
.dwnld-btn:hover i{
    background-color: var(--secondary-color);
    }
.dwnld-btn i{
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 4px;
    left: 4px;
    font-size: 12px;
}
.dwnld-btn i {
    font-size: 18px;
}
.dwnld-btn h4 {
    margin: 0;
    font-size: 16px;
}
.hover-text::before {
    content:"Download PDF";
    position: absolute;
    background-color: var(--primary-color);
    width:110px;
    color: #fbf9fd;
    padding: 0.4rem 1rem;
    bottom: -75%;
    left: 0;
    right: 0;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20%);
    transition: all .3s ease-in-out;
    z-index: 99;
}
  
.hover-text:hover::before {
    opacity: 1;
    transform: translateY(0%);
}
.sky.hover-text::before {
    content:"SKY-ALUMINIUM BROSHURE";
    width:170px;
}
.luxury.hover-text::before {
    content:"UPVC  Windows, Doors";
    width:160px;
}
.wd1.hover-text::before {
    content:"Willow Design 1";
    width:140px;
}
.wd2.hover-text::before {
    content:"Willow Design 2";
    width:140px;
}

.text-small{
    font-size: 12px;
    line-height: 14px;
    color: var(--grey);
}

.menu-wrap{
     display: inline-block;
}


.slider-wrap {
    position: relative;
}
.link{}

.link a{
    background: transparent;
    border: 1px solid #ccc;
    color: var(--black);
    padding: 18px 87px 18px 30px;
    margin: 0;
    position: relative;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    display: inline-block;
    margin: 0 0 10px 0;
    /* border: 0px solid var(--primary-color); */
    border-radius: 55px;
    overflow: hidden;
    /* font-weight: 600; */
}

.white-link a{
    border: 1px solid #fff;
    color: var(--black);
    background: var(--white);
}
.translink a{
    background: transparent;
    color: #fff;
}
.link a span {
    position: relative;
    z-index: 2;
}
.link a:hover span {
    color: #fff;
}
.link a:after{
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: var(--secondary-color);
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.white-link a:after{
background: var(--primary-color);
}
.link a:before{
    content: '\e5c8';
    width: 35px;
    height: 33px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto 0;
    z-index: 2;
    background-color: transparent;
    color: var(--primary-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
.link a:hover:before{
    right: 20px;
}
.translink a:before{
    color: var(--white)
    }
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


.link a:hover:before{
   filter: brightness(0) invert(1);}
.link a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.heading{
    font-size: 70px;
    line-height: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: var(--title-font);
}
.subheading{
    font-size: 40px;
    line-height: 40px;
    color: var(--primary-color);
    font-family: var(--title-font);
}
.subtitle{
    display: block;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: var(--heading-font)
}

.intro-wrap{
    padding-top: 70px;
    position: relative;
}
.intro-wrap .image{
    position: absolute;
    top:0;
    right:0;
    line-height: 0;
}

.intro-wrap .image:after{
    content: '';
 	width: 72%;
	height: 40px;
 	background: var(--secondary-color);
 	position: absolute;
 	bottom: -40px;
 	left:10%;
}

.rod{
position: absolute;
bottom: 0;
right:calc(60% - 354px);
}
ul.circle-list{
padding: 0;
margin: 0;
width: 100%;
display: flex;
justify-content: space-around;
position: relative;
}
ul.circle-list .line{
    position: absolute;
    width: 100%;
    height: 1px;
    top:30%;
    left:0;
    background: rgba(0, 0, 0, 0.3);
    }
    ul.circle-list .line:before,   ul.circle-list .line:after{
        content: '';
        width: 10px;
        height: 10px;
        background: var(--primary-color);
        border-radius: 100%;
        position: absolute;
        top:-4px;
        left:0;


    }
    ul.circle-list .line:after{
        left:auto;
        right:0;
    }
ul.circle-list li{
    flex: 0 0 15%;
    padding: 25px;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
ul.circle-list li span.icon{
    width: 93px;
    height: 93px;
    border:1px solid #ccc;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    margin-bottom: 25px;
    background: var(--white)
}
ul.circle-list li span.icon:after{
    position: absolute;
    content: '';
    width: calc(100% + 18px);
    height: calc(100% + 18px);
    top: 0px;
    left: -10px;
    bottom: 0;
    right: 0;
    margin: auto;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    border-radius: 100%;
    background-color: transparent;
    -webkit-animation: rotation 50s infinite linear;
    }
ul.circle-list li span.icon img{
    max-width: 100%
}
ul.circle-list li p{
    color: var(--primary-color);
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: uppercase;
     font-family: 'Futura PT';
    font-weight: bold;
}
.bold{
     font-family: 'Futura PT';
    font-weight: bold;
}

.product-single{
position: relative;
}
.product-title{
    padding: 30px 30px 30px 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 5%, rgba(0,0,0,0) 100%);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.product-title h3{
    font-size: 20px;
    line-height: 25px;
    }
.product-single:hover .product-title{
    padding-bottom: 50px;
    }

    .more{
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 30px !important;
    font-weight: 200 !important;
    }
    .product-title:hover .more{
        background-color: var(--secondary-color);
        color: var(--white);
    }

    .benefit-box{
        flex:0  0 31.33%;
        margin-bottom: 2.5%;
        background: rgba(0, 0, 0, 0.8);
        color: var(--white);
        padding: 12px;
        position: relative;
    }
    /* HTML: <div class="ribbon">Your text content</div> */

.ribbon {
 --c: #e31b23;
 --r: 20%; /* control the cutout part */
 padding: 14px 0; /* you may need to adjust this based on your content */
 aspect-ratio: 1;
 display: grid;
 place-content: center;
 text-align: center;
 position: relative;
 z-index: 0;
 width: 20px;
 box-sizing: border-box;
 position: absolute;
 top: 0;
 right: 27px;
 z-index: 1;
 /* inset: 50% 20% -42%; */
 background: var(--secondary-color);
 clip-path: polygon(0% 0,100% 0,100% 100%,50% calc(100% - var(--r)),0 100%);
 -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
 .benefit-box:hover .ribbon{
     padding: 24px 0;
 }
  .benefit-box:hover h3{
    color: var(--secondary-color);
  } 

    .benefit-box-in{
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 40px 40px 40px 120px;
        position: relative;
        height: 100%
    }
      .benefit-box-in h3{
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
        font-weight: 700;
      }
       .benefit-box-in p{
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 0px;
      }
     .benefit-box-in img{
        position: absolute;
        top:40px;
        left:20px;
     }

     .brands{
        padding: 0;
        margin: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
     }
     .brands li{
        flex:0 0  20%;
        padding: 10px;
        list-style: none;
        text-align: center;
     }
     .brands li img{
        max-width: 100%;
        -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
     }
      .brands li:hover img{
        transform: scale(0.9);
      }

      .project-single{
        width: 100%;
        padding-bottom: 40px;
        position: relative;
      }
      .project-single .project-det{
        width: 80%;
        background: #fff;
        border-left: 3px solid var(--secondary-color);
        padding: 30px 30px 20px 30px;
        position: absolute;
        bottom: 0;
        right:-1px;
      }
      .project-single .project-det p{
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 20px;
      }
      .project-single .project-det p span{
        color: var(--grey)
      }

      .projects-inner{
        align-items: flex-start;
      }
       .projects-inner .project-single{
        width: auto;
        flex:0 0 47%;
        margin-bottom: 3%;
       }
        .projects-inner .project-single:nth-child(even){
            margin-top: 70px;
        }
		
/*************/
 .product-style{
    border-bottom: 3px solid var(--secondary-color);
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
      }
 .product-style:hover{
	 background-color: var(--secondary-color);
	 color: var(--white);
      }
 .product-des{
		padding:20px;
		line-height:normal;
		font-size:20px;
		color: var(--body-color);-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
 
      }	  

a:hover .product-des{
	color: var(--white) !important;
	padding:20px 25px;
}
	 
      
 
		
/*************** HOME PAGE CSS End ***************/
.whtsapp-link {
    position: fixed;
    right: 7px;
    bottom: 123px;
    z-index: 9
}

.whtsapp-link h5 {
     top: 0;
	 right: -11px;
    opacity: 0;
    font-size: 15px;
    margin: 10px 0 0;
    line-height: 18px;
    z-index: 0;
    color: #fff;
    padding: 10px;
    position: absolute;
    font-weight: 500;
	width: 100px;
    background-color: var(--secondary-color);
    border-radius: 5px;
	transition: .3s ease-in-out
}

.whtsapp-link:hover h5 {
    right: 52px;
    opacity: 1
}

 
.whatsapp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    line-height:56px;
    margin-left: 0;
    text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
    background: #2db742;
	 box-shadow: 0 6px 8px 2px rgba(0,0,0,.14);
    -webkit-box-shadow: 0 6px 8px 2px rgba(0,0,0,.14);
    -moz-box-shadow: 0 6px 8px 2px rgba(0,0,0,.14);
    z-index: 1;
    position: relative;
}
 
 

.whatsapp-icon img {
    width: 40px;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out
}


 .whtsapp-link:hover .whatsapp-icon img {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg)
}
/*************** footer CSS ***************/
footer{}
footer a{color: #fff;}
footer a:hover{color: #c93a60;}
.footer{}
.f-contact{
    position: relative;
    padding: 0 0 0 85px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 18px;

}
.f-contact p{
    margin-bottom: 0;
    line-height: 25px;
    }
.f-contact a{
    font-weight: bold
}
.f-contact img{
    position: absolute;
    top:0;
    left:0;
    }
.footer-div{

}
.footer-div h3{
    position: relative;
    font-size: 18px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    color: #fff;
}
.footer-div h3:after{
    content: '';
    position: absolute;
    bottom: 0;
    left:0;
    width: 30px;
    height: 1px;
    background:#d7ae6c;
    }
ul.footerlinks{
    margin:0 0 20px 0;
    padding: 0;
}
ul.footerlinks li{
    list-style: none;
    padding: 5px 0;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.footer-logo{
    width: 260px;
    max-width: 100%;
    margin-bottom: 30px;
	background-color:var(--white);
}

.footer a{color: #fff}
.footer a:hover{color:  rgb(255, 255, 255, 0.7);}
.footer-social{
}
.footer-social a{
    color: #fff!important;
}
.footer-social a i {
    margin-right: 14px;
    font-size: 27px;
    color: #fff;
}
.footer-social a:hover i {
    color: var(--black);
}
.footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
    color: #fff;
    font-size: 16px;
}
.copy{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copy p{
    margin-bottom: 0;
    }


.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 150px;
	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:40px;
	line-height: 40px;
	margin:0 0 15px 0;
	font-weight:normal;
    color: var(--primary-color);
    font-family: var(--title-font);
 
 
}
.webicon{	
	position:absolute;
	left:0;
	top:-5px;	
	width:100px;
	height:100px;
	text-align:center;
	 color: var(--primary-color);
	 line-height:100px;
	font-family: var(--title-font);
	font-size:40px;
	border-radius:50%;
	border:1px solid var(--grey-light);
	 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
}
 
/*************** INNER PAGE CSS ***************/

.flex-gap{gap:2%;}
.two-flex-col{
flex:0 0 48%; 
}
.three-flex-col{
flex:0 0 31%;
}
.four-flex-col {
flex:0 0 22%;
    }
.five-flex-col {
flex:0 0 18%;
    }
.image-box{
    padding-right:0px;
    padding-bottom:0px;
    position: relative;
    width: 100%;
}
.stickybar{
    position: sticky !important;
    top: 120px;
}

.image-box .overlay-effect2{

       /* -webkit-box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    -moz-box-shadow: 0px 0px 34px -15px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);*/

    }
.image-box:after, .image-box2:before{
    content: '';
    width: 38px;
    height: 80%;
    background:var(--secondary-color);
    position: absolute;
    bottom: 0;
    top:0;
    margin: auto 0;
    right:-38px;
    z-index: -1;
    }
.image-box2:before{
        bottom: auto;
    right:auto;
    top:0;
    left:0;
      background:var(--secondary-color);
}
    .highlight-text{
        font-size: 20px;
        font-weight: 500;
        line-height: 25px;
    }
    .wrap-box{
     border-radius: 15px;
    -webkit-box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    -moz-box-shadow: 0px 0px 34px -15px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    overflow: hidden;

    }

ul.list{
    margin:0;
    padding: 0;
    margin-bottom: 30px;
}
ul.list li{
list-style: none;
    padding: 2px 7px 2px 20px;
    line-height: normal;
    position: relative;
}
ul.list li:before{
     content: "\f111"; 
    position: absolute;
    top:10px;
    left:0;
     font-family: "FontAwesome";
     color: var(--primary-color);
     font-size: 8px;

    }

.cnt-wrap {  
	background-color: var(--primary-color); 
	padding: 20px;
 
}
.icon_box {
    padding: 25px 25px 25px 85px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    color: #fff;
    position: relative;
	margin:0 0 25px 0;
}
.icon_box i {
    margin: 0;
    padding: 8px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 30px;
    color: var(--white);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background:var(--secondary-color);
    position: absolute;
    top: 30px;
    left: 15px;
}

.icon_box .descripion { display:block; overflow:hidden}
.icon_box .descripion h5 {font-size: 18px;margin: 0 0 8px 0;text-transform: uppercase;color: #fff; font-weight: 400}
.icon_box p {margin:0;}
.icon_box a { color:#fff}
.icon_box a:hover { color:#ccc}
.icon_box:last-child{ margin-bottom:0px;  border-bottom:none;}
.cnt-form{   }
.map{ overflow: hidden; width: 100%  }
.map iframe{}
.map iframe:hover{}
.table-row{
    width: 100%;
    overflow-x: scroll;
}
.google-map{
 	width: 100%;
	height:450px;
	display:block;
	border:0;
	margin:0;
	outline:none;
	overflow:scroll;
	
}
.table-style {border-collapse: collapse; width: 100%;}
.table-style th, .table-style td {text-align: left;padding: 8px; border: 1px solid #d9d9d9;}
.table-style tr:nth-child(even){background-color: #f2f2f2}
.table-style th { background-color:var(--primary-color); color: white;}

/*************** INNER BANNER ***************/
/*************** INNER BANNER ***************/
.banner{  z-index: 0;
 width: 100%; height: 350px; display: flex;   align-items: end; 
background-image: url(../images/banner1.jpg); background-position: center;
 background-repeat: no-repeat; position: relative; background-size: cover; }
.banner-caption h2{color: #fff;font-size: 40px;margin-bottom: 10px;font-weight: 600;line-height: 42px;    text-shadow: 0px 3px 4px #000000d1;}
.banner-caption h4 span{color: #fff}
.banner-caption h4 a{ color: #fff;  }
.banner-caption h4 {
    padding: 0px 0px;
    display: inline-flex;
    margin-bottom: 0px;
    align-items: center;
    color: #fff;
    margin-bottom: 52px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
        text-shadow: 0px 3px 4px #000000d1;
}
.banner-caption{position: relative;z-index: 1;}
.banner:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: #000;
    opacity: .2;
}

.banner-caption h4 span.b-sep{
    font-size: 0;
    width: 1px;
    height: 21px;
    margin: 0 12px;
    transform: rotate(20deg);
    display: inline-block;
    background-color: #fff;
    margin:0 10px;

}


/*************** FIXED HEADER ***************/
header.smaller {top:0; left:0px; position: fixed; z-index: 9; -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
    -moz-box-shadow:    0px 1px 5px 0px rgba(50, 50, 50, 0.41);
    box-shadow:         0px 1px 5px 0px rgba(50, 50, 50, 0.41); ;
-moz-box-shadow: 0px 4px 20px #00000059; background-color: #fff;}
header.smaller .logo img{ max-width: 200px}



/*************** JARALLAX ***************/
.jarallax{ position:relative; background-repeat:no-repeat; background-position:center center; -moz-background-size:cover; 
-webkit-background-size:cover; -o-background-size:cover; background-size:cover;}

.bg1{background: url(../images/bg1.jpg) no-repeat top center;}
.bg2{background: url(../images/bg2.jpg) no-repeat top center;}
.bg3{background: url(../images/bg3.jpg) no-repeat top center;}
/**********forms**************/
form{
    margin:0;
    padding:0;
}
*:focus {  
    outline: none;
}
.fieldset{
        width: 100%;
        padding: 20px;
        background-color: none;
        background-color: transparent;
        display: block;
        border: 1px solid rgb(211 211 211);
        margin: 0 0 10px 0;
        color: #626262;
        font-size: 16px;
     
 

}
.fieldset1{ height: 130px; }
.sendbutton{
    width: auto;
    height: auto;
    border: 0;
    outline: 0;
    margin: 0;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    vertical-align: top;
    padding: 15px 40px;
    text-align: center;
    background-color:var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
     -webkit-transition: all 300ms ease-in-out; 
    -moz-transition: all 300ms ease-in-out;

    
    }

    .sendbutton:hover{
       background-color:var(--primaary-color);
    }
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}
.contact-form{ width: 100%; }
.contact-form .fieldset {margin-bottom: 0px;}
::-webkit-input-placeholder {
   color:  var(--body-color) !important;
}
:-moz-placeholder { /* Firefox 18- */
   color:  var(--body-color) !important;
}
::-moz-placeholder {  /* Firefox 19+ */
   color:  var(--body-color) !important;
}
:-ms-input-placeholder {  
   color:  var(--body-color) !important;
}

.ftr-form ::-webkit-input-placeholder {
   color:  #fff !important;
}
.ftr-form :-moz-placeholder { /* Firefox 18- */
   color:  #fff !important;
}
.ftr-form ::-moz-placeholder {  /* Firefox 19+ */
   color:  #fff !important;
}
.ftr-form :-ms-input-placeholder {  
   color:  #fff !important;
}

.wpcf7-form-control-wrap {
    position: relative;
}








/*************** backToTop *************/
.progress-wrap {
    position: fixed;
    right: 10px;
    bottom: 10px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
   /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);*/
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .progress-wrap::after {
    position: absolute;
    content: "\f062";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    color:var(--secondary-color);
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }

  .progress-wrap svg path { 
    fill: none; 
  }
  
  .progress-wrap svg.progress-circle path {
    stroke: var(--secondary-color);
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }

  strong.hilight {
    font-size: 20px;
}

span.slider-hilite {
    display: inline-block;
    font-size: 20px;
    background: #ea1e25;
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 5px;
}

.about-content .vc_column-inner.vc_custom_1736482198685 {
    width: fit-content !important;
}
.about-content h1 {
    font-size: 50px ;
}
.about-content h2 {
    font-size: 25px;
}


/************************************* 1600px *************************************/
@media only screen and (max-width: 1600px) {

}

/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {
    .container{
        width:100%;
        padding:0 25px;
    }
    .logo img {
        max-width: 320px;
    }
}

/************************************* 1320px *************************************/
@media only screen and (max-width: 1360px) {
    .dwnld-btn h4{
        display:none !important;
        font-size:0!important;
     }
     .dwnld-btn {
        padding: 24px;
        height: 46px;
    }
    .dwnld-btn i {
        top: 4px;
    }


}


/************************************* 1201px to 1366px *************************************/
@media only screen and (max-width: 1366px) and (min-width: 1201px)  {
    a.number {
        padding: 24px;
        height: 46px;
        margin-left: 5px;
    }
    
    a.number span.d-none {
        display: none;
    }
}




/************************************* 1024px *************************************/
@media only screen and (max-width: 1200px) {
.header-right{
 	display: flex;flex-wrap: wrap; align-items: center;gap: 0 10px; 
}
.menu-wrap{
    justify-self: flex-end;
}
header{
	background-color:#FFF;
 }
 
.logo img, header.smaller .logo img{  
    max-width: 150px !important;
	margin:0;
}
 
.number{
	 width: 30px;
    height: 30px;
	padding: 0;
    border: 0;
    margin-left: 0;
    /* height: 46px; */
}
.dwnld-btn {
    width: 30px;
    height: 30px;
	padding: 0;
    border: 0;
    margin-left: 0; 
}

 .dwnld-btn i{
    width: 30px;
    height: 30px;
    top: auto;
    left: auto;
	position:relative;
    font-size: 15px;
 
}

 .header{
 	align-items: center;
	padding:10px 20px;
 }

.number i{
    width: 30px;
    height: 30px;
    top: auto;
    left: auto;
	position:relative;
 
}
 
.number span{
   display:none !important;
   font-size:0!important;
}


.heading {
  font-size:30px;
  line-height: 40px;
  margin-bottom: 20px;
 
}


.iconic{
	padding:0 0 0 70px;
	 
}
 
.iconic h2{
	font-size:30px;
	line-height:30px;
	 
 
 
}
.webicon{	
	top:-5px;	
	width:50px;
	height:50px;
	line-height:50px;
	font-family: var(--title-font);
	font-size:30px;
 
}
.image-box:after, .image-box2:before{
  right:-18px;
   
 }
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
ul.circle-list li {
    flex: 0 0 21%;
    padding: 5px;
}
.intro-wrap{
    padding-top: 0;
    
}
.intro-wrap .image{
    position: absolute;
    top:0;
    right:0;
    line-height: 0;
}

.intro-wrap .smd75, .intro-wrap .smd60, .intro-wrap .smd50{
	width: 100%
}
.intro-wrap .image {
    position: static;

}
.rod {
    position: absolute;
    bottom: -50px;
    right: auto;
    left: 15%;
	width:150px;
}

 .benefit-box{
        flex:0  0 48%;
    }
         .brands li{
        flex:0 0  25%;
    }
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {


}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {
    ul.circle-list {
        flex-wrap: wrap;
    }
     ul.circle-list  .line{
        display: none;
     }
    ul.circle-list li{
    flex: 0 0 48%;
    margin-bottom: 25px;
}
    
     .brands li{
        flex:0 0  33%;
    }
.banner{ 
 	height: 200px;
	}
	
	}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 .benefit-box{
        flex:0  0 100%;
    }
  .brands li{
        flex:0 0  48%;
    }
    .header {
        align-items: center;
        padding: 10px 0px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-right {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        width: 100%;
        position: relative;
    }
    .menu-wrap {
        position: absolute;
        right: 0;
    }
    .three-flex-col.product-style {
        flex: 0 0 100%;
    }
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
    }

    /************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {
}