@import url('../../css2');
@import url('../../css2-1');
/* font-family: "Cinzel", serif; */
/* font-family: "Montserrat", sans-serif; */
/* font-family: "Lexend", sans-serif; */
/* font-family: "Inter", sans-serif; */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
}
html,
body{
    background-color: #fff;
    overflow-x: hidden;
    font-family: var(--font-one);
}
html {
    scroll-behavior: smooth;
}

:root {
    --color-one: #0f1b2f;
	  --color-two: #376983;
    --color-primary-rgb: 33, 205, 173;
    --color-secondary-rgb: 0, 38, 120;
    --font-one: "Montserrat", sans-serif;
    --font-two: "Inter", sans-serif;
    --font-three: "Cinzel", serif;
}
img{
    max-width: 100%;
}
a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    position: relative;
    margin: 0px;
    background: none;
    color: var(--color-four);
    font-weight: 600;
    line-height: 1.31;
    font-family:  var(--font-two);
}

textarea {
    overflow: hidden;
}

.text,
p {
    position: relative;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--color-four);
    font-size: 15px;
}

/* Typography */

.h1,
h1 {
    font-size: 36px;
}

.h2,
h2 {
    font-size: 32px;
}

.h3,
h3 {
    font-size: 28px;
}

.h4,
h4 {
    font-size: 24px;
}

.h5,
h5 {
    font-size: 20px;
}

.h6,
h6 {
    font-size: 18px;
}

/* common css */
.testi-section{
  background: #f3f7fa;
}
.section-space{
  padding: 80px 0;
}
.eg-title-tag{
  position: relative;
}
.section-title{
  margin-bottom: 21px;
}

.section-title .sm-title {color: #fff;font-size: 15px;font-weight: 500;padding: 0px 12px;padding-left: 20px;margin-bottom: 14px;display: inline-block;position: relative;background: #64b3bf;}
.section-title .sm-title::before{
  content: '//';
  color: #fff;
  position: absolute;
  left: 8px;
  top: 0px;
}
.sm-title img{
  max-height: 21px;
}

.section-title .title{
  font-size: 32px;
  color: #143044;
  font-weight: 700;
  line-height: 1.18;
  font-family:  var(--font-two);
}
.section-title .title span{
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-style: italic;
}
.section-title.text-center .title{
  text-align: center;
  margin: auto;
  width: 100%;
}

.scrolltop{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    position: fixed;
    z-index: 99;
    bottom: 60px;
    right: 25px;
    line-height: 1;
    opacity: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-two);
    color: white;
    box-shadow: 0px 0px 4px rgb(226, 225, 225);
    /* transform: rotate(-90deg); */
    transition: all 250ms linear;
}
.scrolltop.active{
    opacity: 1;
}
.scrolltop:hover{
  background: var(--color-one);
}
.list-style-none{
    list-style: none;
}
.text-clamp1 {
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
    padding-bottom: 20px;
}

