

@import url('../../css2');
@import url('../../css2-1');

/**

  1. General
     - Variables
     - Extra-outer

  2. Spacing

  3. Color
     - Skin-color, Skin-bg-color, Skin-border-color
     - darkGrey-color, darkGrey-bg-color
     - white-color, white-bg-color, white-border-color
     - Grey-color, Grey-bg-color, grey-border-color

  4. Pre-loader

  5. SocialIcon / TooltipTop

  6. Slick_dots/arrows

  7. TopBar

  8. Header
     - SiteBrand(logo)
     - SiteNavigation(Menu)
     - side-menu

  9. Footer
     - FirstFooter
     - SecondFooter
 
  10. GoTop BUtton
  
  11. Page-Title-Row

  12. Inner-Pages
      - single-pages-content
      - Classic_Blog
      - Single_Blog
      - Contact_page
      - Error_page
      - Map

**/
 
 
/* ===============================================
    General
------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/** Variables **/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
a, button, input { 
    outline: none; 
}
ol, ul{ 
    padding: 0; 
    margin: 0;
}
b, strong{ 
  font-weight: 600;
}
iframe{
  width: 100%;
  border: none;
  display: block;
  border-radius: 6px;
}
p { 
    margin: 0 0 15px; 
}
*::-moz-selection { 
    background: #21a12e; 
    color: #fff; 
    text-shadow: none; 
}
::-moz-selection { 
    background: #21a12e; 
    color: #fff;
    text-shadow: none; 
}
::selection { 
    background: #7ab629; 
    color: #fff; 
    text-shadow: none; 
}

textarea, input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input, 
select {
    font-family: inherit;
    -webkit-transition: border linear .2s,box-shadow linear .2s;
    -moz-transition: border linear .2s,box-shadow linear .2s;
    -o-transition: border linear .2s,box-shadow linear .2s;
    transition: border linear .2s,box-shadow linear .2s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    vertical-align: middle;
    width: 100%;
    color: #666666;
    padding: 12px 15px 12px;
    border-radius: 6px;
    font-weight: 400;
    background-color: var(--base-grey);
    text-transform: inherit;
    border: 1px solid #f7f5f5;
    font-size: 13px;
    outline: none;
    line-height: inherit;
    letter-spacing: 0px;
}
button, input[type="submit"], 
input[type="button"], 
input[type="reset"] {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
    padding: 11px 40px 11px;
    border: 2px solid transparent;
    border-radius: 0;
    color: #fff;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
    outline: none;
    -webkit-font-smoothing: antialiased;
}
.rs-layer input[type="email"]{
    border-color: transparent !important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 0px !important;
    padding-right: 50px !important;
}
button:focus{
    box-shadow: none;
}
textarea:focus, 
input[type="text"]:focus, 
input[type="password"]:focus, 
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus, 
input[type="month"]:focus, 
input[type="time"]:focus, 
input[type="week"]:focus, 
input[type="number"]:focus, 
input[type="email"]:focus, 
input[type="url"]:focus, 
input[type="tel"]:focus, 
input[type="color"]:focus {
    border: 1px solid var(--base-dark) !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-appearance: searchfield;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

textarea::placeholder,
textarea::-moz-placeholder,
textarea::-webkit-input-placeholder,
select::placeholder,
select::-moz-placeholder,
input::placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-webkit-input-placeholder {   
  color: var(--body-font-color) !important;
}
menu, ol, ul {
    margin: 16px 0;
    padding: 0 0 0 25px;
}

/** Typography Variable **/
:root {
    --base-bodyfont: 'Roboto', sans-serif;
    --base-bodyfont-Size: 15px;
    --base-bodyfont-color: #5e5e5e;    
    --base-skin: #4ba612;
    --base-dark: #000;
    --base-grey: #f5f5f5;
    --base-white: #ffffff;    
    --base-headingfont:  'Roboto', sans-serif;
    --base-headingfont-color: #000;
}

/** Typo Colors **/
.border-color: { color: #e5e5e5;}
.bodyfont-color { color: var(--base-bodyfont-color);}
.headingfont-color { color: var(--base-headingfont-color); }

/** Background Colors **/
.bg-base-skin { background-color: var(--base-skin);}
.bg-base-dark { background-color: var(--base-dark);}
/*.bg-base-grey { background-color: var(--base-grey);}*/
.bg-base-white { background-color: var(--base-white);}
  
/** Text Colors **/
.text-base-skin { color: var(--base-skin);}
.text-base-dark { color: var(--base-dark);}
.text-base-grey { color: var(--base-grey);}
.text-base-white { color: var(--base-white);}

/** Bg-layer Colors **/
.bg-base-skin > .prt-bg-layer{background-color: var(--base-skin);}
.bg-base-dark > .prt-bg-layer{background-color: var(--base-dark);}
.bg-base-grey > .prt-bg-layer{background-color: var(--base-grey);}
.bg-base-white > .prt-bg-layer{background-color: var(--base-white);}

.bg-base-skin >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-skin);}
.bg-base-dark >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-dark);}
.bg-base-grey >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-grey);}
.bg-base-white >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-white);}

.text-base-white h1:not(.text-base-skin, .text-base-dark),
.text-base-white h2:not(.text-base-skin, .text-base-dark),
.text-base-white h3:not(.text-base-skin, .text-base-dark),
.text-base-white h4:not(.text-base-skin, .text-base-dark),
.text-base-white h5:not(.text-base-skin, .text-base-dark),
.text-base-white h6:not(.text-base-skin, .text-base-dark),
.text-base-white a:not(.text-base-skin, .text-base-dark),
.bg-base-dark h1, .bg-base-dark h2, .bg-base-dark h3,
.bg-base-dark h4, .bg-base-dark h5, .bg-base-dark h6 {
    color: var(--base-white);
}
.bg-base-dark .text-base-white a:not(.text-base-skin, .text-base-dark){color: var(--base-skin);}
.bg-base-dark .section-title h3{color: var(--base-white);}
.bg-base-dark, .bg-base-skin {
    color: rgba(255,255,255,.67);
}
.bg-base-dark.text-base-white, .bg-base-skin.text-base-white {
    color: rgba(255,255,255,.950);
}

.overlay-01 {
    background-color: #fff;
    margin: -222px 55px 82px -10px;
    padding: 0px 0px 0px 0px;
    z-index: 2;
    position: relative;
}
.overlay-box {
    border-style: solid;
    border-width: 0px 0px 0px 15px;
    border-color: #21A12E;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px -5px;
    padding: 32px 0px 33px 20px;
}
.overlay-inner-box {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-orientation: sideways;
    width: 100%;
    margin: 0px 0px 0px 18px;
}
.overlay-inner-box h3 {
    font-family: "Saira Semi Condensed", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}
.about-overlay-01 {
    justify-content: center;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    position: relative;
    content: '';
    top: 0;
    right: 1px;
    padding: 11px 16px 6px;
    transform: rotate(180deg);
}
.about-overlay-01 h3 {
    font-size: 20px;
    line-height: 26px;
    margin: 0;
}

body { font-family: var(--base-bodyfont);
    font-weight: 400;
    font-size: var(--base-bodyfont-Size);
    line-height: 28px;
    color: var(--base-bodyfont-color);
}
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--base-headingfont), sans-serif; margin-bottom: 15px; font-weight: 500; color : var(--base-headingfont-color); text-transform: capitalize;
}
h1 { font-size: 50px; line-height: 60px;}
h2 { font-size: 44px; line-height: 55px; }
h3 { font-size: 22px; line-height: 32px; }
h4 { font-size: 21px; line-height: 32px; }
h5 { font-size: 20px; line-height: 30px; }
h6 { font-size: 18px; line-height: 28px; }

.container-fluid{padding: 0 15px;}
.container {
    max-width: 1430px;
    padding: 0 15px;
}
.row:not(.g-0) {
    margin-left: -15px;
    margin-right: -15px;
}
.row:not(.g-0) > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
}

/** Extra-outer **/
body .page {
    overflow: hidden;
    position: relative;
    z-index: 10;
}
body .site-main {
    background-color: #fff;
    position: relative;
    z-index: 1;
}
body .page.sidebar-true .site-main{ 
    padding: 0;
    background-color: #fff;
}
a {
    color: var(--base-dark);
}
a:hover { color: var(--base-skin); }
a, img{
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
label { font-size: 14px; }
.fs-14 { font-size: 14px !important; line-height: 24px; }
.fs-15 { font-size: 15px !important; line-height: 25px; }
.fs-16 { font-size: 16px !important; line-height: 24px; }
.fs-17 { font-size: 17px !important; line-height: 28px; }
.fs-18 { font-size: 18px !important; line-height: 26px; }
.fs-20 { font-size: 20px !important; line-height: 26px; }
.fs-21 { font-size: 21px !important; line-height: 31px; }
.fs-22 { font-size: 22px !important; line-height: 35px; }
.fs-24 { font-size: 24px !important; line-height: 34px; }
.fs-26 { font-size: 26px !important; line-height: 36px; }
.fs-28 { font-size: 28px !important; line-height: 38px; }
.fs-30 { font-size: 30px !important; line-height: 40px; }

.lh-base {line-height: 20px!important;}

.fw-400 { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }

.box-shadow{ box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10) }
.box-shadow_1{box-shadow: 0 0 10px 0 rgba(2, 20, 47, 0.08); }

.border-rad_3 { border-radius: 3px;}
.border-rad_4 { border-radius: 4px;}
.border-rad_5 { border-radius: 5px;}
.border-rad_6 { border-radius: 6px;}


.border-radius-6 { border-radius: 6px; }

.alignleft {
    float: left;
    margin: .425em 1.75em 1.25em 0;
}
.alignright {
    float: right;
    margin: .425em 0 1.25em 1.75em;
}
.z-index_1{ z-index: -1; }
.z-index-0{ z-index: 0; }
.z-index-1{ z-index: 1; }
.z-index-2{ z-index: 2; }
.z-index-3{ z-index: 3; }

.underline { position: relative; }
.underline:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background-color: var(--base-skin);
    bottom: 1px;
    left: 0;
}

.border_1 {
    border: 1px solid #e7e7e7;
}
.border-rounded {
    border-radius: 50%;
}
.overlay-opacity-box {
    background: rgba(255, 255, 255, 0.80);
    padding: 70px 0;
    opacity: 1;
}
.end_txt_line {
    font-size: 14px;
    font-weight: 500;
}
.end_txt_line a {
    text-decoration: underline;
}
.end_txt_line a:hover {
    color: var(--base-dark);
}
.blockquote_1 .qoute-text:before {
    content: "";
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    position: absolute;
    right: -3%;
    -webkit-mask: url(../images/quote-1.svg) no-repeat 100% 100%;
    -webkit-mask-box-image: url(../images/quote-1.svg);
    -webkit-mask-size: contain;
    letter-spacing: 0;
    bottom: 60px;
    background-color: aquamarine;
    font-style: normal;
    display: block;
}
.blockquote_1 h4 {
    font-weight: 700;
}
.blockquote_1 p {
    color: #7F8483;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
}
.blockquote_1 blockquote {
    padding: 28px 40px 10px 40px;
    position: relative;
    border-radius: 4px;
    margin-bottom: 0;
}
.prt-row.cta-section .section-title .title-header:after,
.prt-row.team-section .section-title .title-header:after { content: unset; }
.cta-section .cta-content .section-title h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 2px;
    padding-top: 15px;
    font-weight: 600;
    text-transform: capitalize;
}
.cta-section .cta-content .title-desc p {
    color: rgb(255 255 255 / 50%);
    position: relative;
} 
.prt-row.team-section .section-title .title-header {
    padding-left: 0;
    margin-bottom: 0;
}


/* ===============================================
    Spacing
------------------------*/
/** Padding **/
.spacing-1 { padding: 80px 65px 150px; }
.spacing-2 { padding: 50px; }
.spacing-3 { padding: 50px 30px 40px; }
.spacing-4 { margin-top: 90px; margin-left: -100px; margin-bottom: -70px; padding: 67px 0 45px 50px; }
.spacing-5 { padding-top: 550px; margin-top: -450px; }
.spacing-6 { padding: 70px 0; }
.spacing-7 { padding: 33px 50px 70px; }
.spacing-8 { padding: padding: 150px 15px; }

.p-10 { padding: 10px ! important ; }
.p-15 { padding: 15px ! important ; }
.p-20 { padding: 20px ! important ; }
.p-25 { padding: 25px ! important ; }
.p-30 { padding: 30px ! important ; }
.p-40 { padding: 40px ! important ; }
.p-45 { padding: 45px ! important ; }
.p-50 { padding: 50px ! important ; }
.p-60 { padding: 60px ! important ; }
.p-80 { padding: 80px ! important ; }
.p-100{ padding: 100px ! important ; }

.pr-0{ padding-right: 0 !important ; }
.pr-5{ padding-right: 5px ! important ;}
.pr-10{ padding-right: 10px ! important ; }
.pr-15{ padding-right: 15px ! important ; }
.pr-20{ padding-right: 20px ! important ; }
.pr-25{ padding-right: 25px ! important ; }
.pr-30{ padding-right: 30px ! important ; }
.pr-35{ padding-right: 35px ! important ; }
.pr-40{ padding-right: 40px ! important ; }
.pr-45{ padding-right: 45px ! important ; }
.pr-50{ padding-right: 50px ! important ; }
.pr-55{ padding-right: 55px ! important ; }
.pr-60{ padding-right: 60px ! important ; }
.pr-65{ padding-right: 65px ! important ; }
.pr-70{ padding-right: 70px ! important ; }
.pr-75{ padding-right: 75px ! important ; }
.pr-80{ padding-right: 80px ! important ; }
.pr-85{ padding-right: 85px ! important ; }
.pr-90{ padding-right: 90px ! important ; }
.pr-95{ padding-right: 95px ! important ; }
.pr-100{ padding-right: 100px ! important ; }
.pr-250{ padding-right: 250px ! important ; }

.pl-0{ padding-left: 0px !important ; }
.pl-2{ padding-left: 2px ! important ; }
.pl-3{ padding-left: 3px ! important ; }
.pl-5{ padding-left: 5px ! important ; }
.pl-10{ padding-left: 10px ! important ; }
.pl-15{ padding-left: 15px ! important ; }
.pl-20{ padding-left: 20px ! important ; }
.pl-25{ padding-left: 25px ! important ; }
.pl-30{ padding-left: 30px ! important ; }
.pl-35{ padding-left: 35px ! important ; }
.pl-40{ padding-left: 40px ! important ; }
.pl-45{ padding-left: 45px ! important ; }
.pl-50{ padding-left: 50px ! important ; }
.pl-55{ padding-left: 55px ! important ; }
.pl-60{ padding-left: 60px ! important ; }
.pl-65{ padding-left: 65px ! important ; }
.pl-70{ padding-left: 70px ! important ; }
.pl-75{ padding-left: 75px ! important ; }
.pl-80{ padding-left: 80px ! important ; }
.pl-85{ padding-left: 85px ! important ; }
.pl-90{ padding-left: 90px ! important ; }
.pl-95{ padding-left: 95px ! important ; }
.pl-100{ padding-left: 100px ! important ; }

.pt-0{ padding-top: 0px !important ;}
.pt-5{ padding-top: 5px ! important ;}
.pt-10{ padding-top: 10px ! important ; }
.pt-15{ padding-top: 15px ! important ; }
.pt-20{ padding-top: 20px ! important ; }
.pt-23{ padding-top: 23px ! important ; }
.pt-25{ padding-top: 25px ! important ; }
.pt-30{ padding-top: 30px ! important ; }
.pt-35{ padding-top: 35px ! important ; }
.pt-40{ padding-top: 40px ! important ; }
.pt-45{ padding-top: 45px ! important ; }
.pt-50{ padding-top: 50px ! important ; }
.pt-55{ padding-top: 55px ! important ; }
.pt-60{ padding-top: 60px ! important ; }
.pt-65{ padding-top: 65px ! important ; }
.pt-70{ padding-top: 70px ! important ; }
.pt-75{ padding-top: 75px ! important ; }
.pt-80{ padding-top: 80px ! important ; }
.pt-85{ padding-top: 85px ! important ; }
.pt-90{ padding-top: 90px ! important ; }
.pt-100{ padding-top: 100px ! important ;}
.pt-120{ padding-top: 120px ! important ;}
.pt-130{ padding-top: 130px ! important ;}
.pt-140{ padding-top: 140px ! important ;}
.pt-150{ padding-top: 150px ! important ;}
.pt-160{ padding-top: 160px ! important ;}
.pt-170{ padding-top: 170px ! important ;}
.pt-180{ padding-top: 180px ! important ;}
.pt-190{ padding-top: 190px ! important ;}
.pt-200{ padding-top: 200px ! important ;}
.pt-245{ padding-top: 245px ! important ;}
.pt-350{ padding-top: 350px ! important ;}

