/******************************

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=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap" rel="stylesheet');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');

:root {
    --pbmit-global-color: #516f57;

    --pbmit-global-color-rgb: 81, 111, 87;

    --pbmit-secondary-color: #feef0e;

    --pbmit-secondary-color-rgb: 254, 239, 14;

    --pbmit-light-color: #f4f7fc;

    --pbmit-white-color: #ffffff;

    --pbmit-white-color-rgb: 255, 255, 255;

    --pbmit-blackish-color: #000000;

    --pbmit-blackish-color-rgb: 0, 0, 0;

    --pbmit-gradient-color-first: #0e009a;

    --pbmit-gradient-color-last: #2166ff;

    --pbmit-link-color-normal: #17181b;

    --pbmit-link-color-hover: #2166ff;

    --pbmit-responsive-breakpoint: 1200px;

    --pbmit-body-typography-font-family: "DM Sans", serif;

    --pbmit-body-typography-variant: regular;

    --pbmit-body-typography-font-size: 17px;

    --pbmit-body-typography-line-height: 1.6;

    --pbmit-body-typography-color: #6e7982;

    --pbmit-heading-typography-font-family: "Inter", serif;

    --pbmit-heading-color: #000000;

    --pbmit-heading-font-variant: 600;

    --pbmit-btn-typography-font-family: "Inter", serif;

    --pbmit-btn-typography-variant: 600;

    --pbmit-btn-typography-font-size: 15px;

    --pbmit-btn-typography-line-height: 24px;
}

/*----------------------------------------*/

/* 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: 0.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 {
    outline: 0px !important;

    -webkit-appearance: none;

    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.html); */

    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: 55px;

    line-height: 60px;

    letter-spacing: 0px;
}

h2 {
    font-size: 50px;

    line-height: 55px;

    letter-spacing: 0px;
}

h3 {
    font-size: 45px;

    line-height: 50px;

    letter-spacing: 0px;
}

h4 {
    font-size: 35px;

    line-height: 40px;

    letter-spacing: 0px;
}

h5 {
    font-size: 30px;

    line-height: 35px;

    letter-spacing: 0px;
}

h6 {
    font-size: 25px;

    line-height: 30px;

    letter-spacing: 0px;
}

ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

a {
    -webkit-transition: all 0.25s ease-in-out;

    -moz-transition: all 0.25s ease-in-out;

    -ms-transition: all 0.25s ease-in-out;

    -o-transition: all 0.25s ease-in-out;

    transition: all 0.25s ease-in-out;

    color: var(--pbmit-link-color-normal);

    text-decoration: none;
}

a:focus {
    text-decoration: none !important;
}

a:focus,
a:hover {
    color: var(--pbmit-secondary-color);

    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-flex;

    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: none;

    font-style: normal;

    padding: 6px 6px 6px 20px;

    border: none;

    transition: all 0.3s;

    z-index: 1;

    align-items: center;

    fill: var(--pbmit-white-color);

    color: var(--pbmit-white-color);

    background-color:var(--pbmit-blackish-color);;

    border-radius: 50px;

    cursor: pointer;
}
.sticky-header {
       background-color: #516f57 !important;
    }
.pbmit-btn .pbmit-button-icon-wrapper {
    position: relative;

    overflow: hidden;

    display: inline-grid;

    margin-left: 12px;

    font-size: 12px;

    width: 40px;

    height: 40px;

    line-height: 40px;

    text-align: center;

    border-radius: 50%;

    color: #20315d;

    background-color: var(--pbmit-white-color);

    -webkit-transition: all 0.25s ease-in-out;

    transition: all 0.25s ease-in-out;
}