.text-clamp4 {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.thm-btn {
  width: fit-content;
  height: fit-content;
  padding: 12px 40px;
  font-size: 16px;
  color: white;
  background: var(--color-one);
  border: 1px solid white;
  box-shadow: 0px 0px 8px rgb(86, 85, 85);
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
}
.thm-btn::after{
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 315%;
  z-index: -1;
  background-color: var(--color-two);
  -webkit-transition: all .55s ease-in-out;
  transition: all .31s ease-in-out;
  -webkit-transform: translateX(-100%) skew(65deg) scale(0);
  transform: translateX(-100%) skew(65deg) scale(0);
}
.thm-btn:hover:after {
  -webkit-transform: translateX(-45%) skew(65deg) scale(1.2);
  transform: translateX(-45%) skew(65deg) scale(1.2);
}
.thm-btn2{
  background: var(--color-two);
  color: white;
}
.thm-btn2::after{
  background: var(--color-one);
}
.thm-btn:hover {
  color: white;
}

.socaial-icons{
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
}
.socaial-icons li{
    display: inline-block;
    margin-right: 8px;
}
.socaial-icons li a{
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 250ms;
  color: white;
}
.conts-head .socaial-icons li a{
  font-size: 17px;
}
/* .socaial-icons li:nth-child(1) a {
  color: #16599b;
}

.socaial-icons li:nth-child(2) a {
  color: red;
}

.socaial-icons li:nth-child(3) a {
  color: #ea4c89;
}

.socaial-icons li:nth-child(4) a {
  color: black;
}
.socaial-icons li:nth-child(5) a {
  color: red;
}
.socaial-icons li:nth-child(6) a {
  color: black;
}

.socaial-icons li:nth-child(7) a {
  color: green;
} */
.socaial-icons-sidebar{
    margin-top: 25px;
    /* position: absolute; */
    left: 22px;
    bottom: 21px;
    width: 100%;
}

.fas fa-shopping-cart  {
	background-color:#FFF;}	
#myBtn {
	height:50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align:center;
  padding:10px;
  text-align:center;
	line-height:40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.fa-arrow-circle-up  {
	font-size:30px;}

#myBtn:hover {
  background-color: #555;
}			


@media (max-width: 768px) {
  .sticky-icon{
    display: none;
  }
  .section-title .title{
    font-size: 25px;
  }
}

/* nav bar css */
.header{
  background: #49778f;
  padding-left: 40%;
  position: relative;
  z-index: 4;
}
.conts-head{
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  padding-left: 30%;
}
.header-btn{
  display: flex;
  gap: 5px;
  align-items: center;
}
.header-btn:not(:first-child){
  margin-left: 21px;
}
.header-btn i{
  font-size: 12px;
  font-weight: 600;
  height: 25px;
  width: 25px;
  margin-right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(247, 248, 248, 0.28);
}
.header-btn span{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgb(202, 202, 202);
}
.header-btn a{
  font-size: 16px;
  font-weight: 400;
  color: white;
}
.conts-head .socaial-icons{
  margin-bottom: 0;
}
.conts-head .socaial-icons a{
  color: white;
  font-size: 18px;
}
.conts-head .sc-title{
  font-size: 13px;
  color: white;
  margin-bottom: 4px;
}
.conts-head .socaial-icons a:hover{
  color: var(--color-two);
}
.navbar{
  background: rgb(29 62 87);
  /* backdrop-filter: blur(1px); */
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 5;
}
.navbar.sticky-nav{
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 30 !important;
    width: 100%;
    padding: 0px;
    animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-90px);
	}
	100% {
		transform: translateY(0px);
	}
}
.navbar-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    width: 100%;
}
.navbar-box .logo {
  max-width: 280px;
  min-width: 150px;
  position: relative;
  transform: scale(1.65);
  margin-top: 0px;
  /* margin-left: -40px; */
}
.navbar.sticky-nav .navbar-box .logo{
  transform: scale(1);
  margin-left: 0;
  margin-top: 0;
}