.pb-0{ padding-bottom: 0px !important ; }
.pb-5{ padding-bottom: 5px ! important ; }
.pb-10{ padding-bottom: 10px ! important ; }
.pb-15{ padding-bottom: 15px ! important ; }
.pb-20{ padding-bottom: 20px ! important ; }
.pb-25{ padding-bottom: 25px ! important ; }
.pb-30{ padding-bottom: 30px ! important ; }
.pb-35{ padding-bottom: 35px ! important ; }
.pb-40{ padding-bottom: 40px ! important ; }
.pb-45{ padding-bottom: 45px ! important ; }
.pb-50{ padding-bottom: 50px ! important ; }
.pb-55{ padding-bottom: 55px ! important ; }
.pb-60{ padding-bottom: 60px ! important ; }
.pb-65{ padding-bottom: 65px ! important ; }
.pb-70{ padding-bottom: 70px ! important ; }
.pb-75{ padding-bottom: 75px ! important ; }
.pb-80{ padding-bottom: 80px ! important ; }
.pb-85{ padding-bottom: 85px ! important ; }
.pb-90{ padding-bottom: 90px ! important ; }
.pb-95{ padding-bottom: 95px ! important ; }
.pb-100{ padding-bottom: 100px ! important ; }
.pb-120{ padding-bottom: 120px ! important ; }
.pb-130{ padding-bottom: 130px ! important ; }
.pb-140{ padding-bottom: 140px ! important ; }
.pb-150{ padding-bottom: 150px ! important ; }
.pb-160{ padding-bottom: 160px ! important ; }
.pb-170{ padding-bottom: 170px ! important ; }
.pb-180{ padding-bottom: 180px ! important ; }
.pb-190{ padding-bottom: 190px ! important ; }
.pb-200{ padding-bottom: 200px ! important ; }
.pb-280{ padding-bottom: 280px ! important ; }

/** Margin **/
.mt-0{ margin-top: 0px !important ; }
.mt-5{ margin-top: 5px ! important ; }
.mt-10 { margin-top: 10px ! important ; }
.mt-12 { margin-top: 12px ! important ; }
.mt-15{ margin-top: 15px ! important ; }
.mt-20{ margin-top: 20px ! important ; }
.mt-25{ margin-top: 25px ! important ; }
.mt-30{ margin-top: 30px ! important ; }
.mt-35{ margin-top: 35px ! important ; }
.mt-40{ margin-top: 40px ! important ; }
.mt-45{ margin-top: 45px ! important ; }
.mt-50{ margin-top: 50px ! important ; }
.mt-55{ margin-top: 55px ! important ; }
.mt-60{ margin-top: 60px ! important ; }
.mt-65{ margin-top: 65px ! important ; }
.mt-70{ margin-top: 70px ! important ; }
.mt-80{ margin-top: 80px ! important ; }
.mt-90{ margin-top: 90px ! important ; }
.mt-100{ margin-top: 100px ! important ; }
.mt-110{ margin-top: 110px ! important ; }
.mt-120{ margin-top: 120px ! important ; }
.mt-130{ margin-top: 130px ! important ; }
.mt-140{ margin-top: 140px ! important ; }
.mt-150{ margin-top: 150px ! important ; }
.mt-160{ margin-top: 160px ! important ; }

.mt_5{ margin-top: -5px ! important ; }
.mt_10{ margin-top: -10px ! important ; }
.mt_15{ margin-top: -15px ! important ; }
.mt_20{ margin-top: -20px ! important ; }
.mt_25{ margin-top: -25px ! important ; }
.mt_30{ margin-top: -30px ! important ; }
.mt_35{ margin-top: -35px ! important ; }
.mt_40{ margin-top: -40px ! important ; }
.mt_50{ margin-top: -50px ! important ; }
.mt_55{ margin-top: -55px ! important ; }
.mt_60{ margin-top: -60px ! important ; }
.mt_65{ margin-top: -65px !important ; }
.mt_70{ margin-top: -70px ! important ; }
.mt_75{ margin-top: -75px ! important ; }
.mt_80{ margin-top: -80px ! important ; }
.mt_90{ margin-top: -90px ! important ; }
.mt_100{ margin-top: -100px ! important ; }
.mt_105{ margin-top: -105px ! important ; }
.mt_110{ margin-top: -110px ! important ; }
.mt_120{ margin-top: -120px ! important ; }
.mt_130{ margin-top: -130px ! important ; }
.mt_140{ margin-top: -140px ! important ; }
.mt_145{ margin-top: -145px ! important ; }
.mt_150{ margin-top: -150px ! important ; }
.mt_160{ margin-top: -160px ! important ; }
.mt_165{ margin-top: -165px ! important ; }
.mt_170{ margin-top: -170px ! important ; }
.mt_180{ margin-top: -180px ! important ; }
.mt_185{ margin-top: -185px ! important ; }
.mt_190{ margin-top: -190px ! important ; }
.mt_200{ margin-top: -200px ! important ; }
.mt_210{ margin-top: -210px ! important ; }
.mt_220{ margin-top: -220px ! important ; }
.mt_230{ margin-top: -230px ! important ; }
.mt_240{ margin-top: -240px ! important ; }
.mt_250{ margin-top: -250px ! important ; }
.mt_260{ margin-top: -260px ! important ; }
.mt_270{ margin-top: -270px ! important ; }
.mt_275{ margin-top: -275px ! important ; }
.mt_280{ margin-top: -280px ! important ; }
.mt_300{ margin-top: -300px ! important ; }
.mt_310{ margin-top: -310px ! important ; }
.mt_320{ margin-top: -320px ! important ; }
.mt_332{ margin-top: -332px ! important ; }
.mt_340{ margin-top: -340px ! important ; }
.mt_360{ margin-top: -360px ! important ; }
.mt_380{ margin-top: -380px ! important ; }
.mt_600{ margin-top: -600px ! important ; }

.mb-0{ margin-bottom: 0px !important ; }
.mb-5{ margin-bottom: 5px ! important ; }
.mb-10{ margin-bottom: 10px ! important ; }
.mb-12{ margin-bottom: 12px ! important ; }
.mb-15{ margin-bottom: 15px ! important ; }
.mb-25{ margin-bottom: 25px ! important ;}
.mb-20{ margin-bottom: 20px ! important ; }
.mb-30{ margin-bottom: 30px ! important ; }
.mb-35{ margin-bottom: 35px ! important ; }
.mb-40{ margin-bottom: 40px ! important ; }
.mb-45{ margin-bottom: 45px ! important ; }
.mb-50{ margin-bottom: 50px ! important ; }
.mb-60{ margin-bottom: 60px ! important ; }
.mb-65{ margin-bottom: 65px ! important ; }
.mb-70{ margin-bottom: 70px ! important ; }
.mb-80{ margin-bottom: 80px ! important ; }
.mb-90{ margin-bottom: 90px ! important ; }
.mb-100{ margin-bottom: 100px ! important ; }
.mb-110{ margin-bottom: 110px ! important ; }
.mb-120{ margin-bottom: 120px ! important ; }
.mb-130{ margin-bottom: 130px ! important ; }
.mb-140{ margin-bottom: 140px ! important ; }
.mb-150{ margin-bottom: 150px ! important ; }
.mb-160{ margin-bottom: 160px ! important ; }
.mb-170{ margin-bottom: 170px ! important ; }
.mb-180{ margin-bottom: 180px ! important ; }
.mb-190{ margin-bottom: 190px ! important ; }
.mb-200{ margin-bottom: 200px ! important ; }

.mb_5{ margin-bottom: -5px ! important ; }
.mb_10{ margin-bottom: -10px ! important ; }
.mb_12{ margin-bottom: -12px ! important ; }
.mb_15{ margin-bottom: -15px ! important ; }
.mb_20{ margin-bottom: -20px ! important ; }
.mb_25{ margin-bottom: -25px ! important ; }
.mb_30{ margin-bottom: -30px ! important ; }
.mb_35{ margin-bottom: -35px ! important ; }
.mb_40{ margin-bottom: -40px ! important ; }
.mb_45{ margin-bottom: -45px ! important ; }
.mb_50{ margin-bottom: -50px ! important ; }
.mb_55{ margin-bottom: -55px ! important ; }
.mb_60{ margin-bottom: -60px ! important ; }
.mb_70{ margin-bottom: -70px ! important ; }
.mb_80{ margin-bottom: -80px ! important ; }
.mb_90{ margin-bottom: -90px ! important ; }
.mb_100{ margin-bottom: -100px ! important ; }
.mb_120{ margin-bottom: -120px ! important ; }
.mb_140{ margin-bottom: -140px ! important ; }

.ml-0{ margin-left: 0px !important ; }
.ml-10{ margin-left: 10px ! important ; }
.ml-15{ margin-left: 15px ! important ; }
.ml-20{ margin-left: 20px ! important ; }
.ml-30{ margin-left: 30px ! important ; }
.ml-40{ margin-left: 40px ! important ; }
.ml-50{ margin-left: 50px ! important ; }
.ml-60{ margin-left: 60px ! important ; }
.ml-70{ margin-left: 70px ! important ; }
.ml-80{ margin-left: 80px ! important ; }
.ml-90{ margin-left: 90px ! important ; }
.ml-100{ margin-left: 100px ! important ; }
.ml-110{ margin-left: 110px ! important ; }
.ml-120{ margin-left: 120px ! important ; }
.ml-120{ margin-left: 120px ! important ; }
.ml-130{ margin-left: 130px ! important ; }
.ml-140{ margin-left: 140px ! important ; }
.ml-150{ margin-left: 150px ! important ; }
.ml-160{ margin-left: 160px ! important ; }
.ml-170{ margin-left: 170px ! important ; }
.ml-180{ margin-left: 180px ! important ; }
.ml-190{ margin-left: 190px ! important ; }
.ml-200{ margin-left: 200px ! important ; }

.ml_10{ margin-left: -10px ! important ; }
.ml_15{ margin-left: -15px ! important ; }
.ml_20{ margin-left: -20px ! important ; }
.ml_25{ margin-left: -25px ! important ; }
.ml_30{ margin-left: -30px ! important ; }
.ml_35{ margin-left: -35px ! important ; }
.ml_40{ margin-left: -40px ! important ; }
.ml_50{ margin-left: -50px ! important ; }
.ml_60{ margin-left: -60px ! important ; }
.ml_70{ margin-left: -70px ! important ; }
.ml_80{ margin-left: -80px ! important ; }
.ml_90{ margin-left: -90px ! important ; }
.ml_100{ margin-left: -100px ! important ; }
.ml_110{ margin-left: -110px ! important ; }
.ml_120{ margin-left: -120px ! important ; }
.ml_130{ margin-left: -130px ! important ; }
.ml_140{ margin-left: -140px ! important ; }
.ml_150{ margin-left: -150px ! important ; }
.ml_160{ margin-left: -160px ! important ; }
.ml_180{ margin-left: -180px ! important ; }
.ml_200{ margin-left: -200px ! important ; }
.ml_210{ margin-left: -210px ! important ; }
.ml_220{ margin-left: -220px ! important ; }
.ml_240{ margin-left: -240px ! important ; }
.ml_260{ margin-left: -260px ! important ; }
.ml_280{ margin-left: -280px ! important ; }
.ml_300{ margin-left: -300px ! important ; }

.mr-0{ margin-right: 0px !important ; }
.mr-10{ margin-right: 10px ! important ; }
.mr-15{ margin-right: 15px ! important ; }
.mr-20{ margin-right: 20px ! important ; }
.mr-25{ margin-right: 25px ! important ; }
.mr-30{ margin-right: 30px ! important ; }
.mr-35{ margin-right: 35px ! important ; }
.mr-40{ margin-right: 40px ! important ; }
.mr-50{ margin-right: 50px ! important ; }
.mr-60{ margin-right: 60px ! important ; }
.mr-70{ margin-right: 70px ! important ; }
.mr-80{ margin-right: 80px ! important ; }
.mr-90{ margin-right: 90px ! important ; }
.mr-100{ margin-right: 100px ! important ; }
.mr-110{ margin-right: 110px ! important ; }
.mr-120{ margin-right: 120px ! important ; }
.mr-130{ margin-right: 130px ! important ; }
.mr-140{ margin-right: 140px ! important ; }
.mr-150{ margin-right: 150px ! important ; }
.mr-160{ margin-right: 160px ! important ; }
.mr-170{ margin-right: 170px ! important ; }
.mr-180{ margin-right: 180px ! important ; }
.mr-190{ margin-right: 190px ! important ; }
.mr-200{ margin-right: 200px ! important ; }

.mr_10{ margin-right: -10px ! important ; }
.mr_15{ margin-right: -15px ! important ; }
.mr_20{ margin-right: -20px ! important ; }
.mr_25{ margin-right: -25px ! important ; }
.mr_30{ margin-right: -30px ! important ; }
.mr_35{ margin-right: -35px ! important ; }
.mr_40{ margin-right: -40px ! important ; }
.mr_50{ margin-right: -50px ! important ; }
.mr_60{ margin-right: -60px ! important ; }
.mr_70{ margin-right: -70px ! important ; }
.mr_80{ margin-right: -80px ! important ; }
.mr_90{ margin-right: -90px ! important ; }
.mr_100{ margin-right: -100px ! important ; }
.mr_130{ margin-right: -130px ! important ; }
.mr_140{ margin-right: -140px ! important ; }
.mr_150{ margin-right: -150px ! important ; }
.mr_160{ margin-right: -160px ! important ; }
.mr_180{ margin-right: -180px ! important ; }
.mr_200{ margin-right: -200px ! important ; }
.mr_210{ margin-right: -210px ! important ; }
.mr_220{ margin-right: -220px ! important ; }
.mr_240{ margin-right: -240px ! important ; }
.mr_260{ margin-right: -260px ! important ; }
.mr_280{ margin-right: -280px ! important ; }
.mr_300{ margin-right: -300px ! important ; }


/* ===============================================
    Pre-loader
------------------------*/
.blobs-wrapper {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    display: flex;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.loader-blob {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    margin: 3em;
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    vertical-align: middle;
}
.loader-blob,
.loader-blob:before,
.loader-blob:after {
    animation: 1.15s infinite ease-in-out;
    -o-animation: 1.15s infinite ease-in-out;
    -ms-animation: 1.15s infinite ease-in-out;
    -webkit-animation: 1.15s infinite ease-in-out;
    -moz-animation: 1.15s infinite ease-in-out;
}
.loader-blob:before,
.loader-blob:after {
    width: 100%; 
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.loader-blob { animation-name: loader-blob;
    -o-animation-name: loader-blob;
    -ms-animation-name: loader-blob;
    -webkit-animation-name: loader-blob;
    -moz-animation-name: loader-blob; }
@keyframes loader-blob {
    from { transform: scale(0); opacity: 1; }
    to   { transform: scale(1); opacity: 0; }
}
@-o-keyframes loader-blob {
    from { -o-transform: scale(0); opacity: 1; }
    to   { -o-transform: scale(1); opacity: 0; }
}
@-ms-keyframes loader-blob {
    from { -ms-transform: scale(0); opacity: 1; }
    to   { -ms-transform: scale(1); opacity: 0; }
}
@-webkit-keyframes loader-blob {
    from { -webkit-transform: scale(0); opacity: 1; }
    to   { -webkit-transform: scale(1); opacity: 0; }
}
@-moz-keyframes loader-blob {
    from { -moz-transform: scale(0); opacity: 1; }
    to   { -moz-transform: scale(1); opacity: 0; }
}

.prt_single_image-wrapper .prt_single_image_text {
    font-size: 16px;
    line-height: 32px;
    transform: rotate(180deg);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    position: absolute;
    writing-mode: vertical-lr;
    text-orientation: sideways;
    top: 25%;
    left: -14px;
    padding: 30px 12px;
    letter-spacing: 2px;
    background-color: var(--base-skin);
    font-family: var(--base-headingfont);
    -webkit-transition-delay: .35s;
    transition-delay: .35s;
    color: #fff;
    border-radius: 6px;
    z-index: 9;
    font-weight: 500;
    bottom: 25%;
}
.prt_single_image-wrapper img {
  border-radius: 6px;
  position: relative;
  margin-left: 0px;
}
.prt_single_image-wrapper.imagestyle-one .prt_single_image_text {
    font-size: 16px;
    line-height: 32px;
    transform: rotate(180deg);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    position: absolute;
    writing-mode: vertical-lr;
    text-orientation: sideways;
    top: 110px;
    left: 0px;
    text-align: center;
    padding: 10px 10px;
    letter-spacing: 3.0px;
    background-color: var(--base-skin);
    -webkit-transition-delay: .35s;
    transition-delay: .35s;
    color: var(--base-white);
    border-radius: 0;
    z-index: 9;
    bottom: 21%;
}
.prt_single_image-wrapper.imagestyle-one img {
    border-radius: 6px;
    position: relative;
    margin-left: 52px;
}



/*  ===============================================
    SocialIcon / TooltipTop
------------------------*/
ul.social-icons{ 
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
}
.social-icons li{
    margin: 0 2px;
}
.prt-header-style-02 .social-icons li:last-child,
.social-icons li:last-child{
    margin-right: 0px;
}
.social-icons li a{
    display: block;
    min-width: 26px;
    text-align: center;
}
.social-icons.circle li>a {
    border-width: 1px ;
    border-style: solid;
    height: 33px;
    width: 33px;
    line-height: 33px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 13px;
    border-radius: 50%;
}

/* TooltipTop */
.tooltip-top{ position: relative; }
.tooltip:after, .tooltip:before, [data-tooltip]:after, [data-tooltip]:before {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out,visibility .2s ease-in-out,-webkit-transform .2s cubic-bezier(.71,1.7,.77,1.24);
    -moz-transition: opacity .2s ease-in-out,visibility .2s ease-in-out,-moz-transform .2s cubic-bezier(.71,1.7,.77,1.24);
    transition: opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s cubic-bezier(.71,1.7,.77,1.24);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    pointer-events: none;
}
.tooltip:before, [data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: 0 0;
    content: "";
}
.tooltip-top:before, .tooltip:before, [data-tooltip]:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: inherit;
}
.tooltip-top:after, .tooltip-top:before, .tooltip:after, .tooltip:before, 
[data-tooltip]:after, [data-tooltip]:before {
    bottom: 100%;
    left: 50%;
}
.tooltip-bottom:after{
    bottom: -100%;
}
.tooltip-bottom:before{
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: transparent;
}
.tooltip-bottom:before{
    bottom: -7px;
}
.tooltip-top:focus:after, .tooltip-top:focus:before, .tooltip-top:hover:after, .tooltip-top:hover:before, 
.tooltip:focus:after, .tooltip:focus:before, .tooltip:hover:after, .tooltip:hover:before, [data-tooltip]:focus:after, 
[data-tooltip]:focus:before, [data-tooltip]:hover:after, [data-tooltip]:hover:before {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    transform: translateY(-12px);
}
.tooltip-top:after, .tooltip:after, [data-tooltip]:after {
    margin-left: -60px;
}
.tooltip:after, [data-tooltip]:after {
    z-index: 1000;
    padding: 8px;
    width: 120px;
    color: #fff;
    content: attr(data-tooltip);
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    border-radius: 5px;
}
.tooltip:focus:after, .tooltip:focus:before, .tooltip:hover:after, .tooltip:hover:before, 
[data-tooltip]:focus:after, [data-tooltip]:focus:before, [data-tooltip]:hover:after, [data-tooltip]:hover:before {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(Opacity=100);
    opacity: 1;
}


/*  ===============================================
    Slick_dots/arrows
------------------------*/
.slick-slide{ border: 0; outline: 0; padding: 0 15px;}
.slick_slider.no-gutters .slick-slide { padding: 0; }
.slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current) > div:after{
    position: absolute;
    content: "";
    top: 0;
    left: -15px;
    height: 100%;
    width: 1px;
    background-color: #e4e4e4;
}
.prt-bgcolor-darkgrey .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current) > div:after,
.prt-bgcolor-skincolor .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current) > div:after{
    background-color: rgba(255,255,255,.3);
}
.slick_slider.slick_slider-opacity_block .slick-list {
    overflow: visible;
}
.slick_slider.slick-dots-style1 .slick-dots,
.slick_slider.slick-dots-style2 .slick-dots{
    position: absolute;
    top: 25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: right;
    left: 0;
}
.slick_slider.slick-dots-style1 .slick-dots li,
.slick_slider.slick-dots-style2 .slick-dots li{
    display: inline-block;
    list-style: none;
    line-height: 0;
}
.slick_slider.slick-dots-style1 .slick-dots li button,
.slick_slider.slick-dots-style2 .slick-dots li button{
    height: 12px;
    width: 12px;
    border: 0;
    font-size: 0;
    padding: 0;
    border-radius: 50%;
    position: relative;
    margin: 13px 7px 0 0;
    background-color: #e9e9e9;
}
.slick_slider .slick-arrow {
    width: 30px;
    height: 30px;
    z-index: 1;
    color: inherit;
    border: 1px solid rgba(0,0,0,.3);
}
.slick_slider .slick-next{ right: 0; }


