/* 
 font-family: "Rajdhani", sans-serif;
 font-family: "Open Sans", sans-serif;
 */

:root {
  --main-theme-blue: #0062AB; /*blue*/
  --theme-silver: #C0C0C0;  /*silver*/
  --theme-black: #1C1C1C;  /*black*/
  --theme-white: #fff;  /*white*/
  --body-family: "Open Sans", sans-serif;
  --heading-family: "Rajdhani", sans-serif;
  --text-color: #1C1C1C;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-weight: 400;
  --h1-heading-font-size: 50px;
  --h2-heading-font-size: 30px;
  --h3-heading-font-size: 25px;
  --h4-heading-font-size: 20px;
  --h5-heading-font-size: 17px;
  --h6-heading-font-size: 15px;
}

.text-blue {
	color: var(--main-theme-blue) !important;
	font-size: -webkit-xxx-large;
}

.text-silver {
	color: var(--theme-silver) !important;
}

.text-black {
	color: var(--theme-black) !important;
}


* {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--body-family);	
	color: var(--theme-black);
	background: #fff;
	font-weight: var(--font-weight);
	font-size: var(--font-size-16);
	line-height: 1.8;
}

h1,.h1, h2, h3, h4, h5, h6 {
	color: var(--main-theme-blue);
	font-weight: 700;
	font-family: var(--heading-family);
	line-height: 1.1;
}



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

h2, .h2 {
  font-size: 58px
}

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

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

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

h6, .h6 {
  font-size: 14px
}


@media screen and (max-width:1366px) {
	h3, .h3 {
    font-size: 48px;
}

}

@media screen and (max-width:1024px) {
	h3, .h3 {
    font-size: 34px;
}
}


@media screen and (max-width:767px) {
	h3, .h3 {
    font-size: 30px;
}
h4, .h4 {
    font-size: 21px;
}
}








.slider-video iframe {
	width: 100%;
	height: 600px;
}


a {
	-webkit-transition: all 0.4s ease!important;
	transition: all 0.4s ease!important;
	text-decoration: none;
	color: var(--main-theme-blue);
}

button {
  transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  border: none;
}


button:focus {
  outline: none;
  box-shadow: none;
  -ms-box-shadow: none;
  -webkit-box-shadow: none
}

a:hover {
	text-decoration: none;
	color: black;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
	color: #acacac!important;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out
}

img:not([src]):not([srcset]) {
  visibility: hidden
}

img.lazy {
  opacity: 0
}

img.lazy.initial, img.lazy.loaded, img.lazy.error {
  opacity: 1
}

.bg-cover-image {
  background-size: cover;
  background-repeat: no-repeat
}

.bg-contain-image {
  background-size: contain;
  background-repeat: no-repeat
}

.bg-fix-image {
  background-attachment: fixed
}

.bg-overlay {
  position: relative;
  z-index: 1
}

.bg-overlay::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .5;
  z-index: -1
}

.list-none {
  margin: 0;
  padding: 0
}

.list-none li {
  list-style-type: none
}

.image-wrap {
  position: relative
}

.image-wrap.aspect-16x9 {
  padding-bottom: 56.25%
}

.image-wrap.aspect-54 {
  padding-bottom: 54%
}

.image-wrap.aspect-9x16 {
  padding-bottom: 177.77778%
}

.image-wrap.aspect-4x3 {
  padding-bottom: 75%
}

.image-wrap.aspect-3x4 {
  padding-bottom: 133.33333%
}

.image-wrap.aspect-3x2 {
  padding-bottom: 66.66667%
}

.image-wrap.aspect-2x3 {
  padding-bottom: 150%
}

.image-wrap.aspect-1x1 {
  padding-bottom: 100%
}

.image-wrap.aspect-60 {
  padding-bottom: 60%
}

.image-wrap.aspect-63 {
  padding-bottom: 63%
}

.image-wrap.aspect-136 {
  padding-bottom: 136%
}

.image-wrap.aspect-47 {
  padding-bottom: 47%
}
.image-wrap.aspect-38 {
  padding-bottom: 38%
}

.image-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.image-wrap.loader {
  background-image: url("../images/loader-style1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  background-color: #fff;
}

.image-wrap.loader.loader-sm {
  background-size: 25px
}

.image-wrap.picture picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.image-wrap.picture img {
  position: relative
}

.image-wrap.no-position img {
  position: relative;
  height: auto;
  width: auto
}

.image-wrap.img-auto img {
  height: auto;
  width: auto;
  right: 0;
  left: 0;
  margin: auto;
  max-height: 100%
}

.hover-transition {
  transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out
}

.bg-gray {
  background-color: #f2f6f7
}

.hide {
  display: none
}

.show {
  display: block
}

@media screen and (min-width: 1400px) {
    .custom-width {
        max-width: 1200px;
    }
}


.section-padding-lg {
    padding: 80px 0;
}

.section-padding-md {
    padding: 60px 0;
}


.section-padding-sm{
	padding: 40px 0;
}


@media screen and (max-width: 1366px) {
    .section-padding-lg {
    padding: 60px 0;
}
.section-padding-md {
    padding: 40px 0;
}
}
@media screen and (max-width: 991.98px) {
.section-padding-lg {
    padding: 60px 0;
}
.section-padding-md {
    padding: 35px 0;
}
}

@media screen and (max-width: 991.98px) {
.section-padding-lg {
    padding: 40px 0;
}
.section-padding-md {
    padding: 34px 0;
}
}

@media screen and (max-width: 767px) {
.section-padding-md,
.section-padding-lg {
    padding: 30px 0;
}
}



/* heading-style */

.heading-style1  p {
	 display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--main-theme-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    font-family: var(--heading-family);
}

.heading-style1 .title {
    font-size: 2.4rem;
    color: var(--theme-black);
}


@media screen and (max-width: 991.98px) {
.heading-style1 .title {
    font-size: 2rem;
	margin-top: 25px;
}
}

@media  screen and (max-width: 767px) {
.heading-style1 .title {
    font-size: 1.3rem;
}
}


@media  screen and (max-width: 767px) {
.heading-style1  p {
    margin-bottom: 8px;
}
}








/* Header & Menu css start */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: auto;
}

.site-header .header-top {
    padding: 10px 0;
    border-bottom: 1px solid #c0c0c03b;
}

.site-header .header-top .left-content a {
    display: inline-block;
    color: var(--theme-silver);
	transition: all 0.3s ease-in-out;
}

.site-header .header-top .left-content a span svg{
	fill: var(--main-theme-blue);
	transform: rotateY(0deg);
    transition: .9s;
}
.site-header .header-top .left-content a:hover span svg{
	fill: var(--theme-white	);
	transform: rotateY(360deg);
}

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

.site-header .header-top .left-content a span {
    display: inline-block;
    margin-right: 8px;
    top: -3px;
    position: relative;
}

.site-header .header-top .right-social ul li a span svg{
	fill: var(--theme-silver);
	transform: rotateY(0deg);
    transition: .9s;
}
.site-header .header-top .right-social ul li a:hover span svg{
	fill: var(--theme-white);
	transform: rotateY(360deg);
	
}

.site-header .navbar-area .main-nav .site-logo a {
    display: inline-block;
    margin-right: 30px;
}

.site-header .navbar-area .main-nav .left-content {
	display: flex;
	margin-top: 14px;
}

.site-header .navbar-area .main-nav .left-content .call-btn a {
    display: flex;
    font-family: var(--heading-family);
    color: var(--theme-silver);
    font-weight: 700;
    align-items: center;
    gap: 0.5rem;
	font-size: 19px;
}
.site-header .navbar-area .main-nav .left-content .call-btn .btn-content {
    margin-top: 20px;
    padding-left: 26px;
    border-left: 1px solid var(--theme-silver);
}

.site-header .navbar-area .main-nav .left-content .call-btn a:hover{
	color: var(--theme-white);
}

.site-header .navbar-area .main-nav .left-content .call-btn a .icon span img {
	width: 36px;
	height: auto;
}

.site-header .navbar-area .main-nav .left-content .call-btn a .text span {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: -5px;
}







a.meanmenu-reveal {
	display: none;
}
.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: absolute;
    z-index: 999;
}
.mean-container a.meanmenu-reveal {
	width: 35px;
	height: 30px;
	padding: 12px 15px 0 0;
	position: absolute;
	right: 0;
	cursor: pointer;
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	text-indent: -9999em;
	line-height: 22px;
	font-size: 1px;
	display: block;
	font-weight: 700;
}
.mean-container a.meanmenu-reveal span {
	display: block;
	background: #ffffff;
	height: 4px;
    margin-top: 3px;
    border-radius: 3px;
}
.mean-container .mean-nav {
    float: left;
    width: 100%;
    background: #ffffff;
    margin-top: 95px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.mean-container .mean-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	border: none;
	list-style-type: none;
}
.mean-container .mean-nav ul li {
	position: relative;
	float: left;
	width: 100%;
}
.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    font-size: 17px;
    width: 90%;
    padding: 1em 5%;
    margin: 0;
    text-align: left;
    color: #000;
    border-top: 1px solid #DBEEFD;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--heading-family);
}
.mean-container .mean-nav ul li a.active {
	color: #000000;
}
.mean-container .mean-nav ul li li a {
	width: 80%;
	padding: 1em 10%;
	color: #677294;
	border-top: 1px solid #DBEEFD;
	opacity: 1;
	filter: alpha(opacity=75);
	text-shadow: none !important;
	visibility: visible;
	text-transform: none;
	font-size: 14px;
}
.mean-container .mean-nav ul li.mean-last a {
	border-bottom: none;
	margin-bottom: 0;
}
.mean-container .mean-nav ul li li li a {
	width: 70%;
	padding: 1em 15%;
}
.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%;
}
.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%;
}
.mean-container .mean-nav ul li a:hover {
	background: #252525;
	background: rgba(255,255,255,0.1);
}
.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 3px;
	width: 100%;
	height: 24px;
	padding: 12px !important;
	text-align: right ;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	font-weight: 700;
	background: transparent;
	border: none !important;
}
.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both;
}
.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}
.mean-container .mean-bar, .mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.mean-remove {
	display: none !important;
}
.mobile-nav {
    display: none;
}
.mobile-nav .mobile-icons {
    position: absolute;
    right: 4%;
    top: 6px;
    transform: translateX(-50%);
    z-index: 9999;
}
.mobile-nav .mobile-icons .get-quote-buttons {
    border-radius: 50px;
}
.mobile-nav .mobile-icons .get-quote-buttons .button-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: max-content;
    column-gap: 0;
    border-radius: 50px;
}
.mobile-nav .mobile-icons .get-quote-buttons .button-group .custom-button span.icon {
    background-color: #333333;
    height: 35px;
    width: 35px;
    display: inline-block;
    border-radius: 50%;
    align-content: center;
    text-align: center;
    margin: 5px 3px;
}
.mobile-nav .mobile-icons .get-quote-buttons .button-group .custom-button span.icon svg {
    width: 14px;
    height: auto;
}
.mobile-nav .mobile-icons .get-quote-buttons .button-group .custom-button:last-child .icon {
    background-color: #f14950;
}
.mobile-nav.mean-container .mean-nav ul li a.active {
    color: var(--main-theme-blue);
    position: relative;
}
.mobile-nav.mean-container .mean-nav ul li a.active::before {
    position: absolute;
    left: 5%;
    bottom: 13px;
    content: "";
    width: 40px;
    height: 1px;
    border-bottom: 1px solid var(--main-theme-blue);
}
.mean-nav .dropdown-toggle::after {
	display: none;
}
.navbar-light .navbar-brand, .navbar-light .navbar-brand:hover {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.mobile-nav .mobile-icons {
    position: absolute;
    right: 77px;
    top: 26px;
    transform: translateX(-50%);
    z-index: 9999;
}
.mobile-nav .mobile-icons .icon-list {
    display: flex;
    column-gap: 10px;
}
.mobile-nav .mobile-icons .icon-list li .custome-button span svg {
    vertical-align: sub;
    height: 30px;
    fill: #fff;
    transition: all .3s ease-in-out;
    width: auto;
}


.site-header .navbar-area .main-nav .main-nav-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
	margin-top: 14px;
}

.site-header .navbar-area .main-nav .main-nav-right nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav{
    
}

.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item {
    position: relative;
    padding: 17px 0;
}


.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-silver);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 15px;
    margin-right: 15px;
    border-bottom: 1px solid transparent;
    font-family: var(--heading-family);
	position: relative;
}

.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a:after {
    position: absolute;
    left: 0;
    bottom: -2px;
	content: "";
    width: 0%;
    height: 2px;
    background-color: var(--theme-white);
    -webkit-transition: all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a:hover, 
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a:focus, 
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a.active {
    color: var(--theme-white);
   
} 


.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a.active:after,
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a:hover:after,
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a:focus:after{
	width: 100%	;
}




.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    background: #0d1028;
    position: absolute;
    top: 80px;
    left: 0;
    width: 250px;
    z-index: 99;
    display: block;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li {
    position: relative;
    padding: 0;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 9px 15px;
    margin: 0;
    display: block;
    color: #ffffff;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li a:hover, 
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li a:focus, 
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: #FF2D55;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    position: absolute;
    left: -100%;
    top: 0;
    opacity: 0 !important;
    visibility: hidden !important;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    top: -20px !important;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
    position: absolute;
    left: -100%;
    top: 0;
    opacity: 0 !important;
    visibility: hidden !important;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    top: -20px !important;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
    color: #ffffff;
    text-transform: capitalize;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, 
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, 
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: #FF2D55;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: #FF2D55;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

.site-header .navbar-area .mobile-nav .mobile-logo img{
	position: relative;
	z-index: 999999;
}
.site-header .navbar-area .main-nav .left-content .site-logo a img{
     max-width: 165px;
     height: auto;
}

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

}
@media screen and (max-width: 1536px) {
.site-header .navbar-area .main-nav .left-content .site-logo a img{
     max-width: 165px;
     height: auto;
}
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
	.site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item {
    padding: 13px 0;
}
}
@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
    .site-header .navbar-area .main-nav .main-nav-right nav .navbar-nav .nav-item a {
    margin-left: 7px;
    margin-right: 7px;
}
.site-header .navbar-area .main-nav .left-content .site-logo a img {
    max-width: 120px;
    height: auto;
}
}
@media screen and (max-width: 991.98px) {
    .mobile-nav {
    display: block;
    position: relative;
    margin: 10px 0;
}

.mean-container a.meanmenu-reveal {
    padding: 30px 35px 0 0;
}
    .mobile-nav nav .navbar-nav .nav-item a i {
        display: none;
    }
    .main-nav {
        display: none !important;
    }

	.site-header .navbar-area .mobile-nav .mobile-logo{
		margin-left: 40px;
	}

	.site-header .navbar-area .mobile-nav .mobile-logo img{
		max-width: 100px;
		height: auto;
	}

	}



@media  screen and (max-width: 767px) {
	.site-header .header-top .right-social ul li a span svg {
    width: 16px;
}
.site-header .header-top {
    padding: 6px 0;
}
.site-header .header-top .left-content a span svg {
    width: 16px;
    position: relative;
    top: 1px;
}
.site-header .navbar-area .mobile-nav .mobile-logo img {
    max-width: 74px;
    height: auto;
}
.mean-container a.meanmenu-reveal {
    padding: 22px 12px 0 0;
}
.mean-container .mean-nav {
     margin-top: 72px;
}
.mobile-nav .mobile-icons {
    right: 53px;
    top: 22px;
}
.mobile-nav .mobile-icons .icon-list li .custome-button span svg {
    height: 24px;
}
}


@media screen and (max-width: 575px) {
  
	.site-header .navbar-area .mobile-nav .mobile-logo {
    margin-left: 12px;
}
}

/* Header & Menu css end */









/* start custom form */

.modal {
   z-index: 99999;
}
.form-style1 .form-group {
  margin-bottom: 15px;
}

.form-style1 .form-control-custom {
    width: 100%;
    padding: 7px 15px;
    background: var(--theme-black);
    border: 1px solid #C0C0C04D;
    border-radius: 3px;
    box-shadow: none;
    outline: none;
    height: 50px;
    color: var(--theme-silver);
}

.form-style1 .form-control-custom:focus {
  border-color: var(--main-theme-blue);
}

.form-style1 .form-group .form-label {
  display: block;
  font-size: 17px;
  margin-bottom: 3px !important;
  color: #fff;
}

.form-style1 .form-group textarea {
  height: 100px !important;
}

.form-style1 .form-group select {
  cursor: pointer;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-arrow-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  width: 100%;
}

.custom-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}














.get-quote-modal .modal-content {
    background-color: #f2f6f7;
}

.get-quote-modal .modal-content .modal-header {
    padding: 10px 0;
    justify-content: center;
	background-color: var(--main-theme-blue);
}
.get-quote-modal .modal-content .modal-header .btn-close {
    box-shadow: none !important;
    opacity: 1;
    position: absolute;
    right: 22px;
    top: 14px;
    background: none;
}

.get-quote-modal .modal-content .modal-header .btn-close svg {
    fill: #fff;
    width: 15px;
    height: auto;
}

.get-quote-modal .modal-content .modal-header .modal-title {
  color: #fff;
  font-size: 25px;
}

.get-quote-modal .modal-content .form-style2 .form-group {
    margin-bottom: 15px !important;
}

.get-quote-modal .modal-content .form-style2 .form-group textarea {
    height: 100px !important;
}


@media screen and (max-width:1536px) {
  .get-quote-modal .modal-content .modal-header .modal-title {
    font-size: 20px;
  }
  .get-quote-modal .modal-content .modal-header .btn-close {
     top: 12px;
}

}

@media screen and (max-width:991.98px) {
  .form-style1 .form-group {
    margin-bottom: 10px;
  }

  .form-style1 .form-group .form-label {
    font-size: 16px;
  }

  .form-style1 .form-control-custom {
    font-size: 15px;
  }

   .form-style1 .form-group .submit-button {
    text-align: center;
}

}

@media screen and (max-width:767px) {
.get-quote-modal .modal-content .modal-header .btn-close svg {
   width: 11px;
}

}







.form-style2 .form-group {
    margin-bottom: 30px;
}

.form-style2 .form-control-custom {
    width: 100%;
    border: 1px solid #E4ECF2;
    box-shadow: none;
    outline: none;
    height: 52px;
    color: var(--theme-black);
    border-radius: 3px;
    background-position: top 16px right 11px;
    background-repeat: no-repeat;
    padding: 13px 15px;
}

.form-style2 .name-input{
	background-image: url('../images/name-icon.png');
}

.form-style2 .mail-input{
	background-image: url('../images/mail-icon.png');
}

.form-style2 .phone-input{
	background-image: url('../images/phone-icon.png');
}

.form-style2 .message-input{
	background-image: url('../images/massage-icon.png');
}
.form-style2 .subject-input{
	background-image: url('../images/subject-icon.png');
}

.form-style2 .form-control-custom:focus {
  border-color: var(--main-theme-blue);
}

.form-style2 .form-group textarea {
    height: 169px !important;
}


.form-style2 .form-control-custom::placeholder {
  color: #1C1C1C !important; /* standard */
  opacity: 1;
}

.form-style2 .form-control-custom::-webkit-input-placeholder {
 color: #1C1C1C !important; /* Chrome, Safari, Edge */
}

.form-style2 .form-control-custom::-moz-placeholder {
 color: #1C1C1C !important; /* Firefox 19+ */
}

.form-style2 .form-control-custom:-ms-input-placeholder {
 color: #1C1C1C !important; /* IE 10-11 */
}

.form-style2 .form-control-custom::-ms-input-placeholder {
 color: #1C1C1C !important; /* Microsoft Edge */
}




@media screen and (max-width:1366px) {
	.form-style2 .form-group {
		margin-bottom: 20px;
	}

}

@media screen and (min-width:991.99px) and (max-width:1199.98px) {
}

@media screen and (max-width:991.98px) {
}

@media  screen and (max-width:767px) {
.form-style2 .form-control-custom {
    font-size: 16px;
    height: 47px;
}

	.form-style2 .form-group .g-recaptcha > div {
		margin: auto;
	}

	.form-style2 .form-group .submit-button {
		text-align: center;
	}

	.form-style2 .form-group {
    margin-bottom: 12px;
}

}


















/* Theme-buttons */

.button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    position: relative;
    overflow: hidden;
	border-radius: 3px;
}

.button::after,
.button::before {
	position: absolute;
	content: "";
	transition: all .3s ease-in-out;
}

.button > span {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    padding: 8px 20px;
    font-family: var(--heading-family);
    border: 2px solid transparent;
}

.button > span > svg {
    fill: var(--theme-silver);
    margin-left: 5px;
    transition: all .3s ease-in-out;
    position: relative;
    top: -1px;
    transform: rotate(0deg);
}

