﻿@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fontello';
  src:url('../fonts/fontello.woff2') format('woff2'),
       url('../fonts/fontello.woff') format('woff');
       font-weight: normal;
       font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before, .slick-prev:before, .slick-next:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-phone:before { content: '\e800'; } /* '' */
.icon-search:before { content: '\e801'; } /* '' */
.icon-twitter:before { content: '\e802'; } /* '' */
.icon-location:before { content: '\e803'; } /* '' */
.icon-left-open-mini:before, .slick-prev:before { content: '\e804'; } /* '' */
.icon-right-open-mini:before, .slick-next:before { content: '\e805'; } /* '' */
.icon-down-open-mini:before { content: '\e806'; } /* '' */
.icon-up-open-mini:before { content: '\e807'; } /* '' */
.icon-left-small:before { content: '\e808'; } /* '' */
.icon-right-small:before { content: '\e809'; } /* '' */
.icon-mail-alt:before { content: '\f0e0'; } /* '' */
.icon-linkedin:before { content: '\f0e1'; } /* '' */
.icon-youtube-play:before { content: '\f16a'; } /* '' */
.icon-instagram:before { content: '\f16d'; } /* '' */
.icon-facebook:before { content: '\f30c'; } /* '' */
.icon-play:before { content: '\e80a'; } /* '' */

:root{
   --primary-font:'Poppins', sans-serif;
   --black:#111;
   --gray:#666;
   --red:#FF3F01;
   --white:#fff;
   --gray-bg:#F7F7F7;

}
body {
    width: 100%;
    height: 100%;
    font-family: var(--primary-font);
    font-weight: 300;
    font-size:16px;
    background-color:var(--white);
    line-height:1.8;
	  color:var(--black);
    font-display: swap;
}
html {
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}
button:focus {
    outline: 0px dotted;
}

b, strong{
  font-family: var(--primary-font);
	font-weight: 500;
	color:var(--black);
  }
p{
	color:var(--black);
	line-height:1.8;
	font-size: 16px;
	}

h1{
    font-family: var(--primary-font);
    color:var(--black);
    line-height:1.25;
    font-size:50px;
    font-weight:bold;
    margin-top: 0;
    margin-bottom:20px;
}
h2{
  font-family: var(--primary-font);
  color:var(--black);
  line-height:1.4;
  font-size:36px;
  font-weight:500;
  margin-top: 0;
  margin-bottom:30px;
}
h3{
   font-family: var(--primary-font);
   color: var(--black);
   font-size:21px;
   line-height:1.4;
   font-weight: 500;
}
h4{
  font-family: var(--primary-font);
  color:#333;
  font-size:20px;
  line-height:1.5;
  font-weight:normal;
}
.red{
  color:var(--red);
}
.text-justify{
	text-align: justify;
}
.row-box{
	width:100%;
	clear:both;
	display: flex;
	flex-wrap: wrap;
}
section, footer{
	width:100%;
	clear:both;
  display: flex;
	flex-wrap: wrap;
  position: relative;
	}
.gray-bg{
  background-color:var(--gray-bg);
}  
.m-top{
  margin-top:95px;
}	
.padding{
	padding:70px 0;
	}
.padding-sm{
	padding:40px 0;
	}
