/******************************
INDEX:
    00 - General
    01 - Typography
    02 - Text Color & Background Color
    03 - Background Position & Size
    04 - Helper class
    05 - Social icons
    06 - Header
    07 - Bootstrap Overwrite 
    08 - Swiper 
    09 - Scroll To Top 
    10 - Search Box
******************************/

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');

:root {
	--pbmit-global-color: #3772ff;
	--pbmit-global-color-rgb: 55, 114, 255;
	--pbmit-secondary-color: #001837;
	--pbmit-secondary-color-rgb: 0, 24, 55;
	--pbmit-light-color: #eaf1ff;
	--pbmit-white-color: #ffffff;
    --pbmit-white-color-rgb: 255, 255, 255;
	--pbmit-blackish-color: #011938;
	--pbmit-blackish-color-rgb: 1, 25, 56;
	--pbmit-link-color-normal: #001837;
	--pbmit-link-color-hover: #3772ff;
	--pbmit-responsive-breakpoint: 1200px;

	--pbmit-body-typography-font-family: "Open Sans", sans-serif;
	--pbmit-body-typography-variant: regular;
	--pbmit-body-typography-font-size: 15px;
	--pbmit-body-typography-line-height: 1.6;
	--pbmit-body-typography-color: #6a7391;
	
	--pbmit-heading-typography-font-family: "Raleway", sans-serif;
	--pbmit-heading-color: #001837;
	--pbmit-heading-font-variant: 600;
	
	--pbmit-btn-typography-font-family: "Raleway", sans-serif;
	--pbmit-btn-typography-variant: 600;
	--pbmit-btn-typography-font-size: 15px;
	--pbmit-btn-typography-line-height: 25px;
}