.button:hover > span > svg {
	transform: rotate(45deg);
	fill: var(--theme-white);
}


.button > span .icon svg {
     transform: rotateY(0deg);
    transition: .9s;
}

.button:hover > span .icon svg {
	transform: rotateY(360deg);
}

.button > span .icon svg {
    width: 20px;
    height: auto;
}

.button-sm > span {
	font-size: 18px
}

.button-rounded span {
	border-radius: 100px;
	-ms-border-radius: 100px;
	-webkit-border-radius: 100px
}

.button-block {
	width: 100%
}









@media  screen and (max-width: 767px) {
	.button > span {
     font-size: 15px;
     padding: 7px 18px;
}

}










.button-theme-blue {
	background-color: var(--theme-black);
}

.button-theme-blue::before {
	background-color: var(--main-theme-blue);
}

.button-theme-blue span {
	color: #fff;
}

.button-theme-blue:hover span {
	color: #fff;
}

.button-theme-blue:hover span .arrow {
	fill: #fff;
}



.button-theme-border {
   background-color: transparent !important;
}

.button-theme-border:hover {
   background-color: var(--main-theme-blue);
}


.button-theme-border span {
    color: #fff;
    border: 2px solid var(--theme-silver) !important;
}

.button-theme-border:hover span {
	color: #fff;
	background-color: var(--main-theme-blue);
}

.button-theme-border:hover span .arrow {
	fill: #fff;
}



.button-theme-silver {
	background-color: var(--main-theme-blue);
}

.button-theme-silver::before {
	background-color: var(--theme-silver);
}

.button-theme-silver span {
	color: var(--theme-black);
}

.button-theme-silver:hover span {
	color: var(--theme-white);
}

.button-theme-silver span svg{
	fill: var(--theme-black);
}

.button-theme-silver:hover span svg {
	fill: var(--theme-white);
}










.filled-slide-up::before {
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%
}

.filled-slide-up:hover::before {
	height: 0%
}

.filled-slide-left::before {
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%
}

.filled-slide-left:hover::before {
	width: 0%
}

.filled-slide-right::before {
	top: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%
}

.filled-slide-right:hover::before {
	width: 0%
}

.opacity::before {
	top: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 1
}

.opacity:hover::before {
	opacity: 0
}










/* Sticky Nav */
.sticky {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	z-index: 999;
}

/* Sidepanel */
.sidepanel {
  	height: 250px; /* Specify a height */
  	width: 0; /* 0 width - change this with JavaScript */
	position: fixed; /* Stay in place */
	z-index: 1; /* Stay on top */
	top: 0;
	left: 0;
	background-color: #111; /* Black*/
	overflow-x: hidden; /* Disable horizontal scroll */
	padding-top: 60px; /* Place content 60px from the top */
	transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
}
.sidepanel a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.sidepanel a:hover {
  	color: #f1f1f1;
}
.sidepanel .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}
.openbtn {
	font-size: 20px;
	cursor: pointer;
	background-color: #111;
	color: white;
	padding: 10px 15px;
	border: none;
}
.openbtn:hover {
  	background-color: #444;
}






/* Home-slider-start */


.home-slider .slide-carousel {
    overflow: hidden;
}
.home-slider .slide-carousel .owl-nav .owl-prev, .home-slider .slide-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 60px;
    align-content: center;
    height: 60px;
    border: 1px solid var(--theme-silver);
    top: 50%;
    margin-top: -25px;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.home-slider .slide-carousel .owl-nav .owl-prev {
    left: 26px;
    margin-left: 0px;
}
.home-slider .slide-carousel .owl-nav .owl-next {
    right: 26px;
    margin-right: 0px;
}
.home-slider .slide-carousel .owl-nav .owl-prev:hover,
.home-slider .slide-carousel .owl-nav .owl-next:hover {
    background: var(--main-theme-blue)	;
}
.home-slider .slide-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
}


.home-slider .slide-carousel .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    display: inline-block;
    margin: 0 4px;
}
.home-slider .slide-carousel .owl-dots .owl-dot.active {
    background: var(--main-theme-blue);
}

.home-slider{
	position: relative;
}

.home-slider .slider-item {
    width: 100%;
    position: relative;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
	position: relative;
}

.home-slider .slider-item .slider-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.home-slider .slider-item .slider-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* @keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(-30px, -30px);
  }
}

.slide-carousel .owl-item.active .slider-bg-image img {
  animation: kenburns 15s ease-in-out forwards;
} */

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(-30px, -30px);
  }
}

.slide-carousel .owl-item.active .slider-bg-image img {
  animation: kenburns 15s ease-in-out infinite alternate;
}

.home-slider .slider-item .slider-bg-image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    content: "";
    bottom: 0;
    background: var(--theme-black);
    opacity: 0.6;
    height: 100%;
    z-index: 1;
}

.home-slider .slider-item .slider-inner {
    width: 100%;
     height: 100vh; 
    align-content: center;
    position: relative;
    z-index: 2;
    padding-top: 5%;
}
.home-slider .slider-item .slider-inner .slider-text .text-animated p {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--main-theme-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--heading-family);
}
.home-slider .slider-item .slider-inner .slider-text .text-animated h1 {
    font-weight: 700;
    font-family: var(--heading-family);
    color: var(--theme-silver);
    font-size: 58px;
    text-transform: capitalize;
    line-height: 1;
}
.home-slider .slider-item .slider-inner .slider-text .text-animated h1 span {
	display: block;
}
.home-slider .slider-item .slider-inner .slider-text .text-animated .sub-text {
    color: var(--theme-white);
    line-height: 2;
    margin-top: 14px;
    display: inline-block;
}

.home-slider .slider-item .slider-inner .slider-text .action-btn {
    margin-top: 30px;
    display: flex;
    gap: 1rem;
}

.home-slider .slider-item .slider-inner .right-img img {
    max-width: 300px;
    height: auto;
    margin-left: auto;
}

.home-slider .slider-item .slider-inner .brand-log-img img {
    max-width: 50px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}




@media screen and (max-width: 1536px) {
	.home-slider .slider-item .slider-inner .slider-text .text-animated h1 {
    font-size: 62px;
}
.home-slider .slider-item .slider-inner {
    padding-top: 7%;
}
}

@media screen and (max-width: 1440px) {
.home-slider .slider-item .slider-inner {
    padding-top: 9%;
}
}


@media screen and (max-width: 1366px) {
	.home-slider .slide-carousel .owl-nav .owl-prev, .home-slider .slide-carousel .owl-nav .owl-next {
    width: 50px;
    align-content: center;
    height: 50px;
}

	.home-slider .slide-carousel .owl-nav .owl-prev svg, .home-slider .slide-carousel .owl-nav .owl-next svg {
    width: 22px;
    height: auto;
}
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
}

@media screen and (max-width: 991.98px) {
	.home-slider .slider-item .slider-inner .slider-text .text-animated h1 {
    font-size: 46px;
}
.home-slider .slider-item .slider-inner {
    height: 550px;
	padding-top: 15%;
}
.home-slider .slider-item .slider-inner .slider-text .text-animated .sub-text {
    margin-top: 0;
}
.home-slider .slider-item .slider-inner .slider-text .action-btn {
    margin-top: 20px;
    display: flex;
    gap: 1rem;
}

.home-slider .slider-item .slider-inner .right-img img {
    max-width: 180px;
}

}