.slick_slider.slick-arrows-style1 .slick-arrow {
    border: 1px solid #dbdbdb;
    border-radius: 50%;
    opacity: 0;
    z-index: 11;
    overflow: hidden;
    box-shadow: unset;
}
.slick_slider.slick-arrows-style1 .slick-next{ 
    right: 0px; 
    left: auto;
}
.slick_slider.slick-arrows-style1 .slick-prev {
    left: 0px;
}
.slick_slider.slick-arrows-style1:hover .slick-arrow {
    margin: 0 -60px;
    opacity: 1;
    overflow: visible;
}
.slick_slider.slick-dots-style1 .slick-dots li.slick-active button {
  background-color: var(--base-skin);
}

.slick_slider.slick-arrows-style2 .slick-arrow {
    border-radius: 50%;
}
.slick_slider.slick-arrows-style2 .slick-next {
    right: -35px;
}
.slick_slider.slick-arrows-style2 .slick-prev {
    left: -35px;
}
.slick_slider .slick-arrow {
    height: 37px;
    width: 37px;
    border-radius: 5px;
    z-index: 1;
    border: 0;
    color: inherit;
    background-color: rgba(255,255,255,.07);
    box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
    border: 0;
}
.slick_slider .slick-next{ right: 0; }
.slick_slider .slick-prev:before, .slick_slider .slick-next:before {
    font-family: 'themify';
    font-size: 14px;
    line-height: 1;
    opacity: 1;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick_slider .slick-prev:before {
    content: "\e64a";
}
.slick_slider .slick-next:before {
    content: "\e649";
}
.slick-prev,.slick-next{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

/* style1 */
.slick_slider.slick-arrows-style1 .slick-arrow {
    border: 1px solid #dbdbdb;
    opacity: 0;
    z-index: 11;
    overflow: hidden;
    box-shadow: unset;
}
.slick_slider.slick-arrows-style1 .slick-next{ 
    right: 0px; 
    left: auto;
}
.slick_slider.slick-arrows-style1 .slick-prev {
    left: 0px;
}
.slick_slider.slick-arrows-style1:hover .slick-arrow {
    margin: 0 -60px;
    opacity: 1;
    overflow: visible;
}



/*  ===============================================
    TopBar
------------------------*/
.top_bar {
    width: 100%;
    z-index: 3;
    height: 50px;
    line-height: 50px;
    position: relative;
}
.top_bar .social-icons li {
    min-width: auto;
    margin-left: 0;
    margin-right: 6px;
}
.top_bar .social-icons li:last-child {
    margin-right: 0px;
}
.top_bar .social-icons li a {
    border: 0px solid rgba(255, 255, 255 , 0.20);
    height: 30px;
    width: 30px;
    line-height: 32px;
    border-radius: 4px;
}
.top_bar_inner {
    margin-top: 15px;
    padding: 0px 29px 0 26px;
    margin-bottom: -23px;
    z-index: 2;
    display: flex;
    position: relative;
    border-radius: 5px;
}
.top_bar_contact_item .top_bar_icon i { 
    font-size: 14px;
}
.top_bar_contact_item .top_bar_icon i,
.top_bar_contact_item span {
    color: var(--base-skin);
    font-weight: 700;
}
.top_bar_contact_item .top_bar_icon i.flaticon-clock-1 {
    position: relative;
    top: 2px;
}
.text-base-white .top_bar_contact_item a:hover{color: var(--base-skin);}
.top_bar_contact_item .social-icons ul {
    margin: 0;
}
.top_bar_icon {
    display: inline-block;
    margin-right: 8px;
}
.top_bar_icon .icon-location-2:before {
    margin: 0;
}
.top_bar_contact_item {
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    display: inline-block;
}

/*header-style1*/

.prt-header-style-01 .top_bar_content {
    color: rgba(255, 255, 255, 65%);
    display: inline-block;
}
.prt-header-style-01 .top_bar_content-main {
    background-color: var(--base-skin);
    display: inline-block;
    padding-left: 25px;
    padding-right: 10px;
}
.prt-header-style-01 .top_bar_contact_item.prt-highlight-right:first-child:before {
    content: unset
}
.prt-header-style-01 .row .col-lg-12 .top_bar_contact_item:last-child{padding-right:0;}
.prt-header-style-01 .top_bar_content a { color: rgba(255, 255, 255, 65%); }
.prt-header-style-01 .top_bar_content a:hover { color: var(--base-skin); }
.row .col-lg-12 .top_bar_contact_item:first-child{padding-left: 0;}
.prt-header-style-01 .top_bar_contact_item:first-child:before {
    background-color: rgba(255, 255, 255, 0.13);
    top: 15px;
    right: 0;
    content: '';
    height: 19px;
    width: 1px;
    z-index: 1;
    position: absolute;
}
.prt-header-style-01 .top_bar_contact_item.top_bar_social:after {
    content: "";
    width: 2000px;
    height: 100%;
    background-color: var(--base-skin);
    right: 0px;
    left: -5px;
    top: -10px;
    position: absolute;
    z-index: -1;
}
.prt-header-style-01 .contact-info { text-align: end; }
.prt-header-style-01 .top_bar_contact_item:last-child:before{
    content:unset;
}
.prt-header-style-01 .top_bar .social-icons li a:hover.prt-social-facebook,
.prt-header-style-01 .top_bar .social-icons li a:hover.prt-social-twitter,
.prt-header-style-01 .top_bar .social-icons li a:hover.prt-social-linkedin {
    background-color: var(--base-white);
    color: var(--base-skin);
}
.prt-header-style-01 .top_bar .social-icons li a.prt-social-facebook {
    background-color: #385da9;
    color: var(--base-white);
}
.prt-header-style-01 .top_bar .social-icons li a.prt-social-twitter {
    background-color: #1da1f2;
    color: var(--base-white);
}
.prt-header-style-01 .top_bar .social-icons li a.prt-social-linkedin {
    background-color: #0e76a8;
    color: var(--base-white);
}
.prt-header-style-01 .header_extra .prt-btn i:before {
    color: #21a12e;
}
.prt-header-style-01 .header_extra .prt-btn:hover i:before {
    color: #fff;
}
.prt-header-style-01 #site-header-menu .site-navigation ul.menu > li > a:hover {
    color: var(--base-skin);
}
.bg-base-dark.text-base-white, 
.bg-base-skin.text-base-white {
    color: rgba(255,255,255,.950);
}
.prt-header-style-01 .widget_info .widget_icon {
    font-size: 35px;
    padding-left: 5px;
    padding-right: 12px;
}
.prt-header-style-01 .widget_info .widget_icon:hover i {
    animation: call-us-now 1.5s ease-in-out infinite;
}
.prt-header-style-01 .widget_info .widget_icon i {
    font-size: 42px;
    line-height: 30px;
    vertical-align: middle;
    padding-right: 0px;
    display: inline-block;
}
.prt-header-style-01 .widget_info .widget_content .widget_title {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 18PX;
    line-height: 22px;
}
@keyframes phone {
0%, 100% { transform: rotate(0)scale(1)skew(1deg); }
10% { transform: rotate(-25deg)scale(1)skew(1deg); }
20%, 40% { transform: rotate(25deg)scale(1)skew(1deg); }
30% { transform: rotate(-25deg)scale(1)skew(1deg); }
50% { transform: rotate(0)scale(1)skew(1deg); }
}
.prt-header-style-01 .widget_content p {
    margin-bottom: 0px;
}
.prt-header-style-01 .site-branding:before {
    content: "";
    position: absolute;
    left: auto;
    right: 85%;
    top: 0;
    width: 1200px;
    height: 100px;
    /* background-color: var(--base-grey); */
    margin-right: 0px;
    margin-left: 0px;
    z-index: -1;
}


/*header-style2*/

.prt-header-style-02 .top_bar_contact_item {
    height: 60px;
    line-height: 60px;
    color: var(--base-white);
}
.prt-header-style-02 .top_bar_contact_item.top_bar_btn{
    padding-right: 20px;
}
.prt-header-style-02 .top_bar_contact_item.prt-highlight-left .top_bar_content {
    color: var(--base-white);
    padding-right: 20px;
}
.prt-header-style-02 .top_bar_content {
    color: rgba(255, 255, 255, 65%);
    display: inline-block;
    position: relative;
    z-index: 3;
}
.prt-header-style-02 .top_bar_content-main {
    display: inline-block;
    padding-left: 25px;
    padding-right: 10px;
}
.prt-header-style-02 .row .col-lg-12 .top_bar_contact_item:last-child{padding-right:0; padding-left: 30px;}
.prt-header-style-02 .top_bar_content a { color: rgba(255, 255, 255, 50%); }
.prt-header-style-02 .top_bar_content a:hover { color: var(--base-skin); }

.prt-header-style-02 .contact-info { text-align: end; }
.prt-header-style-02 .top_bar_contact_item:last-child:before{
  content:unset;
}
.prt-header-style-02 .top_bar .social-icons li a:hover.prt-social-facebook,
.prt-header-style-02 .top_bar .social-icons li a:hover.prt-social-twitter,
.prt-header-style-02 .top_bar .social-icons li a:hover.prt-social-pinterest {
  background-color: var(--base-white);
  color: var(--base-skin);
}
.prt-header-style-02 .top_bar .social-icons li a.prt-social-facebook {
    background-color: #385da9;
    color: var(--base-white);
}
.prt-header-style-02 .top_bar .social-icons li a.prt-social-twitter {
    background-color: #1da1f2;
    color: var(--base-white);
}
.prt-header-style-02 .top_bar .social-icons li a.prt-social-pinterest {
    background-color: #d50012;
    color: var(--base-white);
}
.prt-header-style-02 .header_extra .prt-btn i:before {
  color: #21a12e;
}
.prt-header-style-02 .header_extra .prt-btn:hover i:before {
  color: #fff;
}
.prt-header-style-02 #site-header-menu .site-navigation ul.menu > li > a:hover {
    color: var(--base-skin);
}
.bg-base-dark.text-base-white, 
.bg-base-skin.text-base-white {
    color: rgba(255,255,255,.950);
}
.prt-header-style-02 .widget_info .widget_icon {
  font-size: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.prt-header-style-02 .widget_content p {
  margin-bottom: 0;
}
.prt-header-style-02 .site-branding:before {
    content: "";
    position: absolute;
    left: auto;
    top: 0;
    width: 1200px;
    height: 80px;
    margin-right: 0px;
    margin-left: 0px;
    z-index: -1;
}
.prt-header-style-02 .top_bar_contact_item.prt-highlight-left:after {
    position: absolute;
    content: "";
    right: 0;
    top: -1px;
    width: 5000px;
    background-color: var(--base-skin);
    height: 100%;
}
.prt-header-style-02 .top_bar_contact_item.prt-highlight-left:first-child:before {
    content: unset
}
.prt-header-style-02 .top_bar_contact_item:first-child:before {
    background-color: rgba(255, 255, 255, 0.13);
    top: 20px;
    right: 0;
    content: '';
    height: 19px;
    width: 1px;
    z-index: 1;
    position: absolute;
}
.prt-header-style-02 .header_extra .header_search:before {
    content: '';
    position: absolute;
    background-color: #e7e7e7;
    width: 1px;
    height: 80px;
    top: -29px;
    left: 0;
}
.prt-header-style-02 .header_extra .header_cart:before {
    content: '';
    position: absolute;
    background-color: #e7e7e7;
    width: 1px;
    height: 80px;
    top: -19px;
    left: 80px;
}

/*header-style3*/

.prt-header-style-03 .top-bar .widget_info {
    position: relative;
    vertical-align: middle;
    display: table;
    padding: 14px 0 14px;
}
.prt-header-style-03 .top-bar .widget_info .widget_icon {
    float: none;
    font-size: 28px;
    width: 50px;
    height: 50px;
    line-height: 56px;
    text-align: center;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    background-color: var(--base-white);
}
.prt-header-style-03 .top-bar .widget_info .widget_content {
    margin-left: 14px;
    position: relative;
    top: 10px;
}
.prt-header-style-03 .top-bar .widget_info .widget_content h3 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--base-dark);
    text-transform: capitalize;
}
.prt-header-style-03 .top-bar .widget_info:not(:last-child) {
    padding-right: 60px;
}
.prt-header-style-03 .top-bar .widget_info .widget_content p {
    font-size: 15px;
    color: var(--base-bodyfont-color);
    font-family: var(--base-bodyfont);
    font-weight: 400;
}
.prt-header-style-03 .top-bar .widget_info .widget_desc a{ color: #666d81;}

.prt-header-style-03 .widget_info {
    position: relative;
    vertical-align: middle;
    display: table;
    padding: 2px 30px 6px;
}
.prt-header-style-03 .widget_info .widget_icon {
    float: none;
    font-size: 40px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}
.prt-header-style-03 .widget_info .widget_content {
    margin-left: 14px;
    position: relative;
    top: 10px;
}
.prt-header-style-03 .widget_info .widget_content h3 {
    font-size: 16px;
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--base-white);
}
.prt-header-style-03 .widget_info .widget_content p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--base-white);
    font-family: var(--base-headingfont);
}
.prt-header-style-03 .widget_info .widget_content p a {
    color: var(--base-white);
}
.prt-header-style-03 .widget_info:not(:last-child) {
    padding-right: 60px;
}
.prt-header-style-03 .widget_info .widget_desc a{ color: #666d81;}
.prt-header-style-03 .header_search:before {
    display: block;
    content: "";
    position: absolute;
    height: 30px;
    width: 1px;
    right: 68px;
    top: 0;
    background-color: #484747;
}
.prt-header-style-03 .top-bar .header_extra > div {
    padding-left: 0px;
    padding-right: 0;
}
.prt-header-style-03 .top-bar .header_search {
    margin-left: 44px;
    padding-right: 40px;
}
.prt-header-style-03 .header_extra .header_cart i,
.prt-header-style-03 .header_extra .header_search i {
    font-size: 17px;
    color: var(--base-white);
    position: relative;
    top: 4px;
}
.prt-header-style-03 .header_extra .header_cart i:hover,
.prt-header-style-03 .header_extra .header_search i:hover {
    color: var(--base-skin);
}
.prt-header-style-03 .header_btn .prt-btn {
    padding: 11px 23px;
}
.prt-header-style-03 .header_btn .prt-btn i {
    padding-left: 10px;
}
.prt-header-style-03 .header_extra > div a:hover {
  color: var(--base-white);
}
.prt-header-style-03 .site-header-menu-inner{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 100px;
    padding: 0 30px;
    background-color: transparent;
    z-index: 10;
}
.prt-header-style-03 .header_extra .widget_icon i {
    position: relative;
    top: 7px;
}



/*  ===============================================
    Header
------------------------*/
/** SiteBrand(logo) **/
.site-branding{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.prt-header-style-01 .site-branding{
    padding: 0px 0 0px;
}

/**  side-menu **/
.side-menu-container {
    position: absolute;
    right: 50px;
    top: 21px;
    left: auto;
}
.side-menu{ position: relative; }
.side-menu a{
    display: block;
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 18px;
    background-color: var(--base-dark);
    color: #fff;
    border-radius: 5px;
}
.side-overlay .side{
    display: inline-block;
    position: fixed;
    height: 100%;
    top: 0;
    right: 0px;
    width: 420px;
    padding: 45px 35px 35px;
    z-index: 5;
    background-color: #ffffff;
    -webkit-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: translateX(420px);
    -ms-transform: translateX(420px);
    transform: translateX(420px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-image: url(../images/fltingbar-bg-img.jpg);
    background-position: 0% 0%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.side-overlay.on .side{
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -ms-transition: .4s ease-out;
    transition: .4s ease-out;
}
.side .close-side{
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 20px;
}
.side .prt-detailss ul {
    padding-left: 0;
    padding-top: 15px;
}
.side .prt-detailss ul>li {
    padding-bottom: 3px;
    list-style: none;
}
.side .prt-detailss li span:first-child {
    color: rgba(255,255,255,.95);
}
.side .prt-detailss li:first-child span:last-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--base-skin);
}
.side .prt-detailss ul>li a,
.side p{
    color: rgba(255,255,255,.6);
}
.side aside.widget_text {
    margin: 35px 0 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.side aside.widget_text h3 {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 4px;
}
.side aside.widget_text .wrap-form.cta_form span.text-input {
    margin-bottom: 15px;
}
.side aside.widget_text .wrap-form.cta_form span.text-input input, 
.side aside.widget_text .wrap-form.cta_form span.text-input textarea, 
.side aside.widget_text .wrap-form.cta_form span.text-input select {
    border-radius: 5px;
    border: 0;
    background-color: #203d71;
    color: rgba(255,255,255,.40);
}

/* header_extra */
.header_extra {
    position: relative;
}
.header_extra > div { 
    padding-left: 15px;
    padding-right: 30px;
}
.prt-header-style-01 .header_extra > div { 
    padding-left: 32px;
    position: relative;
}
i.icon-plus-1:before {
    font-weight: 600;
}
.header_search { 
    position: relative; 
    padding-left: 30px;
}
.prt-header-style-02 .header_search {
    padding-right: 30px;
    padding-left: 30px;
}
.prt-header-style-02 .header_search .search_btn i {
  font-weight: 900;
}
.prt-header-style-02 .header_extra .header_search i:hover {
    color: var(--base-skin);
}
.prt-header-style-02 .header_search .search_btn {
    color: var(--base-bodyfont-color);
    height: 100%;
    font-size: 22px;
    border-radius: 0;
    background-color: transparent;
    display: flex;
}
.prt-header-style-02 .header_extra .header_cart {
    height: 100%;
    font-size: 20px;
    border-radius: 0;
    background-color: transparent;
    display: flex;
}
.prt-header-style-02 .header_extra .header_cart a {
    color: var(--base-bodyfont-color);
    font-size: 22px;
}
.prt-header-style-02 .header_extra .header_cart i {
    font-weight: 900;
}
.prt-header-style-02 .header_extra .header_cart a:hover,
.prt-header-style-02 .header_search .search_btn:hover {
    color: var(--base-skin);
}
.header_search .header_search_content.on {
    visibility: visible;
    opacity: 1;
    display: block;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.header_search .header_search_content {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 85%);
    height: 100%;
    width: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    -o-transform: translateY(-30%);
    transform: translateY(-30%);
}
.header_search .header_search_content .close_btn:hover i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.header_search .header_search_content_inner .close_btn {
    top: 60px;
    text-align: center;
    position: absolute;
    left: 50%;
    cursor: pointer;
    z-index: 1;
}
.header_search .header_search_content .close_btn i {
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    height: 35px;
    width: 35px;
    display: block;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
}
.header_search .header_search_content #searchbox {
    position: absolute;
    left: 0;
    right: 0;
    width: 620px;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header_search .header_search_content #search_query_top {
    background: none;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,1) !important;
    height: 65px;
    padding: 0 70px 0 0;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    color: #fff;
    outline: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.header_search_content button.close-search {
    position: absolute;
    right: 15px;
    padding: 0;
    color: #fff;
    font-size: 21px;
    border-radius: 0;
    box-shadow: unset;
}
.prt-header-style-02 .social-icons li {
    min-width: auto;
    margin-left: 0;
    margin-right: 7px;
}
.prt-header-style-02 .social-icons li a{
    border: none;
    height: 30px;
    width: 30px;
    line-height: 33px;
    border-radius: 4px;
    color: #fff;
    background-color: #21a12e;
}
.prt-header-style-02 .social-icons li a:hover {
    background-color: #fff;
    color: #21a12e;
    border-color: #fff;
}
.prt-header-style-01 .header_btn .prt-btn {
    padding: 11px 23px;
    border: unset;
}

/** SiteNavigation(Menu) **/
.site-navigation {
    position: relative;
    z-index: 999;
}
nav.main-menu ul {
    position: relative;
    margin: 0;
}
#site-header-menu .site-navigation ul.menu > li >a {
    font-size: 15px;
    text-decoration: none;
    z-index: 1;
}
#site-header-menu .prt-stickable-header .site-navigation ul.menu > li.active >a {
    color:#fb7917;
}