/*----------------------------------------*/
/* 00 - General 
/*----------------------------------------*/
 html {
     font-family: sans-serif;
     -webkit-text-size-adjust: 100%;
     -ms-text-size-adjust: 100%;
}
 *{
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}
 body {
     margin: 0;
     overflow-x: hidden;
}
 p {
     margin: 0 0 25px;
}
 article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
     display: block;
}
 audio, canvas, progress, video {
     display: inline-block;
     vertical-align: baseline;
}
 audio:not([controls]) {
     display: none;
     height: 0;
}
 [hidden], template {
     display: none;
}
 a {
     background-color: transparent;
}
 abbr[title] {
     border-bottom: 1px dotted;
}
 small {
     font-size: 80%;
}
 sub, sup {
     font-size: 75%;
     line-height: 0;
     position: relative;
     vertical-align: baseline;
}
 sup {
     top: -0.5em;
}
 sub {
     bottom: -0.25em;
}
 img {
     border: 0;
}
 svg:not(:root) {
     overflow: hidden;
}
 figure {
     margin: 0;
}
 hr {
     -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
     box-sizing: content-box;
}
 code, kbd, pre, samp {
     font-size: 1em;
}
 button, input, optgroup, select, textarea {
     color: inherit;
     font: inherit;
     margin: 0;
}
 select {
     text-transform: none;
}
 button {
     overflow: visible;
}
 button, input, select, textarea {
     max-width: 100%;
}
 button, html input[type="button"], input[type="reset"], input[type="submit"] {
     -webkit-appearance: button;
     cursor: pointer;
}
 button[disabled], html input[disabled] {
     cursor: default;
     opacity: .5;
}
 button::-moz-focus-inner, input::-moz-focus-inner {
     border: 0;
     padding: 0;
}
 input[type="checkbox"], input[type="radio"] {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
     margin-right: 0.4375em;
     padding: 0;
}
 input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
     height: auto;
}
 input[type="search"] {
     -webkit-appearance: textfield;
}
 input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
     -webkit-appearance: none;
}
 fieldset {
     border: 1px solid #d1d1d1;
     margin: 0 0 1.75em;
     padding: 0.875em;
}
 fieldset > :last-child {
     margin-bottom: 0;
}
 legend {
     border: 0;
     padding: 0;
}
 textarea {
     overflow: auto;
     vertical-align: top;
}
 optgroup {
     font-weight: bold;
}
 textarea:hover, input:hover, textarea:active, input:active, textarea:focus, input:focus, .form-control:focus {
     box-shadow: none !important;
}
 .form-select{
	 font-size: 14px;
	 font-weight: 500;
     padding: 0 20px 0 30px;
	 height: 60px;
	 border-radius: 50px;
	 cursor: pointer;
	 color: #666;
	 background-color: var(--pbmit-blackish-color);
	 background-image: url(../images/bg/down-arrow.png);
	  background-size: 11px 13px;
}
 .form-select:focus {
     outline: none;
     box-shadow: none;
}
/*----------------------------------------*/
/* 01 - Typography 
/*----------------------------------------*/
 body {
     font-family:var(--pbmit-body-typography-font-family);
     font-weight: var(--pbmit-body-typography-variant);
     color: var(--pbmit-body-typography-color);
     font-size: var(--pbmit-body-typography-font-size);
     line-height: var(--pbmit-body-typography-line-height);
     color: var(--pbmit-body-typography-color);
     text-transform: none;
     font-style: normal;
}
 h1, h2, h3, h4, h5, h6 {
     font-family:var(--pbmit-heading-typography-font-family);
     font-weight: var(--pbmit-heading-font-variant);
     color: var(--pbmit-heading-color);
}
 h1 {
     font-size: 46px;
     line-height: 56px;
     letter-spacing: 0px;
}
 h2 {
     font-size: 40px;
     line-height: 50px;
     letter-spacing: 0px;
}
 h3 {
     font-size: 36px;
     line-height: 46px;
     letter-spacing: 0px;
}
 h4 {
     font-size: 30px;
     line-height: 40px;
     letter-spacing: 0px;
}
 h5 {
     font-size: 24px;
     line-height: 34px;
     letter-spacing: 0px;
}
 h6 {
     font-size: 20px;
     line-height: 30px;
     letter-spacing: 0px;
}
 ul {
     margin: 0;
     padding: 0;
     list-style: none;
}
 a {
     -webkit-transition: all .25s ease-in-out;
     -moz-transition: all .25s ease-in-out;
     -ms-transition: all .25s ease-in-out;
     -o-transition: all .25s ease-in-out;
     transition: all .25s ease-in-out;
     color: var(--pbmit-link-color-normal);
     text-decoration: none;
}
 a:focus {
     text-decoration: none !important;
}
 a:focus, a:hover {
     color: #3871c1;
     text-decoration: none !important;
}
 a.link-btn, .link-btn a{
     font-family: "Montserrat", Arial, Helvetica, sans-serif;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 14px;
     letter-spacing: 1px;
}
 a.link-btn i, .link-btn a i{
     padding-left: 10px;
}
.pbmit-btn {
	position: relative;
	display: inline-block;
	text-decoration: none;
	box-shadow: none;
	font-family: var(--pbmit-btn-typography-font-family);
	font-size: var(--pbmit-btn-typography-font-size);
	font-weight: var(--pbmit-btn-typography-variant);
	line-height: var(--pbmit-btn-typography-line-height);
	letter-spacing: 0px;
	text-transform: capitalize;
	font-style: normal;
	padding: 17px 30px;
	border: none;
	transition: all .3s;
	z-index: 1;
	fill: var(--pbmit-white-color);
	color: var(--pbmit-white-color);
	background-color: #3871c1;
	border-radius: 50px;
	cursor: pointer;
}
.pbmit-btn .pbmit-button-content-wrapper{
   display: flex;
   justify-content: center;
   gap: 5px;
   flex-direction: row-reverse;
}
.pbmit-btn .pbmit-button-icon{
   position: relative;
   overflow: hidden;
   margin-left: 4px;
   display: inline-flex;
}
.pbmit-btn .pbmit-button-icon:before{
	content: "\e9a9";
    font-family: "pbminfotech-base-icons";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    width: 1em;
    height: auto;
    transform: translate(-25px, 0px);
    transition: transform 0.4s ease-in-out;
}
.pbmit-btn svg{
	width: 1.2em;
    transition: all 0.4s ease-in-out;
    transform: translate(0, 0);
}
.pbmit-btn svg path{
   stroke: var(--pbmit-white-color);
}
.pbmit-btn .pbmit-button-text{
   display: inline-block;
}
.pbmit-btn:hover{
   background-color: var(--pbmit-blackish-color);
   color: var(--pbmit-white-color);
}
.pbmit-btn:hover .pbmit-button-icon:before{
   transform: translate(0px, 0px);
}
.pbmit-btn:hover .pbmit-button-content-wrapper .pbmit-button-icon svg {
   transform: translate(100%,0px);
}
.pbmit-btn-blackish{
	background-color: var(--pbmit-blackish-color);
}
.pbmit-btn-blackish:hover{
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-btn-white,
.pbmit-btn-hover-blackish{
	fill: var(--pbmit-blackish-color);
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-btn-white svg path{
	stroke: var(--pbmit-blackish-color);
}
.pbmit-btn-white:hover{
	background-color: #3871c1;
}
.pbmit-btn-outline,
.pbmit-btn-outline-hover-blackish{
    background-color: transparent;
    color: var(--pbmit-blackish-color);
    border: 1px solid var(--pbmit-blackish-color);
	white-space: nowrap;
}
.pbmit-btn-outline svg path,
.pbmit-btn-outline-hover-blackish svg path,
.pbmit-btn-outline-hover-blackish svg path{
	fill: var(--pbmit-blackish-color);
}
.pbmit-btn-outline:hover{
	border-color: #3871c1;
	background-color: #3871c1;
}
.pbmit-btn-outline-hover-blackish:hover{
	background-color: var(--pbmit-blackish-color);
}
.pbmit-bg-color-white .pbmit-btn-blackish:hover{
	color: var(--pbmit-white-color);
	background-color: #3871c1;
}
.pbmit-bg-color-secondary .pbmit-btn:hover{
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-btn .form-btn-loader svg{
    width: 50px;
}

/** Divider **/
 .sep-line{
     height: 1px;
     border-top: 1px solid #ebebeb;
     display: block;
     position: relative;
     top: 1px;
     width: 100%;
}

/*----------------------------------------*/
/* 02 - Text Color & Background Color 
/*----------------------------------------*/
 body .pbmit-bg-color-global{
     background-color: #3871c1;
}
 body .pbmit-bg-color-secondary{
     background-color: var(--pbmit-secondary-color);
}
 body .pbmit-bg-color-blackish{
     background-color: var(--pbmit-blackish-color);
}
 body .pbmit-bg-color-white{
	background-color: var(--pbmit-white-color);
}
 body .pbmit-bg-color-light{
	background-color: var(--pbmit-light-color);
 }
 body .pbmit-global-color{
     color: #3871c1;
}

/*----------------------------------------*/
/* 03 - Background Position & Size 
/*----------------------------------------*/
 .bg-cover{
    background-size: cover;
}
 .bg-contain{
    background-size: contain;
}
 .bg-pos-l{
    background-position: left;
}
 .bg-pos-r{
    background-position: right;
}
 .bg-pos-rt{
    background-position: right top;
}
 .bg-pos-lt{
    background-position: left top;
}
 .bg-pos-rb{
    background-position: right bottom;
}
 .bg-pos-lb{
    background-position: left bottom;
}

/*----------------------------------------*/
/* 04 - Helper Class 
/*----------------------------------------*/
.section-lg{
	padding-top: 100px;
	padding-bottom: 100px;
}
.section-lgx{
	padding-top: 100px;
	padding-bottom: 70px;
}
.section-md{
	padding-top: 70px;
	padding-bottom: 70px;
}
.section-xl{
	padding-top: 120px;
	padding-bottom: 100px;
}
.section-lgt{
	padding-top: 100px;
}
.section-mdb{
	padding-bottom: 70px;
}
.section-mdb.section-mdb-2 {
	padding-bottom: 20px;
}
.section-lgb{
    padding-bottom: 90px;
}
.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.pt-10 {
    padding-top: 10px !important;
}
.pt-20 {
    padding-top: 20px !important;
}
.pt-30 {
    padding-top: 30px !important;
}
.pt-40 {
    padding-top: 40px !important;
}
.pt-50 {
    padding-top: 50px !important;
}
.pt-60 {
    padding-top: 60px !important;
}
.pb-60 {
    padding-bottom: 60px !important;
}
.pb-30 {
    padding-bottom: 30px !important;
}

/*----------------------------------------*/
/* 05 - Social icons 
/*----------------------------------------*/
ul.pbmit-social-links, 
ul.pbmit-contact-info{
	margin: 0;
    padding: 0;
    list-style: none;
}
.pbmit-social-links li, 
.pbmit-contact-info li {
    display: inline-block;
    vertical-align: top;
}

/*----------------------------------------*/
/* 06 - Header 
/*----------------------------------------*/
 .navbar-brand .navbar-brand-item {
     height: 60px;
     display: block;
     width: auto;
}
 .site-header{
     position: relative;
}
 .site-header .site-branding img {
     max-width: 100%;
     height: auto;
     max-height: 90px;
     margin-top: 5px;
	 display: inline-block;
     -webkit-transition: all 300ms ease;
     transition: all 300ms ease;
}
.site-header .site-header-menu.sticky-header .site-branding img {
    max-height: 82px;
}
 .site-navigation ul.navigation > li > a {
	 font-size: 17px;
	 font-weight: 700;
     position: relative;
     z-index: 1;
	 display: block;
	 text-transform: capitalize;
     letter-spacing: 1px;
     color: var(--pbmit-blackish-color);
}
.site-navigation ul.navigation > li > a:hover:after{
    color: rgba(255, 255, 255,.8);
}
.main-menu .navigation > li > ul a{
	position: relative;
    display: table-cell;
	font-family: var(--pbmit-body-typography-font-family);
    font-weight: 500;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 0px;
	text-transform: none;
    font-style: normal;
    color: var(--pbmit-blackish-color);
}
.main-menu .navigation > li > ul a:after{
	display: none;
}
 .site-navigation ul.navigation a{
     font-family: var(--pbmit-heading-typography-font-family);
     font-weight: normal;
     font-size: 16px;
     font-style: normal;
}
 .main-menu .navigation > li {
     position: relative;
     float: left;
     margin: 0px;
	 padding: 0 22px;
     -webkit-transition: all 300ms ease;
     -moz-transition: all 300ms ease;
     -ms-transition: all 300ms ease;
     -o-transition: all 300ms ease;
     transition: all 300ms ease;
}
 .main-menu .navigation > li > ul > li > ul {
     left: 100%;
     top: 0;
}
 .main-menu .navigation > li.dropdown:hover > ul , .main-menu .navigation > li > ul > li.dropdown:hover > ul {
     visibility: visible;
     opacity: 1;
     transform: translate(0,-5px);
     z-index: 999;
}
 .header-button .pbmit-btn{
     padding: 15px 24px;
}
 .header-button .pbmit-btn i{
     font-size: 20px;
}
 .site-header .search-btn{
     margin-right: 15px;
     font-size: 17px;
}
 .site-header .social-icons li > a{
     height: 50px;
     line-height: 50px;
}
 .ipad-view-search{
     display: none;
}
 .pbmit-link li{
     margin: 0 10px;
}
.closepanel, .pbmit-mobile-menu-bg, .site-header .righticon {
    display: none;
}
/** sticky-header **/
 .sticky-header{
    position: fixed !important;
    top: 0px;
	left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    margin: 0;
    box-shadow: 0 2px 5px rgb(0 0 0 / 8%);
    transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
}
 .site-header-menu.sticky-header .logo-img.stickylogo{
     display: inline-block;
}
.sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 300ms;
    -moz-animation-duration: 300ms;
    -op-animation-duration: 300ms;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.fadeInDown{
	animation-name:fadeInDown
} 
@keyframes fadeInDown{
	from{
		opacity:0;
		transform:translate3d(0,-100%,0)
	}
	to{
		opacity:1;transform:none
	}
}
/* Pre Header */
 .pbmit-pre-header-wrapper{
    height: 60px;
    line-height: 56px;
    color: var(--pbmit-blackish-color);
    border-top: 4px solid #3570b8;
}
 .list-unstyled i{
    font-size: 14px;
    color: #666;
}
.pbmit-contact-info li a:hover {
    font-weight:bold;
}

/*----------------------------------------*/
/* 07 - Bootstrap Overwrite 
/*----------------------------------------*/
 .g-lg-4,.gy-lg-4, .g-4, .gy-4 {
     --bs-gutter-y: 2rem;
}
 .g-lg-4,.gx-lg-4, .g-4, .gx-4 {
     --bs-gutter-x: 2rem;
}
 .row>* {
     padding-right: calc(var(--bs-gutter-x) * .5);
     padding-left: calc(var(--bs-gutter-x) * .5);
}

/*----------------------------------------*/
/* 08 - Swiper 
/*----------------------------------------*/
 .swiper-slider{
     margin-left: auto;
     margin-right: auto;
     position: relative;
     overflow: hidden;
     z-index: 1;
}
 .swiper-pagination-bullet {
	position: relative;
    outline: none;
    height: 12px;
    width: 12px;
	top: 0px;
	left: 0px;
	opacity: 1;
    vertical-align: middle;
	border-radius: 50%;
	margin: 7px 0px !important;
	display: block;
	background: var(--pbmit-blackish-color);
}
.swiper-pagination-bullet-active{
	background-color: #3871c1;
}
 .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal,
 .swiper-pagination-custom, .swiper-pagination-fraction {
     bottom: 5px;
     left: 0px;
	 display: flex;
     align-items: center;
     justify-content: center;
}
 .swiper-slider[data-dots="true"] {
     padding-bottom: 50px;
}
 .swiper-button-next:after, .swiper-button-prev:after {
	content: "\e814";
    font-family: "pbminfotech-base-icons";
    font-size: 22px;
	line-height: normal;
}
 .swiper-button-prev, .swiper-rtl .swiper-button-next {
    transform: rotate(180deg);
	background-color: var(--pbmit-secondary-color);
}
 .swiper-button-next, .swiper-button-prev{
	position: static;
	display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 0 50% 50% 0;
    background-color: var(--pbmit-blackish-color);
    color: var(--pbmit-white-color);
    transition: all 500ms ease;
}
 .swiper-button-next{
	background-color: var(--pbmit-blackish-color);
}
 .swiper-button-prev{
	left: auto;
 }
 .swiper-button-prev.swiper-button-disabled{
	opacity: 1;
	cursor: pointer;
	pointer-events: auto;
 }
.swiper-button-next:hover, .swiper-button-prev:hover{
	 color: #3871c1;
     background-color: var(--pbmit-blackish-color);
}
.pbmit-bg-color-secondary .swiper-button-prev,
.pbmit-bg-color-secondary .swiper-button-next{
	color: var(--pbmit-secondary-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-bg-color-secondary .swiper-button-prev:hover,
.pbmit-bg-color-secondary .swiper-button-next:hover{
	color: #3871c1;
}
.pbmit-bg-color-blackish .swiper-button-prev,
.pbmit-bg-color-blackish .swiper-button-next{
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-bg-color-secondary .swiper-btn-custom:after,
.pbmit-bg-color-blackish .swiper-btn-custom:after{
	color: rgba(var(--pbmit-blackish-color-rgb), 0.5);
}
.swiper-slider.marquee .swiper-slide {
    display: flex;
    width: auto!important;
}
.swiper-slider.marquee .swiper-wrapper{
    -webkit-transition-timing-function:linear !important; 
    -o-transition-timing-function:linear !important; 
    transition-timing-function:linear !important; 
}
/*----------------------------------------*/
/* 09 - Scroll To Top 
/*----------------------------------------*/
.pbmit-progress-wrap {
	position: fixed;
    right: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.pbmit-progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pbmit-progress-wrap::after {
	position: absolute;
    content: '\e812';
    font-family: 'pbminfotech-base-icons';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #3871c1;
    left: 2px;
    top: 2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.pbmit-progress-wrap::before {
	position: absolute;
	content: '\e812';
	font-family: 'pbminfotech-base-icons';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.pbmit-progress-wrap:hover::before {
	opacity: 1;
}
.pbmit-progress-wrap svg path {
	fill:rgba(var(--pbmit-global-color-rgb),.2);
}
.pbmit-progress-wrap svg.pbmit-progress-circle path {
	stroke: #3871c1;
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

/*----------------------------------------*/
/*  10 - Search Box
/*----------------------------------------*/
.pbmit-search-overlay {
    position: fixed;
    top: -500px;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    -ms-transition: .4s;
    transition: .4s;
}
.pbmit-search-overlay.st-show {
    opacity: 1;
    top: 0;
}
.pbmit-icon-close {
    position: absolute;
    top: 40px;
    right: 40px;
    opacity: 0.8;
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    -ms-transition: .4s;
    transition: .4s;
    text-align: center;
    cursor: pointer;
    border-color: var(--pbmit-white-color);
    color: var(--pbmit-white-color);
}
.pbmit-icon-close:hover{
	opacity: 1;
}
@keyframes pbmit-closer-line-draw {
	0%,100% {
		clip-path:inset(-1px 0 -1px 0);
		-webkit-clip-path:inset(-1px 0 -1px 0);
	}
	55% {
		clip-path:inset(-1px 0 -1px 100%);
		-webkit-clip-path:inset(-1px 0 -1px 100%);
	}
	56% {
		clip-path:inset(-1px 100% -1px 0);
		-webkit-clip-path:inset(-1px 100% -1px 0);
	}
}
.pbmit-icon-close svg{
	fill: var(--pbmit-white-color);
}
.pbmit-icon-close svg rect{
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pbmit-icon-close:hover svg rect,
.closepanel:hover svg rect{
	animation: pbmit-closer-line-draw .6s;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: pbmit-closer-line-draw;
}
.pbmit-icon-close:hover svg rect:nth-of-type(2),
.closepanel:hover svg rect:nth-of-type(2){
	animation-delay: .17s;
}
.pbmit-search-outer {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
	text-align: center;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pbmit-search-overlay .pbmit-site-searchform {
    position: relative;
}
.pbmit-search-overlay .pbmit-site-searchform:before{
	position: absolute;
    bottom: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.pbmit-search-overlay .pbmit-site-searchform:after{
	font-family: "pbminfotech-base-icons";
    content: '\e80d';
    position: absolute;
    right: 10px;
    top: 15px;
    color: var(--pbmit-white-color);
    font-size: 25px;
    line-height: normal;
}
.pbmit-search-overlay.st-show .pbmit-site-searchform:before{
	-webkit-animation-name: fadeInMove;
    animation-name: fadeInMove;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
}
@keyframes fadeInMove {
	0% {
		opacity: 0;
		transform: scale3d(0, 1, 1);
	}
	10% {
		opacity: 1;
		transform: scale3d(0.1, 1, 1);
	}
	100% {
		opacity: 0.14;
		transform: scale3d(1, 1, 1);
	}
}
.pbmit-search-overlay input[type="search"] {
    height: 65px;
    line-height: 65px;
	font-weight: 400;
    font-size: 28px;
    background-color: transparent;
    text-align: left;
    border: none;
    border-bottom: 1px solid #ffffff54;
    padding-left: 0;
    border-radius: 0;
	font-family: inherit;
	color: var(--pbmit-white-color);
}
.pbmit-search-overlay input[type="search"]::placeholder{
	color: rgba(var(--pbmit-white-color-rgb),.7);
}
.pbmit-search-overlay .pbmit-site-searchform button {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    background-color: transparent;
    text-indent: -9999px;
	line-height: 58px;
    font-size: 16px;
	outline: none;
	padding: 0;
    border: none;
    z-index: 1;
    color: var(--pbmit-white-color);
}
.site-header .pbmit-header-search-btn {
    display: flex;
    position: relative;
}
.site-header .pbmit-header-search-btn input {
	height: 52px;
    padding-right: 55px;
    padding-left: 15px;
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-white-color);
    border-radius: 40px;
    border: 1px solid #ced3d9;
    margin-bottom: 0;
}
.site-header .pbmit-header-search-btn input:hover,
.site-header .pbmit-header-search-btn input:focus {
    border: 1px solid #3871c1;
}
.site-header .pbmit-header-search-btn a {
    position: absolute;
    right: 32px;
    top: 1px;
}

@media (min-width:1200px) and (max-width:1399px) {
.site-header .pbmit-header-search-btn input {
	width: 200px;
}
.site-header .pbmit-header-search-btn{
	padding: 0 10px;
}

.site-navigation ul.navigation > li > a {
    font-size: 14px;
}
.site-header .pbmit-header-search-btn a {
    right: 10px;
}
}
.font-38 {
    font-size: 38px !important;
}
.form-control:hover, form select:hover,
.form-control:focus, form select:focus {
	border: 1px solid rgb(56 113 193);
}
.products_box_bg {
    display: flex;
    justify-content: center;
}
.icons_section {
    border: 1px solid rgb(184, 184, 184);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%), 0 6px 20px 0 rgb(0 0 0 / 10%);
    padding: 20px 0px;
    transition: transform .3s;
    margin: 0 auto;
    filter: grayscale(100%);
	margin-bottom:30px;
	background: #fff;
    border-radius: 20px;
}
.icons_section:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
    transform: scale(1.09);
}
.icons_section img {
	border-radius: 50%;
    width: 200px;
    margin-bottom: 20px;
}
.icons_section h5 {
    font-size: 20px;
    padding: 3px 5px 0px 5px;
    display: flex;
    flex-direction: column;
    place-content: center;
    align-items: center;
    font-weight: 600;
}
.icons_section:hover h5 {
    color: #102c54;
}
.zoom {
  animation: scale 6s linear infinite;
}
  
@keyframes scale {
  50% {
    -webkit-transform:scale(1.2);
    -moz-transform:scale(1.2);
    -ms-transform:scale(1.2);
    -o-transform:scale(1.2);
    transform:scale(1.2);
  }
}
.service-page--one .owl-carousel .animated {
    overflow: hidden;
}
.atoz_sec {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow-x: auto;
}
.atoz_sec span {
    padding: 10px 14px;
    margin-right: 2px;
    font-size: 17px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid rgb(204 204 204 / 42%);
    border-radius: 0px;
    transition: background-color 0.3s ease;
	font-weight:600;
	border-radius: 50px;
}
.atoz_sec span:hover,
.atoz_sec span.active {
    background-color: #1d7983;
    border-top: 4px solid #b235b1  !important;
    color: #fff;
    display: inline-flex;
}
.service-sidebar__nav {
    border-top: 0;
    margin-bottom: 0;
    padding: 30px 20px;
    box-shadow: 0px 0px 6px #ccc;
	background:#fff;
	border-radius: 20px;
}
.product_view_list li {
    width: 19.2%;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 0.8%;
	display: inline-flex;
}
.service-sidebar__nav li a {
    position: relative;
    z-index: 1;
    color: var(--laboix-base, #021936);
    background: var(--laboix-white, #fff);
    justify-content: space-between;
    align-items: center;
    transition: all 500ms ease;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 162.5%;
    border: 2px solid #ccc;
	border-radius: 50px;
}
.product_view_list li a {
	padding: 12px 20px;
	width: 100%;
    text-overflow: ellipsis;
	overflow: hidden;
	display:block;
	text-transform: capitalize;
}
.product_view_list li a::after {
	display:none;
}
.service-sidebar__nav li.current a, 
.service-sidebar__nav li:hover a {
    color: #102c54;
}
.service-sidebar__nav li a::before {
    content: "";
    width: 0%;
    height: 100%;
    background-color: rgb(65 120 196 / 20%);
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    z-index: -1;
    transition: all 500ms ease-in-out;
}
.service-sidebar__nav li.current a::before, 
.service-sidebar__nav li:hover a::before {
    width: 100%;
    left: 0;
    right: auto;
}
.left_product-list-bg .widget {
    padding: 20px 10px !important;
    border: 1px solid rgba(var(--pbmit-blackish-color-rgb), .2) !important;
    border-radius: 20px !important;
    background-color: #fff !important;
}
.service-details .all-post-list li a {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pro_card_list {
	list-style: none;
    padding: 0px;
}
.pro_card_list li {
	color: #444;
    font-size: 15px;
	background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
	margin-bottom:4px;
}
.pro_card_list li span {
	margin-left: 15px;
    font-weight: normal;
}
.pro_card_list li:hover {
    background-size: 100% 1px;
}
.product_sec_rgt .pbmit-element-posts-wrapper .pbmit-team-style-1 {
    margin-bottom: 0 !important;
}
.product_sec_rgt .pbmit-team-style-1 .pbmit-team-btn {
    right: 0;
}
.product_sec_rgt .pbmit-service-style-1:hover .pbminfotech-box-social-links {
    transform: translateY(-25px);
    opacity: 1;
}
.product-details_img-bg {
	background: #fff;
    padding: 0 10px 50px;
}
.product-details__excerpt table .first_child {
    white-space: nowrap;
    font-weight: bold;
    color: #222;
}
.add_rfq_btn {
	padding: 8px 20px;
    background: #fff;
	color:#011938;
}
.service_main-sec .pbmit-service-style-1 .pbmit-service-description {
    padding: 20px 40px 0 0;
    margin-top: 18px;
}
.service_main-sec .pbmit-service-style-1 .pbmit-service-title {
    text-decoration: none;
	text-transform: none;
}
.list_core li {
    margin-right: 25px;
    margin-top: 10px;
    color: #fff !important;
}
.about_inner-3 .pbmit-ihbox-style-6 .pbmit-ihbox-headingicon {
    padding: 20px !important;
}
.about_inner-3 .ihbox-two-bg {
    padding: 40px;
}
.sidebar__title {
    margin: 0;
    margin-top: -5px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--laboix-secondary, #102c54);
}
.pronation_widget ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-left: 0;
  margin-bottom: 0;
}
.pronation_widget ul a {
  display: inline-block;
  padding: 0px 15px;
  border: 1px solid var(--laboix-border-color, #DBDBDB);
  color: var(--laboix-base, #021936);
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  transition: all 500ms ease-in-out;
}
.pronation_widget ul a.active, .pronation_widget ul a:hover {
  background-color: var(--laboix-secondary, #102c54);
  color: var(--laboix-white, #fff);
  border: 1px solid var(--laboix-secondary, #102c54);
}
.inner_pro-rgt-0 .pbmit-team-btn {
    right: 0 !important;
}

.whats_bg {
  position:fixed;
  bottom: 75px;
  right: 0px;
  z-index:999;
}
.whats_bg img {
  width:55px;
  transition: .6s ease-in-out;
    position: absolute;
    left: -30px;
    top: -6px;
}
.whats_bg img:hover {
    transform: scale(1.1);
  margin-bottom:20px;
}
.person_icon1 {
    color: #ffffff;
    border: 2px solid rgb(0 195 68);
    text-align: center;
    box-shadow: 2px 2px 8px -3px #000;
    display: inline-block;
    background: rgb(0 195 68);
    font-size: 16px;
    padding: 8px 10px 8px 18px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: auto;
    height: auto;
    font-weight: bold;
}
.person_icon1:hover {
	border:2px solid #fff;
}
.sidebar__posts__title span.badge {
    font-size: 16px;
    color: #3175b8 !important;
}
.pro_inner-3sec .pbmit-title .split-line span {
    border-bottom: 1px solid #4178c469;
}
.contact_bg-sec .pbmit-heading-desc {
    margin-bottom:15px;
}
.contact_bg-sec .pbmit-heading-desc i {
    font-size: 20px;
    margin-right: 8px;
    font-weight: bold;
    color: #000;
}
.contact_bg-sec .pbmit-ihbox-style-5 .pbmit-ihbox-contents {
    margin-bottom: 0;
}
.contact_bg-sec .pbmit-ihbox-style-5 .pbmit-ihbox-headingicon {
    padding-bottom:30px;
}
@media (min-width:1200px) {
.partners_sec-bg .lrg_wdh {
    width: 86%;
    margin: auto;
}
}

.partners_sec-bg a {
    padding: 10px 5px;
    text-align: center;
    position: relative;
}
.partners_sec-bg a img {
    display: inline-block;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 1rem rgb(0 0 0 / 14%) !important;
    margin-top: 0;
}
.partners_sec-bg a:hover img {
    box-shadow: none !important;
}
.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    display: none;
    align-items: center;
}
.popup-content {
    background-color: #fefefe;
    margin: 4% auto 2%;
    padding: 20px;
    border: 1px solid #888;
    width: 65%;
    border-radius: 30px;
}
.popup-content a.close{
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration:none;
}
.popup-content a.close:hover{
  color:#333;
}
.popup-container:target{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  display: block;
  overflow: auto;
}
.product-details__top.popup_top_t1 {
	display:block;
}
.popup_top_t1 h5 {
	display:block;
}
.popup_top_t1 p {
	color:#222;
	margin-bottom: 10px;
}
.popup_top_t1 table {
	margin-bottom: 5px;
}
.popup_top_t1 table td {
	font-size: 14px;
	padding: 0px 0 !important;
}
.popup-container .pro_bg_watermark::after {
	left:15%;
}
.popup-container .form-group,
.popup-container .form-group label {
    font-size: 13px;
}
.product-details {
  position: relative;
  padding: 20px 0;
}
.popup-content .form-control, 
.popup-content form select {
    height: 40px;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 10px;
}
.popup-content textarea.form-control {
    padding: 15px;
    height: 80px;
    border-radius: 50px;
}
@media (max-width: 991px) {
  .product-details {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .product-details {
    padding: 80px 0;
  }
}
.product-details__img {
  background-color: var(--laboix-white, #fff);
  position: relative;
  border: 1px solid var(--laboix-border-color, #DBDBDB);
  max-width: 570px;
  height: auto;
}
.product-details__img img {
  object-fit: contain;
  width: auto;
  height: 220px;
  margin:0 auto;
}
.product-details__content {
  position: relative;
  margin-top: -10px;
}
@media (max-width: 991px) {
  .product-details__content {
    margin-top: 50px;
  }
}
.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.product-details__title {
  margin-top: 5px;
  font-size: 24px;
  color: var(--laboix-base, #021936);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: none;
}
@media (min-width: 768px) {
  .product-details__title {
    font-size: 24px;
  }
}
.product-details__price {
  margin: 0 0 0 17px;
  color: var(--laboix-secondary, #102c54);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 2.5px;
  font-size: 17px;
  color: var(--laboix-secondary, #102c54);
}
.product-details__review a {
  display: inline-block;
  margin-left: 20px;
  transition: all 500ms ease;
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
}
.product-details__review a:hover {
  color: var(--laboix-secondary, #102c54);
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--laboix-border-color, #DBDBDB);
  margin: 32px 0 20px 0;
}
.product-details__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}
.product-details__excerpt-text1 {
  margin: 0 0 17px;
  max-width: 514px;
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}
.product-details__excerpt-text2 {
  color: var(--laboix-text, #6A6A6A);
  margin-bottom: 37px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 767px) {
  .product-details__excerpt-text2 br {
    display: block;
  }
}
.product-details__excerpt-text2 span {
  display: block;
  margin-top: 5px;
  font-weight: 600;
  color: var(--laboix-secondary, #102c54);
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}
.product-details__quantity-title {
  margin: 0;
  margin-right: 35px;
  font-weight: bold;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: auto;
  height: 46px;
  display: flex;
}
.product-details__quantity .quantity-box input {
  width: 45px;
  height: 46px;
  border: 1px solid var(--laboix-border-color, #DBDBDB);
  appearance: textfield;
  color: var(--laboix-base, #021936);
  padding-left: 15px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 45px;
  height: auto;
  color: var(--laboix-text, #6A6A6A);
  font-size: 12px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button:hover, .product-details__quantity .quantity-box button:focus, .product-details__quantity .quantity-box button:active {
  background: var(--laboix-secondary, #102c54);
  color: var(--laboix-white, #fff);
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--laboix-border-color, #DBDBDB);
  border-left: 1px solid var(--laboix-border-color, #DBDBDB);
  border-bottom: 1px solid var(--laboix-border-color, #DBDBDB);
}
.product-details__quantity .quantity-box button.add {
  border-top: 1px solid var(--laboix-border-color, #DBDBDB);
  border-right: 1px solid var(--laboix-border-color, #DBDBDB);
  border-bottom: 1px solid var(--laboix-border-color, #DBDBDB);
}
.product-details__quantity .quantity-box button:hover {
  color: var(--laboix-white, #fff);
}
.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0px 0;
}
@media (max-width: 768px) {
  .product-details__buttons a {
    padding: 16.55px 35px;
  }
}
.product-details__buttons a:hover {
  color: var(--laboix-white, #fff);
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 38px;
  margin-top: 40px;
}
.product-details__socials__title {
  display: flex;
  margin-bottom: 0;
  color: var(--laboix-base, #021936);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials__item {
  display: flex;
  gap: 20px;
}
.product-details__socials__item a {
  display: inline;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--laboix-border-color, #DBDBDB);
  font-size: 12px;
  color: var(--laboix-base, #021936);
  transition: all 500ms ease;
  border-radius: 50%;
}
.product-details__socials__item a:hover {
  background-color: var(--laboix-base, #021936);
  color: var(--laboix-white, #fff);
}
.product-details__description {
  position: relative;
  margin: 50px 0 0;
}
@media (min-width: 768px) {
  .product-details__description {
    margin: 72px 0 0;
  }
}
.product-details__description__title {
  margin-bottom: 22px;
  color: var(--laboix-base, #021936);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
.product-details__description__text {
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}
.product-details__description__lists {
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 0;
}
.product-details__description__lists li {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  color: var(--laboix-base, #021936);
}
.product-details__description__lists li i {
  color: var(--laboix-secondary, #102c54);
  margin-right: 5px;
}
.product-details__comment {
  border-top: 1px solid var(--laboix-border-color, #DBDBDB);
  margin: 30px 0 0;
  padding: 30px 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .product-details__comment {
    margin: 44px 0 0;
    padding: 43px 0 0;
  }
}
.product-details__review-title {
  margin-bottom: 22px;
  color: var(--laboix-base, #021936);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
.product-details__comment-box {
  position: relative;
  padding: 11px 0 52px 200px;
  margin-bottom: 45px;
  min-height: 166px;
  border-bottom: 1px solid var(--laboix-border-color, #DBDBDB);
}
@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.product-details__comment-box__thumb {
  width: 168px;
  height: 168px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  margin: 0;
  border: none;
}
@media (max-width: 767px) {
  .product-details__comment-box__thumb {
    position: relative;
    margin: 0 0 20px;
  }
}
.product-details__comment-box__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.product-details__comment-box__meta {
  margin: 0 0 20px;
  color: var(--laboix-base, #021936);
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
}
.product-details__comment-box__date {
  margin-left: 20px;
  display: inline-block;
  text-transform: inherit;
  color: var(--laboix-secondary, #102c54);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  letter-spacing: 1.6px;
}
.product-details__comment-box__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}
.product-details__comment-box__ratings {
  position: absolute;
  right: 0;
  top: 13px;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 17px;
  color: var(--laboix-secondary, #102c54);
}
@media (max-width: 767px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0;
    margin: 0 0 22px;
  }
}
.product-details__form {
  position: relative;
}
.product-details__form .row {
  --bs-gutter-x: 20px;
}
.product-details__form-title {
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: bold;
  color: var(--laboix-base, #021936);
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 25px;
  color: var(--laboix-secondary, #102c54);
  margin: 0 0 40px;
}
.product-details__form-ratings i {
  color: var(--laboix-secondary, #102c54);
}
.product-details__form-ratings__label {
  display: inline-block;
  letter-spacing: 0;
  color: var(--laboix-text, #6A6A6A);
  margin: 0 17px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
.product-details__form__form {
  margin-top: 0;
}
.product-details__form__form .form-one__control input, .product-details__form__form .form-one__control textarea {
  background: var(--laboix-border-color2, #F3F3F3);
}
.product-details__form__form .form-one__control input::placeholder, .product-details__form__form .form-one__control textarea::placeholder {
  color: var(--laboix-text, #6A6A6A);
}
.product-details__form__form .laboix-btn {
  padding: 19px 40.55px;
}
.product-details__form__form .laboix-btn:hover {
  color: var(--laboix-white, #fff);
}
.gallery-one__card img {
  max-width: 96%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background-color: rgba(var(--laboix-base-rgb, 2, 25, 54), 0.1);*/
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index:9;
}
.gallery-one__card__hover .img-popup {
  position: relative;
}
/*.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}*/
.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-one__card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--laboix-secondary, #102c54);
  transition: all 0.5s ease-in-out;
}
.gallery-one__card__icon__item {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}
.gallery-one__card__icon__item::after, .gallery-one__card__icon__item::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--laboix-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-one__card__icon__item::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gallery-one__card__icon:hover {
  background: var(--laboix-base, #021936);
}

.gallery-two {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}
.gallery-two .container-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .gallery-two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.gallery-two .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.gallery-two__col-one {
  width: 65%;
}
@media (max-width: 1199px) {
  .gallery-two__col-one {
    width: 100%;
  }
}
.gallery-two__col-two {
  width: 35%;
}
@media (max-width: 1199px) {
  .gallery-two__col-two {
    width: 100%;
  }
}
.gallery-two__card {
  position: relative;
  overflow: hidden;
  background-color: var(--laboix-black, #000);
}
.gallery-two__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-two__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--laboix-black-rgb, 0, 0, 0), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-two__card__hover .img-popup {
  position: relative;
}
.gallery-two__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-two__card:hover .gallery-two__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-two__card a {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--laboix-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-two__card a:hover .gallery-two__card__icon::after, .gallery-two__card a:hover .gallery-two__card__icon::before {
  background-color: var(--laboix-base, #021936);
}
.gallery-two__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}
.gallery-two__card__icon::after, .gallery-two__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--laboix-black, #000);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-two__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gallery-two__info {
  position: relative;
  background-color: var(--laboix-base, #021936);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 50px 0 100px;
  height: 100%;
}
@media (min-width: 1200px) {
  .gallery-two__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 1500px) {
  .gallery-two__info {
    padding-left: 40px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .gallery-two__info {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .gallery-two__info {
    padding: 50px 30px;
  }
}
.gallery-two__info__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}
.gallery-two__info__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-two__info__title {
  color: var(--laboix-white, #fff);
  font-size: 44px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 45px;
  }
}