.navbar-box .logo a{
    position: relative;
    z-index: 2;
}
.navbar-box .logo img{
    max-height: 64px;
    /* clip-path: inset(0 0 0 0 round 0 190px 0 0); */
    /* border-top-right-radius: 80px; */
}
.navbar-box .hamburger{
    font-size: 28px;
    color: white;
    cursor: pointer;
    width: 40px;
}
.hamburger .nav-sidebar-menu-1{
  display: block;
  width: 21px;
  height: 2px;
  margin-bottom: 7px;
  background: white;
  transition: all 260ms ease-in-out;
}
.hamburger .nav-sidebar-menu-2{
  display: block;
  width: 34px;
  margin-bottom: 7px;
  height: 2px;
  background: white;
  transition: all 260ms ease-in-out;
}
.hamburger .nav-sidebar-menu-3{
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  transition: all 260ms ease-in-out;
}
.hamburger:hover .nav-sidebar-menu-3,
.hamburger:hover .nav-sidebar-menu-1{
  width: 34px;
}
.hamburger:hover .nav-sidebar-menu-2{
  width: 21px;
}
.sticky-nav .hamburger:hover .nav-sidebar-menu-3,
.sticky-nav .hamburger:hover .nav-sidebar-menu-2,
.sticky-nav .hamburger:hover .nav-sidebar-menu-1{
  background: var(--color-two);
}
.navbar-box .nav-links{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0px;
}
.navbar-box .nav-links li{
  padding: 14px;
  position: relative;
  color: black;
  display: flex;
  align-items: center;
  gap: 5px;
  /* border-left: 1px solid rgba(201, 199, 199, 0.434); */
  /* border-right: 1px solid rgba(201, 199, 199, 0.592); */
}
/* .navbar-box .nav-links li:last-child{
    border-right: 1px solid rgba(201, 199, 199, 0.434);
} */
.navbar-box .nav-links li.has-sub-menu{
  padding: 25px 35px 25px 15px;
}
.navbar-box .nav-links .dwn-arrow{
  position: absolute;
  right: 15px;
  color: white;
  font-size: 12px;
}
.navbar.sticky-nav .navbar-box .nav-links li{
  padding: 15px;
  position: relative;
  color: white;
}
.navbar-box .nav-links li a{
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
}
.navbar-box .nav-links > li > ul > li > ul,
.navbar-box .nav-links > li > ul{
  list-style: none;
  position: absolute;
  top: 100%;
  z-index: 4;
  border-radius: 0px;
  left: 0;
  overflow: auto;
  padding-left: 0;
  width: 280px;
  border: 1px solid rgb(246, 243, 243);
  transition: all 260ms ease;
  transform: scaleY(0);
  transform-origin: top;
  background: white;
}

.navbar-box .has-sub-menu .has-sub-menu:hover > ul,
.navbar-box .has-sub-menu:hover > ul{
    transform: scaleY(1);
}
.navbar-box .has-sub-menu .has-sub-menu ul{
    left: 280px;
    top: 0;
}
.navbar.sticky-nav .navbar-box .nav-links li ul li,
.navbar-box .nav-links li ul li{
    padding: 0;
}
.navbar-box .nav-links li ul li a{
    padding: 10px 25px;
    display: block;
    position: relative;
    color: black;
    width: 100%;
}
.navbar-box .nav-links li ul li:not(:last-child) a {
    border-bottom: 1px solid #DED8D3;
}
.navbar-box .nav-links li a::before,
.navbar-box .nav-links li ul li a::before{
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    display: block;
    margin: auto;
    background: #e4cb26;
    z-index: -1;
    transition: all 250ms ease;
}

.navbar-box .nav-links li ul li a::before{
  height: 100%;
}
.navbar-box .nav-links li a:hover::before,
.navbar-box .nav-links li ul li a:hover::before{
    width: 100%;
    right: 0;
    left: 0;
}
.navbar-box .nav-links li:hover > .dwn-arrow,
.navbar-box .nav-links li:hover > a{
    color: var(--color-two);
}
.navbar-box .nav-links li ul li:hover a{
  color: white;
}
/*.sticky-nav .navbar-box .nav-links li:hover > .dwn-arrow,*/
/*.sticky-nav .navbar-box .nav-links li:hover > a{*/
/*    color: white;*/
/*}*/
/* .sticky-nav .navbar-box .nav-links .sub-menu li:hover > .dwn-arrow,
.sticky-nav .navbar-box .nav-links .sub-menu li:hover > a{
    color: var(--color-two);
} */