/* banner_slider */
.banner_slider.slick-slider .slick-prev, .banner_slider.slick-slider .slick-next{
    opacity: 0;
    visibility: hidden;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding-right: 3px;
    text-align: center;
    position: absolute;
    display: block;
    z-index: 1;
    margin: 0 20px;
    background: rgba(34, 54, 69, 0.5);
    border-radius: 50%;
}
.banner_slider.slick-slider .slick-next { right: 0; left: auto; padding-right: 0; padding-left: 3px; }
.banner_slider.slick-slider:hover .slick-prev, .banner_slider.slick-slider:hover .slick-next{
    opacity: 1;
    visibility: visible;
}
.banner_slider.slick-slider .slick-prev:hover, .banner_slider.slick-slider .slick-next:hover {
  background: #000;
}
.banner_slider.slick-slider .slick-prev:before, .banner_slider.slick-slider .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    opacity: 1;
    color: #fff;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.banner_slider.slick-slider .slick-prev:before {
    content: "\f053";
}
.banner_slider.slick-slider .slick-next:before {
    content: "\f054";
}

/* banner_slide */
.slide  {
    height: 680px;
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: absolute;
    left: 0;
}
.slide .slide__img img {
    opacity: 1 ;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    transition: all 1s ease;
}
.slide .slide__content {
    position: relative;
    height: 100%;
    display: flex;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
}
.slide .slide__content--headings {
    padding: 15px 0;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    align-items: center;
    transition: all 0.5s ease;
}

/* banner_slider_1 */
.banner_slider_1 .slide__content {
    background-color:rgba(0,17,62,0.35);
}
.banner_slider_1 .slide__content--headings h2 {
    line-height: 112px;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 87px;
}
.banner_slider_1 .slide__content--headings > h3 {
    line-height: 50px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 0;
}
.banner_slider_1 .slide__content--headings p {
    color: rgb(220, 221, 222);
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 21px;
}

/* banner_slider_2 */
.banner_slider_2 .slide__content--headings{
    padding: 15px 0;
    position: relative;
    z-index: 1;
    display: table;
    margin: 0 auto;
    transition: all 0.5s ease;
}
.banner_slider_2 .slide__content--headings h3 { 
    text-align: left;
    line-height: 0;
}
.banner_slider_2 .slide__content--headings span.num {
    font-weight: 700;
    font-size: 18px;
    position: relative;
    padding-right: 200px;
}
.banner_slider_2 .slide__content--headings span.num:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
}
.banner_slider_2 .slide__content--headings span {
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 24px;
}
.banner_slider_2 .slide__content--headings h2 {  
    display: inline-block;
    line-height: 102px;
    font-weight: 700;
    font-size: 87px;
    position: relative;
}
.banner_slider_2 .slide__content--headings h2:after {
    position: absolute;
    content: "";
    height: 6px;
    width: 46.5%;
    left: auto;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* banner_slider_3 */
.banner_slider_3_overlay .slide { height: 742px; }
.banner_slider_3 .slide__content {
    background-color: rgba(0, 18, 62, 0.54);
}
.banner_slider_3 .slide__content--headings {
    padding: 15px 0;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
    transition: all 0.5s ease;
}
.banner_slider_3 .slide__content--headings .quotes-1,
.banner_slider_3 .slide__content--headings .quotes-2 {
    width: 55%;
    height: 100%;
    padding-right: 120px;
    position: relative;
}
.banner_slider_3 .slide__content--headings .quotes-2 {
    padding-left: 100px;
    padding-right: 0;
}
.banner_slider_3 .slide__content--headings .quotes-1:after,
.banner_slider_3 .slide__content--headings .quotes-2:after {
    position: absolute;
    content: "";
    width: 3px;
    right: 60px;
    top: -5%;
    bottom: -5%;
}
.banner_slider_3 .slide__content--headings .quotes-2:after {
    left: 0;
}
.banner_slider_3 .slide__content--headings .quotes-1 blockquote ,
.banner_slider_3 .slide__content--headings .quotes-2 blockquote {
    line-height: 34px;
    letter-spacing: 0px;
    font-weight: 300;
    font-size: 18px;
    text-decoration: underline;
    font-style: italic;
    position: relative;
    padding: 60px 0 30px 0;
    margin: 0;
}
.banner_slider_3 .slide__content--headings .quotes-2 blockquote {
    text-decoration: none;
    padding: 20px 0 20px 0;
}
.banner_slider_3 .slide__content--headings .quotes-1 blockquote:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    top: 0;
    left: 0;
}
.banner_slider_3 .slide__content--headings h2 {
    line-height: 82px;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 72px;
    margin-bottom: 20px;
}
.banner_slider_3 .slide__content--headings h3 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 10px;
}
.banner_slider_3 .slide__content--headings p {
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 16px;
}

@media only screen and (max-width: 1200px){
    .banner_slider_3_overlay .slide { height: 660px; }
    .banner_slider_3 .slide__content--headings h2 { font-size: 62px; line-height: 72px; }
}

@media only screen and (max-width: 1024px){
    .banner_slider .slide { height: 460px; }
    .banner_slider_1 .logo-icon img { max-height: 58px; }
    .banner_slider_1 .slide__content--headings h2 { font-size: 72px; line-height: 82px; }
    .banner_slider_3 .slide__content--headings h2 { font-size: 52px; line-height: 62px; margin-bottom: 10px; }
    .banner_slider_3 .slide__content--headings .quotes-2 { padding-left: 70px; }
}

@media only screen and (max-width: 991px){ 
    .banner_slider_1 .slide__content--headings h2 { font-size: 55px; line-height: 65px; }
    .banner_slider_1 .slide__content--headings p { font-size: 16px; line-height: 26px; }

    .banner_slider_2 .slide__content--headings span.num { padding-right: 80px; }
    .banner_slider_2 .slide__content--headings span { font-size: 20px; line-height: 1; }
    .banner_slider_2 .slide__content--headings h2 { font-size: 60px; line-height: 70px; }

    .banner_slider_3 .slide__content--headings .quotes-1,
    .banner_slider_3 .slide__content--headings .quotes-2 { display: none; }
    .banner_slider_3 .slide__content--headings { text-align: center; display: block; }
    .banner_slider_3 .slide__content--headings p { padding: 0 0 15px 0; margin: auto; width: 70%; }

}

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

    .banner_slider .slide { height: 400px; }

    .banner_slider .slide__content--headings p { display: none; }

    .banner_slider_1 .logo-icon img { max-height: 50px; }

    .banner_slider_2 .slide__content--headings h3 { text-align: center; margin-bottom: 15px; }
    .banner_slider_2 .slide__content--headings span.num { display: none; }

    .banner_slider_3 .slide__content--headings h2 { font-size: 46px; line-height: 56px; margin-bottom: 0; }
}

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

    .banner_slider .slide { height: 300px; }

    .banner_slider_1 .logo-icon img { max-height: 40px; }
    .banner_slider_1 .prt-icon { height: 50px; width: 50px; line-height: 50px; margin-bottom: 15px; }
    .banner_slider_1 .prt-icon i { font-size: 32px; }

    .banner_slider_2 .slide__content--headings span { font-size: 18px; line-height: 1; }
    .banner_slider_1 .slide__content--headings h2 { font-size: 33px; line-height: 46px; margin-bottom: 0; }
    .banner_slider_2 .slide__content--headings h2 { font-size: 38px; line-height: 50px; margin-bottom: 0; }

    .banner_slider_3 .slide__content--headings h3 { font-size: 16px; line-height: 26px; margin-bottom: 5px; }
    .banner_slider_3 .slide__content--headings h2 { font-size: 33px; line-height: 46px; margin-bottom: 0; }

    .slide .prt-btn.prt-btn-size-md:not(.btn-inline) {
        padding: 9px 20px;
        font-size: 12px;
    }

}

@media only screen and (max-width: 480px){
    .banner_slider .slide { height: 320px; }
}

/* /////////// IMAGE ZOOM /////////// */
.banner_slider .slide_img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: right;
    background-size: cover;
}
.slick-active .slide_img {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
    -webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 36s linear 0s;
    -moz-animation: imageAnimation 36s linear 0s;
    -o-animation: imageAnimation 36s linear 0s;
    -ms-animation: imageAnimation 36s linear 0s;
    animation: imageAnimation 36s linear 0s;
}
@keyframes imageAnimation { 
  0% { animation-timing-function: ease-in; }
  8% { transform: scale(1.02); animation-timing-function: ease-out; }
  17% { transform: scale(1.04); animation-timing-function: ease-out; }
  22% { transform: scale(1.02); } 25% { -transform: scale(1.1); }
}


/* ===============================================
    Footer
------------------------*/
.footer{
    background-color: #0c1523;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.footer.text-base-white,
.footer.text-base-white a {
    color: rgba(255, 255, 255, .65);
}
.footer.text-base-white a:hover {
    color: var(--base-skin) !important;
}
.footer .footer-logo {
    position: relative;
    margin-bottom: 24px;
}
.footer .social-icons li {
    margin: 0;
    padding: 0px 0px 10px 0;
    min-width: 23px;
}
.footer .social-icons li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 7px 0 0px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.50) !important;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255 , 0.20);
}
.footer .social-icons li a:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
    border-color: var(--base-skin);
}
.footer .social-icons li a:hover i{
    color: var(--base-white);
}
.footer .widget .widget-title { 
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}
.footer .widget ul{
    list-style: none;
    margin: 0 0;
    padding: 0 0;
}