@media  screen and (max-width: 767px) {
	.home-slider .slider-item .slider-inner .slider-text .text-animated h1 {
     font-size: 40px;
}
.home-slider .slider-item .slider-inner .slider-text .text-animated {
	text-align: center;
}
.home-slider .slider-item .slider-inner .right-img{
	display: none;
}
.home-slider .slider-item .slider-inner .right-img img {
    max-width: 100px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.home-slider .slider-item .slider-inner {
    height: 550px;
}
.home-slider .slider-item .slider-inner .slider-text .action-btn {
    justify-content: center;
}
}
















/* smart-product */


.smart-product {
	background-image: url(../images/bg/smart-product-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}


.smart-product::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    content: "";
    bottom: 0;
    background-color: var(--theme-black);
    height: 100%;
    z-index: -1;
}

.smart-product .smart-product-content{
	margin-right: 10%;
}

.smart-product .smart-product-content .text-content {
    margin-top: 14px;
	color: var(--theme-silver);
}

.smart-product .smart-product-content .read-more {
    margin-top: 36px;
}

.smart-product .right-image .aspect-custom {
    padding-bottom: 78%;
    transform: translateX(50px);
}




@media  screen and (max-width: 1280px) {
	.smart-product .right-image .aspect-custom {
    transform: translateX(0px);
}

}

@media  screen and (max-width: 767px) {
.smart-product .smart-product-content .read-more,
.smart-product .smart-product-content .text-content {
    margin-top: 0;
}
}






/* Our Products Home */


.our-products-home .heading .text-content {
    margin-top: 14px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.our-products-home .product-list .product-box {
    background-color: #fff;
    border: 1px solid  #C0C0C0B2;
    border-radius: 3px;
    padding: 10px;
    margin-top: 1.5rem;
	transition: all 0.3s ease-in-out
}

.our-products-home .product-list .product-box:hover{
	border-color: var(--main-theme-blue);
}

.our-products-home .product-list .product-box .box-image {
    background-color: #C0C0C033;
    border-radius: 3px;
    padding: 10px 15px;
    text-align: center;
}

.our-products-home .product-list .product-box .box-image .aspect-custom {
    padding-bottom: 100%;
}

.our-products-home .product-list .product-box .box-image .image-wrap img {
    transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
    object-fit: contain;
}


.our-products-home .product-list .product-box .box-image .image-wrap img {
	transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}


.our-products-home .product-list .product-box:hover .box-image .image-wrap img {
    transform: scale(1.1);
}




.our-products-home .product-list .product-box .box-info {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
	min-height: 38px;
}

.our-products-home .product-list .product-box .box-info a.more-link {
    min-width: 30px;
    height: 30px;
    border-radius: 3px;
    background-color: var(--main-theme-blue);
    text-align: center;
    align-items: center;
    align-content: center;
}

.our-products-home .product-list .product-box .box-info a.more-link span svg{
	fill: #fff;
	transform: rotate(0deg);
	transition: all .3s ease-in-out;
	width: 12px;
	height: auto;
}

.our-products-home .product-list .product-box .box-info .product-title a{
	display: inline-block;
	color: var(--theme-black);
}

.our-products-home .product-list .product-box .box-info .product-title {
    margin-bottom: 0px;
    font-size: 17px;
    line-height: 1.1;
	width: 100%;
}

.our-products-home .product-list .product-box .box-info .product-title a:hover{
	color: var(--main-theme-blue);
}

.our-products-home .product-list .product-box .box-info a.more-link:hover{
	background-color: var(--theme-black);
}

.our-products-home .product-list .product-box .box-info a.more-link:hover span svg{
	fill: #fff;
	transform: rotate(45deg);
}

.our-products-home .big-product-list{
	height: 100%;
} 

.our-products-home .big-product{
	height: calc(100% - 1.5rem);
} 


.our-products-home .big-product .box-image {
    align-content: center;
    height: calc(100% - 58px);
}

/* Extra (6th) product — slide-down reveal animation */
.our-products-home .extra-product-row {
    overflow: hidden;
}
.our-products-home .extra-product-row .product-box {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.our-products-home .extra-product-row.is-visible .product-box {
    opacity: 1;
    transform: translateY(0);
}


@media screen and (max-width: 1680px) {
    .our-products-home .heading-style1 .title {
        font-size: 2.2rem !important;
    }
}
 
@media screen and (max-width: 1600px) {
    .our-products-home .heading-style1 .title {
        font-size: 2rem !important;
    }
}
 
@media screen and (max-width: 1536px) {
    .our-products-home .heading-style1 .title {
        font-size: 1.9rem !important;
    }
}
 
@media screen and (max-width: 1440px) {
    .our-products-home .heading-style1 .title {
        font-size: 1.8rem !important;
    }
    .our-products-home .heading .text-content {
        width: 100%;
    }
}
 
@media screen and (max-width: 1366px) {
    .our-products-home .heading-style1 .title {
        font-size: 1.7rem !important;
    }
 
    /* Featured product — full width on top */
    .our-products-home .our-products-home .row > [class*="col-"] {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
 
    /* Featured center column — full width first */
    .our-products-home .row > .col-lg-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        order: -1 !important;
    }
 
    /* Left & right side columns — 50% each */
    .our-products-home .row > .col-lg-3 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
 
    /* Extra products row — 2 per row */
    .our-products-home .row.justify-content-center > [class*="col-"] {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
 
    .our-products-home .big-product-list {
        height: auto;
    }
 
    .our-products-home .product-list .product-box .box-info {
        min-height: auto;
    }
 
    .our-products-home .product-list .product-box {
        margin-top: 0.8rem;
    }
 
    .our-products-home .product-list .product-box .box-info .product-title {
    font-size: 15px;
	}
 
    .our-products-home .product-list .product-box .box-info a.more-link span svg {
        width: 13px;
    }
}
 
/* Tablet landscape (992px - 1199px) — 2 per row */
@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
 
    .our-products-home .heading-style1 .title {
        font-size: 1.6rem !important;
    }
 
    /* Featured product — full width on top */
    .our-products-home .row > .col-lg-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        order: -1;
    }
 
    /* Left & right columns — 50% each */
    .our-products-home .row > .col-lg-3 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
 
    /* Extra products — 2 per row */
    .our-products-home .row.justify-content-center > [class*="col-"] {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
 
    .our-products-home .big-product-list {
        height: auto;
    }
 
    .our-products-home .product-list .product-box .box-info {
        min-height: auto;
    }
}
 
/* Tablet portrait (768px - 991px) — 2 per row */
@media screen and (max-width: 991.98px) {
 
    .our-products-home .heading-style1 .title {
        font-size: 1.5rem !important;
    }
 
    .our-products-home .heading .text-content {
        width: 100%;
        margin-top: 0;
    }
 
    /* Featured product — full width on top */
    .our-products-home .row > .col-lg-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        order: -1;
    }
 
    /* Left & right columns — 50% each */
    .our-products-home .row > .col-lg-3 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
 
    /* Extra products — 2 per row */
    .our-products-home .row.justify-content-center > [class*="col-"] {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
 
    .our-products-home .big-product-list {
        height: auto;
    }
 
    .our-products-home .product-list .product-box .box-info {
        min-height: auto;
    }
 
    .our-products-home .product-list .product-box {
        margin-top: 0.8rem;
    }
 
    .our-products-home .product-list .product-box .box-info a.more-link {
        min-width: 36px;
        height: 36px;
    }
 
    .our-products-home .product-list .product-box .box-info a.more-link span svg {
        width: 13px;
    }
}
 
/* Mobile (max 767px) — 1 per row */
@media screen and (max-width: 767px) {
 
    .our-products-home .heading-style1 .title {

        font-size: 1.3rem !important;

    }
 
    .our-products-home .heading .text-content {

        margin-top: 0;

        width: 100%;

    }
 
    /* ALL columns — 1 per row full width */

    .our-products-home .row > [class*="col-"] {

        width: 100% !important;

        flex: 0 0 100% !important;

        max-width: 100% !important;

    }
 
    /* Featured product first */

    .our-products-home .row > .col-lg-6 {

        order: -1 !important;

    }
 
    /* Extra products — 1 per row */

    .our-products-home .row.justify-content-center > [class*="col-"] {

        width: 100% !important;

        flex: 0 0 100% !important;

        max-width: 100% !important;

        margin-bottom: 0;

    }
 
    .our-products-home .big-product-list {

        height: auto;

    }
 
    .our-products-home .product-list .product-box .box-info {

        min-height: auto;

    }
 
    .our-products-home .product-list .product-box .box-info .product-title {

        font-size: 20px;

    }
 
    .our-products-home .product-list .product-box {

        margin-top: 0.8rem;

    }
 
    .our-products-home .product-list .product-box .box-info a.more-link {

        min-width: 36px;

        height: 36px;

    }
 
    .our-products-home .product-list .product-box .box-info a.more-link span svg {

        width: 13px;

    }

}
 


















.product-pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    width: fit-content;
    margin: 24px auto 0 auto;
}

.product-pagination .page {
    display: inline-block;
    color: var(--theme-black);
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
}

.product-pagination .page:hover {
    color: var(--main-theme-blue);
}

.product-pagination .page.active {
  color: var(--main-theme-blue);
}

.product-pagination .page-arrow {
    background: #fff;
    border: 1px solid var(--theme-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 30px;
    width: 30px;
    justify-content: center;
}
.product-pagination .page-arrow:hover {
  border-color: var(--main-theme-blue);
}















@media screen and (max-width: 1366px) {
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
}

@media screen and (max-width: 991.98px) {
	.our-products-home .heading .text-content {
    width: 100%;
}
}

@media  screen and (max-width: 767px) {
	.our-products-home .heading .text-content {
    margin-top: 0;
}



.our-products-home .big-product-list .big-product .box-image img  {
    width: 188px;
    height: auto;
}

.our-products-home .product-list .product-box .box-info{
	min-height: auto;
}
.our-products-home .big-product-list {
    height: auto;
}
.our-products-home .product-list .product-box .box-info .product-title {
    font-size: 18px;
}
.our-products-home .product-list .product-box {
     margin-top: 0.8rem;
}
.our-products-home .product-list .product-box .box-info a.more-link {
    min-width: 36px;
    height: 36px;
}
.our-products-home .product-list .product-box .box-info a.more-link span svg {
    width: 13px;
}
}

















/* why-choose-us */

.why-choose-us .choose-us-box {
	position: relative;
	overflow: hidden;
}

.why-choose-us .choose-us-box .icon img{
	transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}

.why-choose-us .choose-us-box:hover .icon img {
    transform: scale(1.05);
}

.why-choose-us .choose-us-box .text-content {
    position: absolute;
    /* background: linear-gradient(90deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.8) 48.67%, #1C1C1C 102.27%); */
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    text-align: right;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}


.why-choose-us .choose-us-box .text-content::before {
    position: absolute;
    background: linear-gradient(90deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.8) 48.67%, #1C1C1C 102.27%);
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    content: "";
    opacity: 1;
    transition: opacity 0.5s ease-in-out; /* 🔥 Smooth fade */
}

.why-choose-us .choose-us-box:hover .text-content::before {
    opacity: 0.6;
}





.why-choose-us .choose-us-box .text-content .top-text,
.why-choose-us .choose-us-box .text-content .buttons{
	z-index: 2;
	position: relative;
}


.why-choose-us .choose-us-box .text-content .top-text h3 {
    color: var(--theme-silver) !important;
    margin-bottom: 0;
	    transition: all 1.5s 
cubic-bezier(0, 0, 0.05, 1);
}

.why-choose-us .choose-us-box .text-content .top-text p {
    color: var(--main-theme-blue);
    font-family: var(--heading-family);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
	    transition: all 1.5s 
cubic-bezier(0, 0, 0.05, 1);
    margin-top: -5px;
}

.why-choose-us .choose-us-box .text-content .buttons{
	text-align: end;
}



.why-choose-us .choose-us-box:hover .text-content .top-text p ,
.why-choose-us .choose-us-box:hover .text-content .top-text h3 {
    color: #fff !important;
}






/* About Us */

.about-us .left-image {
    position: relative;
}
.about-us .right-content {
    margin-left: 27px;
}

.about-us .left-image .aspect-custom{
    padding-bottom: 88%;
}

.about-us .left-image .counter-box {
    position: absolute;
    right: 8px;
    top: -40px;
    border: 6px solid var(--main-theme-blue);
    text-align: center;
    font-family: var(--heading-family);
    color: var(--main-theme-blue);
    width: 246px;
    align-content: center;
    height: 142px;
    border-radius: 3px;
    background: #fff;
}

.about-us .left-image .counter-box .h1 {
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
    line-height: 0.7;
}

.about-us .left-image .counter-box .conter-number {
    position: relative;
    margin-top: 9px;
    user-select: none;
}

.about-us .left-image .counter-box .conter-number .seprater {
    position: absolute;
    top: -22px;
    font-size: 36px;
    margin-left: 1px;
    font-weight: 700;
    color: var(--main-theme-blue);
}

.about-us .left-image .counter-box .conter-info {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.3;
}

.about-us .left-image .counter-box .conter-info p {
    margin-bottom: 0px;
}

.about-us .right-content .about-content .text-content{
    margin-top: 14px;
} 

.about-us .right-content .about-content .read-more {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-us .right-content .about-content .read-more .call-btn .btn-content {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


.about-us .right-content .about-content .read-more .call-btn a {
    display: flex;
    font-family: var(--heading-family);
    color: var(--theme-black);
    font-weight: 700;
    align-items: center;
    gap: 0.8rem;
    font-size: 19px;
}


.about-us .right-content .about-content .read-more .call-btn a:hover{
    color: var(--main-theme-blue);
}

.about-us .right-content .about-content .read-more .call-btn a .icon span img {
    width: 36px;
    height: auto;
}

.about-us .right-content .about-content .read-more .call-btn a .text span {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--main-theme-blue);
    margin-bottom: -4px;
}



@media screen and (max-width: 1600px) {
.about-us .left-image .counter-box .h1 {
    font-size: 61px;
}
}

@media screen and (max-width: 991.98px) {

.about-us .right-content .about-content .read-more {
    margin-top: 13px;
    justify-content: center;
}

.about-us .right-content {
    margin-left: 0;
}
}

@media  screen and (max-width: 767px) {
.about-us .left-image .counter-box {
    right: -13px;
 top: -40px;
width: 182px;
height: 109px;
}
.about-us .left-image .counter-box .conter-info {
    font-size: 16px;
}
.about-us .left-image .counter-box .h1 {
    font-size: 48px;
}

.about-us .right-content{
	margin-top: 30px;
}

.about-us .right-content .about-content .read-more,
.about-us .right-content .about-content .text-content {
    margin-top: 0px;
}

.why-choose-us .container-fluid .row{
	gap: 15px !important;
} 


.about-us .right-content .about-content .read-more .call-btn .btn-content {
    gap: 1rem;
}

.about-us .right-content .about-content .read-more .call-btn a {
    gap: 0.6rem;
    font-size: 14px;
}

.about-us .right-content .about-content .read-more .call-btn a .icon span img {
    width: 26px;
}

.about-us .right-content .about-content .read-more .call-btn a .text span {
    font-size: 14px;
}

.about-us .right-content .about-content .read-more {
    gap: 1rem;
}



}







/* About Us page */

.about-us-page .left-image {
    position: relative;
    margin-right: 10px;
}

.about-us-page .left-image .counter-box {
    position: absolute;
    right: 0;
    bottom: 0;
    border-left: 15px solid #F2F6F7;
    border-top: 15px solid #F2F6F7;
    text-align: center;
    font-family: var(--heading-family);
    color:#fff;
    width: 160px;
    align-content: center;
    height: 160px;
    background-color: var(--theme-silver);
}


.about-us-page .left-image .counter-box .h2 {
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
    line-height: 0.7;
	color:#fff;
}
.about-us-page .left-image .counter-box .conter-number {
    position: relative;
    margin-top: 9px;
    user-select: none;
	
}
.about-us-page .left-image .counter-box .conter-number .seprater {
    position: absolute;
    top: -22px;
    font-size: 36px;
    margin-left: 1px;
    font-weight: 700;
   color:#fff;
}
.about-us-page .left-image .counter-box .conter-info {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1.3;
}
.about-us-page .left-image .counter-box .conter-info p {
	margin-bottom: 0px;
}
.about-us-page .right-content .about-content .text-content{
	margin-top: 14px;
} 
.about-us-page .right-content .about-content .read-more {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 1.7rem;
    flex-wrap: wrap;
}

.about-us-page .right-content .about-content .read-more .call-btn .btn-content {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.about-us-page .right-content .about-content .read-more .call-btn a {
    display: flex;
    font-family: var(--heading-family);
    color: var(--theme-black);
    font-weight: 700;
    align-items: center;
    gap: 0.8rem;
    font-size: 19px;
}
.about-us-page .right-content .about-content .read-more .call-btn a:hover{
	color: var(--main-theme-blue);
}
.about-us-page .right-content .about-content .read-more .call-btn a .icon span img {
	width: 36px;
	height: auto;
}
.about-us-page .right-content .about-content .read-more .call-btn a .text span {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--main-theme-blue);
    margin-bottom: -4px;
}
@media screen and (max-width: 1600px) {
.about-us-page .left-image .counter-box .h1 {
    font-size: 61px;
}
}
@media screen and (max-width: 991.98px) {
.about-us-page .right-content {
    margin-left: 0;
    margin-top: 30px;
}
.about-us-page .right-content .about-content .read-more {
    margin-top: 13px;
    justify-content: center;
}
}
@media  screen and (max-width: 767px) {
.about-us-page .left-image .counter-box {
    width: 130px;
    height: 130px;
}
.about-us-page .left-image .counter-box .conter-info {
    font-size: 16px;
}
.about-us-page .left-image .counter-box .h1 {
    font-size: 48px;
}
.about-us-page .right-content .about-content .read-more,
.about-us-page .right-content .about-content .text-content {
    margin-top: 0px;
}
.about-us-page .left-image .counter-box {
    border-left: 10px solid #F2F6F7;
    border-top: 10px solid #F2F6F7;
}



.about-us-page .right-content .about-content .read-more .call-btn .btn-content {
    gap: 1rem;
}

.about-us-page .right-content .about-content .read-more .call-btn a {
    gap: 0.6rem;
    font-size: 14px;
}

.about-us-page .right-content .about-content .read-more .call-btn a .icon span img {
    width: 26px;
}

.about-us-page .right-content .about-content .read-more .call-btn a .text span {
    font-size: 14px;
}

.about-us-page .right-content .about-content .read-more {
    gap: 1rem;
}



}







/* OUR BENEFITS */


.our-benefits .right-content .about-content .text-content {
    margin-top: 14px;
}

.our-benefits .right-content .about-content .read-more {
    margin-top: 36px;
    display: flex;
    align-items: center;
}

.our-benefits .benefit-counter{
	height: 100%;
}

.our-benefits .benefit-counter .counter-list{
	display: flex;
    height: 100%;
    justify-content: space-between;
}

.our-benefits .benefit-counter .counter-list .counter-item {
    background: #F2F6F7;
    width: 209px;
    height: 209px;
    align-content: center;
    border-radius: 3px;
}


.our-benefits .benefit-counter .counter-list .counter-item-1 ,
.our-benefits .benefit-counter .counter-list .counter-item-3 {
    margin-top: auto;
}



.our-benefits .benefit-counter .counter-list .counter-item .counter-box {
    text-align: center;
    font-family: var(--heading-family);
    color:var(--main-theme-blue);
    width: 100%;
    align-content: center;
    height: 100%
    background-color: var(--theme-silver);
}


.our-benefits .benefit-counter .counter-list .counter-item .counter-box .h2 {
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
    line-height: 0.7;
	color:var(--main-theme-blue);
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .conter-number {
    position: relative;
    user-select: none;
	
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .conter-number .seprater {
    position: absolute;
    top: -22px;
    font-size: 36px;
    margin-left: 1px;
    font-weight: 700;
   color:var(--main-theme-blue);
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .conter-info {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1.3;
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .conter-info p {
	margin-bottom: 0px;
}











@media screen and (max-width: 1366px) {
	.our-benefits .benefit-counter .counter-list .counter-item {
    width: 200px;
    height: 200px;
}
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
	.our-benefits .benefit-counter .counter-list .counter-item {
    width: 166px;
    height: 166px;
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .h2 {
    font-size: 44px;
}
}

@media screen and (max-width: 991.98px) {
		.our-benefits .benefit-counter .counter-list .counter-item {
    width: 166px;
    height: 166px;
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .h2 {
    font-size: 44px;
}
.our-benefits .benefit-counter .counter-list .counter-item-1, .our-benefits .benefit-counter .counter-list .counter-item-3 {
    margin-top: 160px;
}
.our-benefits .benefit-counter .counter-list .counter-item {
    width: 200px;
    height: 200px;
}
}

@media  screen and (max-width: 767px) {
	.our-benefits .benefit-counter {
    margin-top: 20px;
}
.our-benefits .benefit-counter .counter-list .counter-item {
    width: 103px;
    height: 103px;
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .h2 {
    font-size: 30px;
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .conter-number .seprater {
    font-size: 28px;
}
.our-benefits .benefit-counter .counter-list .counter-item .counter-box .conter-info {
    font-size: 13px;
}
.our-benefits .benefit-counter .counter-list .counter-item-1, .our-benefits .benefit-counter .counter-list .counter-item-3 {
    margin-top: 76px;
}
.our-benefits .right-content .about-content .read-more {
    margin-top: 0px;
}
}




















.appointment-section {
    background-color: var(--main-theme-blue);
    padding: 34px 0;
}

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

.appointment-section .appointment-text h4 {
        font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
	color: var(--theme-silver);
}

.appointment-section .appointment-text h4 a {
    display: inline-block;
    color: var(--theme-silver);
    text-decoration: underline;
}

.appointment-section .appointment-text h4 a:hover {
	color: var(--theme-white);
}






@media screen and (max-width: 1600px) {
}

@media screen and (max-width: 1536px) {
	.appointment-section .appointment-text h4 {
    font-size: 36px;
}
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
		.appointment-section .appointment-text h4 {
    font-size: 36px;
}
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
}

@media screen and (max-width: 991.98px) {
	.appointment-section .appointment-text h4 {
    font-size: 28px;
}
}

@media  screen and (max-width: 767px) {
	.appointment-section {
    padding: 24px 0;
}
	.appointment-section .appointment-text h4 {
    font-size: 20px;
}
}









/* Testimonials */

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
	background-image: url('../images/bg/testi-bg-image.jpg');
	background-position: center center;
}

.testimonials-section .heading.text-center {
	margin-bottom: 40px;
}

/* Force Swiper slides to stretch to equal height */
.testimonials-section .testimonials-slider .swiper-wrapper {
	align-items: stretch;
}

.testimonials-section .testimonials-slider .swiper-slide {
	height: auto;
}

/* Card container: vertical flex layout for consistent structure */
.testimonials-section .testimonials-slider .swiper-slide .milestones-box {
	border-radius: 3px;
	border: 1px solid var(--theme-silver);
	background-color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 32px;
}

/* Testimonial text: grows to fill available space, pushing author to bottom */
.testimonials-section .milestones-box .testimonial-content {
	flex-grow: 1;
}

.testimonials-section .milestones-box .testimonial-content p {
	margin-bottom: 0;
	line-height: 1.6;
	color: var(--text-color);
	font-size: var(--font-size-16);
}

/* Author section: always pinned to bottom of card */
.testimonials-section .milestones-box .testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #eee;
}

/* Author image: fixed size circle for visual consistency */
.testimonials-section .milestones-box .testimonial-author-img {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}

.testimonials-section .milestones-box .testimonial-author-img img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}

/* Author name and designation */
.testimonials-section .milestones-box .testimonial-author-info h5 {
	margin-bottom: 2px;
	font-size: var(--h5-heading-font-size);
	font-weight: 600;
	color: var(--text-color);
}

.testimonials-section .milestones-box .testimonial-author-info span {
	font-size: var(--font-size-14);
	color: #777;
}


/* Fix button & pagination positioning */
.testimonials-slider {
    position: relative;
    padding: 0 150px;
}

.testimonials-slider-button-prev,
.testimonials-slider-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    background-color: #0062AB;
    border: 1px solid var(--theme-silver);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--text-color);
}

.testimonials-slider-button-prev {
    left: 83px;
}

.testimonials-slider-button-next {
    right: 83px;
}

.testimonials-slider-button-prev:hover,
.testimonials-slider-button-next:hover {
    background-color: black;
    border-color: var(--theme-color);
    color: #fff;
}

/* Fix pagination to center bottom */
.testimonials-slider-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}















@media screen and (max-width: 1600px) {
}

/* Responsive: slightly smaller padding and font on mid-size screens */
@media screen and (max-width: 1536px) {
	.testimonials-section .testimonials-slider .swiper-slide .milestones-box {
		padding: 24px;
	}
	.testimonials-section .milestones-box .testimonial-content p {
		font-size: 15px;
	}
	.testimonials-section .milestones-box .testimonial-author-info h5 {
		font-size: 16px;
	}
}

/* Responsive: tablet landscape */
@media screen and (max-width: 1199.98px) {
	.testimonials-section .testimonials-slider .swiper-slide .milestones-box {
		padding: 20px;
	}
	.testimonials-section .milestones-box .testimonial-content p {
		font-size: 14px;
	}
}

/* Responsive: tablet portrait */
@media screen and (max-width: 991.98px) {
	.testimonials-section .milestones-box .testimonial-author {
		gap: 12px;
		margin-top: 16px;
		padding-top: 14px;
	}
}

/* Responsive: mobile — center-align the author section */
/* @media screen and (max-width: 767px) {
	.testimonials-section .testimonials-slider .swiper-slide .milestones-box {
		padding: 20px;
		text-align: center;
	}
	.testimonials-section .milestones-box .testimonial-author {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}


    
    .testimonials-slider {
        padding: 0;
    }

    
    .testimonials-section .testimonials-slider .swiper-slide {
        width: 100% !important;
    }
} */


@media screen and (max-width: 767px) {
    .testimonials-section .testimonials-slider .swiper-slide .milestones-box {
        padding: 20px;
        text-align: center;
        min-height: unset;     /* remove any min-height */
        height: auto;          /* let content define height */
    }

    .testimonials-section .milestones-box .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Fix slide width to screen */
    .testimonials-section .testimonials-slider .swiper-slide {
        width: 100% !important;
        height: auto !important;
    }

    /* Limit text so card doesn't go too long */
    .testimonials-section .milestones-box .testimonial-content p {
        font-size: 14px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 10;         /* show max 6 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Remove padding added for nav buttons */
    .testimonials-slider {
        padding: 0 !important;
    }

    /* Move buttons below the card instead of overlapping */
    .testimonials-slider-button-prev,
    .testimonials-slider-button-next {
        top: unset;
        bottom: -4px;
        transform: none;
    }

    .testimonials-slider-button-prev {
        left: calc(50% - 55px);
    }

    .testimonials-slider-button-next {
        right: calc(50% - 55px);
    }

  .testimonials-section .testimonials-slider {
    padding-bottom: 60px !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
}
}	


@media screen and (max-width: 767px) {
.testimonials-section .heading.text-center {
    margin-bottom: 0;
}
}






/* swiper-pagination-style-3 (custom-dot=outer).exclussive*/
.swiper-pagination-style-3 {
  position: relative
}

.swiper-pagination-style-3 .swiper-pagination-bullets {
    text-align: center;
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 100%;
    display: none;
}

.swiper-pagination-style-3 .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bebebe;
  margin: 0 4px;
  opacity: 1;
  transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out
}

.swiper-pagination-style-3 .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ED1C24
}

/* pagination-styles */



/* swiper-navigation-style-2 (black=outer-arrow) */


.swiper-navigation-style-2 {
	position: relative
}

.swiper-navigation-style-2 .swiper-button-next, .swiper-navigation-style-2 .swiper-button-prev {
	width: 50px;
	height: 50px;
	border-radius: 100px;
	transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	background-color: #0062AB;
	transform: translateY(-50%);
}

.swiper-navigation-style-2 .swiper-button-next::after, .swiper-navigation-style-2 .swiper-button-prev::after {
	content: none;
}

.swiper-navigation-style-2 .swiper-button-next span svg, .swiper-navigation-style-2 .swiper-button-prev span svg {
	height: 20px;
	width: auto;
	vertical-align: sub;
}

.swiper-navigation-style-2 .swiper-button-next:hover, .swiper-navigation-style-2 .swiper-button-prev:hover {
	background-color: #000;
}

.swiper-navigation-style-2 .swiper-button-next:hover::after, .swiper-navigation-style-2 .swiper-button-prev:hover::after {
	color: #fff
}

.swiper-navigation-style-2 .swiper-button-next {
	right: -60px;
	margin-top: 2px;
}

.swiper-navigation-style-2 .swiper-button-prev {
	left: -60px;
	margin-top: 2px;
}


/* swiper-navigation-style-3 (black=outer-arrow) */

.history-pagination-arrow {
    position: absolute;
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-top: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-navigation-style-3 .swiper-button-next, .swiper-navigation-style-3 .swiper-button-prev {
	width: 50px;
	height: 50px;
	border-radius: 100px;
	transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	background-color: #ED1C24;
	position: relative;
}

.swiper-navigation-style-3 .swiper-button-next::after, .swiper-navigation-style-3 .swiper-button-prev::after {
	content: none;
}

.swiper-navigation-style-3 .swiper-button-next span svg, .swiper-navigation-style-3 .swiper-button-prev span svg {
	height: 20px;
	width: auto;
	vertical-align: sub;
}

.swiper-navigation-style-3 .swiper-button-next:hover, .swiper-navigation-style-3 .swiper-button-prev:hover {
	background-color: #000;
}

.swiper-navigation-style-3 .swiper-button-next:hover::after, .swiper-navigation-style-3 .swiper-button-prev:hover::after {
	color: #fff
}

.swiper-navigation-style-3 .swiper-button-next {
	right: 0px
}

.swiper-navigation-style-3 .swiper-button-prev {
	left: 0px
}




/* navigation */
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1600px) {
	.swiper-navigation-style-3 .swiper-button-next, .swiper-navigation-style-3 .swiper-button-prev {
    width: 45px;
    height: 45px;
}
}
@media screen and (max-width: 1536px) {
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {

}
@media screen and (max-width: 991.98px) {
	.swiper-navigation-style-3 .swiper-button-next {
	right: -25px
}
.swiper-navigation-style-3 .swiper-button-prev {
	left: -25px
}

}
@media  screen and (max-width: 767px) {
			.swiper-navigation-style-3 .swiper-button-next {
	right: 0px
}
.swiper-navigation-style-3 .swiper-button-prev {
	left: 0px
}
.swiper-navigation-style-3 .swiper-button-next, .swiper-navigation-style-3 .swiper-button-prev {
    width: 40px;
    height: 40px;
}
.swiper-navigation-style-3 .swiper-button-next span svg, .swiper-navigation-style-3 .swiper-button-prev span svg {
    height: 15px;
    margin-bottom: 2px;
}


}
/* navigation */












.certificates .heading-text {
	margin-bottom: 40px;
}

.certificates .slider-fullscreen .swiper-pagination {
	bottom: 20px;
}

.certificates .slider-fullscreen .slide-content .magnific-img{
z-index: 1;
    position: relative;
}

.certificates .slider-fullscreen .slide-content .magnific-img  .image-popup-vertical-fit {
    border: 1px solid #ed1c24;
    border-radius: 16px;
    display: inline-block;
}

.certificates .slider-fullscreen .slide-content .magnific-img  .image-popup-vertical-fit img{
	border-radius: 16px;
}

.certificates .slider-fullscreen .slide-content .magnific-img  .image-popup-vertical-fitimg {
	width: 100%;
}

.certificates .slider-fullscreen .slide-content .slider-text {
    background: #ED1C24;
    display: inline-block;
    padding: 10px 30px;
    padding-top: 24px;
    border-radius: 0 0 16px 16px;
    position: relative;
    top: -14px;
}
.certificates .slider-fullscreen .slide-content .slider-text p {
    color: #fff;
    
    margin-bottom: 0;
}




@media screen and (max-width: 1680px) {
}

@media screen and (max-width: 1600px) {
	.swiper-navigation-style-2 .swiper-button-next, .swiper-navigation-style-2 .swiper-button-prev {
    width: 45px;
    height: 45px;
}
}

@media screen and (max-width: 1536px) {
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
		.swiper-navigation-style-2 .swiper-button-next {
	right: -25px
}

.swiper-navigation-style-2 .swiper-button-prev {
	left: -25px
}
}

@media screen and (max-width: 991.98px) {
	.swiper-navigation-style-2 .swiper-button-next {
	right: -25px
}

.swiper-navigation-style-2 .swiper-button-prev {
	left: -25px
}
.certificates .slider-fullscreen .slide-content .magnific-img  .image-popup-vertical-fit {
    width: 100%;
}
.certificates .slider-fullscreen .slide-content .magnific-img  .image-popup-vertical-fit img {
    width: 100%;
}

}

@media  screen and (max-width: 767px) {
			.swiper-navigation-style-2 .swiper-button-next {
	right: 0px
}

.swiper-navigation-style-2 .swiper-button-prev {
	left: 0px
}
.swiper-navigation-style-2 .swiper-button-next, .swiper-navigation-style-2 .swiper-button-prev {
    width: 40px;
    height: 40px;
}
.swiper-navigation-style-2 .swiper-button-next span svg, .swiper-navigation-style-2 .swiper-button-prev span svg {
    height: 15px;
    margin-bottom: 2px;
}
.certificates .heading-text {
    margin-bottom: 25px;
}
.swiper-navigation-style-2 .swiper-button-next, .swiper-navigation-style-2 .swiper-button-prev {
    display: none;
}
.swiper-pagination-style-3 .swiper-pagination-bullets {
    display: block;
}
}










a.image-popup-vertical-fit {
	cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
	opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
	opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

.mfp-arrow-left:before {
	border-right: none !important;
}

.mfp-arrow-right:before {
	border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
	opacity: 0 !important;
	transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
	opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box;
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #CCC;
}

.mfp-preloader a:hover {
	color: #FFF;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
}

.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #FFF;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #FFF;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}

.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

	/**
       * Remove all paddings around the image on small screen
       */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}

	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}

	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}

	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}

	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}

	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}






/* have-question */


.have-question {
	background-color: #F5F5F5;
}

.have-question .have-question-content {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 100px;
	border-radius: 16px;
	background-image: url(../images/bg/appointment_bg-new.jpg);
}

.have-question .have-question-content .left-content .heading-style1 .sub-title {
	color: #fff;
}

.have-question .have-question-content .left-content .heading-style1 .title {
	margin-top: 10px;
}

.have-question .have-question-content .left-content .text-content p {
	margin: 20px 0;
}

.have-question .have-question-content .left-content .text-content p, .have-question .have-question-content .left-content .heading-style1 .title {
	color: #F3F7F9;
}

.have-question .have-question-content .left-content .action-button {
	margin-top: 30px;
}

.have-question .have-question-content .left-content .action-button .button {
	border: none;
}

.have-question .have-question-content .right-image img {
	margin-left: auto;
	display: block;
	margin-right: auto;
}

.have-question .have-question-content .right-image .mail-text {
	text-align: center;
}

.have-question .have-question-content .right-image .mail-text a {
	color: #F3F7F9;
	font-size: 32px;
	
	margin-top: 10px;
	display: inline-block;
}

.have-question .have-question-content .right-image .mail-text a span svg {
	display: inline-block;
	margin-right: 10px;
}








@media screen and (max-width: 1680px) {
}

@media screen and (max-width: 1600px) {
}

@media screen and (max-width: 1536px) {
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
	.have-question .have-question-content {
    padding: 75px;
}

.have-question .have-question-content .right-image .mail-text a {
    font-size: 28px;
}


}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
	.have-question .have-question-content .right-image .mail-text a {
   font-size: 23px;
}
}