.logo-search .logo img{
  max-height: 65px;
}
.logo-search{
  display: flex;
  align-items: center;
  padding: 4px 12px;
  justify-content: space-between;
}
.serch-box {
  position: relative;
  width: fit-content;
}
.serch-box button{
  position: absolute;
  right: 17px;
  background: transparent;
  top: 8px;
  border: none;
  z-index: 2;
  color: gray;
  outline: none;
}
.serch-box button:focus{
  outline: none;
  border: none;
}
.serch-box input{
  background: #f2f2f2;
  font-size: 14px;
  padding: 10px 35px 10px 16px;
  height: fit-content;
  border-radius: 28px;
  min-width: 300px;
  width: fit-content;
  outline: none;
  line-height: 1;
  border: 1px solid rgb(213, 210, 210) !important;
}
.serch-box2{
  margin: 12px auto;
}
.serch-box2 input{
  padding: 16px 15px;
}
.serch-box2 button{
  color: black;
  right: 24px;
  background: transparent;
  top: 15px;

}
.search_box {
    position: absolute;
    z-index: 100;
    background: white;
    max-height: 400px;
    overflow-y: auto;
}
.search_box a h6,
.search_box a{
    transition: all 250ms linear;
    font-size: 16px;
    color: black;
}
.search_box a h6:hover,
.search_box a:hover{
    color: var(--color-two) ;
}

.sidebar-contact{
  position: relative;
  z-index: 1;
  margin-top: 35px;
}
.sidebar-contact::before{
  content: '';
  position: absolute;
  left: 18px;
  top: 20px;
  height: calc(100% - 60px);
  width: 4px;
  background: var(--color-two);
  z-index: -1;
}
.sidebar-contact .ft-cont {
  display: flex;
  margin-bottom: 18px;
}
.sidebar-contact .ft-cont i{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  background: var(--color-one);
  border: 3px solid var(--color-two);
}
.sidebar-contact .ft-cont p{
  color: white;
}
.sidebar-contact .ft-cont span {
  color: var(--color-two);
}
.sidebar-contact .ft-cont  a{
  display: block;
  color: white;
  font-weight: 600;
  transition: all 250ms;
}
.sidebar-contact .ft-cont a:hover{
  color: var(--color-two);
}
/* mobile menu */
.cstm-mobile-menu{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100Vh;
    background: rgba(0, 0, 0, 0.663);
    z-index: 500;
    transition: all 190ms ease-in-out;
    transform: translateX(-101%);
}
.cstm-mobile-menu.active{
    transform: translateX(0);
}
.cstm-mobile-menu .cstm-mobile-overlay{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: url(../images/icon/cross-out.png), pointer;
    z-index: 2;
}
.cstm-menu-wrapper{
    width: 400px;
    max-width: 92%;
    background: var(--color-one);
    height: 100%;
    position: relative;
    padding: 25px;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 4;
}
.close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 20px;
    z-index: 4;
    cursor: pointer;
}
.cstm-mobile-menu-nav {
    margin-top: 28px;
    display: none;
}
.desktop-sidebar{
    margin-top: 28px;
    display: flex;
}
.desktop-sidebar .about-sidebar{
  color: white;
}
.cstm-mobile-menu-nav ul li{
    position: relative;
    padding: 6px;
    border-bottom: 1px dotted gray;
}
.cstm-mobile-menu-nav ul li:last-child{
    border-bottom: none;
}
.cstm-mobile-menu-nav ul{
    list-style: none;
    padding-left: 6px;
}
.cstm-mobile-menu-nav ul li .dwn-arrow{
    cursor: pointer;
    position: absolute;
    top: 9px;
    right: 5px;
    padding: 5px;
    background: white;
    color: black;
    line-height: 1;
}
.cstm-mobile-menu-nav ul li a{
    color: white;
    font-size: 16px;
    padding: 4px;
    display: inline-block;
    font-weight: 600;
}
.cstm-mobile-menu-nav ul.sub-menu {
    padding-left: 8px;
    transition: max-height 300ms ease-in-out, opacity 200ms ease-in-out;
    max-height: 0;
    opacity: 0;
}
.cstm-mobile-menu-nav ul.sub-menu.active {
    max-height: fit-content;
    opacity: 1;
    overflow-y: auto;
}
.cstm-mobile-menu .logo img{
    max-height: 80px;
}
.conts-head{
  background: #49778f;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.header-btn{
  display: flex;
  gap: 5px;
  align-items: center;
}
.header-btn:not(:first-child){
  margin-left: 21px;
}
.header-btn span{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(202, 202, 202);
}
.header-btn,
.header-btn a{
  font-size: 16px;
  font-weight: 500;
  color: white;
}
.header-btn img{
  max-height: 15px;
  width: auto;
}
@media (max-width: 1200px) {
    .navbar-box .nav-links{
        padding-left: 0px;
    }
}
/*.navbar-box .logo a{*/
/*  display: none;*/
/*}*/
@media (max-width: 1000px) {
    .desktop-sidebar,
    .nav-menu-header .nav-links{
        display: none;
    }
    .navbar-box .logo{
        min-width: 85px;
    }
    .cstm-mobile-menu-nav{
        display: block;
    }
    /* .navbar-box .hamburger, */
    .navbar-box .logo a,
    .header-btn{
        display: flex;
    }
    .navbar-box .logo img{
        max-height: 50px;
    }
 
    .serch-box input{
      min-width: 300px;
    }
}
@media (max-width: 767px) {
    .header{
      padding-left: 0;
    }
    .serch-box input{
      min-width: 190px;
      margin-right: 8px;
      padding: 7px 35px 7px 16px;
    }
    .serch-box button{
      top: 4px;
    }
    .cstm-mobile-menu .logo img {
        max-height: 55px;
    }   
    .navbar-box{
      justify-content: space-between;
    } 
    .logo-search .logo{
      display: none;
    }
    .conts-head{
      justify-content: center;
    }
    .navbar-box .logo{
      transform: scale(1);
      margin-top: 0;
      margin-left: -14px;
    }
}
.hero-area{
  margin-top: 0px;
}