.pbmit-btn .pbmit-button-icon-wrapper:before {
    content: "\e8dd";

    font-family: "pbminfotech-base-icons";

    position: absolute;

    top: 0;

    right: 0;

    width: 1em;

    height: auto;

    font-weight: 400;

    opacity: 0;

    visibility: hidden;

    transform: scale(0.26) translate(-100px, 70px);

    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.pbmit-btn .pbmit-button-icon {
    display: inline-block;

    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.pbmit-btn:hover {
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-secondary-color);
}

.pbmit-btn:hover .pbmit-button-icon-wrapper:before {
    transform: scale(1) translate(-13px, 0);

    opacity: 1;

    visibility: visible;
}

.pbmit-btn:hover .pbmit-button-icon {
    opacity: 0;

    transform: scale(0.26) translate(60px, -60px);
}

.pbmit-btn-white {
    color: var(--pbmit-blackish-color);

    background-color: var(--pbmit-white-color);
}

.pbmit-btn-white .pbmit-button-icon-wrapper {
    color: var(--pbmit-white-color);

    background-color: #20315d;
}

.pbmit-btn-blackish {
    color: var(--pbmit-white-color);

    background-color: var(--pbmit-blackish-color);
}

.pbmit-btn-blackish .pbmit-button-icon-wrapper {
    background-color: var(--pbmit-white-color);
}

.pbmit-btn-blackish:hover {
    background-color: #20315d;
}

.pbmit-btn-blackish:hover .pbmit-button-icon-wrapper {
    background-color: var(--pbmit-white-color);
}

.pbmit-btn.pbmit-btn-style-text.blackish {
    color: var(--pbmit-blackish-color);

    background-color: transparent;
}

.pbmit-btn-style-text .pbmit-button-icon-wrapper {
    color: var(--pbmit-white-color);

    background-color: #20315d;
}

.pbmit-btn.pbmit-btn-style-text:hover {
    color: #20315d;
}

.pbmit-btn-outline {
    color: #20315d;

    border: 1px solid #20315d;

    background-color: var(--pbmit-white-color);
}

.pbmit-btn-outline .pbmit-button-icon-wrapper {
    color: var(--pbmit-white-color);

    background-color: #20315d;
}

.pbmit-btn-outline:hover {
    background-color: #20315d;
}

.pbmit-btn-outline:hover .pbmit-button-icon-wrapper {
    background-color: var(--pbmit-blackish-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: #20315d;
}

body .pbmit-bg-color-secondary {
    background-color: var(--pbmit-secondary-color);
}

body .pbmit-bg-color-blackish {
    background-color: var(--pbmit-global-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: #20315d;
}

/*----------------------------------------*/

/* 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-xl {
    padding-top: 80px;

    padding-bottom: 90px;
}

.section-lg {
    padding-top: 80px;

    padding-bottom: 40px;
}

.section-md {
    padding-top: 100px;

    padding-bottom: 70px;
}

.section-lgt {
    padding-top: 120px;
}

.section-mdt {
    padding-top: 80px;
}

.section-lgb {
    padding-bottom: 90px;
}

.section-mdb {
    padding-bottom: 90px;
}

/*----------------------------------------*/

/* 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;
    background: #516f57;
}

.site-header .site-branding img {
    max-width: 100%;

    height: auto;

    max-height: 70px;

    display: inline-block;

    -webkit-transition: all 300ms ease;

    transition: all 300ms ease;
}

.site-navigation ul.navigation > li > a {
    font-size: 15px;

    font-weight: 500;

    position: relative;

    z-index: 1;

    display: block;

    text-transform: none;

    letter-spacing: 0px;

    color: var(--pbmit-white-color);
}

.main-menu .navigation > li > ul a {
    position: relative;

    display: table-cell;

    font-weight: 500;

    font-size: 14px;

    line-height: 24px;

    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 18px;

    -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 ul > li.dropdown > a:after {
    font-family: "pbminfotech-base-icons";

    content: "\e811";

    margin-left: 5px;

    font-size: 10px;

    font-weight: 900;

    vertical-align: top;

    color: var(--pbmit-white-color);
}

.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 **/

.site-header-menu.sticky-header .logo-img.stickylogo {
    display: inline-block;
}

/* Pre Header */

.pbmit-pre-header-wrapper {
    height: 60px;

    line-height: 60px;

    color: var(--pbmit-blackish-color);
}

.list-unstyled i {
    font-size: 14px;

    color: #666;
}

/*----------------------------------------*/

/* 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) * 0.5);

    padding-left: calc(var(--bs-gutter-x) * 0.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: 10px;

    width: 10px;

    top: 0px;

    left: 0px;

    opacity: 1;

    vertical-align: middle;

    border-radius: 50%;

    margin: 0px 4px !important;

    display: block;

    background: #20315d;

    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    opacity: 1;

    background-color: #20315d;
}

.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: absolute;

    display: flex;

    align-items: center;

    text-align: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    line-height: 40px;

    border-radius: 50%;

    background-color: var(--pbmit-global-color);

    color: var(--pbmit-white-color);

    transition: all 0.5s ease;
}

.swiper-button-next {
    /*background-color: #516f57;*/
}

.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: var(--pbmit-blackish-color);

    background-color: var(--pbmit-secondary-color);
}

.swiper-button-next:hover {
    background-color: var(--pbmit-secondary-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: #20315d;
}

.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-backtotop {
    position: fixed;

    bottom: -50px;

    right: 20px;

    width: 50px;

    height: 50px;

    font-size: 30px;

    border-radius: 25px;

    text-align: center;

    opacity: 0;

    overflow: hidden;

    z-index: 9999999;

    color: var(--pbmit-blackish-color);
    background: var(--pbmit-secondary-color);
    border: 2px solid var(--pbmit-blackish-color);

    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2);

    -webkit-transition: all 0.3s ease-in-out;

    -moz-transition: all 0.3s ease-in-out;

    -ms-transition: all 0.3s ease-in-out;

    -o-transition: all 0.3s ease-in-out;

    transition: all 0.3s ease-in-out;
}

.pbmit-backtotop.active {
    opacity: 1;

    bottom: 15px;
}

.pbmit-backtotop > div {
    -webkit-transition: all 0.3s ease-in-out;

    -moz-transition: all 0.3s ease-in-out;

    -ms-transition: all 0.3s ease-in-out;

    -o-transition: all 0.3s ease-in-out;

    transition: all 0.3s ease-in-out;
}

.pbmit-backtotop > div.pbmit-arrow {
    position: absolute;

    top: 50%;

    left: 50%;

    transform: translateY(-50%) translateX(-50%);

    opacity: 1;
}

.pbmit-backtotop > div.pbmit-hover-arrow {
    font-size: 30px;

    line-height: 30px;

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translateY(50%) translateX(-50%);

    opacity: 0;

    margin-top: 1px;
}

.pbmit-backtotop:hover {
    transform: scale(1.1);

    bottom: 20px;

    cursor: pointer;

    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2);
}

.pbmit-backtotop:hover > div.pbmit-arrow {
    transform: translateY(-150%) translateX(-50%);

    opacity: 0;
}

.pbmit-backtotop:hover > div.pbmit-hover-arrow {
    transform: translateY(-50%) translateX(-50%);

    opacity: 1;
}

/*----------------------------------------*/

/*  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: 0.4s;

    -moz-transition: 0.4s;

    -o-transition: 0.4s;

    -ms-transition: 0.4s;

    transition: 0.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: 0.4s;

    -moz-transition: 0.4s;

    -o-transition: 0.4s;

    -ms-transition: 0.4s;

    transition: 0.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 0.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: 0.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 !important;

    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), 0.6) !important;
}

.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);
}