@media screen and (max-width: 991.98px) {
	.have-question .have-question-content .right-image .mail-text a span svg {
    margin-right: 3px;
    height: 15px;
}
}








/* Prodcut-detail-page */


/* .prodcut-detail-page .product-image .box-image {
	text-align: center;
	padding: 40px 0;
	border-radius: 16px;
	position: relative;
	background: rgb(255, 255, 255);
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 69%, rgba(237, 28, 36, 1) 69%);
	border: 1px solid #ED1C24;
} */


.prodcut-detail-page .product-box {
    background-color: #fff;
    border: 1px solid  #C0C0C0B2;
    border-radius: 3px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 12px 2px #0000001A;
}

.prodcut-detail-page .product-box:hover{
	border-color: var(--main-theme-blue);
}

.prodcut-detail-page .product-box .box-image {
    background-color: #C0C0C033;
    border-radius: 3px;
    padding: 30px;
    text-align: center;
}

.prodcut-detail-page .product-box .box-image .aspect-custom{
	    padding-bottom: 83%;
}

.prodcut-detail-page .product-box .box-image .image-wrap img {
    transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
    /* object-fit: contain; */
}


.prodcut-detail-page .product-box .box-image .image-wrap img {
	transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}


.prodcut-detail-page .product-box:hover .box-image .image-wrap img {
    transform: scale(1.1);
}



.prodcut-detail-page .single-product-details .read-more {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 1.7rem;
	flex-wrap: wrap;
}

.prodcut-detail-page .single-product-details .read-more .call-btn .btn-content {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}






.prodcut-detail-page .single-product-details .read-more .call-btn a {
    display: flex;
    font-family: var(--heading-family);
    color: var(--theme-black);
    font-weight: 700;
    align-items: center;
    gap: 0.8rem;
    font-size: 19px;
}

.prodcut-detail-page .single-product-details .read-more .call-btn a:hover{
    color: var(--main-theme-blue);
}

.prodcut-detail-page .single-product-details .read-more .call-btn a .icon span img {
    width: 36px;
    height: auto;
}

.prodcut-detail-page .single-product-details .read-more .call-btn a .text span {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--main-theme-blue);
    margin-bottom: -4px;
}


.prodcut-detail-page .product-content {
	margin-top: 60px;
}

.prodcut-detail-page .product-content .custom-tabs .nav-link {
    border: none;
    border-radius: 0;
    background: #fff;
    color: var(--theme-black);
    font-weight: 700;
    font-size: 18px;
    border-bottom: 1px solid #C0C0C0B2;
    height: 51px;
    padding: 10px 32px;
    margin-right: 2px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-family);
    border-radius: 4px 4px 0 0;
}

.prodcut-detail-page .product-content .custom-tabs .nav-link:not(.active):hover {
     background: var(--main-theme-blue);
  color: #fff;
}

.prodcut-detail-page .product-content .custom-tabs .nav-link.active {
  background: var(--main-theme-blue);
  color: #fff;
  
}
.prodcut-detail-page .product-content .custom-tabs .nav-link:not(.active) {
  background: #fff;
  color: var(--theme-black)
}

.prodcut-detail-page .product-content .tab-content {
    border: 1px solid #C0C0C0B2;
    padding: 10px;
    border-radius: 3px;
    background: #fff;
}


.prodcut-detail-page .product-content .table-bordered {
    text-align: center;
    border-color: #cfcfcf;
    margin-bottom: 20px;
}

.prodcut-detail-page .product-content .table-bordered tbody tr th {
	background-color: #f8f9fa;
	color: #645959;
	height: 100%;
	align-content: center;
        border-width:thin;
	
}

.prodcut-detail-page .product-content .table-bordered tbody tr td {
    background-color: transparent !important;
    color: #555855;
    padding: 8px 8px;
    height: 100%;
    align-content: center;
    border-width:thin;
}


.prodcut-detail-page .product-content .table-bordered tbody tr:nth-child(even) {
	background-color: #f5f5f5;
}

.prodcut-detail-page .product-content .table-bordered>:not(caption)>* {
	border-width: 0px;
}

.prodcut-detail-page .product-content .table-bordered tbody tr:last-child {
	border-width: 1px !important;
	border-top: none;
}

.prodcut-detail-page .single-product-details .product-short-content {
	margin: 2rem 0 4rem 0;
	display: block;
}
@media  screen and (max-width: 767px) {
	.have-question .have-question-content .right-image .mail-text a span svg {
    margin-right: 3px;
    height: 15px;
}
}








/* Prodcut-detail-page */


/* .prodcut-detail-page .product-image .box-image {
	text-align: center;
	padding: 40px 0;
	border-radius: 16px;
	position: relative;
	background: rgb(255, 255, 255);
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 69%, rgba(237, 28, 36, 1) 69%);
	border: 1px solid #ED1C24;
} */


.prodcut-detail-page .product-box {
    background-color: #fff;
    border: 1px solid  #C0C0C0B2;
    border-radius: 3px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 12px 2px #0000001A;
}

.prodcut-detail-page .product-box:hover{
	border-color: var(--main-theme-blue);
}

.prodcut-detail-page .product-box .box-image {
    background-color: #C0C0C033;
    border-radius: 3px;
    padding: 30px;
    text-align: center;
}

.prodcut-detail-page .product-box .box-image .aspect-custom{
	    padding-bottom: 83%;
}

.prodcut-detail-page .product-box .box-image .image-wrap img {
    transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
    /* object-fit: contain; */
}


.prodcut-detail-page .product-box .box-image .image-wrap img {
	transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}


.prodcut-detail-page .product-box:hover .box-image .image-wrap img {
    transform: scale(1.1);
}



.prodcut-detail-page .single-product-details .read-more {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 1.7rem;
	flex-wrap: wrap;
}

.prodcut-detail-page .single-product-details .read-more .call-btn .btn-content {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}






.prodcut-detail-page .single-product-details .read-more .call-btn a {
    display: flex;
    font-family: var(--heading-family);
    color: var(--theme-black);
    font-weight: 700;
    align-items: center;
    gap: 0.8rem;
    font-size: 19px;
}

.prodcut-detail-page .single-product-details .read-more .call-btn a:hover{
    color: var(--main-theme-blue);
}

.prodcut-detail-page .single-product-details .read-more .call-btn a .icon span img {
    width: 36px;
    height: auto;
}

.prodcut-detail-page .single-product-details .read-more .call-btn a .text span {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--main-theme-blue);
    margin-bottom: -4px;
}


.prodcut-detail-page .product-content {
	margin-top: 60px;
}

.prodcut-detail-page .product-content .custom-tabs .nav-link {
    border: none;
    border-radius: 0;
    background: #fff;
    color: var(--theme-black);
    font-weight: 700;
    font-size: 18px;
    border-bottom: 1px solid #C0C0C0B2;
    height: 51px;
    padding: 10px 32px;
    margin-right: 2px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-family);
    border-radius: 4px 4px 0 0;
}

.prodcut-detail-page .product-content .custom-tabs .nav-link:not(.active):hover {
     background: var(--main-theme-blue);
  color: #fff;
}

.prodcut-detail-page .product-content .custom-tabs .nav-link.active {
  background: var(--main-theme-blue);
  color: #fff;
  
}
.prodcut-detail-page .product-content .custom-tabs .nav-link:not(.active) {
  background: #fff;
  color: var(--theme-black)
}

.prodcut-detail-page .product-content .tab-content {
    border: 1px solid #C0C0C0B2;
    padding: 10px;
    border-radius: 3px;
    background: #fff;
}


.prodcut-detail-page .product-content .table-bordered {
    text-align: center;
    border-color: #cfcfcf;
    margin-bottom: 20px;
}

.prodcut-detail-page .product-content .table-bordered tbody tr th {
	background-color: #f8f9fa;
	color: #645959;
	height: 100%;
	align-content: center;
        border-width:thin;
	
}

.prodcut-detail-page .product-content .table-bordered tbody tr td {
    background-color: transparent !important;
    color: #555855;
    padding: 8px 8px;
    height: 100%;
    align-content: center;
    border-width:thin;
}


.prodcut-detail-page .product-content .table-bordered tbody tr:nth-child(even) {
	background-color: #f5f5f5;
}

.prodcut-detail-page .product-content .table-bordered>:not(caption)>* {
	border-width: 0px;
}

.prodcut-detail-page .product-content .table-bordered tbody tr:last-child {
	border-width: 1px !important;
	border-top: none;
}

.prodcut-detail-page .single-product-details .product-short-content {
	margin: 0rem 0 4rem 0;
	display: block;
}

@media screen and (min-width:991.99px) and (max-width:1199.98px) {

	.prodcut-detail-page .product-content .table-bordered tbody tr td {
    min-width: 100px;
}

.prodcut-detail-page .single-product-details .read-more {
     margin-top: 13px;
}


}

@media screen and (max-width:991.98px) {


		.prodcut-detail-page .product-content .table-bordered tbody tr td {
    min-width: 100px;
}
.prodcut-detail-page .product-content {
    margin-top: 30px;
}
.prodcut-detail-page .product-content .custom-tabs .nav-link {
    font-size: 17px;
    height: 46px;
    padding: 10px 27px;
}


}

@media  screen and (max-width:767px) {
	.prodcut-detail-page .single-product-details {
		margin-top: 30px;
	}

	.prodcut-detail-page .single-product-details .product-short-content {
		margin-top: 10px;
	}

	.prodcut-detail-page .single-product-details .read-more {
    margin-top: 0;
	gap: 1rem;;
}

.prodcut-detail-page .single-product-details .read-more .call-btn a {
    gap: 0.8rem;
    font-size: 18px;
}

.prodcut-detail-page .single-product-details .read-more .call-btn a .icon span img {
    width: 30px;
    height: auto;
}

.prodcut-detail-page .product-content .custom-tabs .nav-link {
    font-size: 16px;
    height: 43px;
    padding: 8px 15px;
}


.prodcut-detail-page .single-product-details .read-more .call-btn .btn-content {
    gap: 1rem;
}
.prodcut-detail-page .single-product-details .read-more .call-btn a {
    gap: 0.6rem;
    font-size: 14px;
}
.prodcut-detail-page .single-product-details .read-more .call-btn a .icon span img {
    width: 26px;
}
.prodcut-detail-page .single-product-details .read-more .call-btn a .text span {
    font-size: 14px;
}
.prodcut-detail-page .single-product-details .read-more {
    gap: 1rem;
	justify-content: center;
}


}








/* Video Background */
.slider-video {
	position: relative;
	background-color: #00176e;
	color: #ffffff;
	height: 600px;
	overflow: hidden;
}
.slider-item-video .slider-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.slider-item-video .slider-table {
	z-index: 99;
	position: relative;
}
.slider-item-video .video-foreground,
.slider-item-video .video-foreground iframe {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  	.slider-item-video .video-foreground {
    	height: 300%;
    	top: -100%;
  	}
}
@media (max-aspect-ratio: 16/9) {
  	.slider-item-video .video-foreground {
    	width: 300%;
    	left: -100%;
  	}
}
@media all and (max-width: 600px) {
  	.slider-item-video .vid-info {
    	width: 50%;
    	padding: 0.5rem;
  	}
  	.slider-item-video .vid-info h1 {
    	margin-bottom: 0.2rem;
  	}
}
@media all and (max-width: 500px) {
 	.slider-item-video .vid-info .acronym {
    	display: none;
  	}
}



/* =============================================== */
/* ================= Mobile Menu ================= */
/* =============================================== */

/* .mean-container .mean-bar {
	background-color: #fff;
} */
.mean-container a.meanmenu-reveal span {
	background: #fff;
}
.mean-container a.meanmenu-reveal {
	color: #fff;
}




.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #134050;
	opacity: 0.7;
}

.corona-case {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.corona-case .heading {
	text-align: center;
	margin-bottom: 50px;
}

.corona-case .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.corona-case .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.corona-case .corona-case-item {
	background: #fff;
	padding: 20px;
	color: #3867D6;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	margin-bottom: 25px;
}

.corona-case .corona-case-item .icon {
	font-size: 40px;
	margin-bottom: 20px;
	text-align: center;
}

.corona-case .corona-case-item .icon img {
	width: 80px;
	height: auto;
	text-align: center;
	display: inline-block;
	padding: 10px;
}

.corona-case .corona-case-item h4 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #3867D6;
	font-weight: 700;
}

.corona-case .corona-case-item h5 {
	font-size: 34px;
	font-weight: 700!important;
}

.corona-case .corona-case-item:hover {
	background: #333;
}


.countrywise {
	padding-top: 70px;
	padding-bottom: 80px;
	background: #3867D6;
	overflow: hidden;
}

.countrywise .heading {
	text-align: center;
	margin-bottom: 30px;
}

.countrywise .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-top: 0;
}

.countrywise .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.countrywise .dataTables_length,
.countrywise div.dataTables_wrapper div.dataTables_info {
	display: none;
}

.countrywise div.dataTables_wrapper div.dataTables_filter label {
	color: #fff;
}

.countrywise div.dataTables_wrapper div.dataTables_paginate ul.pagination li {
	display: none;
}

.countrywise table.dataTable.display tbody tr {
	background: transparent;
}

.countrywise table.dataTable.display tbody tr>.sorting_1 {
	background: transparent;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button,
.countrywise .dataTables_wrapper .dataTables_paginate .ellipsis {
	color: #fff!important;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.current {
	color: #333!important;
}

.countrywise .dataTables_wrapper .dataTables_filter input {
	border: 0;
	border-radius: 4px;
	outline: none;
	height: 30px;
	padding-left: 3px;
	padding-right: 3px;
}

.countrywise .dataTables_empty {
	color: #fff!important;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button {
    background: transparent!important;
    color: #fff!important;
    padding: 6px 13px!important;
    border: 1px solid #fff!important;
    font-weight: 700;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #fff!important;
    color: #3867D6!important;
    padding: 6px 13px!important;
    border: 1px solid #fff!important;
    font-weight: 700;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #fff!important;
    color: #3867D6!important;
    padding: 6px 13px!important;
    border: 1px solid #fff!important;
    font-weight: 700;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    color: #bbbbbb!important;
    background: #f9f9f9!important;
    padding: 6px 13px!important;
    border: 1px solid #c9c6f5!important;
}

.countrywise .dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 0;
}


.service {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.service .heading {
	text-align: center;
	margin-bottom: 30px;
}

.service .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.service .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.service .service-item .photo img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.service .service-item .text {
	background: #f2f2f2;
	padding: 20px;
}

.service .service-item .text h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.service .service-item .text h3 a {
	color: #333;
}

.service .service-item .text h3 a:hover {
	color: #3867D6;
}

.service .service-item .text p {
	font-size: 15px;
}

.service .read-more {
	margin-top: 15px;
}

.service .read-more a {
	background: #3867D6;
	border: 0;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.service .read-more a:hover {
	background: #333;
}


.service .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.service .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.service .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #333;
	border: 7px solid #afafaf;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.service .service-item .photo img {
		height: 190px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.service .service-item .photo img {
		height: 217px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.service .service-item .photo img {
		height: 335px;
	}
}

@media only screen and (max-width: 575px) {
	.service .service-item .photo img {
		object-fit: fill;
		height: auto;
	}
}





.project {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.project .heading {
	text-align: center;
	margin-bottom: 30px;
}

.project .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.project .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.project .project-item .photo img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.project .project-item .text {
	background: #f2f2f2;
	padding: 20px;
}

.project .project-item .text h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.project .project-item .text h3 a {
	color: #333;
}

.project .project-item .text h3 a:hover {
	color: #3867D6;
}

.project .project-item .text p {
	font-size: 15px;
}

.project .read-more {
	margin-top: 15px;
}

.project .read-more a {
	background: #3867D6;
	border: 0;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.project .read-more a:hover {
	background: #333;
}


.project .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.project .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.project .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #333;
	border: 7px solid #afafaf;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project .project-item .photo img {
		height: 190px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.project .project-item .photo img {
		height: 217px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.project .project-item .photo img {
		height: 335px;
	}
}

@media only screen and (max-width: 575px) {
	.project .project-item .photo img {
		object-fit: fill;
		height: auto;
	}
}




.testimonial {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
	background: #3867D6;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.testimonial-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #3867D6;
	opacity: 0.8;
}

.testimonial .heading {
	text-align: center;
	margin-bottom: 60px;
}

.testimonial .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-top: 0;
}

.testimonial .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.testimonial .testimonial-item .photo {
	text-align: center;
}

.testimonial .testimonial-item .photo img {
	width: 80px;
	height: 80px;
	display: inline-block;
}

.testimonial .testimonial-item .text {
	padding: 20px 150px;
	text-align: center;
}

.testimonial .testimonial-item .text h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	position: relative;
	margin-top: 40px;
}

.testimonial .testimonial-item .text h3:before {
	content: '';
	position: absolute;
	left: calc(50% - 20px);
	top: -20px;
	width: 40px;
	height: 2px;
	background: #fff;
}

.testimonial .testimonial-item .text h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.testimonial .testimonial-item .text p {
	font-size: 15px;
	color: #fff;
}

.testimonial .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.testimonial .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.testimonial .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #333;
	border: 7px solid #fff;
}

@media only screen and (max-width: 992px) {
	.testimonial .testimonial-item .text {
		padding-left: 10px;
		padding-right: 10px;
	}
}






/* Counter */
.counter-area {
	background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
    padding-bottom: 90px;
}
.bg-counter {
    position: absolute;
    background: #3867D6;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
}
.counter {
    padding: 0;
}

.count-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.count-text {
    font-size: 18px;
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.counter .icon {
	margin-bottom: 20px;
}

.counter .icon .fa-2x {
	width: 70px;
	height: 70px;
	padding-top: 15px;
	text-align: center;
	background: transparent;
	border: 3px solid #fff;
	border-radius: 50%;
    margin: 0 auto;
    float: none;
    display: table;
    color: #fff;
    font-size: 34px;
}




/* Pricing */
.pricing {
	padding-top: 70px;
	padding-bottom: 80px;
	background: #f1f5f9;
	overflow: hidden;
}

.pricing .heading {
	text-align: center;
	margin-bottom: 30px;
}

.pricing .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.pricing .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.pricing .card {
	border: none;
	border-radius: 1rem;
	transition: all 0.2s;
	box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing hr {
  	margin: 1.5rem 0;
}

.pricing .card-title {
	margin: 0.5rem 0;
	font-size: 0.9rem;
	letter-spacing: .1rem;
	font-weight: bold;
}

.pricing .card-price {
  	font-size: 3rem;
  	margin: 0;
}

.pricing .card-price .period {
  	font-size: 12px;
}

.pricing ul li {
  	margin-bottom: 16px;
}

.pricing .text-muted {
  	opacity: 0.7;
}

.pricing .btn {
	background: #3867D6;
	font-size: 20px;
	border-radius: 5rem;
	font-weight: 700;
	padding: 10px;
	border: 0;
}
.pricing .btn:hover {
	background: #333;
}

/* Hover Effects on Card */
@media (min-width: 992px) {
  	.pricing .card:hover {
		margin-top: -.25rem;
		margin-bottom: .25rem;
		box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
  	}
  	.pricing .card:hover .btn {
    	opacity: 1;
  	}
}




/* Call To Action */
.cta {
	background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    padding-top: 70px;
    padding-bottom: 80px;
}
.cta .overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3867D6;
    opacity: 0.8;
}
.cta .cta-box h2 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
}
.cta .cta-box p {
	color: #fff;
	font-size: 20px;
}
.cta .cta-box .btn {
    border-radius: 30px;
    padding: 10px 40px;
    background: #333;
    font-size: 20px;
    border: 0;
    margin-top: 30px;
}


/* Blog */


.blog-area .heading .text-content {
    width: 46%;
    margin: auto;
    display: block;
    margin-top: 10px;
}

.blog-area .blog-item .blog-image{
	position: relative;
	overflow: hidden;
}

.blog-area .blog-item .blog-image img{
	transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}

.blog-area .blog-item:hover .blog-image img {
    transform: scale(1.1);
}


.blog-area .blog-item .blog-image .aspect-custom{
    padding-bottom: 66%;
}

.blog-area .blog-item {
    border: 1px solid #C0C0C0B2;
    border-radius: 5px;
    overflow: hidden;
	margin-top: 40px;;
}

.blog-area .blog-item .blog-text {
    padding: 28px 28px 13px 28px;
	position: relative;
}

.blog-area .blog-item .blog-text p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}