/* banner below */
.ban-below-section{
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
  padding-top: 15px;
}
.ban-below-cont{
  margin-top: -120px;
}
@media (max-width: 768px) {
  .ban-below-cont,
  .ban-below-section{
    margin-top: 15px;
  }
  .hero-area{
    margin-top: -60px;
  }
}
.feature-card{
  background: var(--color-one);
  transition: all 260ms linear;
}
.feature-card:hover{
  background: var(--color-two);
}

.feat-content{
  padding: 21px 35px;
  color: white;
  box-shadow: inset 0px 0px 10px rgb(210, 209, 209);
}
.read-btn{
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  width: fit-content;
  padding-bottom: 6px;
}
.read-btn::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px ;
  background: white;
}

.floated-abt{
  max-width: 550px;
  float: right;
  margin-left: 24px;
}
@media (max-width: 767px) {
  .floated-abt{
    max-width: 100%;
    float: none;
    margin-left: 0px;
    margin-bottom: 24px;
  }
}

/* product section */
.product-section{
  /* background: #f3f7fa; */
  background: linear-gradient(rgba(152, 153, 153, 0.366), rgba(155, 157, 157, 0.366)), url(../images/bg/row-01.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 70px;
}
.product-box{
  overflow: hidden;
  transition: all 260ms ease;
  background: white;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px;
}
.product-box::before{
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  z-index: 0;
  width: 110px;
  height: 90px;
  opacity: 0.55;
  /* background: url(../images/icon/pd-bg.png); */
  background-size: 100%;
  background-repeat: no-repeat;
}

.pd-name a,
.pd-name{
  font-size: 17px;
  font-weight: 600;
  color: black;
  transition: all 250ms ease;
}
.product-box .pd-name a{
  color: var(--color-one);
}
.product-content{
  padding: 21px 25px 28px 21px;
  background: white;
}


/* Contact */
.concact-sect{
  /* background: linear-gradient(#0093c908,#0093c912) ,url(../images/bg/appoinment-v1-pattern.png) ; */
  background: linear-gradient(#0093c908,#0093c912) ;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.concact-sect .socaial-icons li a{
  color: black;
}
.concact-sect .shape1 {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0px;
  right: 0px;
  /* width: calc((100% - 780px) / 2); */
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.368),rgba(0, 0, 0, 0.368)), url(../images/resources/blue-globe.jpg);
  z-index: -1;
  clip-path: polygon(30% 0%, 75% 0, 100% 25%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0 0);
}
.appoinment-one__bg {
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 0px;
  right: 0;
  width: calc((100% - 600px) / 2);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  clip-path: polygon(30% 0%, 75% 0, 100% 25%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0 0);
}
 .conta-box{
  box-shadow: 0px 0px 4px rgb(198, 196, 196);
 }
 .form-area{
  background: white;
  width: 100%;
  padding: 45px;
  /* margin-top: -170px; */
 }