/* footer-nav-menu */
.footer-nav-menu {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.footer-nav-menu li:last-child {
    padding-right: 0;
}
.footer-nav-menu li {
    display: inline-block;
    padding-left: 2px;
    padding-right: 14px;
    font-size: 16px;
    padding-bottom: 0px;
    position: relative;
}
ul.footer-nav-menu li:after {
    position: absolute;
    content: "|";
    padding-left: 7px;
    top: 0;
}
ul.footer-nav-menu li:last-child:after {
  content: unset;
}

/* second-footer */
.second-footer{padding: 55px 0 40px; background-color: #202020; }
.second-footer .widget .widget-title {
    border:none;
    padding-bottom: 0;
}
.widget-area{position:relative;}
.second-footer .row .col-lg-4.widget-area:nth-child(4):after{
    left: 83px;
}
.widget.widget_text ul.widget_contact_wrapper li strong {
  color: var(--base-skin);
  font-weight: 400;
}
.bg-footer {
    background-image: url(../images/bg-image/footer-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}


/* first-footer */
.first-footer {
    padding: 20px 0 20px;
    position: relative;
    z-index: 2;
    border-top: 1px solid #e7e5e5;
}
.first-footer .featured-box .featured-title a {
    color: var(--base-bodyfont-color);
    font-size: 16px;
    font-family: var(--base-bodyfont);
}
.first-footer .featured-box .featured-title a:hover {
    color: var(--base-skin);
}
.first-footer .featured-box {
    position: relative;
    top: 10px;
}
.widget-footer .footer-logo {
    position: relative;
    margin-bottom: 24px;
}
.first-footer .newsletter-form .mailchimp-inputbox {
    display: table;
    width: 100%;
    padding: 0px;
    position: relative;
    z-index: 1;
}
.first-footer .newsletter-form i {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    z-index: -1;
    color: var(--base-skin);
}
.first-footer .newsletter-form p {
    margin: 0;
}
.first-footer .newsletter-form input[type="email"] {
    padding: 15px 30px 10px 0;
    border: none !important;
    color: var(--bodyfont-color);
    border-bottom: 1px solid #e7e5e5 !important;
    height: 47px;
    border-radius: 0px;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    background-color: transparent;
    width: 100%;
}
.first-footer .mailchimp-inputbox button[type="submit"], .first-footer .mailchimp-inputbox button[type="submit"] {
    padding: 0;
    background: transparent;
    padding: 13px 55px 10px 32px;
    top: 6px;
}
.first-footer .newsletter-form h3 {
    font-size: 15px;
    line-height: 25px;
    padding-top: 15px;
}
form {
    position: relative;
}

/* bottom-footer-text */
.footer.text-base-white .bottom-footer-text span a{color: var(--base-skin);}


/*widget_text*/
.second-footer .textwidget.widget-text p, #menu-footer-quick-links-main a ,
#menu-footer-quick-links a{
  color: rgb(255 255 255 / 50%);  
} 

/* newsletter-form */
.newsletter_widget .widget-title { 
    margin-bottom: 10px !important;
}
.first-footer .newsletter_widget {
    padding: 30px 0 0 30px;
}
.first-footer .newsletter_widget .social-icons {
  display: inline-block;
}
.first-footer .newsletter_widget h3 {
  display: inline-block;
  padding-right: 10px;
}
.first-footer .social-icons li a.prt-social-facebook {
    background-color: #385da9;
    color: var(--base-white);
}
.first-footer .social-icons li a.prt-social-twitter {
    background-color: #1da1f2;
    color: var(--base-white);
}
.first-footer .social-icons li a.prt-social-instagram {
    background-color: #b21674;
    color: var(--base-white);
}
.first-footer .social-icons li a.prt-social-linkedin {
    background-color: #0e76a8;
    color: var(--base-white);
}
.first-footer .social-icons li a.prt-social-dribbble {
    background-color: #ea4c88;
    color: var(--base-white);
}
.first-footer .social-icons li {
    min-width: auto;
    margin-left: 0;
    margin-right: 6px;
}
.first-footer .social-icons li a {
    border: 1px solid rgba(255, 255, 255 , 0.20);
    height: 35px;
    width: 35px;
    line-height: 36px;
    border-radius: 6px;
}
.first-footer .featured-box .featured-title {
   padding-right: 0px !important;
}
.first-footer .featured-box .featured-title, .first-footer .featured-box .featured-icon {
    display: table-cell;
    vertical-align: middle;
    padding-right: 20px;
}
.first-footer .featured-box .featured-icon .prt-icon i {
    font-size: 40px;
    line-height: 80px;
    width: 50px;
    height: 50px;
}
.first-footer .featured-box .featured-title h3 {
   font-size: 16px;
   margin-bottom: 0;
}
.first-footer .newsletter_widget:after {
    display: block;
    height: 50%;
    content: '';
    position: absolute;
    right: 30px;
    width: 1px;
    top: 25%;
    background-color: #e7e5e5;
}
.newsletter-form { 
    position: relative;
    margin-bottom: 0px;
    clear: both;
    display: inline-block;
    width: 100%;
}
.newsletter-form p{margin-bottom: 0px;}
.newsletter-form p.cookies{padding-top: 9px;}
.newsletter-form input[type="email"] {
    background-color: #222b3b;
    border: unset;
    padding: 12px 25px 11px 15px;
    width: calc(100% - 165px);
    font-size: 16px;
    border-radius: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.newsletter-form button[type="submit"] {
    position: absolute;
    top: 0;
    right: 3px;
    font-size: 16px;
    height: 48px;
    line-height: 0;
    display: block;
    padding: 13px 55px 10px 32px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.newsletter-form button[type="submit"] i { font-size: 17px; }

.newsletter-form .prt-btn.prt-btn-style-fill.prt-btn-color-skincolor:hover {
    background-color: var(--base-white);
    border-color: var(--base-white);
    color: var(--base-skin);
}
.newsletter-form .prt-btn.prt-icon-shap.prt-btn-style-fill:hover i{
    background-color: var(--base-skin);
    color: var(--base-white);
}

/* checkbox  */
.footer input[type=checkbox]{
  visibility: hidden;
  position: absolute;
}
.footer input[type=checkbox] + label{
  height: 15px;
  width: 15px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 4px;
  vertical-align: middle;
  margin-bottom: 0px;
  margin-right: 6px;
}
.footer input[type=checkbox] + label:before{
  height: 15px;
  width: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  content: " ";
  display:inline-block;
  vertical-align: top;
}
.footer input[type=checkbox]:checked + label:before{
  content: "";
  border: solid;
  border-color: var(--base-skin);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  left: 3px;
  top: 0;
  width: 6px;
  height: 10px;
  background-color: transparent!important;
  border-radius: 0;
  position: relative;
  vertical-align: middle;
}

/** widget_nav_menu **/

.widget-footer .widget .widget-title:after {
     display: block;
    height: 2px;
    margin-top: 4px;
    content: '';
    position: absolute;
    background-color: var(--base-skin);
    width: 27px;
    left: 16px;
}
.widget-footer .widget .widget-title {
    margin-bottom: 40px;
    color: var(--base-white);
    font-size: 20px;
    text-transform: capitalize;
}
.footer .widget.widget_nav_menu ul > li:first-child,
.footer .widget.link-widget ul > li:first-child {
    padding-top: 0px;
}

.footer .widget.widget_nav_menu ul > li,
.footer .widget.link-widget ul > li {
    padding: 8px 0px 7px 0;
}
.footer .widget.widget_nav_menu ul > li a,
.footer .widget.link-widget ul > li a{color: var(--base-white);}

/* multi_widget */


#menu-footer-quick-links {
  padding-left: 0px;
}
#menu-footer-quick-links a i {
  padding-right: 10px;
}
#menu-footer-quick-links a:hover {
  color: var(--base-skin);
}
#menu-footer-quick-links li {
  padding: 0 0 15px 0;
}


/** widget_cta **/
.widget_cta h4 { 
    font-size: 24px;
    line-height: 1;
    margin-bottom: 25px;
    color: var(--base-skin) !important;
}
.widget.widget_cta.clearfix {
    padding-left: 100px;
}
ul.widget_contact_wrapper li {
    position: relative;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
    color: rgb(255 255 255 / 50%);
}
ul {
  list-style-type: none;
}
ul.widget_contact_wrapper li > a {
    color: var(--base-white) !important;
    margin-bottom: 5px;
}
ul.widget_contact_wrapper li:last-child{
    border-bottom: 0;
    margin-bottom: 0;
}
ul.widget_contact_wrapper li i{
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 1;
    font-size: 27px;
    font-weight: 400;
    color: var(--base-skin);
}
footer .g-map iframe {
    width: 100%;
    margin-top: 15px;
    filter: brightness( 91% ) contrast( 126% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
    border-radius: 5px;
}

/** copyright **/
.copyright{
    padding-top: 23px;
    padding-bottom: 23px;
    font-size: 14px;
    color: rgba(255,255,255,.65);
    display: block;
    background-color: #1a1919;
}
.copyright .u1 a { font-size: 15px; }
.copyright .u1 a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: -2px;
    left: 0;
    border-bottom: 1px solid currentColor;
}
.copyright .u1.text-base-skin a{
    color: var(--base-skin) !important;
}
.copyright .u1.text-green a{
    color: #82b440 !important;    
}
.copyright a:hover {
    color: var(--base-skin);
}


/* ===============================================
    GoTop BUtton
------------------------*/
#totop{
    font-weight: 900;
    color: #fff;
    display: none;
    position: fixed;
    right: 34px;
    bottom: 50px;
    z-index: 999;
    height: 0;
    width: 0;
    font-size: 0;
    text-align: center;
    padding-top: 3px;
    line-height: 34px;
    border-radius: 3px;
    transition: .3s ease-in-out;
}
#totop.top-visible {
    height: 40px;
    width: 40px;
    font-size: 22px;
    display: inline;
    background-color: var(--base-skin);
}
@keyframes jump {
  0% { bottom: 20px; } 50% { bottom: 40px; } 100% { bottom: 20px; }
}
#totop.top-visible  {
  animation: jump 4s infinite;
}


/* ===============================================
    Page-Title-Row
------------------------*/
.prt-page-title-row { 
    background-image: url(../images/bread.png);
    width: 100%;
    position: relative;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}
.prt-page-title-row-1 {
    background: url(../images/bread.png);
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.prt-page-title-row-inner-1 {
    width: 100%;
    padding: 235px 0 90px;
    text-align: center;
    background-color: rgba(0, 0, 0, .47)
}
.prt-page-title-row-inner-1 .title-desc p {
   color: var(--base-white);
}
.prt-page-title-row-2 {
    background: url(../images/bread.png);
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.prt-page-title-row-inner-2 {
    width: 100%;
    padding: 230px 0 230px;
    text-align: center;
    background-color: rgba(0, 0, 0, .47)
}
.prt-page-title-row-inner-2 .title-desc p {
   color: var(--base-white);
}
.prt-page-title-row-3 {
    background: url(../images/bread.png);
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.prt-page-title-row-inner-3 {
   width: 100%;
    padding: 245px 0 95px;
    text-align: center;
   background-color: rgb(0 0 0 / 63%);
}
.prt-page-title-row-inner-3 .title-desc p {
   color: var(--base-white);
}
.prt-page-title-row-inner {
   width: 100%;
    padding: 245px 0 95px;
    text-align: center;
   background-color: rgb(0 0 0 / 63%);
}
.prt-page-title-row-inner-text {
    width: 100%;
    padding: 245px 0 95px;
    text-align: center;
   background-color: rgb(0 0 0 / 63%);
}
.prt-page-title-row-inner .title-desc p,
.prt-page-title-row-1 .title-desc p,
.prt-page-title-row-2 .title-desc p {
    width: 30%;
    margin: 0 auto;
}
.page-title-heading h2 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 50px;
    line-height: 40px;
    margin-bottom: 20px;
    color: var(--base-white);
}
.breadcrumb-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
}
.prt-page-title-row-inner .title-desc {
  color: var(--base-white);
}
.breadcrumb-wrapper .container {
    padding: 0
}
.breadcrumb-wrapper a,
.breadcrumb-wrapper span {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 20px;
}
.prt-page-title-row .breadcrumb-wrapper span {
    color:var(--base-skin);
}
.breadcrumb-wrapper-main {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
}
.breadcrumb-wrapper-inner.bread-white {
    background-color: var(--base-white) !important;
}
.prt-page-title-row-inner .title-desc {
    color: var(--base-white);
}
.prt-page-title-row-inner-text .title-desc {
    color: var(--base-white);
}
.breadcrumb-wrapper-main .container {
    padding: 0
}
.breadcrumb-wrapper-main .breadcrumb-wrapper-inner {
    border-radius: 3px;
    border-left: 3px solid var(--base-skin);
    background-color: var(--base-grey);
    padding: 14px 30px 14px 20px;
    line-height: 20px;
    display: inline-block;
    position: relative;
    z-index: 2;
}
.breadcrumb-wrapper-main a,
.breadcrumb-wrapper-main span {
    text-transform: capitalize;
    font-size: 14px;
    line-height: 24px;
}
.prt-page-title-row .breadcrumb-wrapper-main span,
.prt-page-title-row-inner-1 .breadcrumb-wrapper-main span,
.prt-page-title-row-inner-3 .breadcrumb-wrapper-main span,
.prt-page-title-row .breadcrumb-wrapper-main span {
    color:var(--base-skin);
}
.prt_single_image-wrapper { position: relative;}


/* ===============================================
    Inner-Pages
------------------------*/

/*------------------------------------------------------------------------------*/
/*  single_services
/*------------------------------------------------------------------------------*/ 
.prt-service-single-content-area div:not(.featured-title) > h3 { font-size: 32px; line-height: 40px; }
.prt-service-single-content-area p:not(:last-child) { margin-bottom: 25px; }
.prt-service-single-content-area .prt_fatured_image-wrapper { position: relative; border-radius: 5px; overflow: hidden;}
.prt-service-single-content-area img { width: 100%; border-radius: 6px;}


/*------------------------------------------------------------------------------*/
/*  single_team
/*------------------------------------------------------------------------------*/ 
.prt-team-member-single-content h3, .prt-team-member-content h3 { 
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px;
    margin-top: -15px;
    font-weight: 600;
}
.prt-team-member-single-content h3.widget-title {
    font-size: 22px;
    line-height: 32px;
}
.prt-team-member-detail {
    padding: 37px 30px 0;
    border-radius: 5px;
}
.prt-team-member-detail .prt-team-member-single-title {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 8px;
}
.prt-team-member-detail .prt-team-member-single-position {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--base-skin);
}
.prt-team-member-detail .prt-short-desc { margin: 12px 0 11px; }
.prt-team-member-detail ul {
    margin: 0;
    padding: 0;
}
.prt-team-details-list li {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
    display: block;
    padding: 10px 25px 10px 25px;
    width: 100%;
    background-color: var(--base-grey);
}
.prt-team-member-single-list .social-icons li a.prt-social-facebook {
    background-color: #385da9;
    color: var(--base-white);
}
.prt-team-member-single-list .social-icons li a.prt-social-twitter {
    background-color: #1da1f2;
    color: var(--base-white);
}
.prt-team-member-single-list .social-icons li a.prt-social-instagram {
    background-color: #b21674;
    color: var(--base-white);
}
.prt-team-member-single-list .social-icons li a.prt-social-linkedin {
    background-color: #0e76a8;
    color: var(--base-white);
}
.prt-team-member-single-list ul.social-icons {
  padding-top: 5px;
}
.prt-team-member-single-list .social-icons li a {
    border: 1px solid rgba(255, 255, 255 , 0.20);
    height: 35px;
    width: 35px;
    line-height: 36px;
    border-radius: 6px;
}
.prt-team-member-single-list .social-icons li {
    min-width: auto;
    margin-left: 0;
    margin-right: 10px;
}
ul.prt-team-details-list { padding-left: 0 !important; }
.prt-team-details-list .prt-team-list-title, 
.prt-team-details-list .prt-team-list-value,
.prt-team-details-list .prt-team-list-value a{
    display: inline-block;
    color: var(--body-font-color) !important;
}
.prt-team-details-list .prt-team-list-value a:hover {
    color: var(--base-skin) !important;
}
.prt-team-details-list .prt-team-list-title  {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: var(--base-dark) !important;
}
.prt-team-details-list .prt-team-list-title i {
    padding-right: 15px;
    font-size: 20px;
    color: var(--base-skin);
    top: 4px;
    position: relative;
}
.prt-team-member-detail .prt-social-links-wrapper ul li a {
    display: block;
    font-size: 16px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    margin-right: 0;
    background-color: #fff;
}
.prt-team-member-detail .prt-social-links-wrapper ul li a:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}
.prt-team-member-detail .prt-social-links-wrapper {
    padding: 14px 0 10px;
}
.prt-team-member-single-content .team-member-main-content {
  padding: 25px 25px 5px;
  background-color: var(--base-grey);
  border: 1px solid rgba(119,119,119,.2);
  border-radius: 6px;
}


/*------------------------------------------------------------------------------*/
/*  Project_Blog
/*------------------------------------------------------------------------------*/ 