.blog-area .blog-item .blog-text h4 a {
    color: var(--theme-black);
    height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-area .blog-item .blog-text h4 a:hover {
    color: var(--main-theme-blue);
}

.blog-area .blog-item .read-more {
    border-top: 1px solid #C0C0C0B2;
    padding: 12px 0;
    text-align: center;
}

.blog-area .blog-item .read-more a{
	    position: relative;
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    font-family: var(--heading-family);
    border: 2px solid transparent;
	color: var(--main-theme-blue);
}

.blog-area .blog-item .read-more a:hover{
	color: var(--theme-black);
}



.blog-area .blog-item .blog-text .date-box {
    text-align: center;
    position: absolute;
    top: -40px;
    right: 11px;
    background: var(--main-theme-blue);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.blog-area .blog-item .blog-text .date-box span {
    display: block;
    text-align: center;
    padding: 0px 10px;
}

.blog-area .blog-item .blog-text .date-box .date {
    font-size: 29px;
    font-weight: 700;
    font-family: var(--heading-family);
    background: var(--main-theme-blue);
    color: var(--theme-silver);
    line-height: 1.5;
    margin-bottom: -4px;
}


.blog-area .blog-item .blog-text .date-box .month {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    font-family: var(--heading-family);
    color: var(--theme-silver);
    background: var(--theme-black);
    text-transform: uppercase;
}






.blog-area .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.blog-area .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #000;
    display: inline-block;
    margin: 0 4px;
}
.blog-area .owl-dots .owl-dot.active {
	 background: var(--main-theme-blue);
}



.blog-carousel .owl-nav .owl-next, .blog-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel .owl-nav .owl-next {
    right: -60px;
}

.blog-carousel .owl-nav .owl-prev {
    left: -60px;
}


.blog-carousel .owl-nav .owl-next, .blog-carousel .owl-nav .owl-prev {
    border: 1px solid var(--theme-silver);
    background-color: transparent;
	border-radius: 3px;
    width: 32px;
    height: 32px;
    transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}

.blog-carousel .owl-nav .owl-next:hover, .blog-carousel .owl-nav .owl-prev:hover{
	background-color: var(--main-theme-blue);
}




.blog-carousel .owl-nav .owl-next svg, .blog-carousel .owl-nav .owl-prev svg {
	fill: var(--theme-silver);
	transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
}

.blog-carousel .owl-nav .owl-next:hover svg, .blog-carousel .owl-nav .owl-prev:hover svg {
	fill: #fff;
}

.blog-list-page   {
    padding-top: 50px !important;
}

.blog-list-page  .blog-item {
    margin-top: 30px !important;
}

@media screen and (max-width: 1366px) {
.blog-list-page   {
    padding-top: 30px !important;
}
}


@media screen and (max-width: 991.98px) {
	.blog-area .heading .text-content {
    width: 100%;
}
.blog-area .blog-item .blog-text h4 a {
    height: 54px;
}

.blog-list-page   {
    padding-top: 10px !important;
}

}

@media  screen and (max-width: 767px) {
	.blog-list-page   {
    padding-top: 0px !important;
}
		.blog-area .heading .text-content {
    width: 100%;
	margin-top: 0;
}
.blog-area .blog-item {
    margin-top: 30px;
}
.blog-area .blog-item .blog-text {
    padding: 28px 25px 13px 24px;
}
.blog-area .blog-item .read-more {
    padding: 6px 0;
}
.blog-area .blog-item .blog-text h4 a {
    height: auto;
}
}



/* Partner */
.partner {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.partner .heading {
	text-align: center;
	margin-bottom: 30px;
}

.partner .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.partner .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
	margin-bottom: 15px;
}

.partner .partner-carousel {
	position: relative;
}

.partner-carousel .inner {
	padding-left: 20px;
	padding-right: 20px;
}


/* Scroll to Top */
.scroll-top {
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 52px;
    bottom: 46px;
    right: 20px;
    background: var(--main-theme-blue);
    color: #fff;
    opacity: 0.7;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    border-radius: 50px;
    transition: all 0.3s;
	border: 1px solid var(--theme-silver)	;
}

.scroll-top .fa-angle-up {
    position: relative;
    top: -3px;
}

.scroll-top:hover {
	opacity: 1;
	color: #fff;
	background: var(--theme-black);
}


.whatsapp-btn-fixed {
    cursor: pointer;
    text-align: center;
    align-content: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 110px;
    right: 20px;
    background: #42db87;
    color: #fff;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    border-radius: 50px;
    transition: all 0.3s;
    border: 1px solid var(--theme-silver);
    animation: pulsing 1.25s infinite 
cubic-bezier(0.66, 0, 0, 1);
}

.whatsapp-btn-fixed svg {
    width: 23px;
    height: auto;
    fill: #fff;
    position: relative;
    top: -2px;
}

.call-btn-fixed {
    cursor: pointer;
    text-align: center;
    align-content: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 173px;
    right: 20px;
    background: var(--main-theme-blue);
    color: #fff;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    border-radius: 50px;
    transition: all 0.3s;
    border: 1px solid var(--theme-silver);

}

.call-btn-fixed svg {
    width: 23px;
    height: auto;
    fill: #fff;
    position: relative;
    top: -2px;
}

@keyframes pulsing {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 192, 192, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(192, 192, 192, 0);
    }
}



@media  screen and (max-width: 767px) {
.whatsapp-btn-fixed, .call-btn-fixed, .scroll-top {
    width: 44px;
    height: 44px;
    right: 12px;
}
.scroll-top .fa-angle-up {
    position: relative;
    top: -6px;
}

.whatsapp-btn-fixed{
	bottom: 100px;
}

.call-btn-fixed {
     bottom: 154px;
}

.call-btn-fixed svg {
    width: 19px;
    top: -1px;
}


}























/* Footer */

.footer-area .footer-top {
    align-content: center;
    padding: 80px 0;
    padding-bottom: 0px;
    margin-bottom: -61px;
}

.footer-area .footer-top .right-form .submit-button span{
	height: 50px;
}