.concact-sect select,
.concact-sect textarea,
.concact-sect input{
  width: 100%;
  padding: 10px 20px;
  border-radius: 0px;
  border: 1px solid #ccc;
  outline: none;
  margin-bottom: 15px;
}
.concact-sect textarea{
  height: 135px;
}
.contact-detl{
  padding: 25px ;
  background: white;
}
.contact-detl img{
  max-height: 40px;
}
.contact-detl .h6{
  color: #287eb2;
}
.contact-detl a{
  color: var(--color-one);
  font-weight: 500;
  font-size: 18px;
  transition: all 250ms linear;
}
.contact-detl a:hover{
  color: var(--color-two);
}
@media (max-width: 768px) {
  .concact-sect .shape1{
    width: 100%;
    clip-path: none;
  }
  .concact-sect .rev-colm{
    flex-direction: column-reverse;
  }
}


/* why choose */
.why-choose-card{
  margin-bottom: 25px;
  padding-bottom: 18px;
  position: relative;
}
.why-choose-card::after,
.why-choose-card::before{
  content: '';
  width: 100%;
  height: 2px;
  background: rgb(214, 213, 213);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 250ms linear;
}
.why-choose-card::before{
  width: 45%;
  z-index: 2;
  background: #54a6d8;
}
.why-choose-card:hover::before{
  background: var(--color-two);
  width: 100%;
}

/* testimonial section start */

.testi-block{
  background: white;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid gray;
}
.testi-block::before{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  clip-path: polygon(15% 63%, 100% 60%, 100% 100%, 0% 100%);
  z-index: 2;
  background: var(--color-two);
  width: 60%;
  height: 48px;
}
.testi-block::after{
  content: '\275E';
  position: absolute;
  right: 21px;
  top: 5px;
  z-index: 2;
  font-size: 85px;
  color: gray;
}
.stars{
  color: rgb(242, 206, 28);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.testi-img{
  max-width: 46px;
  margin-right: 10px;
}


/* offer section start */
.offer-sect{
  background: url(../images/bg/10.jpg);
}
.discount-info .titl {
  text-transform: uppercase;
  line-height: 1.1;
  background: var(--color-one);
  display: inline-block;
  color: white;
  font-size: 30px;
  max-width: max-content;
  padding: 15px 100px;
  clip-path: polygon(0 1%, 100% 0, 91% 51%, 100% 100%, 0 100%, 8% 57%);
  font-weight: 600;
}
.feature-list {
  margin-bottom: 21px;
  padding-left: 0px;
  list-style: none;
}
.feature-list li{
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
  font-weight: 600;
}
.feature-list li:after {
  content: "\27A4";
  position: absolute;
  top: 4px;
  left: 0px;
  width: 38px;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  color: var(--color-one);
}
.funfact-box{
  padding: 22px 70px ;
  background: white;
  box-shadow: 0px 0px 4px gray;
  border-radius: 150px;
  position: relative;
}
.funfact-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgb(220, 218, 218);
}
.counter-box {
  width: 100%;
  padding: 21px;
  font-size: 17px;
  border-left: solid 8px #54a6d8;
  background: linear-gradient(45deg, rgb(226, 226, 226), transparent);
}
.counter-bx span{
  font-size: 50px;
  font-weight: 600;
  color: var(--color-one);
}
.funfact-box-in p{
  color: var(--color-two);
  text-align: center;
}