.prt-pf-single-content-wrapper {
    position: relative;
}
.prt-pf-detailbox-list:after {
    right: -6px;
    left: auto;
    bottom: -7px;
    top: auto;
}
.prt-pf-featured-wrapper {
  position: relative;
}
.prt-pf-detailbox-list li {
    position: relative;
    display: flex;
    padding: 11px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 30px;
    border-radius: 6px;
    background-color: var(--base-white);
}
.prt-pf-detailbox-list li:last-child {
    border-bottom: 0;
}
.prt-pf-detailbox-list li span:not(.prt-pf-right-details) {
    margin-left: 10px;
    position: relative;
    color: var(--base-dark);
    font-weight: 600;
    margin-right: 5px;
    flex: 0 0 47.333333%;
}
.prt-pf-detailbox-list li i {
    position: absolute;
    left: -38px;
    top: -3px;
    line-height: 35px;
    display: inline-block;
    border-radius: 5px;
    padding-left: 0;
    vertical-align: middle;
    color: var(--base-skin);
    font-size: 16px;
    text-align: center;
    transform: translate(0,0);
    z-index: 1;
}
.prt-single-pf-footer {
    display: block;
    clear: both;
    overflow: hidden;
    margin-top: 25px;
}
.prt-social-share-wrapper {
    display: flex;
    align-items: center;
}
.prt-pf-single-content-wrapper .prt-social-share-title {
    font-size: 17px;
    line-height: 26px;
    margin-top: 2px;
    margin-right: 5px;
    font-weight: 700;
    color: #fff;
    padding-right: 10px;
}
.prt-pf-single-content-wrapper h3 {
    font-size: 32px;
    line-height: 42px;
    margin-top: 20px;
}
.prt-pf-single-content-wrapper h3.prt-pf-detailbox-title {
   margin-bottom: 20px;
   font-size: 22px;
   line-height: 32px;
}
.prt-pf-single-content-wrapper .prt-pf-single-detail-box {
    padding: 15px 30px 40px 30px;
    position: relative;
    background-color: var(--base-grey);
    margin-top: -188px;
    border-radius: 6px;
    margin-right: 30px;
}
.prt-pf-single-content-wrapper .prt-pf-single-detail-box  ul.prt-pf-detailbox-list {
    padding-left: 0px;
}
.prt-pf-single-content-wrapper .prt-social-share-links ul li a.prt-social-facebook {
    background-color: #385da9;
    color: var(--base-white);
}
.prt-pf-single-content-wrapper .prt-social-share-links ul li a.prt-social-twitter {
    background-color: #1da1f2;
    color: var(--base-white);
}
.prt-pf-single-content-wrapper .prt-social-share-links ul li a.prt-social-instagram {
    background-color: #b21674;
    color: var(--base-white);
}
.prt-pf-single-content-wrapper .prt-social-share-links ul li a.prt-social-linkedin {
    background-color: #0e76a8;
    color: var(--base-white);
}
.prt-pf-single-content-wrapper .prt-social-share-links ul li a {
    border: 1px solid rgba(255,255,255,.1);
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 15px;
    margin-right: 5px;
    border-radius: 6px;
}
.prt-pf-single-content-area {
    padding-top: 15px;
}
.prt-pf-single-content-area h2 {
    text-align: left;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 25px;
}
.prt-pf-single-content-area .social-media-block {
    display: block;
    clear: both;
    padding: 3px 0 25px;
    border-bottom: 1px solid #e6e9ef;
}
.prt-pf-single-content-area .social-icons li>a {
    border: 1px solid #e7e7e7;
    background-color: transparent;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    display: block;
    font-size: 14px;
    border-radius: 5px;
    color: #676b72;
}
.prt-pf-single-content-area .social-icons li>a:hover {
    border-color: var(--base-white);
    color: var(--base-white);
    background-color: var(--base-skin);
}
.prt-pf-single-content-area .prt-pf-single-category span {
    color: var(--base-skin);
    font-size: 15px;
    font-weight: 600;
}
.prt-pf-single-content-area .prt-pf-single-category a:not(:hover ) {
    color: inherit;
}
.prt-nextprev-bottom-nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*------------------------------------------------------------------------------*/
/*  Classic_Blog
/*------------------------------------------------------------------------------*/
article.prt-blog-classic {
    margin-bottom: 30px;
    padding-bottom: 0;
    border-radius: 5px;
    overflow: hidden;
    padding: 40px 40px 10px 40px;
}
article.prt-blog-classic:last-child { 
    margin-bottom: 0px;
}
article.prt-blog-classic .prt-post-featured-wrapper  { 
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
article.prt-blog-classic .prt-blog-classic-content {  
    z-index: 11;
    position: relative;
    display: block;
    border: 0;
    overflow: hidden;
    border-radius: 5px;
}
article.prt-blog-classic .blog-classic-main {
  padding: 35px;
  margin-bottom: 30px;
  background-color: var(--base-grey);
  border-radius: 6px;
}
.prt-blog-classic .prt-box-post-cat{
    z-index: 1;
    top: 10px;
    left: 9px;
    font-size: 13px;
    font-weight: 500;
    width: auto;
    padding: 0 14px 2px;
    position: absolute;
    background-color: var(--base-skin);
    color: var(--base-white);
}
.prt-blog-classic .post-meta .prt-meta-line img, .prt-blog-single .post-meta .prt-meta-line img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 15px;
}
.prt-blog-classic .post-meta .prt-meta-line:not(:last-child):after, 
.prt-blog-classic .post-meta .prt-meta-line:not(:last-child):before,
.prt-blog-single .post-meta .prt-meta-line:not(:last-child):after, 
.prt-blog-single .post-meta .prt-meta-line:not(:last-child):before {
    position: absolute;
    content: "";
    height: 15px;
    width: 1px;
    border-radius: 100%;
    top: 2px;
    right: 0;
    transform: rotate(90deg);
    display: block;
    background-color: #d7d7d7;
}
.prt-blog-classic .prt-box-post-cat a {
    color: var(--base-white);
}
.prt-blog-classic .post-meta, .prt-blog-single .post-meta {
    display: block;
    padding: 0px 0 6px;
}
.prt-blog-classic .post-meta .prt-meta-line, .prt-blog-single .post-meta .prt-meta-line {
    padding-right: 25px;
    position: relative;
    color: inherit;
}
.prt-blog-classic .post-meta .prt-meta-line a, 
.prt-blog-single .post-meta .prt-meta-line a { color: var(--body-font-color); }

.prt-blog-classic .post-meta .prt-meta-line:last-child{
    padding-right: 0;
}
.prt-blog-classic .post-meta .prt-meta-line i, .prt-blog-single .post-meta .prt-meta-line i {
    padding-right: 10px;
    padding-left: 20px;
    color: var(--base-skin);
    top: 3px;
    position: relative;
}
.prt-blog-classic .entry-header .entry-title {
    font-size: 32px;
    line-height: 42px;
    position: relative;
    margin-bottom: 30px;
}
.prt-blog-classic .prt-box-desc-text {
    padding-top: 30px;
}
.prt-blog-classic .prt-blogbox-footer {
    display: inline-block;
    float: right;
    position: relative;
    padding-top: 16px;
}
.prt-blog-classic .social-icons li a {
    border: 1px solid rgba(255, 255, 255 , 0.20);
    height: 35px;
    width: 35px;
    line-height: 36px;
    border-radius: 6px;
}
.prt-blog-classic .social-icons li a.prt-social-facebook {
    background-color: #385da9;
    color: var(--base-white);
}
.prt-blog-classic .social-icons li a.prt-social-twitter {
    background-color: #1da1f2;
    color: var(--base-white);
}
.prt-blog-classic .social-icons li a.prt-social-instagram {
    background-color: #b21674;
    color: var(--base-white);
}
.prt-blog-classic .social-icons li a.prt-social-linkedin {
    background-color: #0e76a8;
    color: var(--base-white);
}
.prt-blog-classic .social-icons li {
    min-width: auto;
    margin-left: 0;
    margin-right: 5px;
}
.prt-blog-classic .social-icons li:last-child {
    margin-right: 0px;
}



/*------------------------------------------------------------------------------*/
/*  Single_Blog
/*------------------------------------------------------------------------------*/
.prt-blog-single .prt-post-featured-wrapper{    
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}
.prt-blog-single:first-child {
  margin-bottom: 30px;
}
.prt-blog-single .post-meta{
    display: block;
    padding: 5px 0 15px 0;
}
.prt-blog-single h3 {
    font-size: 32px;
    line-height: 42px;
    margin-top: 20px;
}
.prt-blog-single blockquote {
    display: block;
    background: var(--base-white);
    position: relative;
    padding: 40px 35px 15px 35px;
    margin: 25px 0 35px 0;
    min-height: 100px;
    border: none;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    background-color: var(--base-grey);
    border-radius: 5px;
}
.prt-blog-single blockquote cite:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    left: 40px;
    bottom: 50px;
    background-color: currentColor;
}
.prt-blog-single p { margin-bottom: 20px; }
.prt-blog-single blockquote:before {
    content: '';
    display: block;
    position: absolute;
    right: 50px;
    bottom: 35px;
    height: 60px;
    opacity: 0.2;
    width: 60px;
    background-color: var(--base-skin);
    background-repeat: no-repeat;
    -webkit-mask-box-image: url(../images/quote-1.svg);
    mask: url(../images/quote-1.svg);
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}
.prt-blog-single blockquote cite {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    padding-left: 70px;
    font-style: normal;
    color: var(--base-dark);
}
article.prt-blog-single .prt-blog-single-content {
    background: var(--base-grey);
    padding: 35px 45px;
    position: relative;
    display: block;
    border-radius: 6px;
    margin: -100px 35px 25px;
}
.prt-blog-single .entry-header .entry-title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 4px;
    position: relative;
}
.prt-blog-single .social-media-block .prt-tags-links a {
    font-size: 15px;
    font-style: normal;
    display: inline-block;
    padding: 5px 30px;
    font-weight: 400;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: var(--base-grey);
    border-radius: 6px;
}
.prt-blog-single .social-media-block .prt-tags-links a:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}
.prt-blog-single .prt-social-share-wrapper ul li.facebook a {
    background-color: #385da9;
    color: var(--base-white);
}
.prt-blog-single .prt-social-share-wrapper ul li.twitter a {
    background-color: #1da1f2;
    color: var(--base-white);
}
.prt-blog-single .prt-social-share-wrapper ul li.pinterest a {
    background-color: #cb2027;
    color: var(--base-white);
}
.prt-blog-single .prt-social-share-wrapper ul li.linkedin a {
    background-color: #0e76a8;
    color: var(--base-white);
}
.prt-blog-single .social-icons li a {
    border: 1px solid rgba(255, 255, 255 , 0.20);
    height: 35px;
    width: 35px;
    line-height: 36px;
    border-radius: 6px;
}

/*blog-comment*/

.comments-area h3.comment-reply-title{
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px;
}
.comments-area p { margin-bottom: 15px; }
.comment-form textarea, .comment-form input[type="text"], 
.comment-form input[type="email"], .comment-form input[type="url"] {
    border-radius: 5px;
    vertical-align: middle;
    width: 100%;
    color: #8d8d8d;
    padding: 12px 15px;
    font-weight: 400;
    background-color: #fff;
    text-transform: inherit;
    border: 1px solid rgba(119,119,119,.2);
    font-size: 14px;
    line-height: inherit;
}
.comments-area .comment-form .comment-form-author, 
.comments-area .comment-form .comment-form-email, 
.comments-area .comment-form .comment-form-url {
    position: relative;
    float: left;
    width: 49%;
    margin-right: 2%;
}
.comments-area .comment-form-email {
    margin-right: 0 !important;
}
.comments-area .prt-btn:not(.btn-inline):hover:before {
    transition: 0.5s ease-in-out;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
}


/*------------------------------------------------------------------------------*/
/*  Contact_page
/*------------------------------------------------------------------------------*/ 
.prt_contact_widget_wrapper {
    position: relative;
    z-index: 1;
    overflow: visible;
    clear: both;
    padding: 40px 30px;
    padding-left: 35px;
}
@media (min-width: 992px) {
    .prt_contact_widget_wrapper:before {
        position: absolute;
        content: '';
        right: -20px;
        top: 46%;
        margin: 0 auto;
        border-bottom: 20px solid transparent;
        border-top: 20px solid transparent;
        border-left-width: 20px;
        border-left-style: solid;
        z-index: 9;
    }
}
.prt_contact_widget_wrapper ul {
    padding: 0;
    margin: 0;
    z-index: 2;
    list-style: disc;
    clear: both;
    padding-left: 23px;
}
.prt_contact_widget_wrapper li {
    margin-bottom: 25px;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
}
.prt_contact_widget_wrapper li h6 {
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}
.prt_contact_widget_wrapper li span {
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
}


/*------------------------------------------------------------------------------*/
/*  Error_page
/*------------------------------------------------------------------------------*/
section.error-404 {
    position: relative;
    background: var(--base-grey);
    padding: 150px 0px 150px;
}
.error-section h2 {
    font-weight: 700;
    color: var(--base-dark);
    line-height: 1.1em;
    margin-bottom: 10px;
}
section.error-404 h2 {
    position: relative;
    z-index: 3;
}
section.error-404 .page-content p { font-size: 18px; margin-bottom: 30px; }
section.error-404 .big-text {
    position: relative;
    line-height: 0.7em;
    font-size: 240px;
    color: #222222;
    font-weight: 700;
    font-family: var(--base-headingfont);
}
section.error-404 .med-text {
    position: absolute;
    left: 0;
    top: 40px;
    width: 100%;
    padding: 10px 10px 0px;
    line-height: 40px;
    font-size: 30px;
    color: var(--base-skin);
    background: var(--base-grey);
    font-weight: 700;
    font-family: var(--base-headingfont);
}
section.error-404 .text {
    position: relative;
    line-height: 1.7em;
    margin-bottom: 30px;
}


/*------------------------------------------------------------------------------*/
/*  Map
/*------------------------------------------------------------------------------*/   
#map { display: block; height: 515px; width: 100%; }
#map iframe {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    border-radius: 5px;
}
.min-box {
    position: relative;
    min-height: 860px;
}
.min-box-1 {
    position: relative;
    min-height: 850px;
}


/*------------------------------------------------------------------------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.hero-slider{
    position:relative;
    width:100%;
    height:900px;
    overflow:hidden;
    background:#000;
}

.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    opacity:0;
    visibility:hidden;
    transition:all 1s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.80) 0%,
        rgba(0,0,0,.55) 50%,
        rgba(0,0,0,.25) 100%
    );
}

.content-box{
    position:absolute;
    left:8%;
    top:50%;
    transform:translateY(-50%);
    z-index:100;

    width:700px;
    max-width:90%;

    padding:40px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.12);
    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);

    overflow:hidden;
}

/* Features */

.features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:25px;
}

.features span{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:rgba(255,255,255,.08);
    border-radius:50px;

    color:#fff;
    font-size:14px;
    font-weight:600;
}

.features i{
    color:#00d26a;
}

/* Heading */

.content-box h1{
    color:#fff;
    font-size:60px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;

    text-shadow:0 5px 20px rgba(0,0,0,.4);
}

/* Paragraph */

.content-box p{
    color:#f4f4f4;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* Button */

.btn-main{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 35px;

    background:#00d26a;
    color:#fff;

    text-decoration:none;
    font-weight:600;

    border-radius:50px;

    transition:.3s ease;
}

.btn-main:hover{
    transform:translateY(-3px);
}

/* Navigation */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;
    /* border-radius:50%; */

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);

    color:#fff;
    font-size:22px;

    cursor:pointer;
    z-index:99;

    transition:.3s;
}

.slider-btn:hover{
    background:#00d26a;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}

/* Tablet */

@media(max-width:991px){

    .hero-slider{
        height:700px;
    }

    .content-box{
        width:600px;
        left:5%;
        padding:35px;
    }

    .content-box h1{
        font-size:48px;
    }

    .content-box p{
        font-size:17px;
    }
}

/* Mobile */
@media(max-width:767px){

    .hero-slider{
        height:650px;
    }

    .content-box{
        left:15px;
        right:15px;
        width:auto;
        max-width:none;
        padding:25px;
        text-align:center;
    }

    .features{
        justify-content:center;
    }

    .content-box h1{
        font-size:34px;
        margin-bottom:15px;
    }

    .content-box p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .btn-main{
        width:100%;
        max-width:220px;
    }

    /* FIXED MOBILE ARROWS */

    .slider-btn{
        width:38px;
        height:38px;
        font-size:14px;
        top:auto;
        bottom:20px;
        transform:none;
        border-radius:8px;
        background:rgba(0,0,0,.5);
    }

    .prev{
        left:20px;
    }

    .next{
        right:20px;
    }
}

/* Header Fix */

.prt-header-style-01{
    z-index:9999 !important;
}



/*card */
.why-choose-section{
    background:
    radial-gradient(circle at top right,
    rgba(0,210,106,.08),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(11,44,109,.08),
    transparent 30%),

    #f7f7f7;
}
.why-choose-section::before{
    /* content:''; */

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    /* background:url('images/ev-bg.jpg') center center; */
    background-size:cover;
    background-repeat:no-repeat;

    opacity:0.05;

    z-index:1;
}

.why-choose-section::after{
    /* content:''; */

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        135deg,
        rgba(11,44,109,.03),
        rgba(0,210,106,.03)
    );

    z-index:1;
}

.why-choose-section .container{
    position:relative;
    z-index:2;
}

/* Background EV Pattern */

.bg-pattern{
    position:absolute;
    inset:0;

    /* background:url('../images/pagetitle-bg.jpg') center center no-repeat; */
    background-size:700px;

    opacity:0.09;

    pointer-events:none;
}

/* Container */

.why-choose-section .container{
    position:relative;
    z-index:2;
}

/* Heading */

.section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.sub-title{
    display:inline-block;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    color:#00d26a;

    margin-bottom:15px;
}

.section-heading h2{
    font-size:40px;
    font-weight:700;
 text-transform:uppercase;
    color:#0b2c6d;

    margin-bottom:20px;
}

.section-heading p{
    font-size:17px;
    line-height:1.8;
    color:#666;
}

/* Card */

.why-card{
    position:relative;

    height:100%;

    padding:35px 30px;

    background:rgba(255,255,255,0.80);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(11,44,109,0.08);

    border-radius:24px;

    transition:all .4s ease;

    overflow:hidden;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);
}

/* Hover Border Animation */

.why-card::before{
    /* content:''; */

    position:absolute;
    top:0;
    left:0;

    width:0;
    height:4px;

    background:#00d26a;

    transition:.4s ease;
}