.rotate img {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.rotate:hover img {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.img-zoom img{
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.img-zoom:hover img, .img-zoom:hover img{
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.zoom {
  -webkit-animation: zoomout 10s ease-in infinite;
  animation: zoomout 10s ease-in infinite;
  transition: all .5s ease-in-out;
  overflow: hidden;
}
/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {transform: scale(1.2);}
  50% {transform: scale(1);}
  100% {transform: scale(1.2);}
}
@keyframes zoomout {
    0% {transform: scale(1.2);}
  50% {transform: scale(1);}
  100% {transform: scale(1.2);}
}/*End of Zoom out Keyframes */

/*navbar*/
.navbar-toggler{
	border:0;
}
.navbar-toggler span {
    width: 25px;
    height:2px;
    background:var(--white);
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 6px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.navbar-toggler span:nth-child(1) {
    width: 16px;
}
.navbar-toggler:hover span:nth-child(1) {
    width: 25px;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    width: 25px;
    -webkit-transform: rotate(45deg) translate(5px,5px);
    -ms-transform: rotate(45deg) translate(5px,5px);
    transform: rotate(45deg) translate(5px,5px);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2){
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3){
	-webkit-transform:rotate(-45deg) translate(4px,-4px);
	-ms-transform:rotate(-45deg) translate(4px,-4px);
	transform:rotate(-45deg) translate(4px,-4px);
}
.navbar-brand img{
  width:245px;
}
.navbar-expand-lg .navbar-nav .nav-link{
  font-size:16px;
  color:var(--white);
  padding:29px 20px;
  font-weight: normal;
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
  color:var(--red);
}
.dropdown-menu{
	min-width: 16rem;
	margin-top: 0;
  border:0;
  border-top: 1px solid var(--orange);
	box-shadow:0 14px 14px 0 rgba(0, 0, 0, 0.185);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-radius: 0;
}
.dropdown-menu .dropdown-item {
    padding:.36rem 1.5rem;
    font-weight: normal;
    font-size:16px;
    border: 0;
    color: #000;
    white-space: normal;
}
.dropdown-menu .dropdown-item:hover{
  color:var(--red);
  padding-left:1.8rem;
}
.nav-link.dropdown-toggle::after{
  border-top: 0.3em solid #666;
  content:none;
}
.dropdown-menu li.dropdown::after {
  position: absolute;
  content: "›";
  right: 17px;
  top:1px;
  font-size: 19px;
  color: #333;
  border:0;
}
.dropdown-menu li.dropdown:hover::after{color:var(--red);}
.dropdown-menu li.dropdown .dropdown-toggle::after{
content: none;
}
.navbar  li.dropdown:hover > a{color:var(--red)}
.navbar ul.dropdown-menu > li.dropdown:hover > a{background: #fff; color:var(--red);}
.dropdown-item:hover{background: #fff; color:var(--red)}
@media only screen and (min-width:991px) {
  .navbar ul li:hover> .dropdown-menu{display:block}
  .navbar ul .dropdown-menu{position:absolute;top:100%;left:0;min-width:280px;display:none;margin:0;}
  .navbar ul li.mega-menu:hover > ul {
    display: flex;
    min-width:500px;
    flex-wrap: wrap;
    padding: 10px;
  }
}
.navbar-expand-lg .navbar-nav .nav-item:last-child{
  display: flex;
  align-items: center;
  padding-left:50px;
}
.navbar ul li.mega-menu:hover > ul li{
  flex: 0 0 auto;
  width: 50%;
}
.navbar ul li.mega-menu:hover > ul li a{
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.mega-menu li img{
  width: 40px;
  margin-right: 15px;
}
.mega-menu li:hover img{
  filter: gray; /* IE5+ */
  -webkit-filter: grayscale(1); 
}

.fix-nav .navbar {
  background-color:rgba(0, 0, 0, 0.9);
  padding: 0;
  -webkit-box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
  -moz-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
  box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.fix-nav .navbar-brand img {
  width:200px;
}
.fix-nav .navbar-expand-lg .navbar-nav .nav-link {
  padding: 25px 20px
}
.btn{
  border-radius:50px;
  padding: 9px 30px;
  text-transform: uppercase;
  font-family:var(--primary-font);
  font-weight:normal;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}  
.btn-red{
border:1px solid transparent;
background-color:var(--red);
color:var(--white);
}
.btn-red:hover{
  border-color: var(--red);
background-color:transparent;
color:var(--red);
}

.banner{
  display: block;
  background-color:var(--black);
}
.banner img{
  opacity:0.5;
}
.banner .banner-text{
  position: absolute;
  max-width:540px;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
}
.banner h1{
  color: var(--white);
  margin-bottom:30px;
}
.banner p{
  color:var(--white);
  font-size:20px;
}
.f-icons {
  display: flex;
  margin-bottom: 10px;
}
.icon {
  margin-right: 8px;
  text-align: center;
  font-size: 21px;
  display: flex;
  width:22px;
  height:22px;
  color:var(--red);
}
.icon-mail-alt{
  font-size:16px;
}
.f-icon-text{
  -ms-flex: 1;
  flex: 1;
}
.f-icon-text p{
  margin-bottom:0;
}

footer{
  background-color:var(--black);
  padding-top:50px;
  padding-bottom:30px;
}
footer ul{
  list-style-type:none;
  padding-left:0;
  display: flex;
  flex-wrap: wrap;
}
footer ul li a{
  color: var(--white);
  font-size: 15px;
  padding: 6px 0;
  display: block;
}
footer ul li a:hover{
  color:var(--red);
  padding-left:5px;
}
footer ul li{
  line-height: 1.3;
  width: 50%;
}
footer p{
  font-size:15px;
  color:var(--white);
}
footer h4{
  color:var(--white);
}
footer a{
  color:var(--white);
}
footer a:hover{
  color:var(--orange);
}
footer .f-icons .icon{
  color: var(--red);
}
.footer-bottom {
  padding-top: 15px;
  background-color: var(--black);
}
.footer-bottom-text{
  display: flex;
  justify-content: space-between;
}
.footer-bottom p, .footer-bottom p a{
  color:var(--white);
  font-size: 15px;
}
.follo-icon {
  display: flex;
  align-items: center;
}
.follo-icon a {
  background-color:transparent;
  padding:0px;
  border-radius: 50%;
  display: block;
  width:33px;
  height:33px;
  text-align: center;
  margin: 3px 5px;
  font-size:18px;
  color:var(--red);
  border:1px solid #AEAEAE;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.follo-icon a:hover{
  background-color:var(--red);
  color:var(--white);
  border-color:var(--red);
}
.f-logo{
  text-align: center;
}
.f-logo img{
  margin-bottom: 13px;
  width: 100px;
}

.num-count .icon-text {
  display: flex;
    align-items: start;
    justify-content: start;
  flex-direction: row;
  text-align: left;
}
.num-count .icon-text img {
  flex: 0 0 auto;
}
.text-num {
  padding-left: 15px;
}
.text-num p {
  margin-bottom: 0;
  line-height: 1.5;
}
.num-count{
  background-color:var(--black);
  background-image:url(../images/banner3.jpg);
  background-attachment: fixed;
  position: relative;
  z-index:1;
}
.num-count::before{
  content:'';
  position: absolute;
  z-index:-1;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0, 0, 0, 0.699);
}
.num-count h3{
  font-size:36px;
  line-height: 1;
}
.num-count h3, .num-count p{
  color:var(--white);
}
.testimonials .coma{
 margin:0 auto 30px auto;
}
.testimonials .slick-slide{
  padding:0 20px;
}
.slick-prev, .slick-next{
  width:36px;
  height:36px;
}
.slick-prev:before, .slick-next:before{
  font-size:36px;
}
.banner .slick-prev {
  left: 30px;
  z-index: 2;
}
.banner .slick-next {
  right: 30px;
  z-index: 2;
}
.banner .slick-prev:before, .banner .slick-next:before {
  color:var(--white);
}
.banner .slick-slide img {
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale(1.2);
}
.banner .slick-active img {
  transform: scale(1);
}
.banner .slick-slide .banner-text{
  display: none;
}
.banner .slick-slide.slick-active .banner-text{
   display: flex;
}
.delay-1s{
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.delay-1-5s{
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.test-cl{
  padding-top:20px;
}
.test-cl img{
  border-radius:50%;
  max-width:60px;
  margin:0 auto 10px auto;
}
.test-cl i{
  font-style: normal;
  font-size:15px;
}
.testimonials .slick-prev {
  left: -70px;
}
.testimonials .slick-next{
  right: -70px;
}

.clients .slick-slide{
  padding:5px ;
}
.clients .img-zoom img{
  margin:0 auto;
  max-width:100%;
}

.banner-inner{
  position: relative;
  background-color: var(--black);
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
}
.banner-inner img{
  opacity:0.5;
}
.banner-inner h1{
  position: absolute;
  top: 0;
  z-index: 1;
  bottom: 0;
  display: flex;
  align-items: center;
  color:var(--white);
  margin-bottom:0;
}
.img-box-d {
  overflow: hidden;
  height: 100%;
}
.img-box-d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.w-box {
  display: block;
  width:100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 12px 0px rgb(0, 0, 0, 0.11);
}
.certification-page a{
  cursor: zoom-in;
}
.list {
  width: 100%;
  padding-left: 0;
  list-style-type: none;
}
.list li{
  font-size: 16px;
  position: relative;
  padding-left: 19px;
  line-height: 28px;
  padding-bottom:15px;
  font-weight: 300;
  color:var(--black);
}
.list li::after{
  position: absolute;
  content: '';
  width:8px;
  height:8px;
  border-radius: 50%;
  background-color: var(--red);
  top: 10px;
  left: 0;
}
.list li p{
  color:#555;
}
input.form-control, .form-select {
  height: 47px;
}
iframe{
  border-radius:20px;
}
.test-box{
  border:1px solid #ddd;
  border-radius:20px;
  padding:30px;
  display: block;
  background-image: url(../images/coma.png);
  background-repeat: no-repeat;
  background-position:bottom 50px right 32px;
  background-color:var(--white);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.test-box .test-cl{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 12px
}
.test-box .test-cl img{
  margin:0;
}
.test-box p{
  text-align: justify;
}
.grid-box {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.grid-item {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 25px;
  width: 100%;
}
 
.test-box:hover{
  background-color:var(--white);
  border-color:var(--red);
  -webkit-box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
    -moz-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
    box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 35px;
}
.services h3{
  margin-top:20px;
}
.item1 {
  grid-column: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}
.title{
  display: block;
  width:100%;
  text-align: center;
  margin-bottom: 50px;
}
.services .rounded-4{
  overflow: hidden;
}
.ser-item p{
  color:var(--gray);
}
.ser-item:hover h3{
  color:var(--red);
}
.num-bg{
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size:100%;
  text-align: center;
}
.num{
  font-family:var(--primary-font);
  font-size:45px;
  color:var(--white);
  font-weight: bold;
  line-height: 1.5;
}
.num-bg p{
  color:var(--white);
  margin-bottom:0;
}
.option-set{
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom:40px;
}
.option-set li a{
  color:#333;
  padding:10px;
  font-size:15px;
  font-weight: 500;
}
.option-set li a:hover{
  color:var(--red);
}
.option-set li a.selected{
  color:var(--red);
}
.masonary .img-zoom{
  overflow: hidden;
  display: block;
}
.whatsapp_btn{
  position: fixed;
  bottom:2em;
  right:8px;
  width:50px;
  height:50px;
  z-index: 11;
}
.whatsapp_btn .icon_logo{
  position: relative;
  z-index: 100;
  padding: 5px;
}
.whatsapp_btn .icon_logo > a > img{
  width: 100%;
}
.whatsapp_btn .circle_waves{
  border-radius: 50%;
  background-color: #3cc04e;
  width:50px;
  height:50px;
  position: absolute;
  opacity: 0;
  bottom: 1px;
  left: 0px;
  z-index: 99;
  animation: waves 4s infinite cubic-bezier(.36, .11, .89, .32);
}
@keyframes waves {
  from {
      transform: scale(.55, .55);
      opacity: .6;
  }
  to {
      transform: scale(1.8, 1.8);
      opacity: 0;
  }
}
.inner-banner{
  background-color:var(--black);
  position: relative;
}
.inner-banner img{
  opacity:0.4;
}
.ser-d .row + .row{
  margin-top:30px;
}
.gall-sec .img-zoom{
  display: block;
  width: 100%;
  overflow: hidden;
}
.option-isotop{
  display: block;
  width:100%;
}
.inner-banner h1{
 position: absolute;
 left:15px;
 right:15px;
 bottom:20%;
 text-align: center;
 color:var(--white);
 font-size: 40px;
}
.br-box{
  border: 1px solid var(--red);
  border-radius: 20px;
  padding: 50px;
}



@media only screen and (min-width:991px) {
  .page-section{
    overflow:hidden;
  }
  .left-content{
      -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
      transform: translateX(-30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .right-content{
      -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
      transform: translateX(30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .bottom-content{
      opacity: 0;
      -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
      transform: translateY(30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .top-content{
      opacity: 0;
      -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
      transform: translateY(-30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .zoom-content{
    opacity: 0;
    -moz-transform: scale(0);
      -webkit-transform: scale(0);
      transform: scale(0);
    -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .animate .zoom-content{
    opacity: 1;
    -moz-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1)
  }
  .animate .left-content, .animate .right-content {
    opacity: 1;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
  }
  .animate .bottom-content, .animate .top-content{
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
 
  .navbar{
    padding-bottom:0;
  }

  }
 

@media (max-width:767px) {
  .banner h1{
    font-size: 22px;
    margin-bottom:10px;
    line-height: 1.5;
  }
  .banner img {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio:100/80;
  }
  .banner .btn {
    padding: 7px 30px;
    font-size: 14px;
  }
  h2{
    font-size:24px;
    margin-bottom: 21px;
  }
  .f-box {
    padding: 30px;
  }
  .f-box-m {
    margin-top: 40px;
  }
  .vm-img {
    margin-bottom: 0;
    margin-top: 15px;
  }
  .padding {
    padding: 30px 0;
  }
  h3 {
    font-size:18px;
  }
  .footer-bottom-text{
    flex-direction: column;
  }
  .prodcts-list li {
    width: 100%;
  }
  .testimonials .slick-next {
    right: 0;
    top: 12px;
  }
  .testimonials .slick-prev {
    left: 0;
    top: 12px;
  }
  .why-img-box {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .wbi-top {
    top: 0;
    left: 0;
  }
  .why-bg-i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .why-bg-i img{
    width:100px;
  }
  .wbi-bottom {
    bottom: 10px;
    top: 10px;
  }
  .num-count .icon-text img {
    width:60px;
  }
  .num-count h3 {
    font-size: 28px;
  }
  .num-box .icon-text{
    margin:10px 0;
  }
  .testimonials .slick-slide {
    padding: 0;
  }
  .prodcts-list {
    max-width: 370px;
    margin:0 auto;
  }
  .grid-box {
    -webkit-column-count:1;
    -moz-column-count:1;
    column-count:1;
    -webkit-column-gap:15px;
    -moz-column-gap:15px;
    column-gap:15px;
  }
  .inner-banner img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 100/55;
  }
  .or-1{
    order:1;
  }
  .inner-banner h1{
    font-size: 24px;
    margin-bottom: 0;
  }

}
@media (max-width:991px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .navbar-brand img, .fix-nav .navbar-brand img {
    width:100px;
  }
  .navbar-brand{
    padding:10px 0;
  }
  .navbar-expand-lg .navbar-nav .nav-link, .fix-nav .navbar-expand-lg .navbar-nav .nav-link {
    padding:8px 10px;
  }
  .fixed-top{
    padding: 0;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  li.dropdown::after {
    font-family: "fontello";
    content: '\e805';
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 19px;
    color:var(--orange);
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .dropdown-menu .dropdown-item, .navbar ul li.mega-menu:hover > ul li a{
    padding: .36rem 1rem;
  }
  .mega-menu li img {
    width: 35px;
    margin-right:12px;
  }
  .navbar ul li.mega-menu:hover > ul li {
    width: 100%;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    padding-left: 10px;
    padding-bottom: 15px;
    padding-top: 10px;
  }
  .navbar-collapse {
    margin-top: 15px;
  }
  .case-studies img {
    aspect-ratio: 100/100;
  }
  .follo-icon {
    margin-bottom: 25px;
  }

  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }
  .slick-prev, .slick-next{
    top:45%;
    z-index:1;
  }
  .banner p{
    font-size:15px;
  }
  .banner .banner-text{
    padding: 0 25px;
    height: auto;
    top: auto;
    bottom: 38px;
  }
  .banner .slick-prev {
    left:5px;
  }
  .banner .slick-next {
    right:5px;
  }
  .services {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
  }
  .item1{
    display: none;
  }
  .num-bg {
    background-image: url(../images/bg2.jpg);
    background-size: cover;
  }
  .num {
    font-size: 35px;
  }

}
@media (min-width:768px) and (max-width:991px)  {
  h1{
    font-size:36px;
  }
  h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }
  .services {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 30px;
  }
  .testimonials .slick-prev {
    left: -40px;
  }
  .testimonials .slick-next {
    right: -40px;
  }
  .f-logo {
    text-align: left;
  }
  .f-logo img {
    margin-bottom: 12px;
  }


} 
@media (min-width:992px) and (max-width:1199px)  {
  .navbar-expand-lg .navbar-nav .nav-link, .fix-nav .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 15px;
    padding: 20px 14px;
  }
  .navbar-brand img {
    width: 145px;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    padding-left: 10px;
  }

}
@media (min-width:1200px) and (max-width:1300px)  {
  .navbar-brand img {
    width: 195px;
  }
}
@media (min-width:1300px) {
  .container{
    max-width:1220px;
  }
  .slick-next {
    right:-40px;
  }
  .slick-prev {
    left:-40px;
  }
  .testimonials{
    max-width:1000px;
    margin:0 auto;
  }
  .get-touch .container {
    max-width: 1000px;
  }
}