/* footer start */
.footer-sect{
  border-top: 1px solid rgb(223, 221, 221);
  padding-top: 74px;
  background: linear-gradient(#49778f, black);
}

.footer-text p,
.footer-text{
  color: white;
  font-weight: 500;
  font-size: 14px;
}
.footer-sect .socaial-icons li{
  margin-right: 8px;
}
.footer-sect .socaial-icons li a:hover{
  background: var(--color-two);
}
.footer-sect .socaial-icons li a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 250ms;
}
.footer-widget{
  align-items: center;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  max-height: 205px;
  overflow-y: auto;
  scrollbar-width: thin; 
}
.footer-widget li{
  margin-bottom: 6px;
  position: relative;
  padding-left: 24px;
}
.footer-widget li:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0px;
  width: 6px;
  height: 6px;
  background: white;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: white;
  transition: all 250ms linear ;
}
.footer-widget li:hover::after{
  color: white;
}
.footer-widget a{
  font-weight: 600;
  font-size: 16px;
  color: #d0d4d4;
  transition: all 250ms linear ;
}
.footer-widget a:hover{
  color: white;
}
.footer-contact{
  position: relative;
  z-index: 1;
}
.footer-contact::before{
  content: '';
  position: absolute;
  left: 18px;
  top: 20px;
  height: calc(100% - 60px);
  width: 4px;
  background: white;
  z-index: -1;
}
.footer-contact .ft-cont {
  display: flex;
  margin-bottom: 18px;
}
.footer-contact .ft-cont i{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  background: var(--color-one);
  border: 3px solid var(--color-two);
}
.footer-contact .ft-cont p{
  color: rgb(230, 227, 227);
}
.footer-contact .ft-cont span {
  color: var(--color-two);
}
.footer-contact .ft-cont  a{
  display: block;
  color: rgb(230, 227, 227);
  font-weight: 600;
  transition: all 250ms;
}
.footer-contact .ft-cont a:hover{
  color: var(--color-two);
}
.copyright {
  background: var(--color-one);
}
.copyright p{
  color: white;
}
.copyright a{
  color: white;
  font-weight: 600;
  transition: all 250ms;
}
.copyright a:hover{
  color: var(--color-two);
}

/* breadcrumb */
.breadcrumb-area{
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.352), rgba(0, 0, 0, 0.352)), url(../images/bg/bread.jpg);
}
.breadcrumb-area h1,
.breadcrumb-area li{
  color: white;
}
.breadcrumb-area li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-two);
}
.breadcrumb-item+.breadcrumb-item::before{
  color: white;
}