.why-card:hover::before{
    width:100%;
}

/* Corner Glow */

.why-card::after{
    content:'';

    position:absolute;

    width:120px;
    height:120px;

    top:-50px;
    right:-50px;

    border-radius:50%;

    background:rgba(0,210,106,.08);

    transition:.4s;
}

.why-card:hover::after{
    background:rgba(0,210,106,.15);
}

/* Card Hover */

.why-card:hover{
    transform:translateY(-10px);

    border-color:#00d26a;

    box-shadow:
    0 20px 40px rgba(0,210,106,.12);
}

/* Icon */

.why-card i{
    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    font-size:28px;

    background:#f4f7fb;

    color:#0b2c6d;

    margin-bottom:25px;

    transition:.4s ease;
}

.why-card:hover i{
    background:#0b2c6d;
    color:#00d26a;

    transform:translateY(-5px);
}

/* Title */

.why-card h4{
    font-size:22px;
    font-weight:700;
 text-transform:uppercase;
    color:#0b2c6d;

    margin-bottom:15px;
}

/* Text */

.why-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

/* Mobile */

@media(max-width:991px){

    .section-heading h2{
        font-size:40px;
    }

}

@media(max-width:767px){

    .why-choose-section{
        padding:70px 0;
    }

    .section-heading{
        margin-bottom:45px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .section-heading p{
        font-size:15px;
    }

    .bg-pattern{
        background-size:350px;
    }

}

/*footer */
.shubham-footer{
    background:#0B2C6D;
    padding:80px 0 0;
    color:#fff;
}

.footer-widget{
    margin-bottom:30px;
}

.footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

.footer-widget h3{
    color:#FF7A00;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer-widget h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#4ca813;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-about{
    color:rgba(255,255,255,.85);
    line-height:1.8;
    margin-bottom:25px;
}

.footer-widget ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#4ca813;
    padding-left:8px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.10);
    border-radius:50%;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{
    background:#4ca813;
    transform:translateY(-4px);
}

.contact-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:rgba(255,255,255,.85);
    line-height:1.7;
}

.contact-list i{
    color:#4ca813;
    margin-top:5px;
    min-width:18px;
}

.footer-bottom{
    margin-top:50px;
    padding:20px 0;

    border-top:1px solid rgba(255,255,255,.10);

    text-align:center;

    color:rgba(255,255,255,.80);
}
.footer-logo{
    max-width:180px;
    filter:
    drop-shadow(0 5px 15px rgba(0,210,106,.20));
}
.shubham-footer{

    background: linear-gradient(135deg, #000000 0%, #0c1935 50%
50%
, #0c0c0c 100%);
}
.logo-box{
    display:inline-flex;

    padding:15px 20px;

   /* background: rgb(255 255 255 / 27%);*/

    backdrop-filter:blur(10px);

    /*border:1px solid rgba(255,255,255,.12);*/

    border-radius:16px;

    margin-bottom:25px;
}
/*business opprtunities */
.business-opportunity-section{
    padding:100px 0;
    background:#fff;
}

.section-tag{
    display:inline-block;

    color:#4ca813;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:15px;
}

.business-content h2{
    font-size:52px;
    font-weight:700;
    color:#0B2C6D;
    margin-bottom:25px;
}

.business-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.benefit-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.benefit-list div{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:15px;
    color:#333;
}

.benefit-list i{
    color:#4ca813;
}

/* Right Side Image */

.business-image-box{

    position:relative;

    height:650px;

    border-radius:30px;

    overflow:hidden;

   background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../images/BO.png);

    background-size:cover;
    background-position:center;

    box-shadow:
    0 20px 60px rgba(0,0,0,.15);
}

/* Floating Card */

.overlay-card{

    position:absolute;

    bottom:30px;
    left:30px;
    right:30px;

    padding:35px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.20);

    border-radius:20px;
}

.overlay-card h3{
    color:#fcfcfc;
    margin-bottom:0px;
    font-size:26px;
    font-weight:700;
}

.overlay-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.overlay-card li{
    color:#fff;
    padding:10px 0;

    border-bottom:
    1px solid rgba(255,255,255,.10);
}

/* Mobile */

@media(max-width:991px){

    .business-content{
        margin-bottom:50px;
    }

    .business-content h2{
        font-size:40px;
    }

    .business-image-box{
        height:500px;
    }
}

@media(max-width:767px){

    .business-opportunity-section{
        padding:70px 0;
    }

    .benefit-list{
        grid-template-columns:1fr;
    }

    .business-content h2{
        font-size:32px;
    }

    .business-image-box{
        height:450px;
    }

    .overlay-card{
        left:15px;
        right:15px;
        bottom:15px;
        padding:20px;
    }
}
/*financial services */
.financial-freedom-section{
    padding:100px 0;
    background:#f8fafc;
}

.financial-image-box{
    position:relative;
    height:650px;

    border-radius:30px;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(0,0,0,0),
        rgba(0,0,0,0)
    ),
    url('../images/fo.png');

    background-size:cover;
    background-position:center;

    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.financial-content{
    padding-left:40px;
}

.financial-content h2{
    font-size:52px;
    color:#0B2C6D;
    font-weight:700;
    margin-bottom:25px;
}

.financial-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.focus-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.focus-list div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#333;
}

.focus-list i{
    color:#4ca813;
}

/* Glass Card */

.overlay-card{
    position:absolute;

    left:30px;
    right:30px;
    bottom:30px;

    padding:35px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;
}

.overlay-card h3{
    color:#fff;
    margin-bottom:0px;
    font-size:26px;
}

.overlay-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.overlay-card li{
    color:#fff;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.10);
}

@media(max-width:991px){

    .financial-content{
        padding-left:0;
        margin-top:50px;
    }

    .financial-content h2{
        font-size:40px;
    }

    .financial-image-box{
        height:500px;
    }
}

@media(max-width:767px){

    .financial-freedom-section{
        padding:70px 0;
    }

    .focus-list{
        grid-template-columns:1fr;
    }

    .financial-content h2{
        font-size:32px;
    }

    .financial-image-box{
        height:450px;
    }
}
/* partnership */
/* ==========================
   PARTNERSHIP SECTION
========================== */

.sev-partnership-section{
    padding:100px 0;
    background:#081F4D;
    position:relative;
    overflow:hidden;
    clear:both;
}

.sev-partnership-section::before{
    content:'';
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    background:rgba(0,210,106,0.08);
    border-radius:50%;
    filter:blur(100px);
}

.sev-partnership-section .container{
    position:relative;
    z-index:2;
}

/* Heading */

.sev-sub-title{
    display:inline-block;
    color:#4ca813;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:10px;
}

.sev-title{
    color:#ffffff;
    font-size:52px;
    font-weight:700;
    margin-bottom:0;
}

.sev-title span{
    color:#4ca813;
}

/* Content */

.sev-content-wrapper{
    padding-right:40px;
}

.sev-content-wrapper p{
    color:rgba(255,255,255,0.85);
    font-size:22px;
    line-height:1.9;
    margin:0;
}

/* Image */

.sev-image-wrapper{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.20);
}

.sev-image-wrapper img{
    width:100%;
    display:block;
    border-radius:25px;
}

/* Benefits */

.sev-benefit-box{
    text-align:center;
    padding:25px 15px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    height:100%;
    transition:all .3s ease;
}

.sev-icon-circle{
    width:85px;
    height:85px;
    margin:0 auto 20px;
    border:2px solid #4ca813;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.sev-icon-circle i{
    font-size:32px;
    color:#fff;
    transition:.3s;
}

.sev-benefit-box h5{
    color:#fff;
    font-size:16px;
    line-height:1.6;
    margin:0;
    font-weight:500;
}

/* Hover */

.sev-benefit-box:hover{
    transform:translateY(-5px);
    border-color:#4ca813;
}

.sev-benefit-box:hover .sev-icon-circle{
    background:#4ca813;
}

.sev-benefit-box:hover .sev-icon-circle i{
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .sev-partnership-section{
        padding:80px 0;
    }

    .sev-content-wrapper{
        padding-right:0;
        margin-bottom:40px;
    }

    .sev-title{
        font-size:40px;
    }

    .sev-content-wrapper p{
        font-size:18px;
    }
}

/* Mobile */

@media(max-width:767px){

    .sev-partnership-section{
        padding:70px 0;
    }

    .sev-title{
        font-size:30px;
        line-height:1.3;
    }

    .sev-content-wrapper p{
        font-size:17px;
        line-height:1.8;
    }

    .sev-icon-circle{
        width:70px;
        height:70px;
    }

    .sev-icon-circle i{
        font-size:26px;
    }

    .sev-benefit-box{
        padding:20px 10px;
    }

    .sev-benefit-box h5{
        font-size:14px;
    }
}

/*products */
/* ===================================
   SHUBHAM EV PRODUCTS SECTION
=================================== */

.sev-products-section{
    padding:100px 0;
    position:relative;
    overflow:visible;

    background:
    radial-gradient(circle at top right,
    rgba(0,210,106,.08),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(11,44,109,.08),
    transparent 30%),

    #f8fafc;
}

/* ==========================
   TITLE
========================== */

.sev-product-subtitle{
    color:#4ca813;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.sev-product-title{
    color:#0B2C6D;
    font-size:54px;
    font-weight:700;
    margin-top:10px;
}

.sev-product-title span{
    color:#4ca813;
}

/* ==========================
   LINK
========================== */

.sev-product-link{
    text-decoration:none;
    display:block;
    height:100%;
    color:inherit;
}

/* ==========================
   CARD
========================== */

.sev-product-card{

    position:relative;

    height:100%;

    overflow:hidden;

    border-radius:30px;

    background:
    rgba(255,255,255,.72);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.45);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transform-style:preserve-3d;

    transition:
    transform .55s ease,
    box-shadow .55s ease;
}

/* Gradient Border */

.sev-product-card::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:30px;

    padding:1px;

    background:
    linear-gradient(
    135deg,
    rgba(0,210,106,.25),
    rgba(11,44,109,.20),
    rgba(255,255,255,.5));

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    pointer-events:none;
}

/* Glow Layer */

.sev-product-card::after{

    content:'';

    position:absolute;

    inset:0;

    opacity:0;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(0,210,106,.08),
    rgba(11,44,109,.08));

    transition:.5s;
}

.sev-product-card:hover::after{
    opacity:1;
}

/* 3D Hover */

.sev-product-card:hover{

    transform:
    perspective(1200px)
    rotateX(6deg)
    rotateY(-6deg)
    translateY(-15px);

    box-shadow:
    0 35px 70px rgba(0,0,0,.18),
    0 0 40px rgba(0,210,106,.15);
}

/* ==========================
   IMAGE
========================== */

.sev-product-image{
    position:relative;
    overflow:hidden;
}

.sev-product-image img{

    width:100%;
    height:260px;

    object-fit:cover;

    transition:all .8s ease;
}

/* Shine Effect */

.sev-product-image::before{

    content:'';

    position:absolute;

    top:0;
    left:-150%;

    width:70%;
    height:100%;

    z-index:2;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.45),
    transparent);

    transform:skewX(-25deg);
}

.sev-product-card:hover .sev-product-image::before{

    left:180%;
    transition:1.2s;
}

.sev-product-card:hover .sev-product-image img{

    transform:
    scale(1.08)
    translateZ(30px);
}

/* ==========================
   ICON
========================== */

.sev-product-icon{

    position:absolute;

    top:215px;
    left:30px;

    width:90px;
    height:90px;

    z-index:5;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f3f3f3);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);

    transition:.55s;
}

.sev-product-icon i{

    font-size:34px;
    color:#4ca813;

    transition:.55s;
}

.sev-product-card:hover .sev-product-icon{

    background:
    linear-gradient(
    135deg,
    #4ca813,
    #00A859);

    transform:
    translateZ(60px)
    rotate(10deg)
    scale(1.12);

    box-shadow:
    0 20px 40px rgba(0,210,106,.35);
}

.sev-product-card:hover .sev-product-icon i{
    color:#fff;
}

/* ==========================
   CONTENT
========================== */

.sev-product-content{

    position:relative;

    z-index:3;

    padding:65px 30px 30px;

    transition:.5s;
}

.sev-product-card:hover .sev-product-content{

    transform:
    translateZ(25px);
}

.sev-product-content h4{

    color:#0B2C6D;

    font-size:24px;

    font-weight:700;

    line-height:1.4;

    margin-bottom:15px;
}

.sev-product-content p{

    color:#666;

    font-size:15px;

    line-height:1.9;

    margin-bottom:20px;
}

/* ==========================
   ARROW
========================== */

.sev-product-arrow i{

    width:50px;
    height:50px;

    line-height:50px;

    text-align:center;

    border-radius:50%;

    background:#0B2C6D;

    color:#fff;

    transition:.4s;
}

.sev-product-card:hover .sev-product-arrow i{

    background:#4ca813;

    transform:
    translateX(8px);
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .sev-product-title{
        font-size:42px;
    }

    .sev-product-card:hover{
        transform:translateY(-10px);
    }
}

@media(max-width:767px){

    .sev-products-section{
        padding:70px 0;
    }

    .sev-product-title{
        font-size:30px;
    }

    .sev-product-image img{
        height:220px;
    }

    .sev-product-icon{
        width:75px;
        height:75px;
        top:185px;
    }

    .sev-product-icon i{
        font-size:28px;
    }

    .sev-product-content{
        padding:55px 20px 25px;
    }

    .sev-product-content h4{
        font-size:20px;
    }
}

/*vison misson */
.sev-vision-mission{
    padding:100px 0;
    background:#f8fafc;
}

.vision-row{
    margin-bottom:80px;
}

.mission-row{
    margin-top:30px;
}

.sev-content-box{
    padding-right:40px;
}

.sev-tag{
    display:inline-block;
    color:#4ca813;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.sev-content-box h2{
    color:#0B2C6D;
    font-size:46px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
}

.sev-content-box p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.sev-image-box{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.sev-image-box img{
    width:100%;
    display:block;
    border-radius:30px;
}

/* Vision Icons */

.vision-icons{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:35px;
}

.vision-icon-box{
    background:#fff;
    border-radius:20px;
    padding:25px 15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.vision-icon-box i{
    font-size:28px;
    color:#4ca813;
    margin-bottom:12px;
    display:block;
}

.vision-icon-box span{
    font-size:14px;
    font-weight:600;
    color:#0B2C6D;
}

.vision-icon-box:hover{
    transform:translateY(-6px);
}

/* Mission List */

.mission-box{
    padding-left:40px;
}

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

.mission-list li{
    margin-bottom:18px;
    color:#444;
    line-height:1.8;
    font-size:16px;
}

.mission-list i{
    color:#4ca813;
    margin-right:10px;
}

/* Mobile */

@media(max-width:991px){

    .sev-content-box,
    .mission-box{
        padding:0;
        margin-bottom:40px;
                padding-top: 30px;
    }
    }

    .vision-icons{
        grid-template-columns:repeat(2,1fr);
    }

    .sev-content-box h2{
        font-size:36px;
    }

    .mission-row{
        margin-top:60px;
    }
}

@media(max-width:767px){

    .sev-vision-mission{
        padding:70px 0;
    }

    .vision-icons{
        grid-template-columns:1fr 1fr;
    }

    .sev-content-box h2{
        font-size:28px;
    }
}

/*leadership team */
.leadership-section{
    padding:100px 0;
    background:linear-gradient(135deg,#04193d,#072c6d);
    position:relative;
    overflow:hidden;
}

.leadership-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,210,106,.08);
    border-radius:50%;
    top:-200px;
    right:-150px;
    filter:blur(100px);
}

.leadership-section .sub-title{
    color:#4ca813;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.leadership-section h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-top:10px;
}

.leadership-section h2 span{
    color:#4ca813;
}

.leadership-image{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.leadership-image img{
    width:100%;
    border-radius:25px;
    display:block;
}

.leadership-content{
    padding-left:40px;
}

.leadership-content p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:2;
    margin:0;
}

/* Skills */

.leadership-features{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-box{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-10px);
    border-color:#4ca813;
    box-shadow:0 15px 40px rgba(0,210,106,.15);
}

.icon-circle{
    width:80px;
    height:80px;
    border-radius:50%;
    border:2px solid #4ca813;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    transition:.4s;
}

.icon-circle i{
    font-size:30px;
    color:#4ca813;
    transition:.4s;
}

.feature-box:hover .icon-circle{
    background:#4ca813;
}

.feature-box:hover .icon-circle i{
    color:#fff;
}

.feature-box h5{
    color:#fff;
    font-size:18px;
    margin:0;
    line-height:1.5;
}

/* Mobile */

@media(max-width:991px){

    .leadership-content{
        padding-left:0;
        margin-top:35px;
    }

    .leadership-features{
        grid-template-columns:repeat(2,1fr);
    }

    .leadership-section h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .leadership-section{
        padding:70px 0;
    }

    .leadership-features{
        grid-template-columns:1fr;
    }

    .leadership-section h2{
        font-size:30px;
    }

    .leadership-content p{
        font-size:16px;
    }
}

/*tranning */
.training-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.training-section .sub-title{
    color:#4ca813;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.training-section h2{
    color:#0B2C6D;
    font-size:52px;
    font-weight:700;
    margin-top:10px;
}

.training-section h2 span{
    color:#4ca813;
}

.training-content{
    padding-right:40px;
}

.training-content p{
    font-size:18px;
    color:#555;
    line-height:2;
    margin-bottom:35px;
}

/* Training List */

.training-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.training-item{
    display:flex;
    align-items:center;
    gap:15px;

    background:#fff;

    padding:18px 20px;

    border-radius:18px;

    border:1px solid #e8eef5;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.4s;
}

.training-item:hover{
    transform:translateY(-6px);
    border-color:#4ca813;
    box-shadow:0 15px 35px rgba(0,210,106,.12);
}

.training-item i{
    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f3fff8;

    color:#4ca813;

    font-size:20px;

    transition:.4s;
}

.training-item:hover i{
    background:#4ca813;
    color:#fff;
}

.training-item span{
    color:#0B2C6D;
    font-weight:600;
    font-size:15px;
    line-height:1.5;
}

/* Image */

.training-image{
    overflow:hidden;
    border-radius:25px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.training-image img{
    width:100%;
    display:block;
    border-radius:25px;
    transition:.6s;
}

.training-image:hover img{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:991px){

    .training-content{
        padding-right:0;
        margin-bottom:40px;
    }

    .training-section h2{
        font-size:38px;
    }

    .training-list{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){

    .training-section{
        padding:70px 0;
    }

    .training-section h2{
        font-size:30px;
    }

    .training-content p{
        font-size:16px;
    }
}
/*recognition */
.recognition-section{
    padding:100px 0;
    background:#f2f5f8;
    position:relative;
    overflow:hidden;
}

.recognition-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(0,210,106,.05);
    border-radius:50%;
    top:-150px;
    right:-100px;
    filter:blur(80px);
}

.recognition-section .sub-title{
    color:#4ca813;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.recognition-section h2{
    color:#0B2C6D;
    font-size:52px;
    font-weight:700;
    margin-top:10px;
    margin-bottom:20px;
}

.recognition-section h2 span{
    color:#4ca813;
}

.recognition-content{
    padding-right:40px;
}

.recognition-content p{
    font-size:18px;
    line-height:2;
    color:#555;
    margin-bottom:35px;
}

/* List */

.recognition-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.recognition-item{

    display:flex;
    align-items:center;
    gap:15px;

    padding:18px 20px;

    background:rgba(255,255,255,.7);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.8);

    border-radius:18px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.4s;
}

.recognition-item:hover{

    transform:translateY(-6px);

    background:#4ca813;

    border-color:#4ca813;

    box-shadow:
    0 15px 35px rgba(0,210,106,.25);
}

.recognition-item i{

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f3fff8;

    color:#4ca813;

    font-size:20px;

    transition:.4s;
}

.recognition-item:hover i{
    background:#fff;
}

.recognition-item span{

    color:#0B2C6D;

    font-weight:600;

    transition:.4s;
}

.recognition-item:hover span{
    color:#fff;
}

/* Image */

.recognition-image{
    overflow:hidden;
    border-radius:25px;
    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.recognition-image img{
    width:100%;
    display:block;
    border-radius:25px;
    transition:.6s;
}

.recognition-image:hover img{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:991px){

    .recognition-content{
        padding-right:0;
        margin-bottom:40px;
    }

    .recognition-list{
        grid-template-columns:1fr;
    }

    .recognition-section h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .recognition-section{
        padding:70px 0;
    }

    .recognition-section h2{
        font-size:30px;
    }

    .recognition-content p{
        font-size:16px;
    }
}

/*core values */
.core-values-section{
    padding:100px 0;
    background:#f5f8fc;
}

.section-heading{
    margin-bottom:60px;
}

.section-heading span{
    color:#4ca813;
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:50px;
    color:#0B2C6D;
    font-weight:700;
    margin:15px 0;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* GRID */

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.flip-card{
    height:280px;
    perspective:1000px;
}

.flip-card-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform .8s;
    transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
    transform:rotateY(180deg);
}

.flip-card-front,
.flip-card-back{

    position:absolute;
    width:100%;
    height:100%;

    backface-visibility:hidden;

    border-radius:25px;

    overflow:hidden;
}

/* FRONT */

.flip-card-front{

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition:.4s;
}

.flip-card-front i{

    width:90px;
    height:90px;

    background:linear-gradient(
    135deg,
    #4ca813,
    #00b35a
    );

    color:#fff;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:20px;
}

.flip-card-front h4{
    color:#0B2C6D;
    font-weight:700;
}

/* BACK */

.flip-card-back{

    background:linear-gradient(
    135deg,
    #0B2C6D,
    #153f91
    );

    color:#fff;

    transform:rotateY(180deg);

    padding:35px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    border:2px solid #4ca813;

    box-shadow:
    0 20px 50px rgba(0,210,106,.25);
}

.flip-card-back h4{
    color:#4ca813;
    margin-bottom:15px;
    font-weight:700;
}

.flip-card-back p{
    line-height:1.8;
    margin:0;
}

/* 3D Lift */

.flip-card:hover{

    transform:
    translateY(-12px);

    transition:.4s;
}

/* RESPONSIVE */

@media(max-width:1200px){
    .values-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){
    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .values-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:32px;
    }
}

/*commitment */
.sustainability-section{
    padding:100px 0;
    background:linear-gradient(135deg,#041a42,#072d70);
    position:relative;
    overflow:hidden;
}

.sustainability-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,210,106,.08);
    border-radius:50%;
    top:-200px;
    right:-150px;
    filter:blur(100px);
}