.footer-area .footer-middle {
    position: relative;
    margin-top: 80px;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap {
    display: flex;
	flex-wrap: wrap ;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box {
    flex: 1 0 auto;
	margin-left: -3px;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form {
    background-color: #D9D9D9;
    clip-path: polygon(0 0%, 100% 0, 94.6% 100%, 0% 100%);
    padding: 35px;
    display: flex;
    gap: 1rem;
    border-radius: 3px;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .newsletter-subscribe-bar {
    display: flex;
    align-items: center;
    min-width: 370px;
    margin: 0 auto;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .subscribe-form-bar {
  display: flex;
  width: 100%;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .subscribe-input-bar {
    flex: 1;
    border: none;
    background: var(--theme-silver);
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #222;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 100%;
    padding: 7px 15px;
    border-radius: 3px;
    box-shadow: none;
    outline: none;
    height: 50px;
}

.subscribe-input-bar::placeholder {
  color: var(--theme-black) !important;
  opacity: 1;
}




.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .subscribe-btn-bar {
    background: var(--main-theme-blue);
    border: none;
    padding: 0 1.7rem;
    display: flex;
    align-items: center;
    margin-left: -30px;
    justify-content: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.2s;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .subscribe-btn-bar:hover {
  background: var(--theme-black);
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .subscribe-btn-bar svg {
    display: block;
    fill: var(--theme-silver);
    transition: all 0.3s ease-in-out;
    width: 17px;
    height: auto;
    left: 5px;
    position: relative;
    transform: rotate(0deg);
}
.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .subscribe-btn-bar:hover svg {
  display: block;
  fill: var(--theme-white);
  transform: rotate(45deg);
}



.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box {
    width: 330px;
    margin-left: -2%;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box .newsletter {
    background-image: url("../images/bg/right-icon-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: 100%;
    align-content: center;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box .newsletter .right-social-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box .newsletter .right-social-link ul li a svg {
    display: flex;
    align-items: center;
    justify-content: center;
}





.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box .newsletter .right-social-link ul li a svg{
	fill: var(--theme-silver);
	transform: rotateY(0deg);
    transition: .9s;
	width: 31px;
	height: auto;
}
.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box .newsletter .right-social-link ul li a:hover svg{
	fill: var(--theme-white);
	transform: rotateY(360deg);
	
}

















.footer-area .footer-link-area {
    background-color: var(--main-theme-blue);
    padding: 70px 0;
    padding-top: 110px;
}

.footer-area .footer-link-area .footer-content .content-wrap {
    display: flex;
    gap: 0.8rem;
}

.footer-area .footer-link-area .footer-content .content-wrap .icon {
    min-width: 52px;
    height: auto;
}

.footer-area .footer-link-area .footer-content .content-wrap .icon img {
    width: 52px;
    height: auto;
}



.footer-area .footer-link-area .footer-item {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}


.footer-area .footer-link-area  .footer-item-heading {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--theme-silver);
    position: relative;
    text-transform: uppercase;
}
.footer-area .footer-link-area  .footer-item-heading span svg {
    position: relative;
    top: -1px;
    margin-right: 5px;
}

.footer-area .footer-link-area .footer-item .footer-links ul {
    padding-left: 0.8rem;
}

.footer-area .footer-link-area .footer-item .footer-links ul li {
	margin-top: 2px;
	list-style-type: none;
	padding-left: 0 !important;
	background: none !important;
}

.footer-area .footer-link-area .footer-item .footer-links ul li a {
    color: var(--theme-silver);
    display: inline-flex;
    column-gap: 5px;
}

.footer-area .footer-link-area .footer-item .footer-links ul li a:hover {
	color: var(--theme-white);
}

.footer-area .footer-link-area .footer-item .footer-links ul li a svg {
	width: 10px;
	height: auto;
	font-weight: 700;
	position: relative;
	top: -1px;
	margin-right: 6px;
	transition: all 0.3s ease-in-out;
}

.footer-area .footer-link-area .footer-mail ul li a {
    color: var(--theme-silver);
    transition: all 0.3s ease-in-out;
    display: flex;
    margin-top: 8px;
    gap: 0.3rem;
}

.footer-area .footer-link-area .footer-mail ul li a span svg{
	fill: var(--theme-silver);
	transform: rotateY(0deg);
    transition: .9s;
}

.footer-area .footer-link-area .footer-mail ul li a:hover span svg{
	fill: var(--theme-white	);
	transform: rotateY(360deg);
}

.footer-area .footer-link-area .footer-mail ul li a:hover {
    color: var(--theme-white);
}

.footer-area .footer-link-area .footer-mail ul li a span {
    display: inline-block;
    margin-right: 7px;
    top: -3px;
    position: relative;
}

.footer-area .footer-link-area .footer-mail ul .address a:hover{
	color: var(--theme-silver);
}

.footer-area  .copyright-area {
    padding: 16px 0;
    background-color: #D9D9D9;
}

.footer-area  .copyright-area .copyright p {
	color: #000000;
	margin-bottom: 0px;
	text-align: center;
}

.footer-area  .copyright-area .privacy-list ul {
    display: flex;
    justify-content: end;
}
.footer-area  .copyright-area .privacy-list ul li a {
	color: var(--theme-black);
	position: relative;
	display: inline-block;
}
.footer-area  .copyright-area .privacy-list ul li a:hover {
	color: var(--main-theme-blue);
}

.footer-area  .copyright-area .privacy-list ul li:not(:last-child) a {
    margin-right: 12px;
    padding-right: 15px;
}


.footer-area  .copyright-area .privacy-list ul li:not(:last-child) a::after {
    
    border-right: 1px solid #000;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	height: 12px;
}




@media screen and (max-width: 1680px) {

}

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

}

@media screen and (max-width: 1536px) {

}

@media screen and (max-width: 1440px) {

}

@media screen and (max-width: 1366px) {

}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
	.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box {
    width: 260px;

}
.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .newsletter-subscribe-bar {
    min-width: 288px;
}

}





@media screen and (max-width: 1024px) {

.footer-area .footer-heading .heading-style1 .title  {
    font-size: 2.5rem;
}

}




@media screen and (max-width: 991.98px) {

.footer-area .footer-heading .heading-style1 .title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}



.footer-area .footer-top {
    padding: 60px 0;
    padding-bottom: 0;
}

.footer-area .footer-middle {
    margin-top: 60px;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form {
    flex-wrap: wrap;
    flex-direction: column;
	    padding: 15px 35px;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .left-heading h4 br {
    display: none;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .newsletter-subscribe-bar {
    min-width: max-content;
    margin-right: 20px;
    margin-left: 0px;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box {
    width: 198px;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box .newsletter .right-social-link ul li a svg {
    width: 22px;
}

.footer-area .footer-link-area  .footer-item-heading {
    font-size: 17px;
}

.footer-area .footer-link-area .footer-content {
    margin-bottom: 20px;
}

.footer-area .footer-link-area {
    padding: 50px 0;
    padding-top: 100px;
}

}

@media  screen and (max-width: 767px) {

.footer-area .footer-heading .heading-style1 .title {
    font-size: 1.7rem;
}

.powered-by {
        width: 100%;
        text-align: center;
        margin-top: 5px; /* optional spacing */
    }

.mobile-two-column {
	display: flex;
        flex-wrap: wrap;
}
.mobile-two-column li {
    width: 50%;
}


	.footer-area .footer-top .right-form .form-style1 .submit-btn {
   text-align: center;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .left-heading{
	text-align: center;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .left-heading h4 {
    font-size: 18px;
}
.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form {
    padding: 15px 15px;
    clip-path: none;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .subscribe-form-bar {
    width: 100%;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box {
    width: 100%;
    clip-path: none;
    margin-left: 0;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .right-box .newsletter {

    padding: 30px 0;
    margin-top: 10px;
}

.footer-area .footer-top {
    padding: 30px 0;
}

.footer-area .footer-middle {
    margin-top: 30px;
}
.footer-area .footer-link-area {
    padding: 30px 0;
    padding-top: 82px;
}

.footer-area .footer-top .right-form .submit-button span {
    height: 44px;
}

.footer-area .footer-link-area .footer-content .content-wrap .icon {
    min-width: 36px;
    position: relative;
    top: 8px;
}

.footer-area .footer-link-area .footer-item {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-direction: column;
}


.footer-area .footer-link-area .footer-mail{
	margin-top: 20px;
}

.footer-area .footer-middle .newsletter-area-content .box-wrap .left-box .newsletter-form .newsletter-subscribe-bar {
    margin-right: 0;
}

.footer-area  .copyright-area {
    padding: 12px 0;
}

.footer-area  .copyright-area .privacy-list ul {
    justify-content: center;
}

.footer-area  .copyright-area .privacy-list ul li a {
    font-size: 14px;
}

}

/* Page Banner */
.page-banner {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	height: 450px;
	align-content: end;
	position: relative;
}

.page-banner::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: var(--theme-black);
	opacity: 0.7;
	z-index: 1;
}


.page-banner .text {
    text-align: center;
    padding-bottom: 7%;
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
}

.page-banner .bredcrumb {
    margin-left: auto;
}

.page-banner .text .heading{
    text-align: left;
}

.page-banner .text .heading p {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--main-theme-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--heading-family);
    margin-bottom: 6px;
}



.page-banner .text .breadcrumb-nav {
	margin-top: 7px;
}

.page-banner .text h1 {
    color: var(--theme-silver);
    margin: 0 !important;
}

.page-banner .breadcrumb {
	background-color: transparent;
	text-align: center;
	margin-bottom: 0;
	align-items: center;
}

.page-banner .breadcrumb .breadcrumb-item+.breadcrumb-item {
	padding-left: 0px !important;
}

.page-banner .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: none !important;
}

.page-banner .breadcrumb .breadcrumb-item svg {
	width: 13px;
	margin: 0 10px;
}

.page-banner .breadcrumb .breadcrumb-item {
	color: var(--main-theme-blue);
	font-weight: 700;
	font-family: var(--heading-family);
	position: relative;
}

.page-banner .breadcrumb li.breadcrumb-seprater {
    display: inline-block;
    height: 14px;
    width: 1px;
    content: "";
    background-color: #fff;
    align-content: center;
    padding: 0;
    margin: 0 9px;
}



.page-banner .breadcrumb-item a {
	color: var(--theme-silver);
}

.page-banner .breadcrumb-item a:hover {
	color: var(--main-theme-blue);
}

.page-banner .breadcrumb-item::before {
	color: #fff !important;
}


@media screen and (max-width:1600px) {
	.page-banner .text h1 {
		font-size: 44px;
	}

}

@media screen and (max-width:1536px) {
	.page-banner {
		height: 400px;
	}

}

@media screen and (max-width:1440px) {
	.page-banner .text h1 {
		font-size: 44px;
	}

}

@media screen and (min-width:991.99px) and (max-width:1199.98px) {
	.page-banner .text {
    justify-content: start;
    align-items: end;
    flex-wrap: wrap;
    flex-direction: column;
}

.page-banner .text .heading {
    text-align: left;
    margin-right: auto;
}

.page-banner .bredcrumb {
    margin-left: 0px;
    margin-right: auto;
}


}

@media screen and (max-width:991.98px) {
	.page-banner .text {
		justify-content: start;
		align-items: end;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.page-banner .text .heading {
		text-align: left;
		margin-right: auto;
	}

	.page-banner .bredcrumb {
		margin-left: 0px;
		margin-right: auto;
	}
	.page-banner {
		height: 350px;
	}

	.page-banner .text h1 {
		font-size: 45px;
	}


}

@media  screen and (max-width:767px) {
	.page-banner .text {
		padding-bottom: 2%;
	}
	.page-banner {
		height: 250px;
	}

	.page-banner .text h1 {
		font-size: 35px;
	}

	.page-banner .text h1 {
		/* width: 300px; */
		font-size: 27px;
	}

	.page-banner .breadcrumb-item.active {
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 181px;
		padding: 0;
		overflow: hidden;
	}

}





/* about-our-company */
.about-our-company .left-content .experience-counter .counter-list li {
	background: #F5F5F5;
	margin-top: 25px;
}

.about-our-company .left-content .experience-counter .counter-list li:first-child > .counter-box {
	padding-left: 0 !important;
}

.about-our-company .left-content .experience-counter .counter-list li:nth-child(2) > .counter-box {
	margin-left: 74px;
}

.about-our-company .left-content .experience-counter .counter-list li:nth-child(3) > .counter-box {
	margin-left: 187px;
}

.about-our-company .left-content .experience-counter .counter-list li .counter-box {
	display: flex;
	column-gap: 30px;
	background: #fff;
	width: max-content;
	padding: 0 30px;
}

.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-number span {
	color: #000;
	font-size: 62px;
	
	margin-bottom: -15px;
	display: inline-block;
	line-height: 1;
}

.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-info p {
	text-transform: uppercase;
	color: #ED1C24;
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1;
	margin-top: 6px;
}

.about-our-company .right-image {
	height: 100%;
	align-content: end;
}

@media screen and (max-width:1680px) {
}

@media screen and (max-width:1600px) {
	.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-number span {
		font-size: 53px;
	}

	.about-our-company .left-content .experience-counter .counter-list .counter-box .icon svg {
		width: 75px;
		height: auto;
	}

}

@media screen and (max-width:1536px) {
}

@media screen and (max-width:1440px) {
}

@media screen and (max-width:1366px) {
	.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-number span {
		font-size: 45px;
	}

}

@media screen and (min-width:991.99px) and (max-width:1199.98px) {
	.about-our-company .left-content .experience-counter .counter-list li .counter-box {
		column-gap: 15px;
		padding: 0 15px;
	}

	.about-our-company .left-content .experience-counter .counter-list .counter-box .icon svg {
		width: 60px;
	}

	.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-number span {
		font-size: 36px;
	}

	.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-info p {
		font-size: 16px;
	}

}

@media screen and (max-width:991.98px) {
	.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-number span {
		font-size: 35px;
	}

	.about-our-company .right-image {
		margin-top: 20px;
		text-align: center;
	}

	.about-our-company .left-content .experience-counter .counter-list li .counter-box {
		column-gap: 20px;
	}

	.about-our-company .left-content .experience-counter .counter-list .counter-box .icon svg {
		width: 60px;
	}

}

@media  screen and (max-width:767px) {
	.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-number span {
		font-size: 32px;
	}

	.about-our-company .left-content .experience-counter .counter-list li .counter-box .conter-info p {
		font-size: 15px;
	}

	.about-our-company .left-content .experience-counter .counter-list li {
		margin-top: 20px;
	}

	.about-our-company .left-content .experience-counter .counter-list li .counter-box {
		column-gap: 20px;
		padding: 0 18px;
	}

	.about-our-company .left-content .experience-counter .counter-list .counter-box .icon svg {
		width: 52px;
	}

	.about-our-company .left-content .experience-counter .counter-list li:nth-child(3) > .counter-box {
		margin-left: 78px;
	}

	.about-our-company .left-content .experience-counter .counter-list li:nth-child(2) > .counter-box {
		margin-left: 30px;
	}

}
























/* history */


.history {
	padding-bottom: 200px !important;
}

.history .history-slider {
	position: relative;
	margin-top: 60px;
	padding: 0 15px;
}

.history .history-slider::before {
	position: absolute;
	left: 0;
	top: 50%;
	content: "";
	border-bottom: 2px solid #000000;
	width: 100%;
	transform: translateY(-50%);
	opacity: .3;
}

.history .history-slider .swiper-slide {
	transition: all 0.3s ease-in-out !important;
}

.history .history-slider .swiper-slide .milestones-box {
	flex-direction: column;
	display: flex;
	transition: all 0.3s ease-in-out !important;
	position: relative;
}

.history .history-slider .swiper-slide .milestones-box::after {
	position: absolute;
	left: 31px;
	top: 50%;
	content: "";
	background-color: #ED1C24;
	border-radius: 90%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
}

.history .history-slider .swiper-slide .milestones-box::before {
	position: absolute;
	left: 39px;
	top: 1px;
	content: "";
	background-color: #000;
	width: 1px;
	height: 72%;
}

/* second-slider */
.history .history-slider .swiper-slide:nth-child(odd) .milestones-box::before {
	top: 27.5%;
	height: 71%;
}

.history .history-slider .swiper-slide:nth-child(odd) .milestones-box .milestones-image::before {
	top: 109%;
}

.history .history-slider .swiper-slide:nth-child(odd) .milestones-box .milestones-info::before {
	top: 91%;
}

/* (first-slid) */
.history .history-slider .swiper-slide:nth-child(even) .milestones-box .slide-info {
	display: flex;
	flex-direction: column-reverse;
	justify-content: start;
}

.history .history-slider .swiper-slide .milestones-box .milestones-image, .history .history-slider .swiper-slide .milestones-box .milestones-info {
	height: 100px;
	margin-bottom: 100px;
	position: relative;
}

.history .history-slider .swiper-slide .milestones-box .milestones-info {
	display: flex;
	position: relative;
	column-gap: 40px;
}

.history .history-slider .swiper-slide .milestones-box .milestones-info .slide-info {
	height: 100%;
	align-content: end;
}

.history .history-slider .swiper-slide .milestones-box .milestones-info::before {
	position: absolute;
	left: 36px;
	top: 4px;
	content: "";
	background-color: #000;
	border-radius: 90%;
	width: 7px;
	height: 7px;
	transform: translateY(-50%);
}

.history .history-slider .swiper-slide .milestones-box .milestones-info h5 {
	color: #000000;
	font-size: 20px;
	margin-bottom: 0;
}

.history .history-slider .swiper-slide .milestones-box .milestones-info p {
	margin-bottom: 0px;
}

.history .history-slider .swiper-slide .milestones-box .milestones-info .slide-number .slide-count {
	color: #000000;
	font-size: 20px;
	
	margin-top: -2px;
	display: inline-block;
}

.history .history-slider .swiper-slide .milestones-box .milestones-image {
	position: relative;
	align-content: end;
}

.history .history-slider .swiper-slide .milestones-box .milestones-image::before {
	position: absolute;
	left: 39px;
	top: 89%;
	content: "";
	background-color: #000;
	width: 25px;
	height: 1px;
}

.history .history-slider .swiper-slide:nth-child(even) .milestones-box {
	flex-direction: column-reverse;
	display: flex;
	transition: all 0.3s ease-in-out !important;
}

.history .history-slider .milestones-box .milestones-image img {
	margin-left: 63px;
}

.history .history-slider .swiper-slide:nth-child(even) .milestones-box .milestones-image img {
	margin-bottom: -20px;
}

.history .history-slider .swiper-slide:nth-child(odd) .milestones-box .milestones-image img {
	top: 40px !important;
	position: relative;
}

.history .history-slider .swiper-slide:nth-child(odd) .milestones-box .milestones-info {
	margin-bottom: 0px;
	margin-top: 100px;
	align-content: flex-start;
}

@media screen and (max-width:1680px) {
	.history .history-slider .swiper-slide .milestones-box .milestones-image::before {
	}

}


@media screen and (max-width:1366px) {
	.history {
		padding-bottom: 180px !important;
	}

}

@media screen and (min-width:991.99px) and (max-width:1199.98px) {
}

@media screen and (max-width:991.98px) {
	.history {
		padding-bottom: 160px !important;
	}

}

@media  screen and (max-width:767px) {
	.history {
		padding-bottom: 130px !important;
	}

	.history .history-slider {
		position: relative;
		margin-top: 30px;
		padding: 0 15px;
	}

	.history .history-slider .swiper-slide:first-child {
		display: none;
	}

	.history .history-slider .swiper-slide:nth-child(odd) .milestones-box .milestones-info .slide-number .slide-count {
		margin-top: 26px;
	}

	.history-pagination-arrow {
		margin-top: 60px;
	}

	.history .heading-style1{
		margin: 0 15px;
	}

}





















/* Special */
.special {
	background: rgb(245, 245, 245);
	background: linear-gradient(0deg, rgba(245, 245, 245, 1) 50%, rgba(255, 255, 255, 1) 50%);
}

.special .video-section {
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 682px;
	background-image: url(../images/youtube-bg.jpg);
	border-radius: 8px;
}

.special .video-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 32px;
	height: 44px;
	border-radius: 50%;
	padding: 18px 20px 18px 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.special .video-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #ED1C24;
	border-radius: 50%;
	animation: video-pop 1500ms ease-out infinite;
}

.special .video-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #ED1C24;
	border-radius: 50%;
	transition: all 200ms;
}

.special .video-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 27px solid #fff;
	border-top: 17px solid transparent;
	border-bottom: 17px solid transparent;
}

@keyframes video-pop {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}

}









@media screen and (max-width: 1366px) {
	.special .video-section {
   height: 586px;
}
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
	.special .video-section {
    height: 492px;
}
}

@media screen and (max-width: 991.98px) {
	.special .video-section {
    height: 366px;
}
.special .video-button:after ,
.special .video-button:before {
   width: 60px;
    height: 60px;
}

.special .video-button span {
   border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}
}

@media  screen and (max-width: 767px) {
	.special .video-section {
    height: 185px;
}
.special .video-button {
     padding: 18px 20px 18px 26px;
}
.special .video-button:after ,
.special .video-button:before {
   width: 50px;
    height: 50px;
}

.special .video-button span {
    border-left: 14px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

}




/* contact-now */

.address-area {
	position: relative;
}

.address-area .box-area .contact-item {
    text-align: center;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    border: 2px solid #C0C0C080;
	height: 100%;
}

.address-area .box-area .contact-item .contact-icon {
    margin-top: 26px;
}

.address-area .box-area .contact-item .contact-text h4 {
    margin-top: 34px;
    font-size: 30px;
}

.address-area .box-area .contact-item .contact-text a {
	display: inline-block;
	color: var(--theme-black);
	font-size: 20px;
	position: relative;
}

.address-area .box-area .contact-item .contact-text a:hover {
	color: var(--main-theme-blue);
}

.address-area .box-area .contact-item .contact-text p {
    display: inline-block;
    margin-bottom: 0;
    color: var(--theme-black);
    font-size: 20px;
    line-height: 1.5;
}

.address-area .box-area .contact-item .contact-icon span svg {
	transform: rotateY(0deg);
	transition: .9s;
}

.address-area .box-area .contact-item:hover .contact-icon span svg {
	transform: rotateY(360deg);
}

.contact-now .contact-form {
    border: 2px solid #C0C0C080;
    border-radius: 3px;
    padding: 50px 60px;
    background: #fff;
}


.contact-now .contact-form .heading-style1 {
    margin-bottom: 30px;
}












@media screen and (max-width: 1536px) {
	.address-area .box-area .contact-item .contact-icon span svg {
    width: 88px;
}
.address-area .box-area .contact-item .contact-text h4 {
    margin-top: 27px;
    font-size: 27px;
}

.address-area .box-area .contact-item .contact-text p,
.address-area .box-area .contact-item .contact-text a {
    font-size: 18px;
}
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
	.address-area .box-area .contact-item .contact-icon span svg {
    width: 78px;
}
}

@media screen and (max-width: 991.98px) {
	.address-area .box-area .contact-item .contact-icon span svg {
    width: 78px;
}
.address-area .box-area .contact-item {
    height: calc(100% - 20px);
    margin-bottom: 20px;
}
.contact-now .contact-form {
    padding: 20px 30px;
}
.contact-now {
    padding-top: 20px !important;
}
}

@media  screen and (max-width: 767px) {

.contact-now .contact-form .heading-style1 {
    margin-bottom: 14px;
}

.contact-now .contact-form .heading-style1 h3 {
    font-size: 24px;
}

.contact-now .contact-form {
    padding: 20px;
}

}













/* Page Content */
/* .page-content {
	padding-top: 30px;
	padding-bottom: 30px;
	overflow: hidden;
}
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	margin-bottom: 20px!important;
}
.page-content ul,
.page-content ol {
	margin-bottom: 20px;
}
.page-content ul li {
	list-style-type: none;
	position: relative;
	background-image: url(../images/tick.png);
	background-size: 16px 16px;
	background-position: 0 4px;
	background-repeat: no-repeat;
	padding-left: 25px;
	margin-bottom: 10px;
}
.page-content ol li {
	margin-bottom: 15px;
}
.single-section .blog-item {
	margin-bottom: 50px;
}
.single-section h3 {
    margin-bottom: 20px;
    font-size: 32px;
}
.single-section h3 a {
	 color: #231F20;
}
.single-section h3 a:hover {
	    color: #ED1C24;
}
.single-section .featured-photo {
	margin-bottom: 30px;
}
.single-section .featured-photo img {
    width: 100%;
    height: 535px;
    object-fit: cover;
}
.single-section .read-more {
	margin-top: 30px;
}
.single-section .read-more .button-black {
    background: #000;
    border: 1px none;
}
.single-section .read-more .button-black::before {
    background-color: #ED1C24;
}
@media only screen and (max-width: 767px) {
	.single-section {
		margin-bottom: 30px;
	}
} */



/* Blog List */
.blog-list .single-section .blog-item {
	margin-bottom: 70px;
}

.blog-list .single-section .blog-item .text {
	background: #fff;
	padding: 30px 30px 0 30px;
	margin: -57px 20px 0 20px;
	z-index: 1;
	position: relative;
	border-radius: 16px;
	box-shadow: 0px 1px 4px 0px #00000040;
}

.blog-list .single-section .blog-item .text h3 {
	margin-bottom: 10px;
	min-height: 76px;
}

.blog-list .single-section .blog-item .text h3 a {
	color: #231F20;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-list .single-section .blog-item .text p {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 0;
}

.blog-list .single-section .blog-item .text h3 a:hover {
	color: #ED1C24;
}

.blog-list .single-section .featured-photo {
	margin-bottom: 20px;
}

.blog-list .single-section .featured-photo img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.blog-list .single-section .read-more {
	position: relative;
	bottom: -27px;
	margin-bottom: 0;
}

.blog-list .single-section .read-more .button-black {
	background: #000;
	border: 1px none;
}

.blog-list .single-section .read-more .button-black::before {
	background-color: #ED1C24;
}

@media screen and (max-width:1600px) {
	.blog-list .single-section .blog-item .text h3 {
		margin-bottom: 10px;
		min-height: 64px;
	}

}

@media screen and (max-width:1280px) {
	.blog-list .single-section .blog-item .text h3 {
		min-height: 57px;
	}

}


@media only screen and (max-width:991px) {
.blog-list .single-section .read-more {
   bottom: -22px;
}
}





@media only screen and (max-width:767px) {
	.blog-list .single-section {
		margin-bottom: 30px;
	}

	.blog-list .single-section .blog-item {
		margin-bottom: 60px;
	}
	.blog-list .single-section .blog-item .text {
    padding: 25px 15px 0 15px;
}

}

.blog-pagination .pagination {
	justify-content: center;
	margin-bottom: 0;
}

.blog-pagination .pagination .page-link {
	box-shadow: none;
	color: #ED1C24;
}

.blog-pagination .pagination .page-link:hover {
	color: #ED1C24;
}

.blog-pagination .pagination .active>.page-link, .blog-pagination .pagination .page-link.active {
	color: #fff;
	background-color: #ED1C24;
	border-color: #ED1C24;
}



/* Blog Details */
.blog-details .single-section .box-image{
	position: relative;
}

.blog-details .single-section .box-image .aspect-custom{
	padding-bottom: 65%;
}

.blog-details .single-section .box-image .aspect-custom img{
	border-radius: 3px;
}

.blog-details .single-section .box-image .date-box {
    text-align: center;
    position: absolute;
    bottom: -28.8px;
    right: 11px;
    background: var(--main-theme-blue);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.blog-details .single-section .box-image .date-box span {
    display: block;
    text-align: center;
    padding: 0px 10px;
}

.blog-details .single-section .box-image .date-box .date {
    font-size: 29px;
    font-weight: 700;
    font-family: var(--heading-family);
    background: var(--main-theme-blue);
    color: var(--theme-silver);
    line-height: 1.5;
    margin-bottom: -4px;
}


.blog-details .single-section .box-image .date-box .month {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    font-family: var(--heading-family);
    color: var(--theme-silver);
    background: var(--theme-black);
    text-transform: uppercase;
}



.blog-details .single-section .text h2{
	margin-top: 40px;
	font-size: 35px;
}

.blog-maintitle {
    font-size: 60px;
}

.blog-details .single-section .share-link {
    margin-top: 25px;
}

.blog-details .single-section .blog-nav-wrapper {
    padding-top: 20px;
}

.blog-details .single-section .blog-nav-wrapper hr {
    margin: 0px 0 20px 0;
    border-top: 1px solid #C0C0C0;
}

.blog-details .single-section .blog-nav-wrapper .blog-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-details .single-section .blog-nav-wrapper .blog-nav-btn {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    font-weight: 700;
	color: var(--theme-black);
	transition: all 0.3s ease-in-out;
}

.blog-details .single-section .blog-nav-wrapper .blog-nav-btn:hover {
    color: var(--main-theme-blue);
}

.blog-details .single-section .blog-nav-wrapper .blog-nav-btn .arrow {
  background: #fff;
    border: 1px solid var(--theme-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 30px;
    width: 30px;
    justify-content: center;
}

.blog-details .single-section .blog-nav-wrapper .blog-nav-btn:hover .arrow {
  border-color: var(--main-theme-blue);
}

.blog-details .single-section .blog-nav-wrapper .blog-nav-btn .arrow {
  font-size: 18px;
  margin-right: 6px;
}

.blog-details .single-section .blog-nav-wrapper .blog-nav-btn.next .arrow {
  margin-left: 6px;
  margin-right: 0;
}

.blog-details .single-section .blog-nav-wrapper .blog-nav-btn.next .label {
  margin-right: 0;
}

.blog-details .single-section .blog-nav-wrapper .blog-nav-btn:hover {
  border-color: #0074d9;
}











@media screen and (max-width: 1536px) {
.blog-details .single-section .text h2 {
    font-size: 35px;
}
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
	.blog-details .single-section .text h2 {
    font-size: 44px;
}
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
		.blog-details .single-section .text h2 {
    font-size: 38px;
}
}

@media screen and (max-width: 991.98px) {
			.blog-details .single-section .text h2 {
    font-size: 38px;
}
.blog-details .single-section .blog-nav-wrapper {
    padding-top: 10px;
}
}

@media  screen and (max-width: 767px) {
			.blog-details .single-section .text h2 {
    font-size: 30px;
}
}















/* Sidebar */

.sidebar .widget {
    padding: 6px;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 3px;
    border: 1px solid #C0C0C080;
}

.sidebar .widget h4 {
    font-size: 26px;
    margin-bottom: 0;
    background-color: var(--main-theme-blue);
    color: #fff;
    padding: 13px 20px;
    border-radius: 3px 3px 0 0;
}

.sidebar .widget .type-1 ul {
    overflow: hidden;
    gap: 0.6rem;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sidebar .widget .type-1 ul.show-more {
	max-height: 100%;
}

.sidebar .widget .type-1 .morelist {
    cursor: pointer;
    margin-left: 30px;
}

.sidebar .widget .type-1 .show-more {
    cursor: pointer;
    margin-left: 30px;
    user-select: none;
    display: inline-block;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    color: var(--theme-black);
    position: relative;
    top: -7px;
}

.sidebar .widget .type-1 .show-more:hover{
	color: var(--main-theme-blue);
}

.sidebar .widget .type-1 ul li a {
    color: var(--theme-black);
    font-family: var(--heading-family);
    background: #D9D9D980;
    width: 100%;
    padding: 8px 10px 8px 17px;
    font-weight: 700;
    border-radius: 3px;
    display: flex;
    align-items: center;
	transition: all 0.3s ease-in-out;
}

.sidebar .widget .type-1 ul li a:hover {
    color: var(--theme-silver);
    background: var(--theme-black);
}

.sidebar .widget .type-1 ul li a .number {
    margin-left: auto;
    background: #D9D9D9;
	color: #000;
    border-radius: 3px;
    height: 28px;
    text-align: center;
    width: 28px;
    align-content: center;
	transition: all 0.3s ease-in-out;
}

.sidebar .widget .type-1 ul li a:hover .number {	
	color: #000;
}




.sidebar .widget .type-2 {
	padding: 20px;
}

.sidebar .widget .type-2 ul li {
    display: flex;
    gap: 0.7rem;
	align-items: center;
}

.sidebar .widget .type-2 img {
    width: auto;
    height: 66px;
    display: inline-block;
    vertical-align: middle;
    object-fit: cover;
    border-radius: 3px;
}


.sidebar .widget .type-2 ul li:not(:last-child) {
    border-bottom: 1px solid  #C0C0C080;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.sidebar .widget .type-2 ul li a {
    color: var(--theme-black);
    font-weight: 700;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 20px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--heading-family);
}

.sidebar .widget .type-2 ul li a:hover {
	color: var(--main-theme-blue);
}


.sidebar .widget .search .input-group-append {
	width: 36px;
}

.sidebar .widget .search button {
	background: #3867D6;
	border: 0;
	width: 36px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.sidebar .widget .search button i {
	color: #fff;
}

.sidebar .widget .type-3 button {
	border: 0;
	background: #3867D6;
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.sidebar .widget .type-3 button:hover {
	background: #333;
}

.sidebar .widget .project-detail .item {
	margin-bottom: 25px;
}

.sidebar .widget .project-detail .item h4 {
	color: #333;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0px !important;
}

.sidebar .widget .project-detail .item p {
	color: #555;
	font-size: 15px;
}






@media screen and (max-width: 1366px) {
.sidebar .widget h4 {
    font-size: 21px;
}
}




@media screen and (max-width: 991.98px) {
.sidebar {
    margin-top: 40px;
}


.sidebar .widget .type-1 .show-more{
	margin-left: 28px;
}

.sidebar {
    margin-top: 30px;
    display: flex;
    gap: 1rem;
}

.sidebar .widget {

    flex: 1 0 50%;
    height: max-content;
}

}

@media  screen and (max-width: 767px) {

	

.sidebar {
    margin-top: 22px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sidebar .widget h4 {
    font-size: 20px;
    margin-bottom: 12px;
}
.sidebar .widget .type-2 {
    padding: 10px 20px;
}

.sidebar .widget .type-2 ul li:not(:last-child) {
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.sidebar .widget .type-2 ul li a {
    font-size: 18px;
}

.sidebar {
     gap: 1rem;
}

.sidebar .widget {
    margin-bottom: 0;
}

.sidebar .widget .type-1 ul {
    padding: 10px 20px;
}

.sidebar .widget .type-1 .show-more {
    top: -2px;
}

}















.team {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.team .heading {
	text-align: center;
	margin-bottom: 30px;
}

.team .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.team .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.team-item {
	border: 1px solid #ddd;
	margin-top: 30px;
}

.team-photo img {
	width: 100%;
	height: 292px;
	object-fit: cover;
}

.team-photo-anchor {
	width: 100%;
	height: 100%;
}

.team-text {
	text-align: center;
	background: #3867D6;
	color: #fff;
	padding: 15px;
}

.team-text h4 {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	margin: 0;
	margin-bottom: 4px!important;
}

.team-text h4 a {
	color: #fff;
}

.team-text p {
	margin: 0;
	font-size: 14px;
}

.team-social {
	text-align: center;
	background: #333;
	width: 100%;
	padding: 10px 0;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	margin-top: 15px;
}

.team-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	margin-bottom: 0!important;
}

.team-social li {
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 0!important;
	background: none!important;
	padding-left: 0!important;
}

.team-social li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	border: 1px solid #ddd;
	margin: 5px 0;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.team-social li a:hover {
	background: #3867D6;
	color: #fff;
	border: 1px solid #3867D6;
}

.team .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.team .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.team .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #333;
	border: 7px solid #afafaf;
}

.team-member-photo img {
    width: 100%;
    height: auto;
}
.team-single ul.social {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.team-single ul.social li {
    list-style-type: none;
    display: inline-block;
}

.team-single ul.social li a {
    background: #5ac736;
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    display: block;
    margin-right: 6px;
    font-size: 16px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.team-single ul.social li a:hover {
    background: #333;
}
.team-single table {
    background: #fff;
}
.team-single table tr td:nth-of-type(1) {
    width: 200px;
    font-weight: 500;
}
.team-single .description h2 {
	font-size: 24px;
	font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-photo img {
		height: 240px;
	}
	.team-social li a {
		width: 24px;
		height: 24px;
		line-height: 24px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team-photo img {
		height: 378px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.team-photo img {
		height: 588px;
	}
}

@media only screen and (max-width: 575px) {
	.team-photo img {
		object-fit: fill;
		height: auto;
	}
}





/* Portfolio Carousel */
.project-photo-carousel {
	overflow: hidden;
	margin-top: 30px;
}

.project-photo-carousel .owl-nav .owl-prev,
.project-photo-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	top: 50%;
	width: 40px;
	height: 50px;
	line-height: 48px;
	background: #3867D6;
	color: #fff;
	margin-top: -25px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.project-photo-carousel .owl-nav .owl-prev {
	left: 0;
}

.project-photo-carousel .owl-nav .owl-next {
	right: 0;
}

.project-photo-carousel .owl-nav .owl-prev:hover,
.project-photo-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.single-project .iframe-container {
	overflow: hidden;
	clear: both;
}

.single-project iframe {
	width: 100%;
	height: 400px;
}

.single-project img.featured-photo {
	width: 100%;
	height: auto;
}

.project-photo-carousel .p-item {
	position: relative;
}

.project-photo-carousel .p-item .p-item-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    opacity: 0;
    background: #333;
    z-index: 9;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.project-photo-carousel .p-item:hover .p-item-bg {
	opacity: 0.6;
}

.project-photo-carousel .p-item .plus-icon {
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 100%;
	text-align: center;
	z-index: 99;
	font-size: 30px;
	color: #fff;
}

.project-photo-carousel .p-item:hover .plus-icon {
	visibility: visible;
	display: flex;
	align-items: center;
  	justify-content: center;
}

.project-photo-carousel .p-item img {
	width: 100%;
	height: 440px;
	object-fit: cover;
}








/* Comment */
.comment button {
	border: 0;
	background: #3867D6;
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.comment > h2 {
	margin-bottom: 30px!important;
}

.comment button:hover {
	background: #333;
}

.comment-item {
	margin-bottom: 20px;
	display: flex;
	justify-content: left;
}

.comment-item .photo {
	width: 70px;
	margin-right: 15px;
}

.comment-item .photo img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px solid #ddd;
}

.comment-item .text h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px!important;
}

.comment-item .text .date {
	font-size: 14px;
	color: #848484;
	margin-bottom: 15px;
}

.comment-item .text .des {
	font-size: 14px;
}




/* Career Detail */
.career-main-item {
	background: #f3f3f3;
	margin-bottom: 30px;
	padding: 15px;
	border: 1px solid #ddd;
}
.career-main-item h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px!important;
	color: #3867D6;
}
.career-main-item h4 {
	font-size: 16px;
	font-weight: 700;
}
.career-main-item p {
	font-size: 14px;
}
.career-main-item .long {
	margin-bottom: 5px;
}
.career-detail .item {
	margin-bottom: 30px;
}
.career-detail .item h3 {
	font-size: 22px;
	font-weight: 700;
}
.career-detail .item p {
	font-size: 16px;
}
.career-detail .item ul li {
	list-style-type: none;
	position: relative;
	padding-left: 25px;
}
.career-detail .item ul li:before {
	content: '\f105';
    font-family: 'FontAwesome';
	position: absolute;
	left: 10px;
	top: 0;
	display: none;
}
.career-sidebar .widget {
	padding: 20px;
	background: #f1f5f9;
	margin-bottom: 30px;
}
.career-sidebar .widget h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}
.career-sidebar .widget .type-1 ul li {
	list-style-type: none;
	padding-left: 20px;
	position: relative;
	margin-bottom: 10px;
	background: none!important;
}
.career-sidebar .widget .type-1 ul li:before {
	content: '\f105';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	top: 0;
	color: #3867D6;
}
.career-sidebar .widget .type-1 ul li a {
	color: #333;
}
.career-sidebar .widget .type-1 ul li a:hover {
	color: #3867D6;
}
.career-sidebar .widget .career-detail-sidebar .item {
	margin-bottom: 25px;
}
.career-sidebar .widget .career-detail-sidebar .item h4 {
	color: #333;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0px!important;
}
.career-sidebar .widget .career-detail-sidebar .item p {
	color: #555;
	font-size: 15px;
}
.career-sidebar .widget button {
	border: 0;
	background: #3867D6;
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 600;
	text-transform: uppercase;
}



/* FAQ */
.faq {
	margin-top: 30px;
	background: #fff;
}

.faq .panel-body ol li,
.faq .panel-body ul li {
	list-style-position: inside;
}

.faq .panel {
	box-shadow: none!important;
	border-radius: 0!important;
	margin-bottom: 10px;
}

.faq .panel-group {
	margin-bottom: 40px;
}

.faq .panel-default>.panel-heading {
	background: #eee;
	color: #333;
	padding: 0;
	border-radius: 0;
	border: 1px solid #eee;
	position: relative;
}

.faq .panel-group .panel-heading a:after {
	content: '\f358';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	font-weight: normal;
	right: 20px;
	top: 14px;
	font-size: 24px;
}

.faq .panel-group .panel-heading a.collapsed:after {
  	content: '\f358';
  	font-family: 'Font Awesome 5 Free';
  	font-size: 24px;
}


.faq h4.panel-title {
	margin-bottom: 0!important;
	border: 1px solid #3867D6;
}
.faq h4.panel-title a {
	display: block;
	padding: 16px 15px;
	font-size: 18px;
	font-weight: 700;
	background: #3867D6;
	color: #fff;
}

.faq .panel-body {
	border-top: 0;
	padding: 15px;
	border-top: 0;
}




/* Order Bottom */
.order-bottom {
	margin-top: 30px;
	background: #fff;
}
.order-bottom .panel-body {
	padding-left: 0!important;
	padding-right: 0!important;
}

.order-bottom .panel-body ol li,
.order-bottom .panel-body ul li {
	list-style-position: inside;
}

.order-bottom .panel {
	box-shadow: none!important;
	border-radius: 0!important;
	margin-bottom: 10px;
}

.order-bottom .panel-group {
	margin-bottom: 40px;
}

.order-bottom .panel-default>.panel-heading {
	background: #eee;
	color: #333;
	padding: 0;
	border-radius: 0;
	border: 1px solid #eee;
	position: relative;
}

.order-bottom .panel-group .panel-heading a:after {
	content: '\f068';
	font-family: 'FontAwesome';
	position: absolute;
	font-weight: normal;
	right: 20px;
	top: 13px;
	font-size: 14px;
}

.order-bottom .panel-group .panel-heading a.collapsed:after {
  	content: '\f067';
  	font-family: 'FontAwesome';
  	font-size: 14px;
}
.order-bottom h4.panel-title {
	margin-bottom: 0!important;
	border: 1px solid #3867D6;
}
.order-bottom h4.panel-title a {
	display: block;
	padding: 10px 15px;
	font-size: 18px;
	font-weight: 700;
	background: #f3f3f3;
	color: #3867D6;
}

.order-bottom .panel-body {
	border-top: 0;
	padding: 15px;
	border-top: 0;
}
















/* Photo Gallery */
.gallery-photo {
	margin-bottom: 30px;
}

.gallery-photo img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.gallery-photo .gallery-photo-bg {
	position: absolute;
	left: 15px;
	top: 0;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
    opacity: 0;
    background: #333;
    z-index: 9;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.gallery-photo:hover .gallery-photo-bg {
	opacity: 0.6;
}

.gallery-photo .plus-icon {
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 100%;
	text-align: center;
	z-index: 99;
	font-size: 30px;
	color: #fff;
}

.gallery-photo:hover .plus-icon {
	visibility: visible;
	display: flex;
	align-items: center;
  	justify-content: center;
  	margin-top: -15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.gallery-photo img {
		height: 207px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.gallery-photo img {
		height: 236px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.gallery-photo img {
		height: 364px;
	}
}

@media only screen and (max-width: 575px) {
	.gallery-photo img {
		object-fit: fill;
		height: auto;
	}
}




/* Video Gallery */
.video-item {
	margin-bottom: 70px;
}
.video-item iframe {
	width: 100%;
	height: 350px;
}
.video-item .video-caption {
	font-weight: 700;
	font-size: 18px;
}




/* Product */
.product-item {
	margin-bottom: 80px!important;
}

.product-item .photo img {
	width: 100%;
	height: 270px;
	object-fit: cover;
	border: 1px solid #e3e3e3;
}

.product-item .text h3 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 10px!important;
}

.product-item .text h3 a {
	color: #333;
}

.product-item .text h3 a:hover {
	color: #3867D6;
}

.product-item .text .price {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 18px;
}

.product-item .text .price del {
	color: red;
}
.product-item .text .cart-button {
	overflow: hidden;
}
.product-item .text .cart-button a,
.product-item .text .cart-button input[type="submit"] {
	background: #3867D6;
	color: #fff;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 14px;
	border: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: inline-block;
}

.product-item .text button {
	width: 100%;
	background: #3867D6;
	color: #fff;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 14px;
	border: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: inline-block;
}

.product-item .text button i {
	font-size: 14px;
}

.product-item .text .cart-button a.stock-empty {
	background: #ead1d1;
	color: #ff0000;
}

.product-item .text .cart-button a.stock-empty:hover {
	background: #ead1d1;
	color: #ff0000;
}

.product-item .text .cart-button a:hover,
.product-item .text .cart-button input[type="submit"]:hover {
	background: #333;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.product-item .photo img {
		height: 220px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.product-item .photo img {
		height: 347px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.product-item .photo img {
		height: 540px;
	}
}

@media only screen and (max-width: 575px) {
	.product-item .photo img {
		object-fit: fill;
		height: auto;
	}
}




/* Product Detail */
.product-detail .photo img {
	width: 100%;
	height: auto;
	border: 1px solid #e3e3e3;
}

.product-detail h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px!important;
}

.product-detail p {
	font-size: 16px;
}

.product-detail .price {
	font-size: 28px;
	font-weight: 600;
	color: #3867D6;
}

.product-detail .price del {
	color: red;
}

.product-detail .delivery-time {
	font-size: 18px;
}

.product-detail .qty {
	font-size: 18px;
}

.product-detail .qty input[type="number"] {
	width: 100px;
}

.product-detail button {
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border: 0;
    border-radius: 50px;
    background: #3867D6;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-detail button:hover {
	background: #333;
}

.product-detail .nav-pills .nav-link.active {
	background: #3867D6;
	color: #fff;
}

.product-detail .nav-pills .nav-link {
	background: #f1f5f9;
	color: #3867D6;
}

.product-detail li.nav-item {
	margin-right: 10px;
}

.product-detail li {
	background: none!important;
	padding-left: 0!important;
}

.product-detail a.stock-available-amount {
	background: #ffc107;
	color: #333;
	border: 0;
	border-radius: 16px;
	padding: 5px 18px;
	font-size: 14px;
}

.product-detail a.stock-empty {
	background: #ead1d1;
	color: #ff0000;
	border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    display: inline-block;
    margin-top: 30px;
    text-transform: uppercase;
}

.product-detail a.stock-empty:hover {
	background: #ead1d1;
	color: #ff0000;
}

@media only screen and (max-width: 767px) {
	.product-detail .photo img {
		margin-bottom: 30px;
	}
}


/* Cart */
.cart table img {
	width: 100px;
	height: auto;
}

.cart input[type="number"] {
	width: 100px;
}

.cart .total {
	font-size: 18px;
	font-weight: 600;
}

.cart-buttons {
	float: right;
}

.cart-buttons a,
.cart-buttons input[type="submit"] {
	margin-right: 10px;
}

@media only screen and (max-width: 767px) {
	.cart-buttons {
		margin-bottom: 30px;
	}
}



.checkout-login-form h2 {
	font-size: 24px;
	font-weight: 700;
}

.checkout-login-form .inner {
	display: flex;
	justify-content: center;
}

.checkout-login-form input {
	width: 400px;
}

.checkout-login-form .new-user {
	margin-top: 15px;
	font-weight: 600;
}

.checkout-login-form .new-user a {
	color: #3867D6;
}

.checkout-login-form .new-user a:hover {
	color: #333;
}

.checkout h2 {
	font-size: 24px;
	font-weight: 700;
}

.checkout-billing h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.checkout-tab .nav-link {
	font-size: 20px;
	padding: 15px 30px;
	font-weight: 700;
	background: #ddd;
	color: #6c757d;
	margin-right: 10px;
}
.checkout-tab .nav-link i {
	background: #6c757d;
	color: #ddd;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
}
.checkout-tab .nav-link.active {
	font-size: 20px;
	padding: 15px 30px;
	font-weight: 700;
	background: #3867D6;
}
.checkout-tab .nav-link.active i {
	background: #fff;
	color: #3867D6;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
}

.checkout-tab li {
	padding-left: 0!important;
	background: none!important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.checkout-tab .nav-link {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 16px;
	}
	.checkout-tab .nav-link.active {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 767px) {
	.checkout-tab .nav-link {
		padding-left: 25px;
		padding-right: 25px;
		font-size: 18px;
	}
	.checkout-tab .nav-link.active {
		padding-left: 25px;
		padding-right: 25px;
		font-size: 18px;
	}
	.page-content-checkout button {
		margin-bottom: 30px;
	}
	.order-summery-area {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 575px) {
	.page-content-checkout ul.nav-pills li {
		width: 100%!important;
	}
}




/* Login */
.reg-login-form h2 {
	font-size: 24px;
	font-weight: 700;
}

.reg-login-form .inner {
	display: flex;
	justify-content: center;
}

.reg-login-form input {
	width: 400px;
}

.reg-login-form .new-user {
	margin-top: 15px;
	font-weight: 600;
}

.reg-login-form .new-user a {
	color: #3867D6;
}

.reg-login-form .new-user a:hover {
	color: #333;
}

@media only screen and (max-width: 991px) {
	.reg-login-form input {
		width: 100%;
	}
	.reg-login-form select {

	}
	.reg-login-form .inner {
		display: block;
	}
}





/* User Panel */
.user-sidebar ul {
	display: flex;
	flex-direction: column;
}

.user-sidebar ul li {
	list-style-type: none;
	margin-bottom: 5px;
	padding-left: 0;
	background: none;
}

.modal-table {
	font-size: 14px;
}

.modal-table tr th {
	width: 150px;
}

.modal-full-width {
	max-width: 100%!important;
}

.modal-full-width .top-area {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #dee2e6;
}

.modal-full-width .top-right {
	font-size: 20px;
	font-weight: 700;
	float: right;
	margin-top: 30px;
}

@media only screen and (min-width: 992px) {
	.modal-full-width {
		max-width: calc(100% - 200px)!important;
	}
}

.customer-invoice {
	padding-top: 30px;
}
.customer-invoice .top-head {
	border-bottom: 1px solid #efebeb;
}
.customer-invoice .left img {
	height: 70px;
}
.customer-invoice .left .company-info {
	font-size: 14px;
	margin-bottom: 30px;
}
.customer-invoice .right {
	text-align: right;
	font-size: 18px;
	font-weight: 700;
	margin-top: 30px;
}
.customer-invoice .i3 {
	margin-top: 30px;
}
.customer-invoice .i3 h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px!important;
}
.customer-invoice .i3 p {
	font-size: 14px;
	margin-bottom: 0;
}
@media print {
	@page { margin: 0; }
}




.chosen-drop {
    z-index: 999999 !important;
}

.nav-doctor li {
	padding-left: 0!important;
	background: none!important;
}

.doc_detail_social li {
	padding-left: 0!important;
	background: none!important;
	float: left;
	margin-right: 5px;
}

.doc_detail_social li i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	background: #3867D6;
	color: #fff;
	border-radius: 4px;
	transition: all 0.4s ease;
}
.doc_detail_social li:hover i {
	background: #333;
}

.nav-doctor .nav-link {
	background: #e6e6e6;
	margin-right: 10px;
	color: #333;
}
.nav-doctor .nav-link.active,
.nav-doctor .show > .nav-link {
	background: #3867D6;
}


/* Bootstrap Pagination */
.pagination li {
	background: none!important;
	padding-left: 0!important;
}


.dashboard-stat .text {
	font-size: 20px;
}
.dashboard-stat .total {
	font-size: 30px;
}

@media only screen and (max-width: 767px) {
	.dashboard-stat-item {
		margin-bottom: 30px;
	}
}


/* ------------------------------------------- */
/* toastr */
/* ------------------------------------------- */
.toast {
    opacity: 1 !important;
}
#success_toastr {
    background: green!important;
}
#error_toastr {
    background: red!important;
}
.toast-error {
  background-color: #bd362f;
}
.toast-success {
  background-color: #51a351;
}
.toast-warning {
  background-color: #f89406;
}



/* Checkout */
.checkout-left h4 {
	font-weight: 700;
}

.checkout-right h4 {
	font-weight: 700;
}
.checkout-right .inner {
	background: #f3f3f3;
	padding: 15px;
}
.checkout-right img {
	width: 60px;
	height: 60px;
	margin-right: 10px;
}

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

.checkout-right .p_name,
.checkout-right .p_name a {
	text-decoration: none!important;
	color: #333;
}
.checkout-right .total_amount {
	font-size: 22px;
	font-weight: 700;
}
.shipping-checkbox-container .form-check {
	margin-bottom: 10px;
}
.shipping-checkbox-container input:focus {
	border-color: none!important;
}
.shipping-checkbox-container .heading {
	line-height: 1.1;
}
.shipping-checkbox-container .subheading {
	font-size: 12px;
}
.checkout-right table td {
	padding-top: 10px!important;
	padding-bottom: 10px!important;
}
.checkout-left input[type="checkbox"],
.checkout-right input[type="checkbox"] {
	color: #3867D6;
}

/* Select 2 */
.select2-container--bootstrap .select2-selection--single {
	height: 38px!important;
	line-height: 38px!important;
	padding-top: 0!important;
	font-size: 1rem;
}


/* Preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 999999;
}

#preloader #status {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-repeat: no-repeat;
	background-position: center;
	margin: -100px 0 0 -100px;
}


.share_buttons a {
	text-align: center;
}
.share_buttons a i {
    border: 1px solid #ED1C24;
    color: #fff!important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    margin-right: 4px;
}
.share_buttons a.facebook i {
	background: #3b5998;
    border-color: #3b5998;
}
.share_buttons a.facebook:hover i {
	color: #3b5998!important;
	background: #fff;
}
.share_buttons a.twitter i {
	background: #00aced;
    border-color: #00aced;
}
.share_buttons a.twitter:hover i {
	color: #00aced!important;
	background: #fff;
}
.share_buttons a.pinterest i {
	background: #EB4823;
    border-color: #EB4823;
}
.share_buttons a.pinterest:hover i {
	color: #EB4823!important;
	background: #fff;
}
.share_buttons a.linkedin i {
	background: #0e76a8;
    border-color: #0e76a8;
}
.share_buttons a.linkedin:hover i {
	color: #0e76a8!important;
	background: #fff;
}



@media  screen and (max-width: 767px) {
.share_buttons a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
 font-size: 17px;
}
}















/* select-style */
.select2-container .select2-selection--single {
	height: 38px;
	line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 36px;
}





.homepage .site-header .mean-container a.meanmenu-reveal span {
	background: #fff;
}










/* 404-page css */


.page-not-found {
    background-color: var(--main-theme-blue);
    background-image: url(../images/bg/overlay-stars.svg);
    background-repeat: repeat;
    background-size: contain;
    background-position: left top;
    width: 100%;
    height: 600px;
    position: relative;
    align-content: center;
}

.page-not-found .stars .central-body .inner-text {
    text-align: center;
    color: #fff;
}

.page-not-found .stars .central-body .inner-text h2 {
    color: #fff;
    font-size: 150px;
    line-height: 1;
}

.page-not-found .stars .central-body .inner-text p {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 35px;
}



.page-not-found .stars .glowing_stars .star{
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
    width: 3px;
    height: 3px;
    opacity: 0.3;
    will-change: opacity;
}

.page-not-found .stars .glowing_stars .star:nth-child(1){
    top: 80%;
    left: 25%;
    animation: glow-star 2s infinite ease-in-out alternate 1s;
}
.page-not-found .stars .glowing_stars .star:nth-child(2){
    top: 20%;
    left: 40%;
    animation: glow-star 2s infinite ease-in-out alternate 3s;
}
.page-not-found .stars .glowing_stars .star:nth-child(3){
    top: 25%;
    left: 25%;
    animation: glow-star 2s infinite ease-in-out alternate 5s;
}
.page-not-found .stars .glowing_stars .star:nth-child(4){
    top: 75%;
    left: 80%;
    animation: glow-star 2s infinite ease-in-out alternate 7s;
}
.page-not-found .stars .glowing_stars .star:nth-child(5){
    top: 90%;
    left: 50%;
    animation: glow-star 2s infinite ease-in-out alternate 9s;
}

.page-not-found .objects img{
    z-index: 90;
    pointer-events: none;
}

.page-not-found .box_astronaut img{
	width: 140px;
}

.page-not-found .earth-moon .object_earth{
	width: 100px;
}

.page-not-found .earth-moon .object_moon{
	width: 80px;
}

.page-not-found .object_rocket {
    z-index: 95;
    position: absolute;
    transform: translateX(-50px);
    top: 75%;
    pointer-events: none;
    animation: rocket-movement 200s linear infinite both running;
    width: 40px;
}

.page-not-found .object_earth{
    position: absolute;
    top: 20%;
    left: 15%;
    z-index: 90;
}

.object_moon{
    position: absolute;
    top: 12%;
    left: 25%;
}


.page-not-found .object_astronaut{
    animation: rotate-astronaut 200s infinite linear both alternate;
}

.page-not-found .box_astronaut{
    z-index: 110 !important;
    position: absolute;
    top: 60%;
    right: 20%;
    will-change: transform;
    animation: move-astronaut 50s infinite linear both alternate;
}

.page-not-found .page-not-found .stars .central-body .inner-text .button {
    z-index: 9999;
    position: relative;
}



@media  screen and (max-width: 767px) {

.page-not-found {
    height: 400px;
}

.page-not-found .stars .central-body .inner-text h2 {
    font-size: 112px;
}

.page-not-found .stars .central-body .inner-text p {
    font-size: 18px;
    margin-bottom: 13px;
}

.page-not-found .earth-moon .object_earth {
    width: 37px;
}

.page-not-found .earth-moon .object_moon {
    width: 52px;
}

.page-not-found .box_astronaut img {
    width: 70px;
}



}





@-moz-keyframes rocket-movement { 100% {-moz-transform: translate(1200px,-600px);} }
@-webkit-keyframes rocket-movement {100% {-webkit-transform: translate(1200px,-600px); } }
@keyframes rocket-movement { 100% {transform: translate(1200px,-600px);} }
@-moz-keyframes spin-earth { 100% { -moz-transform: rotate(-360deg); transition: transform 20s;  } }
@-webkit-keyframes spin-earth { 100% { -webkit-transform: rotate(-360deg); transition: transform 20s;  } }
@keyframes spin-earth{ 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); transition: transform 20s; } }

@-moz-keyframes move-astronaut {
    100% { -moz-transform: translate(-160px, -160px);}
}
@-webkit-keyframes move-astronaut {
    100% { -webkit-transform: translate(-160px, -160px);}
}
@keyframes move-astronaut{
    100% { -webkit-transform: translate(-160px, -160px); transform:translate(-160px, -160px); }
}
@-moz-keyframes rotate-astronaut {
    100% { -moz-transform: rotate(-720deg);}
}
@-webkit-keyframes rotate-astronaut {
    100% { -webkit-transform: rotate(-720deg);}
}
@keyframes rotate-astronaut{
    100% { -webkit-transform: rotate(-720deg); transform:rotate(-720deg); }
}

@-moz-keyframes glow-star {
    40% { -moz-opacity: 0.3;}
    90%,100% { -moz-opacity: 1; -moz-transform: scale(1.2);}
}
@-webkit-keyframes glow-star {
    40% { -webkit-opacity: 0.3;}
    90%,100% { -webkit-opacity: 1; -webkit-transform: scale(1.2);}
}
@keyframes glow-star{
    40% { -webkit-opacity: 0.3; opacity: 0.3;  }
    90%,100% { -webkit-opacity: 1; opacity: 1; -webkit-transform: scale(1.2); transform: scale(1.2); border-radius: 999999px;}
}



.title{
    font-size: x-large;
}

.footer-item-heading {
    display: flex;
    gap: 6px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* key */
}

.product-detail-page 
.product-content 
.table-bordered 
tbody 
tr 
th {
    background-color: #f7f7f7 !important;
    color: #333 !important;
}

.product-features {
    margin-top: 40px;
}

.feature-item {
    background: #f4f4f4;
    padding: 18px 20px;
    margin-bottom: 15px;
    width: -webkit-fill-available;
    border-left: 4px solid #1e73be;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-item p {
    margin: 0;
    color: #555;
}


[x-cloak]{
    display:none !important;
}

.core-features-section {
    margin-top: 30px;
}

.section-title {
    font-weight: 600;
    font-size: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-row {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 18px 20px;
    border-bottom: 1px solid #ddd;
}

.feature-icon {
    min-width: 70px;
    height: 70px;
    background: #1e73be;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 24px;
}

.feature-content h5 {
    margin: 0;
    font-weight: 600;
}

.feature-content p {
    margin: 5px 0 0;
    color: #555;
}

.battery-label {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.iot-section {
    padding: 80px 0;
    background: #f5f7fa;
    text-align: center;
}

.iot-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    margin: auto;
}

.hex {
    width: 170px;
    height: 196px;
    background: #1f6fa5;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition:
        0.3s ease;
}

.hex:hover {
    background: #12527a;
}

.hex-content {
    padding: 20px;
}

.hex-content i {
    font-size: 36px;
    margin-bottom: 10px;
}

.hex-content h3 {
    color: white;
}

.hex-content p {
    font-size: 14px;
    margin: 0;
}

.hex-center {
   background: #2c2c2c;
    width: 198px;
    height: 230px;
    top: 201px;
    left: 180px;
}

.center-text h2 {
    font-size: 40px;
    margin: 0;
}

.center-text span {
    font-size: 14px;
    letter-spacing: 1px;
}

/* Positioning surrounding
hexagons */
.hex-1 {
    top: 25px;
    left: 284px;
    height: 230px;
    width: 198px;
}

.hex-2 {
    top: 202px;
    left: 385px;
    height: 230px;
    width: 198px;
}

.hex-3 {
    height: 228px;
    top: 25px;
    left: 80px;
    width: 198px;
}

.hex-4 {
    top: 378px;
    left: 281px;
    height: 230px;
    width: 198px;
}

.hex-5 {
    top: 201px;
    left: -22px;
    height: 230px;
    width: 198px;
}

.hex-6 {
    top: 378px;
    left: 79px;
    height: 230px;
    width: 198px;
}





@media  screen and (max-width: 767px) {
.core-features-section .feature-list {
    gap: 10px;
}

.core-features-section .feature-row {
    padding: 0.6rem 0.5rem;
}

.core-features-section .feature-icon {
    margin-right: 10px;
}

.core-features-section .feature-content h5 {
    font-size: 18px;
}

.core-features-section .feature-content p {
    font-size: 14px;
}


}









.special-features {
    padding: 30px 0;
}

.features-title {
    font-size: 30px;
    font-weight: 700;
    color: #0f5c9a;
    margin-bottom: 1rem;
	padding-left: 1.1rem;
}

.features-list {
    list-style: disc;
    padding-left: 2.6rem;
    columns: 2;
    column-gap: 40px;
    margin-bottom: 0;
}

.features-list li {
    position: relative;
    margin-bottom: 18px;
    font-size: 18px;
    color: #222;
    line-height: 1.6;
    break-inside: avoid;
}

.features-list li::marker {
    color: #0f5c9a;
}

@media screen and (max-width: 991.98px) {
.iot-wrapper {
    width: 550px;
    height: 614px;
}
.features-list li {
    margin-bottom: 6px;
    font-size: 16px;
}

.features-title {
    font-size: 24px;
    margin-bottom: 15px;
}

}







/* Responsive */
@media (max-width: 767px) {


.iot-section {
    padding: 0px 0;
}

.iot-wrapper {
    width: 200px;
    height: 355px;
    transform: scale(0.5) translateX(-50%);
    left: -12.3%;
    top: -72px;
}

.special-features {
    padding: 20px 0;
}

.features-list li {
    margin-bottom: 6px;
    font-size: 16px;
}

.features-title {
    font-size: 24px;
    margin-bottom: 15px;
}

    .features-list {
        columns: 1;
    }
	.features-title {
    padding-left: 0;
}
.features-list {
     padding-left: 1.4rem;
}
.special-features .container {
	padding: 0;
}
}



.tech-specs-title {
    background: #176ca3;
    color: #fff;
    padding: 5px 17px 3px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
}

.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #f2f2f2;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.tech-specs-table th,
.tech-specs-table td {
    padding: 12px 18px;
    border: 1px solid #cfcfcf;
    text-align: left;
    vertical-align: top;
}

.tech-specs-table th {
    width: 40%;
    font-weight: 600;
    background: #f8f9fa;
}

.tech-specs-table tr:nth-child(even) td {
    background: #f9f9f9;
}

.product-detail-section {
    padding: 30px 0;
    background: #f5f7fa;
    font-family: 'Segoe UI', sans-serif;
    padding-bottom: 12px;
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1b4f72;
    margin-bottom: 5px;
}

.product-header .subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.product-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.product-card {
    background: #ffffff;
    padding: 1.3rem;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #176ca3;
}

.product-card ul {
    padding-left: 18px;
}

.product-card ul li {
    margin-bottom: 8px;
}

.product-card p {
    line-height: 1.6;
    color: #444;
}

.product-highlight {
    padding: 30px 0;
    background: #f8f9fb;
    font-family: 'Segoe UI', sans-serif;
}

.brand-section {
    text-align: center;
    margin-bottom: 25px;
}


@media  screen and (max-width: 767px) {
.product-header h2 {
    font-size: 22px;
}
.product-header {
    margin-bottom: 20px;
}
}


.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #1c3d7a;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 14px;
    color: #666;
}

.product-title {
    text-align: center;
    margin-bottom: 40px;
}

.product-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-title .model {
    font-size: 18px;
    color: #1c3d7a;
    font-weight: 600;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1c3d7a;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #444;
}

.highlight {
    background: linear-gradient(135deg, #1c3d7a, #2f66c1);
    color: #fff;
}

.highlight h4,
.highlight p {
    color: #fff;
}


/* Title */
.kf-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e73be;
}

.kf-card {
    height: calc(100% - 1.4rem);
    background: #ffffff;
    padding: 1.3rem;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid #cccccc9e;
    margin-top: 1.4rem;
}

/* Hover Effect */
.kf-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(30, 115, 190, 0.15);
    transform: translateY(-6px);
}

.kf-heading {
    color: #1e73be;
    font-size: 20px;
    margin-bottom: 15px;
    color: #176ca3;
}

/* Text */
.kf-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}



@media  screen and (max-width: 767px) {
.product-title h2 {
    font-size: 22px;
}
.product-features {
    margin-top: 20px;
}
.product-features {
    gap: 10px;
}
}







.our-vision-new .box {
    border-bottom: 1px solid #ccc;
    position: relative;
    display: flex;
    gap: 5rem;
    align-items: center;
    padding-bottom: 1rem;
}

.our-vision-new .mission-box .icon {
    background: #8bc34a;
    padding: 0rem;
    width: 117px;
    height: 200px;
    position: relative;
}

.our-vision-new .mission-box .icon img {
    min-width: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 29%;
}


.our-vision-new .mission-box .label {
    font-size: 3rem;
    display: inline-block;
    color: var(--main-theme-blue);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--heading-family);
}

.company-section {
  display: flex;
  background: #0e2a47;
  font-family: Arial, sans-serif;
}

.company-left {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-theme-blue);
}

.company-left span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    font-family: var(--heading-family);
}

.company-right {
  flex: 1;
  padding: 40px 30px;
  background: linear-gradient(rgba(10,35,60,0.9), rgba(10,35,60,0.9)),
  url('../images/our-vision-bg.jpeg');
  background-size: cover;
}

.company-box {
    display: flex;
    align-items: flex-start;
    padding-top: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.company-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.company-box .icon {
    min-width: 70px;
}

.company-box .icon img {
  width: 50px;
}

.company-box h3 {
    color: #ffb07a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.company-box p {
    color: #e3eaf2;
    line-height: 1.6;
}

.company-box p span{
    font-weight: 700;
}


@media screen and (max-width: 991.98px) {

.company-section {
    flex-direction: column;
}

.company-left span {
    writing-mode: initial;
    transform: none;
}

.company-left {
    width: 100%;
}
}



@media screen and (max-width: 767px) {
	.company-right {
		padding: 10px 10px;
	}

.company-box h3 {
    font-size: 1.5rem;
}

.company-box .icon {
    min-width: 60px;
}

.company-box .icon img {
    width: 40px;
}
}


.ocv-5 ul {
    list-style: disc;
    padding-left: 1.3rem;
    column-gap: 40px;
    margin-bottom: 0;
}

.ocv-5 ul li {
    position: relative;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.6;
    break-inside: avoid;
}

.ocv-5 ul li::marker {
    color: #0f5c9a;
}

@media  screen and (max-width: 767px) {
	.ocv-5 .product-section h4 {
		font-size: 18px;
	}
}

.vision-mission-v2 .vm-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vision-mission-v2 .vm-title span{
	color: var(--theme-black);
}

.vision-mission-v2 .vm-block p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.vision-mission-v2 .vm-line {
  width: 50px;
  height: 3px;
  background: var(--theme-black);
  display: block;
  margin-bottom: 20px;
}

.vision-mission-v2 .mission .vm-line {
  background: var(--theme-black);
}

.vision-mission-v2 .vm-block {
  margin-bottom: 60px;
}

.vision-mission-v2 .core-card {
  padding: 40px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(
      rgba(0, 98, 171, 0.9),
      rgba(0, 98, 171, 0.9)
    ),
    url('../images/car-repairing-img.jpg');
  background-size: cover;
  background-position: center;
}

.vision-mission-v2 .core-title {
    font-size: 36px;
    margin-bottom: -6px;
    color: #fff;
}

.vision-mission-v2 .core-title-vm-line {
    width: 60px;
    height: 2px;
    background: #fff;
    display: inline-block;
}

.vision-mission-v2 .core-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.vision-mission-v2 .core-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.vision-mission-v2 .core-item h4 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.vision-mission-v2 .core-item p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
	position: relative;
}

.vision-mission-v2 .core-item:not(:last-child) p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 60px;
    height: 1px;
    background: #fff;
}

.vision-mission-v2 .core-item .icon {
    width: 80px;
    flex: 1 0 40px;
}

.vision-mission-v2 .divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  margin: 20px 0;
}



@media screen and (max-width: 991.98px) {
	.vision-mission-v2 .vm-block {
    margin-bottom: 30px;
}

.vision-mission-v2 .core-title,
.vision-mission-v2 .vm-title {
    font-size: 30px;
}
.vision-mission-v2 .vm-block p {
    font-size: 16px;
}
}

@media  screen and (max-width: 767px) {
	.vision-mission-v2 .core-card {
    padding: 20px;
    border-radius: 20px;
}
.vision-mission-v2 .core-item h4 {
    font-size: 18px;
}
.vision-mission-v2 .vm-block {
    margin-bottom: 0;
}
}

.powered-by a {
    color: #000; /* black text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: var(--main-theme-blue); /* #0062AB */
}


.product-detail-banner .text h1 {
    font-size: 1.7rem;
    position: relative;
    top: -5px;
}

@media screen and (max-width: 1366px) {
	.product-detail-banner .text h1 {
		font-size: 1.6rem;
	}
}

@media  screen and (max-width: 767px) {
	.product-detail-banner .text h1 {
		font-size: 1.5rem;
		top: 0;
	}
}

.view-all-btn {
    text-align: center;
    margin-top: 35px;
}



.testimonials-new {
	background-color: var(--main-theme-blue);
}

.testimonials-new .left-heading h3 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-align: right;
    margin-bottom: 0;
    margin-right: 1.3rem;
    margin-top: 24px;
}

.testimonials-new .left-heading h3 span {
	display: block;
}


.testimonials-new .testimonials-box .testimonial-content {
    width: 100%;
    background-image: url('../images/quote-icon.svg');
    background-repeat: no-repeat;
    background-position: left 30px top 30px;
    border: 1px #fff dashed;
    padding: 26px 60px 26px 95px;
    border-radius: 10px;
    font-weight: 600;
    font-style: italic;
    font-size: 20px;
    line-height: 35px;
    color: #ffffff;
    min-height: 265px;
    align-content: center;
}

.testimonials-new .testimonials-box .testimonial-content p {
	margin-bottom: 0;
}

.testimonials-new .testimonials-box .testimonial-author-info h5 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.testimonials-new .testimonials-box .testimonial-author-info {
   padding-left: 100px;
    margin-top: 24px;
}

@media screen and (max-width: 991.98px) {
	.testimonials-new .left-heading h3 {
		font-size: 2.4rem;
		text-align: center;
		margin-bottom: 22px;
		margin-right: 1.3rem;
		margin-top: 0;
	}

	.testimonials-new .left-heading h3 span {
      display: inline-block;
    }

	.testimonials-new .testimonials-box .testimonial-content {
    min-height: 300px;
}
}


@media  screen and (max-width: 767px) {

.testimonials-new .left-heading h3 {
    font-size: 1.6rem;
}

.testimonials-new .testimonials-box .testimonial-content {
    background-position: left 14px top 14px;
    background-size: 26px;
    border: 1px #fff dashed;
    padding: 16px 19px 16px 43px;
    font-size: 16px;
    line-height: 25px;
    min-height: 309px;
}

.testimonials-new .testimonials-box .testimonial-author-info {
    padding-left: 12px;
    margin-top: 18px;
}

.testimonials-new .testimonials-box .testimonial-author-info h5 {
    font-size: 16px;
}

.swiper-pagination-style2 .swiper-pagination {
    text-align: center;
    bottom: 0 !important;
    position: relative;
}
.testimonials-new .testimonials-box .testimonial-author-info {
    text-align: center;
}
}

.swiper-pagination-style2 {
  position: relative
}

.swiper-pagination-style2 .swiper-pagination {
    text-align: right;
    bottom: -7px !important;
}

.swiper-pagination-style2 .swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 30px;
    background-color: #ccc;
    transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    opacity: 1;
}

.swiper-pagination-style2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 34px;
  background-color: #fff;
}