/* share and whatsapp */
.share-btn-box{
  position: relative;
  z-index: 5;
}
.share-btn {
  font-size: 26px;
  font-weight: 600;
  color: black;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-share {
  width: fit-content;
  height: fit-content;
}

.social-share ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.social-share ul li button,
.social-share ul li a {
  color: #fff;
  font-size: 19px;
  line-height: 24px;
  height: 24px;
  width: 34px;
  text-align: center;
  padding: 4px 8px !important;
  border-radius: 3px;
  text-transform: capitalize;
  display: block;
  height: fit-content;
  box-shadow: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.social-share ul li button:hover,
.social-share ul li a:hover {
  opacity: 0.8;
}

.social-share ul li button.facebook,
.social-share ul li a.facebook {
  background: #3B5999;
}

.social-share ul li button.twitter,
.social-share ul li a.twitter {
  background: #1DA1F2;
}

.social-share ul li button.whatsapp,
.social-share ul li a.whatsapp {
  background: #20cb45;
}

.social-share ul li a.google-plus {
  background: #fe6d4c;
}

.social-share ul li button.linkedin,
.social-share ul li a.linkedin {
  background: #0a66c2;
}

.social-share ul li button.telegram {
  background: #0a9ac2;
}

.social-share ul li button.email {
  background: #c2410a;
}




.what-app {
  position: fixed;
  z-index: 99;
}

.btn-whatsapp-pulse-border {
  bottom: 30px;
  left: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 34px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.what-app i {
  font-size: 54px;
  color: #fff;
}

@keyframes pulse-border {
  0% {
      padding: 25px;
      opacity: 0.75;
  }

  75% {
      padding: 50px;
      opacity: 0;
  }

  100% {
      opacity: 0;
  }
}

.video-section{
  padding: 75px 0;
  background: url(../images/bg/pd-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.video-content{
  width: 100%;
}
.video-h {
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  color: var(--color-one);
  margin-bottom: 18px;
}
.video-h span{
  color: var(--color-two);
  font-style: italic;
}
.video-pulse {
  background: var(--color-one);
  color: white;
  position: relative;
  z-index: 5;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 34px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  cursor: pointer;
}
.video-pulse i{
  margin-left: 6px;
}
.video-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid var(--color-one);
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
      padding: 25px;
      opacity: 0.75;
  }

  75% {
      padding: 50px;
      opacity: 0;
  }

  100% {
      opacity: 0;
  }
}

@media (max-width: 768px) {
  .video-h br{
    display: none;
  }
}

.Catalogue{
    min-height: 500px;
    width: 100%;
}


.sec-title{
  position:relative;
  z-index: 1;
  margin-bottom: 16px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #ff2222;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title h2:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2{
  color: #ffffff;
}

.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left: 6px;
  margin-bottom: 12px;
}

/*.list-style-one li:before {*/
/*    content: "\f058";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0px;*/
/*    display: block;*/
/*    font-size: 18px;*/
/*    padding: 0px;*/
/*    color: #49778f;*/
/*    font-weight: 600;*/
/*    -moz-font-smoothing: grayscale;*/
/*    -webkit-font-smoothing: antialiased;*/
/*    font-style: normal;*/
/*    font-variant: normal;*/
/*    text-rendering: auto;*/
/*    line-height: 1.6;*/
/*    font-family: "Font Awesome 5 Free";*/
/*}*/

.list-style-one li a:hover{
  color: #44bce2;
}

.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}

.btn-style-one:hover{
  background-color: #001e57;
  color: #ffffff;
}
.about-section{
  position: relative;
  padding: 50px 0 50px;
  background: #fff;
}

.about-section .sec-title{
  margin-bottom: 20px;
}

.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}

.about-section .text{
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.about-section .list-style-one{
  margin-bottom: 45px;
}

.about-section .btn-box{
  position: relative;
}

.about-section .btn-box a{
  padding: 15px 50px;
}

.about-section .image-column{
  position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
  position: relative;
  padding-left: 50px;
  padding-bottom: 100px;
}

.about-section .image-column .inner-column:before{
  position: absolute;
  left: -75px;
  top: 28px;
  height: 520px;
  width: 520px;
  background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
}

.about-section .image-column .image-1{
  position: relative;
}

.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
  background-color: #191e34;
  color: #fff;
    
}

img.w-100.resource-b {
    margin-top: 100px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.card {
    background: #fff;
    text-align: left;
    padding-bottom: 15px;
}

.img-box {
    position: relative;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* OVERLAY TEXT */
.overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 3px solid #64b3bf;
    padding-bottom: 5px;
}

/* DESCRIPTION */
.card p {
    padding: 15px;
    font-size: 14px;
    color: #000000;
    margin-bottom: 0px;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .services h2 {
        font-size: 24px;
    }
}
section.service-h {
    background: #f9f9f9;
    padding: 40px;
}

section.plastic-section {
    background: #dadada75;
    padding: 40px;
}