.sustainability-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    bottom:-200px;
    left:-150px;
    filter:blur(100px);
}

.section-header{
    margin-bottom:60px;
}

.section-header .sub-title{
    color:#4ca813;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-header h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-top:10px;
}

.section-header h2 span{
    color:#4ca813;
}

/* Content */

.sustainability-content{
    padding-right:40px;
}

.sustainability-content p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:2;
    margin-bottom:35px;
}

/* List */

.commitment-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.commitment-item{

    display:flex;
    align-items:center;
    gap:18px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    padding:18px 22px;

    border-radius:18px;

    transition:.4s;
}

.commitment-item:hover{

    transform:translateX(10px);

    border-color:#4ca813;

    background:rgba(0,210,106,.10);

    box-shadow:
    0 10px 25px rgba(0,210,106,.15);
}

.commitment-item i{

    width:55px;
    height:55px;

    border-radius:50%;

    background:#4ca813;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    flex-shrink:0;
}

.commitment-item span{
    color:#fff;
    font-size:16px;
    font-weight:600;
}

/* Image */

.sustainability-image{
    overflow:hidden;
    border-radius:25px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.25);
}

.sustainability-image img{
    width:100%;
    display:block;
    border-radius:25px;
    transition:.6s;
}

.sustainability-image:hover img{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:991px){

    .sustainability-content{
        padding-right:0;
        margin-bottom:40px;
    }

    .section-header h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .sustainability-section{
        padding:70px 0;
    }

    .section-header h2{
        font-size:30px;
    }

    .sustainability-content p{
        font-size:16px;
    }

    .commitment-item{
        padding:15px;
    }

    .commitment-item span{
        font-size:14px;
    }
}
/* product details */
/* =========================
PRODUCT DETAILS SECTION
========================= */

.product-details-section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.product-details-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,210,106,.05);
    border-radius:50%;
    top:-250px;
    right:-200px;
    filter:blur(100px);
}

.product-details-section::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(11,44,109,.05);
    border-radius:50%;
    bottom:-250px;
    left:-200px;
    filter:blur(100px);
}

.product-gallery{
    position:relative;
}

/* MAIN IMAGE */

.main-image{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    padding:20px;
    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.main-image img{
    width:100%;
    height:500px;
    object-fit:contain;
    display:block;
    transition:.5s;
}

.main-image:hover img{
    transform:scale(1.03);
}

/* THUMBNAILS */

.thumb-gallery{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:20px;
}

.thumb-gallery img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    background:#fff;
    padding:5px;
    border:2px solid transparent;
    transition:.4s;
    box-shadow:
    0 5px 15px rgba(0,0,0,.08);
}

.thumb-gallery img:hover{
    border-color:#4ca813;
    transform:translateY(-5px);
}

/* CONTENT */

.product-content{
    padding-left:40px;
}

.product-category{
    display:inline-block;
    background:#e8fff4;
    color:#4ca813;
    font-size:14px;
    font-weight:600;
    padding:8px 18px;
    border-radius:30px;
}

.product-content h1{
    font-size:52px;
    font-weight:700;
    color:#0B2C6D;
    line-height:1.2;
    margin:20px 0;
}

.product-tagline{
    font-size:24px;
    color:#4ca813;
    font-weight:600;
    margin-bottom:15px;
}

.product-short-desc{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:25px;
}

/* FEATURES */

.product-features{
    list-style:none;
    padding:0;
    margin:0;
}

.product-features li{
    margin-bottom:14px;
    color:#333;
    font-size:16px;
    display:flex;
    align-items:center;
}

.product-features li i{
    color:#4ca813;
    margin-right:10px;
    font-size:18px;
}

/* BUTTONS */

.product-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-enquire,
.btn-brochure{

    min-width:190px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    text-decoration:none;

    transition:.4s;
}

.btn-enquire{
    background:#4ca813;
    color:#fff;
}

.btn-brochure{
    background:#0B2C6D;
    color:#fff;
}

.btn-enquire:hover{
    background:#00b95d;
    color:#fff;
    transform:translateY(-4px);
}

.btn-brochure:hover{
    background:#08204f;
    color:#fff;
    transform:translateY(-4px);
}

/* =========================
DESCRIPTION SECTION
========================= */

.product-description{
    padding:90px 0;
    background:#fff;
}

.product-description h2{
    font-size:42px;
    color:#0B2C6D;
    margin-bottom:25px;
    font-weight:700;
}

.product-description p{
    color:#666;
    line-height:2;
    font-size:16px;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .product-content{
        padding-left:0;
        margin-top:40px;
        text-align:center;
    }

    .product-content h1{
        font-size:38px;
    }

    .product-tagline{
        font-size:20px;
    }

    .product-features{
        max-width:450px;
        margin:auto;
        text-align:left;
    }

    .product-buttons{
        justify-content:center;
    }

    .main-image img{
        height:400px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

    .product-details-section{
        padding:70px 0;
    }

    .main-image{
        padding:10px;
    }

    .main-image img{
        height:300px;
        object-fit:contain;
    }

    .thumb-gallery{
        gap:10px;
    }

    .thumb-gallery img{
        width:65px;
        height:65px;
    }

    .product-content{
        text-align:center;
    }

    .product-content h1{
        font-size:28px;
        margin-bottom:15px;
    }

    .product-tagline{
        font-size:18px;
    }

    .product-short-desc{
        font-size:15px;
        line-height:1.8;
    }

    .product-features{
        text-align:left;
    }

    .product-features li{
        font-size:14px;
    }

    .product-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-enquire,
    .btn-brochure{
        width:100%;
        max-width:280px;
    }

    .product-description{
        padding:70px 0;
    }

    .product-description h2{
        font-size:30px;
        text-align:center;
    }

    .product-description p{
        font-size:15px;
        text-align:center;
    }
}
/* legal */
/* ==========================
LEGAL GALLERY SECTION
========================== */
.legal-section{
    padding:100px 0;
    background:#f7f9fc;
}

.legal-header h2{
    font-size:42px;
    color:#0B2C6D;
    font-weight:700;
}

.legal-header p{
    color:#666;
    margin-top:10px;
}

/* GALLERY */

.legal-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.legal-item{
    border-radius:20px;
    overflow:hidden;
    border:2px solid #e6e6e6;
    cursor:pointer;
    background:#fff;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.legal-item:hover{
    transform:translateY(-8px);
    border-color:#4ca813;
}

.legal-item img{
    width:100%;
    height:280px;
    object-fit:contain;   /* image cut nahi hogi */
    display:block;
    padding:10px;
}

/* MODAL FIX */

.img-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background:rgba(0,0,0,.85);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:9999;
    padding:20px;
}

.img-modal img{
    max-width:90%;
    max-height:90vh;
    object-fit:contain;
    border-radius:15px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

/* CLOSE BUTTON */

.close-btn{
    position:absolute;
    top:20px;
    right:25px;

    font-size:40px;
    color:#fff;
    cursor:pointer;
    font-weight:300;

    transition:.3s;
}

.close-btn:hover{
    color:#4ca813;
    transform:scale(1.2);
}

/* RESPONSIVE */

@media(max-width:991px){
    .legal-gallery{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .legal-gallery{
        grid-template-columns:1fr;
    }

    .legal-item img{
        height:220px;
    }

    .legal-header h2{
        font-size:30px;
    }
}
/*gallery */
.gallery-title {
  text-align: center;
  font-size: 36px;
  color: #0b1f44; /* navy */
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.gallery-desc {
  text-align: center;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  perspective: 1000px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: all 0.4s ease;
  transform: scale(1);
}

/* Hover 3D feel */
.gallery-item:hover img {
  transform: scale(1.08) rotateX(3deg) rotateY(-3deg);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}

.lightbox img {
  max-width: 85%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: 0.3s;
}

.lightbox.active {
  display: flex;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.prev { left: 30px; }
.next { right: 30px; }

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

/*login */
/* ==========================
   LOGIN SECTION
========================== */

.ev-login-section{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
    position:relative;
}

/* ==========================
   LOGIN CARD
========================== */

.ev-login-card{
    width:100%;
    max-width:650px;
    padding:55px;
    border-radius:30px;
    position:relative;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    text-align:center;
    overflow:hidden;
    transition:all .4s ease;
}

/* Animated Border Line */
.ev-login-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:3px;
    background:linear-gradient(
        90deg,
        transparent,
        #ff7a00,
        #00c853,
        #0d2f67,
        transparent
    );
    animation:borderRun 3s linear infinite;
}

.ev-login-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0,0,0,.18),
        0 0 30px rgba(255,122,0,.20);
}

@keyframes borderRun{
    0%{
        left:-100%;
    }
    100%{
        left:150%;
    }
}

/* ==========================
   HEADING
========================== */

.ev-login-card h2{
    font-size:36px;
    color:#ffffff;
    font-weight:700;
    margin-bottom:40px;
}

/* ==========================
   INPUTS
========================== */

.ev-input-group{
    margin-bottom:22px;
}

.ev-input-group input{
    width:100%;
    height:60px;
    padding:0 22px;
    border-radius:15px;
    border:2px solid #e7e7e7;
    outline:none;
    background:#fff;
    font-size:16px;
    transition:.3s;
}

.ev-input-group input:focus{
    border-color:#ff7a00;
    box-shadow:0 0 15px rgba(255,122,0,.25);
}

/* ==========================
   BUTTONS
========================== */

.ev-btn-group{
    display:flex;
    gap:18px;
    margin-top:30px;
}

.ev-login-btn,
.ev-register-btn{
    flex:1;
    height:55px;
    border:none;
    border-radius:15px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.3s;
    padding: 11px 40px;
}

/* Login Button */
.ev-login-btn{
    background:linear-gradient(135deg,#ff7a00,#ff9800);
    color:#fff;
    box-shadow:0 10px 25px rgba(255,122,0,.30);
}

.ev-login-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(255,122,0,.40);
}

/* Register Button */
.ev-register-btn{
    background:linear-gradient(135deg,#0d2f67,#1b4fa3);
    color:#fff;
    box-shadow:0 10px 25px rgba(13,47,103,.30);
}

.ev-register-btn:hover{
     transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(255,122,0,.40);
}

/* ==========================
   FORGOT PASSWORD
========================== */

.ev-forgot-password{
    display:inline-block;
    margin-top:25px;
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    font-size:14px;
}

.ev-forgot-password:hover{
    color:#ff7a00;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .ev-login-card{
        padding:35px 25px;
    }

    .ev-btn-group{
        flex-direction:column;
    }

    .ev-login-card h2{
        font-size:28px;
    }
}

/*register */
/* Register Card */
.register-card{
    max-width:900px;
}

/* Subtitle */
.register-subtitle{
    color:#6b7280;
    margin-top:-20px;
    margin-bottom:35px;
    font-size:15px;
}

/* 2 Column Grid */
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

/* Labels */
.ev-input-group label{
    display:block;
    text-align:left;
    font-size:14px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:8px;
}

/* Inputs */
.ev-input-group input,
.ev-input-group select{
    width:100%;
    height:58px;
    padding:0 18px;
    border:2px solid #e5e7eb;
    border-radius:15px;
    outline:none;
    background:#fff;
    font-size:15px;
    transition:.3s;
}

.ev-input-group input:focus,
.ev-input-group select:focus{
    border-color:#ff7a00;
    box-shadow:0 0 15px rgba(255,122,0,.20);
}

/* Buttons */
.register-btn-group{
    margin-top:35px;
}

/* Login Text */
.login-text{
    margin-top:25px;
    color:#6b7280;
    font-size:15px;
}

.login-text a{
    color:#ff7a00;
    text-decoration:none;
    font-weight:600;
}

.login-text a:hover{
    text-decoration:underline;
}

/* Mobile */
@media(max-width:768px){

    .register-card{
        max-width:100%;
    }

    .form-grid{
        grid-template-columns:1fr;
    }
}