/**
  * Name: Wastii
  * Version: 1.0
  * Author: ThemetechMount
  * Author URI: https://www.themetechmount.com
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&amp;family=Poppins:wght@100&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
/**

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

/** 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;
}

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: var(--base-skin);
    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: inherit;
    padding: 12px 15px 12px;
    border-radius: 0;
    font-weight: 400;
    background-color: #fff;
    text-transform: inherit;
    border: 1px solid rgba(0, 43, 92, 0.08);
    font-size: 14px;
    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-skin);
    -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: "Nunito", Arial, Helvetica, sans-serif;
    --base-bodyfont-Size: 14px;
    --base-bodyfont-color: #818181;
    --base-skin: var(--primary);
    --base-dark: #242424;
    --base-darkgrey: #000;
    --base-grey: #f5f5f5;
    --base-white: #ffffff;
    --base-headingfont: "Nunito", Arial, Helvetica, sans-serif;
    --base-headingfont-color: #242424;
}

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

.bg-base-darkgrey {
    background-color: var(--base-darkgrey);
}

/** 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>.ttm-bg-layer {
    background-color: var(--base-skin);
}

.bg-base-dark>.ttm-bg-layer {
    background-color: var(--base-dark);
    opacity: .95;
}

.bg-base-grey>.ttm-bg-layer {
    background-color: var(--base-grey);
}

.bg-base-white>.ttm-bg-layer {
    background-color: var(--base-white);
}

.bg-base-darkgrey>.ttm-bg-layer {
    background-color: var(--base-darkgrey);
    opacity: .5;
}

.bg-base-skin>.ttm-bg-layer>.ttm-col-wrapper-bg-layer-inner {
    background-color: var(--base-skin);
}

.bg-base-dark>.ttm-bg-layer>.ttm-col-wrapper-bg-layer-inner {
    background-color: var(--base-dark);
}

.bg-base-grey>.ttm-bg-layer>.ttm-col-wrapper-bg-layer-inner {
    background-color: var(--base-grey);
}

.bg-base-white>.ttm-bg-layer>.ttm-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 .section-title h3 {
    color: var(--base-skin);
}

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

.ttm-icon.end_button a {
    color: #fff;
}

.ttm-icon.end_button {
    font-size: 20px;
    padding: 17px;
    background-color: #b10f3c;
    color: #fff;
    margin-left: 50%;
    margin-top: 10px;
    transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -webkit-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
}

.ttm-icon.end_button:hover {
    background-color: var(--base-white);
    color: var(--base-skin);
}

.ttm-icon.end_button:hover i {
    color: var(--base-skin);
}

.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: var(--base-headingfont);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.site-branding img.stickylogo {
    opacity: 0;
    position: absolute;
    left: 0;
    transition: none;
}

.site-branding img {
    z-index: 1;
    max-height: 47px;
    position: relative;
    transition: none;
}

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

h1 {
    font-size: 60px;
    line-height: 72px;
}

h2 {
    font-size: 40px;
    line-height: 54px;
}

h3 {
    font-size: 22px;
    line-height: 32px;
}

h4 {
    font-size: 30px;
    line-height: 40px;
}

h5 {
    font-size: 20px;
    line-height: 26px;
}

h6 {
    font-size: 18px;
    line-height: 20px;
}

.container-fluid {
    padding: 0 15px;
}

.container {
    max-width: 1200px;
    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-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-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-27 {
    font-size: 27px !important;
    line-height: 37px;
}

.fs-28 {
    font-size: 28px !important;
    line-height: 38px;
}

.fs-30 {
    font-size: 30px !important;
    line-height: 40px !important;
}

.fs-44 {
    font-size: 44px !important;
    line-height: 54px;
}

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

.opacity-75 {
    opacity: .75 !important;
}

.opacity-97 {
    opacity: .97 !important;
}

.opacity-8 {
    opacity: .8 !important;
}

.opacity-3 {
    opacity: .03 !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-rad_7 {
    border-radius: 7px;
}

.border-rad_8 {
    border-radius: 8px;
}

.border-rad_9 {
    border-radius: 9px;
}

.border-rad_10 {
    border-radius: 10px;
}

.border-tl-rad_5 {
    border-top-left-radius: 5px;
}

.border-tr-rad_5 {
    border-top-right-radius: 5px;
}

.border-br-rad_5 {
    border-bottom-right-radius: 5px;
}

.border-bl-rad_5 {
    border-bottom-left-radius: 5px;
}

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

.underline {
    position: relative;
}

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

.w-98 {
    width: 98%;
}

.border_1 {
    border: 2px dashed #e7e7e7;
}

.border-rounded {
    border-radius: 50%;
}

.overlay-opacity-box {
    background: rgba(255, 255, 255, 0.80);
    padding: 70px 0;
    opacity: 1;
}

/* ===============================================
    Spacing
------------------------*/
/** Padding **/

.spacing-1 {
    padding: 63px 15px 80px 210px;
    margin-left: -140px;
}

.spacing-2 {
    padding: 40px 0 105px;
}

.spacing-3 {
    padding: 70px 150px 10px 48px;
}

.spacing-4 {
    padding: 50px 40px 70px;
    margin-top: 235px;
}

.spacing-5 {
    padding: 350px 0px 410px;
}

.spacing-6 {
    padding: 70px 0;
}

.spacing-7 {
    padding: 390px 0;
    margin-top: -300px;
    z-index: -1;
}

.spacing-8 {
    padding: 80px 0 180px;
}

.spacing-9 {
    padding: 80px 20px 70px 0px;
}

.spacing-10 {
    padding: 205px 0 90px;
    margin-top: -130px;
}

.spacing-11 {
    padding: 50px 50px 40px 60px;
}

.spacing-12 {
    padding: 80px 30px 0 30px !important;
}

.spacing-13 {
    padding: 52px 40px 80px 40px !important;
    margin: 0 0 0 50px !important;
}

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

.p-140 {
    padding: 140px ! important;
}

.p-150 {
    padding: 150px ! 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-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-165 {
    padding-top: 165px ! 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;
}

.pt-390 {
    padding-top: 390px ! 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-36 {
    padding-bottom: 36px ! 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-105 {
    padding-bottom: 105px ! 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-165 {
    padding-bottom: 165px ! 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-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-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_150 {
    margin-top: -150px ! important;
}

.mt_160 {
    margin-top: -160px ! important;
}

.mt_170 {
    margin-top: -170px ! important;
}

.mt_180 {
    margin-top: -180px ! 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_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_370 {
    margin-top: -370px ! important;
}

.mt_380 {
    margin-top: -380px ! important;
}

.mt_490 {
    margin-top: -490px ! important;
}

.mt_530 {
    margin-top: -530px ! important;
}

.mt_659 {
    margin-top: -659px ! 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_105 {
    margin-bottom: -105px ! important;
}

.mb_120 {
    margin-bottom: -120px ! important;
}

.mb_140 {
    margin-bottom: -140px ! important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-5 {
    margin-left: 5px ! 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-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-370 {
    margin-left: 370px ! important;
}


.ml_5 {
    margin-left: -5px ! 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_27 {
    margin-left: -27px ! 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_55 {
    margin-left: -55px ! 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_173 {
    margin-left: -173px ! important;
}

.ml_180 {
    margin-left: -180px ! important;
}

.ml_200 {
    margin-left: -200px ! important;
}

.ml_210 {
    margin-left: -210px ! important;
}

.ml_215 {
    margin-left: -215px ! 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;
}

.ml_385 {
    margin-left: -385px ! important;
}

.ml_390 {
    margin-left: -390px ! important;
}

.ml_400 {
    margin-left: -400px ! important;
}

.ml_428 {
    margin-left: -428px ! 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-400 {
    margin-right: 400px ! important;
}

.mr_3 {
    margin-right: -3px ! 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;
}

.mr_350 {
    margin-right: -350px ! important;
}

.mr_370 {
    margin-right: -370px ! important;
}

.mr_400 {
    margin-right: -400px ! important;
}

/* ===============================================
    Pre-loader
------------------------*/
#preloaders {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -30px 0 0 -30px;
}

 #status {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: #fff;
    background-image: url(../images/humus_loader.gif);
    background-repeat: no-repeat;
    background-position: center;
} 


/*  ===============================================
    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;
}

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

.ttm-bgcolor-darkgrey .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current)>div:after,
.ttm-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,
.slick_slider.slick-dots-style3 .slick-dots {
    padding: 0;
    margin: 0;
    padding-top: 30px;
    top: 100%;
    line-height: 0;
}

.slick_slider.slick-dots-style1 .slick-dots li,
.slick_slider.slick-dots-style2 .slick-dots li,
.slick_slider.slick-dots-style3 .slick-dots li {
    display: inline-block;
    list-style: none;
    line-height: 0;
}

.ttm_single_image_text.style1 {
    position: absolute;
    border: 3px solid var(--base-skin);
    bottom: -15px;
}

.ttm_single_image_text.style1:before {
    content: unset;
}

.ttm_single_image_text.style1 p {
    background-color: var(--base-white);
    border: 0;
    padding: 25px 20px 15px 40px;
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: var(--base-bodyfont-color);
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 9%);
}

.ttm_single_image_text.style1 p:after {
    content: "\f10d";
    font-family: 'FontAwesome';
    font-size: 38px;
    color: var(--base-dark);
    position: absolute;
    top: -25px;
    left: 23px;
    right: 0;
    height: 50px;
    width: 70px;
    line-height: 30px;
    text-align: center;
    background-color: var(--base-white);
    padding-top: 11px;
}

.ttm_single_content.bg-base-grey h3 {
    display: inline-block;
}

/*style1*/

.slick_slider.slick-dots-style1.slick-dotted {
    border: 0;
    outline: 0;
}

.slick_slider.slick-dots-style1.slick-dotted li button {
    display: inline-block;
    width: 10px;
    height: 4px;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    margin: 13px 5px 0 0;
    position: relative;
    background-color: var(--base-dark);
    line-height: 0;
    padding: 0;
}

.slick_slider.slick-dots-style1.slick-dotted li.slick-active button {
    width: 20px;
    height: 4px;
    border-radius: 0;
    background-color: var(--base-skin);
}

.slick_slider.slick-dots-style1.slick-dotted .slick-dots {
    position: absolute;
    top: auto;
    left: auto;
    width: auto;
    bottom: 40px;
    right: auto;
    margin-left: 0;
    right: 0;
}

.slick_slider.slick-dots-style1 .ttm-horizontal_sep {
    border-top: 1px solid #d9d9d9;
}

/*style2*/
.slick-slider.slick-dots-style2 .slick-dots {
    height: 100%;
    padding: 0;
    margin: 0;
    padding-top: 40px;
    top: 7px;
    transform: rotate(270deg);
    text-align: center;
    position: absolute;
    line-height: 0;
    width: 100%;
    right: -500px;
    left: auto;
}

.slick-slider.slick-dots-style2 .slick-dots li {
    width: calc(20% - 0px);
}

.slick-slider.slick-dots-style2 .slick-dots li.slick-active button {
    margin: 0;
    background-color: var(--base-skin);
}

.slick-slider.slick-dots-style2 .slick-dots li button {
    height: 5px;
    width: 100%;
    border: 0;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 0;
    background-color: var(--base-skin);
    background-color: var(--base-white);
    border-radius: 0;
}

.vertical-tab-slider .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.slick-slider.slick-dots-style2 .slick-dots li {
    display: inline-block;
    list-style: none;
    line-height: 0;
}



.slick_slider.slick-dotted .slick-dots {
    display: inline-block;
    position: absolute;
    left: 55px;
    bottom: 50px;
    margin: 0;
    z-index: 22;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick_slider.slick-dotted .slick-dots li {
    display: inline-block;
    list-style: none;
    line-height: 0
}

.slick_slider.slick-dotted .slick-dots li button:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 3px;
    width: 8px;
    height: 8px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
    content: unset
}

.slick-dots li button {
    display: inline-block;
    width: 15px;
    height: 8px;
    border-radius: 0;
    cursor: pointer;
    margin: 0 5px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #032b47;
    font-size: 0;
    border-radius: 50px;
    padding: 0
}

.slick-dots li.slick-active button {
    width: 30px;
    background: 0 0;
    text-align: center;
    background-color: #fff;
    height: 8px;
}

.slick_slider.slick-dots-style2 .slick-dots li button,
.slick_slider.slick-dots-style3 .slick-dots li button {
    height: 5px;
    width: 9px;
    border: 0;
    font-size: 0;
    padding: 0;
    position: relative;
    margin: 0 5px 0 0;
    background-color: #e2e9f1;
}

.slick_slider.slick-dots-style2 .slick-dots li.slick-active button,
.slick_slider.slick-dots-style3 .slick-dots li.slick-active button {
    width: 25px;
}

.slick_slider.slick-dots-style3 .slick-dots {
    position: absolute;
}

.slick_slider.slick-dots-style3 .slick-dots li button {
    height: 10px;
    width: 10px;
    border-radius: 50px;
}

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


/* arrow-style1 */

.slick_slider.slick-arrows-style1 .slick-arrow {
    top: 60.3%;
    width: 60px;
    border-radius: 0;
    height: 60px;
    background-color: var(--base-white);
}

.slick_slider.slick-arrows-style1 .slick-next:before {
    content: "\f178";
}

.slick_slider.slick-arrows-style1 .slick-prev:before {
    content: "\f177";
}

.slick_slider.slick-arrows-style1 .slick-prev {
    left: auto;
    right: 15px;
    color: var(--base-dark);
}

.slick_slider.slick-arrows-style1 .slick-next {
    right: -45px;
    left: auto;
    border-radius: 0;
    color: var(--base-skin);
    border-color: var(--base-grey);
    background-color: var(--base-grey);
}

.slick_slider.slick-arrows-style1 .slick-prev:before,
.slick_slider.slick-arrows-style1 .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 16px;
    line-height: 1;
    opacity: 1;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick_slider.slick-arrows-style1 .slick-prev:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}

.slick_slider.slick-arrows-style1 .slick-next:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}

/* arrow-style2 */

.slick_slider.slick-arrows-style2 .slick-arrow {
    top: auto;
    bottom: 0;
    width: 50px;
    border-radius: 0;
    height: 50px;
    background-color: var(--base-dark);
}

.slick_slider.slick-arrows-style2 .slick-next:before {
    content: "\f178";
}

.slick_slider.slick-arrows-style2 .slick-prev:before {
    content: "\f177";
}

.slick_slider.slick-arrows-style2 .slick-prev {
    left: 45%;
    color: var(--base-white);
    bottom: -120px;
}

.slick_slider.slick-arrows-style2 .slick-next {
    right: 45%;
    left: auto;
    bottom: -120px;
    border-radius: 0;
    color: var(--base-white);
    border-color: var(--base-skin);
    background-color: var(--base-skin);
}

.slick_slider.slick-arrows-style2 .slick-prev:before,
.slick_slider.slick-arrows-style2 .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 16px;
    line-height: 1;
    opacity: 1;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick_slider.slick-arrows-style2 .slick-prev:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}

.slick_slider.slick-arrows-style2 .slick-next:hover {
    background-color: var(--base-dark);
    color: var(--base-white);
}



/*  ===============================================
    TopBar
------------------------*/
.top_bar {
    width: 100%;
    z-index: 3;
    height: 55px;
    line-height: 55px;
    position: relative;
}

.top_bar .social-icons li {
    min-width: auto;
    margin-left: 0;
}

.top_bar .social-icons li:last-child {
    margin-right: 0px;
}

.top_bar .social-icons li a {
    font-size: 16px;
}

.ttm-header-style-01 .top_bar .social-icons li a:hover {
    color: var(--base-skin);
}

.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 .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: 13px;
    height: 60px;
    line-height: 60px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    display: inline-block;
}

/*header-style-01*/
.ttm-header-style-01 .top_bar_contact_item {
    color: rgba(255, 255, 255, 1);
}

.ttm-header-style-01 .row .col-lg-12 .top_bar_contact_item:last-child {
    padding-right: 0;
}

.row .col-lg-12 .top_bar_contact_item:first-child {
    padding-left: 0;
}

.ttm-header-style-01 .top_bar_contact_item:not(:first-child):before {
    content: "";
    height: 22px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    display: block;
    position: absolute;
    left: 0;
    top: 20px;
}

.ttm-header-style-01 .top_bar_contact_item:last-child:before {
    content: unset;
}

.bg-base-dark.text-base-white,
.bg-base-skin.text-base-white {
    color: rgba(255, 255, 255, .950);
}


/*header-style-02*/
.ttm-header-style-02 .top_bar_contact_item {
    height: 50px;
    line-height: 50px;
    color: rgba(255, 255, 255, 0.70);
}

.ttm-header-style-02 .top_bar_contact_item.top_bar_btn {
    padding-right: 20px;
}

.ttm-header-style-02 .top_bar_contact_item:not(:first-child):before {
    content: "";
    height: 50px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.ttm-header-style-02 .top_bar_contact_item:nth-child(3):before {
    content: unset;
}


/*header-style-03*/
.ttm-header-style-03 .top_bar_contact_item {
    color: rgb(255 255 255/70%);
    font-size: 12px;
    height: 50px;
    padding-right: 25px;
    line-height: 50px;
}

.ttm-header-style-03 .top_bar_contact_item .top_bar_icon a {
    color: rgb(255 255 255/70%) !important;
}

.ttm-header-style-03 .top_bar_contact_item .top_bar_icon a:hover {
    color: var(--base-dark);
}

.ttm-header-style-03 .top_bar .ttm-bg .layer-content a {
    font-family: var(--base-headingfont);
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

.ttm-header-style-03 .row .col-lg-12 .top_bar_contact_item:last-child {
    padding-right: 0;
}

.row .col-lg-12 .top_bar_contact_item:first-child {
    padding-left: 0;
}

.ttm-header-style-03 .top_bar_contact_item:first-child:after {
    content: "";
    height: 22px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    display: block;
    position: absolute;
    right: 0;
    top: 15px;
}

.ttm-header-style-03 .top_bar_contact_item:last-child:before {
    content: unset;
}

.bg-base-dark.text-base-white,
.bg-base-skin.text-base-white {
    color: rgba(255, 255, 255, .950);
}

.ttm-header-style-03 .header_extra>div {
    position: relative;
}

.ttm-header-style-03 .header_search {
    margin-right: 15px;
}

.ttm-header-style-03 .header_extra .ttm-btn i:before {
    color: #21a12e;
}

.ttm-header-style-03 .header_extra .ttm-btn:hover i:before {
    color: #fff;
}

.ttm-header-style-03 .header_btn .ttm-btn {
    padding: 15px 48px 15px 29px;
    font-size: 15px;
    font-family: var(--base-headingfont);
    text-decoration: none;
}

.ttm-header-style-03 .site-header-menu .site-branding {
    padding-right: 150px;
}

.ttm-header-style-03 .site-header-menu .ttm-stickable-header {
    padding-left: 60px;
    padding-right: 30px;
}

.ttm-header-style-03 .header_cart:before {
    content: '';
    position: absolute;
    height: 26px;
    width: 1px;
    top: 0;
    left: -25px;
    background-color: rgba(255, 255, 255, 0.1);
}

.ttm-header-style-03 .header_search:before {
    display: block;
    content: "";
    position: absolute;
    height: 19px;
    width: 1px;
    right: 0px;
    top: 5px;
    left: 65px;
    background-color: rgb(255 255 255/20%);
}

.ttm-header-style-03 .ttm-stickable-header.fixed-header .header_extra {
    color: var(--base-dark);
}

.ttm-header-style-03 .ttm-stickable-header.fixed-header .header_extra .header_search i {
    color: var(--base-dark);
}

.ttm-header-style-03 .ttm-stickable-header.fixed-header .header_search .close-search i {
    color: var(--base-white);
}

.ttm-header-style-03 .ttm-stickable-header.fixed-header .top_bar_contact_item ul li a {
    color: var(--base-dark);
}

.ttm-header-style-03 .ttm-stickable-header.fixed-header .widget_info .widget_content h3 {
    color: var(--base-dark);
}

.ttm-header-style-03 .ttm-stickable-header.fixed-header .widget_info .widget_content p {
    color: var(--base-dark);
}

.ttm-header-style-03 .ttm-stickable-header.fixed-header .header_search:before {
    background-color: rgb(0 0 0/20%);
}

.ttm-header-style-03 #site-header-menu .ttm-stickable-header.fixed-header .site-navigation .widget_info {
    border-left: 1px solid rgb(0 0 0/20%);
    top: 0px;
}


/*  ===============================================
    Header
------------------------*/
/** SiteBrand(logo) **/
.site-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ttm-header-style-01 .site-branding {
    padding: 18px 0 18px;
}

/**  side-menu **/
.side-menu-container {
    position: absolute;
    right: -30px;
    top: 25px;
    left: auto;
}

.side-menu {
    position: relative;
}

.side-menu a {
    display: block;
    text-align: center;
    font-size: 30px;
    color: #fff;
}

.side-overlay .side h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
}

.side-overlay .side {
    display: inline-block;
    position: fixed;
    height: 100%;
    top: 0;
    right: 0px;
    width: 400px;
    padding: 50px 40px 40px;
    z-index: 5;
    box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
    background-color: var(--base-white);
    -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-position: 0% 0%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.side-menu-footer-text strong {
    color: var(--base-dark);
}

.side-menu-footer-text {
    float: left;
    padding-top: 20px;
    color: var(--base-dark);
}

.side-overlay.on .widget ul.ttm-recent-post-list>li .post-date,
.side-overlay.on .widget ul.ttm-recent-post-list>li .post-date i {
    color: #818181;
    padding-right: 6px;
}

.side-overlay.on .widget ul.ttm-recent-post-list>li>.post-detail a {
    color: var(--base-dark);
}

.side-overlay.on .widget-recent-post ul.ttm-recent-post-list>li {
    padding: 0px 0 !important;
    border-top: unset;
}

.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 .ttm-detailss ul {
    padding-left: 0;
    padding-top: 15px;
}

.side .ttm-detailss ul>li {
    padding-bottom: 3px;
    list-style: none;
}

.side .ttm-detailss li span:first-child {
    color: rgba(255, 255, 255, .95);
}

.side .ttm-detailss li:first-child span:last-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--base-skin);
}

.side .ttm-detailss ul>li a,
.side p {
    color: var(--base-bodyfont-color);
}

.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;
    color: var(--base-dark);
}

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

.header_extra .widget_info .widget_content p {
    color: var(--base-white);
}

.header_extra .ttm-header-social-link {
    font-size: 15px;
}

.header_extra .top_bar_contact_item.top_bar_social ul li {
    font-size: 15px;
}

.ttm-header-style-01 .header_extra>div {
    position: relative;
}

.ttm-header-style-01 .header_extra .ttm-btn i:before {
    color: #21a12e;
}

.ttm-header-style-01 .header_extra .ttm-btn:hover i:before {
    color: #fff;
}

.ttm-header-style-01 .header_btn .ttm-btn {
    padding: 15px 48px 15px 29px;
    font-size: 15px;
    font-family: var(--base-headingfont);
    text-decoration: none;
}

.ttm-header-style-01 .ttm-stickable-header.fixed-header .header_btn .ttm-btn,
.ttm-header-style-01 .ttm-stickable-header.fixed-header .side-menu a,
.ttm-header-style-01 .ttm-stickable-header.fixed-header .header_cart .button-cart {
    color: var(--base-dark);
}

.ttm-header-style-01 .ttm-stickable-header.fixed-header .header_cart:before {
    background-color: rgba(36, 36, 36, .15);
}

.ttm-header-style-01 .site-header-menu .ttm-stickable-header {
    padding-left: 150px;
    padding-right: 190px;
}

.ttm-header-style-01 .header_cart:before {
    content: '';
    position: absolute;
    height: 26px;
    width: 1px;
    top: 0;
    left: -25px;
    background-color: rgba(255, 255, 255, 0.1);
}

i.icon-plus-1:before {
    font-weight: 600;
}

.header_search {
    position: relative;
    padding-left: 30px;
    margin-right: 30px;
}

.header_cart .button-cart {
    display: block;
    position: relative;
    text-align: center;
    font-size: 16px;
    width: 25px;
    text-align: left;
    left: -15px;
    z-index: 1;
    color: var(--base-white);
}

.header_cart .cart_count {
    position: absolute;
    bottom: 20px;
    left: 13px;
    width: 17px;
    height: 17px;
    text-align: center;
    line-height: 18px;
    font-size: 10px;
    display: block;
    color: var(--base-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--base-skin);
}

.ttm-header-style-02 .header_search {
    margin-left: 10px;
}

.ttm-header-style-02 .header_search .search_btn {
    color: var(--base-white);
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    background-color: transparent;
    display: flex;
}

.header_search #searchbox {
    position: relative;
}

.header_extra .header_search {
    margin-left: 20px;
    position: relative;
}

.header_search .search_btn {
    position: relative;
    height: 32px;
    width: 32px;
    line-height: 31px;
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: rgba(12, 45, 98, 1);
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.header_search .search_btn i {
    font-weight: 700;
    position: relative;
}

.header_search_content button.close-search {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0px;
    box-shadow: unset;
    font-size: 15px;
    width: 15%;
    border-radius: 0;
    height: 50px;
    text-align: center;
    display: block;
    line-height: 37px;
    color: var(--base-white);
    float: left;
    border-top-left-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
    background-color: var(--base-skin);
}

.header_search .header_search_content {
    position: absolute;
    right: 50px;
    width: 400px;
    background: #ffffff;
    border-right: 3px solid var(--base-skin);
    opacity: 0;
    top: -25px;
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    transition: all ease .3s;
    z-index: 0;
    border-radius: 0px;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 9%);
}

.header_search .header_search_content:before {
    position: absolute;
    right: -12px;
    top: 25px;
    width: 47px;
    height: 47px;
    text-align: center;
    width: 0;
    height: 0;
    border-left: 10px solid var(--base-skin);
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    content: " ";
}

.header_search .header_search_content.on {
    opacity: 1;
    z-index: 2;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.header_search #search_query_top {
    font-weight: 400;
    position: relative;
    clear: both;
    min-width: 240px;
    padding-right: 66px;
    font-size: 14px;
    text-align: left;
    height: 50px;
    color: var(--base-bodyfont-color);
    box-shadow: none !important;
    background-color: var(--base-grey);
    line-height: 51px;
    float: left;
    border: 1px solid rgba(0, 0, 0, .08);
}

.header_search .search_btn:hover {
    color: var(--base-skin);
}

.ttm-header-style-02 .social-icons li {
    min-width: auto;
    margin-left: 0;
    margin-right: 7px;
}

.ttm-header-style-02 .social-icons li a {
    border: 1px solid #21a12e;
    height: 35px;
    width: 35px;
    line-height: 36px;
    border-radius: 5px;
    color: #fff;
    background-color: #21a12e;
}

.ttm-header-style-02 .social-icons li a:hover {
    background-color: #fff;
    color: #21a12e;
    border-color: #fff;
}

.header_search .header_search_content .close_btn i {
    font-size: 18px;
    line-height: 17px;
}


/** SiteNavigation(Menu) **/
.site-navigation {
    position: relative;
    z-index: 2;
}

nav.main-menu ul {
    position: relative;
    margin: 0;
}

#site-header-menu .site-navigation ul.menu>li>a {
    font-size: 13px;
    /* font-family: var(--base-headingfont); */
    
    text-decoration: none;
    text-transform: uppercase;
    z-index: 1;
}

#site-header-menu .ttm-stickable-header .site-navigation ul.menu>li.active>a {
    color: var(--base-skin);
}

/* 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: "";
    /* height: 100%; */
    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 .ttm-icon {
        height: 50px;
        width: 50px;
        line-height: 50px;
        margin-bottom: 15px;
    }

    .banner_slider_1 .ttm-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 .ttm-btn.ttm-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: var(--base-dark);
    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-weight: 400;
    font-size: 20px;
    line-height: 32px;
    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 .second-footer .widget.widget_text a.ttm-btn {
    color: var(--base-skin);
}

.footer .second-footer .widget.widget_text a.ttm-btn:hover {
    color: var(--base-white);
}

.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;
    background-color: rgba(255, 255, 255, .2);
    width: 1px;
    height: 14px;
    top: 7px;
    padding: 0;
    right: 8px;
}

ul.footer-nav-menu li:last-child:after {
    content: unset;
}

/* second-footer */

.second-footer .widget-area .widget {
    padding: 60px 0 65px;
}

.second-footer>div>.row .widget-area .widget:not(:first-child) {
    margin-top: -60px;
    margin-bottom: 20px;
}

.second-footer .widget_text .featured-title h3 {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: -25px;
}

.second-footer p {
    color: rgba(255, 255, 255, .60);
    padding-bottom: 5px;
}

.second-footer .widget_contact_wrapper ul a {
    font-family: 'Lora', serif;
    font-size: 18px;
}

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

.widget ul#menu-footer-services li a:hover {
    color: var(--base-skin);
}

.widget ul#menu-footer-services li a:before {
    position: absolute;
    font-family: "themify";
    content: "\e65a";
    position: absolute;
    left: 0;
    font-size: 14px;
}

.widget ul#menu-footer-services li {
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 1);
}

.bottom-footer-text {
    background-color: #181818;
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.footer .bottom-footer-text {
    color: rgb(255 255 255/70%);
    font-size: 13px;
}

.bottom-footer-text .footer-nav-menu a {
    color: rgba(255, 255, 255, 1);
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 15px;
    font-size: 13px;
}

.bottom-footer-text .footer-nav-menu a:hover {
    color: var(--base-skin);
}


/* bottom-footer-text */

.newsletter-form input[type="email"] {
    color: rgb(255 255 255/50%);
    border: 0;
    background-color: rgb(255 255 255/4%);
}

input[type="email"]:focus::placeholder {
    display: inline-block !important;
    color: #fff !important;
    visibility: visible !important;
}

.second-footer .newsletter-form button[type="submit"] {
    width: 100%;
    background-color: var(--base-skin);
    padding: 15px 30px;
    border: none;
}

.second-footer .newsletter-form button[type="submit"]:hover {
    background-color: var(--base-white);
}

.second-footer .newsletter-form button[type="submit"]:hover {
    color: var(--base-dark);
}


/* 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;
}

/** ttm-recent-post-list **/
.widget ul.ttm-recent-post-list>li {
    padding: 5px 0 0 0;
}

.widget ul.ttm-recent-post-list>li:last-child {
    padding-bottom: 0;
}

.widget ul.ttm-recent-post-list>li>.post-detail a {
    line-height: 24px;
    margin-top: -15px;
    position: relative;
    font-family: var(--base-bodyfont);
    overflow: hidden;
    font-weight: 400;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    padding-left: 0px;
    color: var(--base-dark);
    -webkit-box-orient: vertical;
}

.widget ul.ttm-recent-post-list>li>.post-detail a:hover {
    color: var(--base-skin);
}

.widget ul.ttm-recent-post-list>li img {
    float: left;
    margin-right: 18px;
    margin-bottom: 18px;
}

.widget ul.ttm-recent-post-list>li .post-date {
    font-size: 13px;
    margin-bottom: 2px;
    color: var(--base-bodyfont-color);
}

.widget ul.ttm-recent-post-list>li .post-date i {
    font-size: 13px;
    color: var(--base-skin);
}

.widget ul.ttm-recent-post-list li:after {
    content: " ";
    display: table;
    clear: both;
}

.widget ul.ttm-recent-post-list-main>li>.post-detail a {
    color: var(--base-white);
    line-height: 24px;
    position: relative;
    font-family: var(--base-bodyfont);
    overflow: hidden;
    font-weight: 400;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    padding-left: 0px;
    -webkit-box-orient: vertical;
}

.widget ul.ttm-recent-post-list-main>li {
    padding: 5px 0 0 0;
}

.widget ul.ttm-recent-post-list-main>li:last-child {
    padding-bottom: 0;
}

.widget ul.ttm-recent-post-list-main>li>.post-detail a:hover {
    color: var(--base-skin);
}

.widget ul.ttm-recent-post-list-main>li img {
    float: left;
    margin-right: 18px;
    margin-bottom: 20px;
}

.widget ul.ttm-recent-post-list-main>li .post-date {
    font-size: 13px;
    margin-bottom: 2px;
    color: var(--base-bodyfont-color);
}

.widget ul.ttm-recent-post-list-main>li .post-date i {
    font-size: 13px;
    color: var(--base-skin);
    padding-right: 3px;
}

.widget ul.ttm-recent-post-list-main li:after {
    content: " ";
    display: table;
    clear: both;
}

/** widget_nav_menu **/
.widget.widget_nav_menu {
    padding-left: 40px;
}

.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 */
.widget.link-widget {
    padding-left: 30px;
}

/** 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 {
    padding-left: 45px;
    position: relative;
    padding-bottom: 23px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 25px;
    color: rgba(255, 255, 255, .70);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

ul.widget_contact_wrapper li>a {
    display: block;
    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;
}

/* .widget_info */
.widget_info {
    position: relative;
}

.widget_info .widget_icon {
    font-size: 40px;
    line-height: 40px;
}

.widget_info .widget_content .widget_title a:hover {
    color: #204066;
}

.widget_info .widget_content {
    margin-left: 14px;
    position: relative;
    color: var(--base-dark);
}

.bottom-footer-text .widget_info .widget_content .widget_title h5 a {
    color: #28305f;
}

.widget_content .widget_title {
    font-family: var(--base-headingfont);
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: var(--base-dark);
}

.widget_info .widget_content .widget_title {
    margin-bottom: 0px;
    margin-top: 17px;
}

.widget_info .widget_desc {
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 0;
}

.ttm-header-style-02 .widget_info:not(:last-child):before {
    content: '';
    position: absolute;
    width: 1px;
    height: 40px;
    background-color: rgb(18 2 2/10%);
    top: 50%;
    right: 0px;
    left: auto;
    margin: 0 auto;
    margin-top: -20px;
}

.ttm-header-style-02 .widget_content h3 {
    font-family: var(--base-bodyfont);
    color: var(--base-bodyfont-color);
    font-style: 14px;
    font-weight: 400;
}

.ttm-header-style-02 .widget_content p {
    font-family: var(--base-headingfont);
    font-weight: 500;
    font-style: 15px;
}


/** copyright **/
.copyright {
    padding-top: 28px;
    padding-bottom: 23px;
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    display: block;
    border-top: none;
}

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


/* ===============================================
    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: 20px;
    text-align: center;
    padding-top: 3px;
    line-height: 34px;
    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
------------------------*/
.ttm-page-title-row {
    background-image: url(../images/pagetitle-bg.jpg);
    background-color: rgba(0 0 0/52%);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.ttm-page-title-row.ttm-bg.ttm-bgimage-yes>.ttm-bg-layer {
    background-color: rgba(0 0 0/52%);
}

.ttm-page-title-row-inner {
    width: 100%;
    text-align: left;
    position: relative;
    padding-top: 210px;
    padding-bottom: 70px;
}

.page-title-heading h2 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 45px;
    line-height: 57px;
    font-family: var(--base-headingfont);
    color: var(--base-white);
}

.page-title-heading p {
    font-size: 18px;
    color: #fff;
}

.breadcrumb-wrapper {
    z-index: 1;
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    position: relative;
    background-color: var(--base-dark);
}

.breadcrumb-wrapper:before {
    top: 0;
    content: '';
    width: 4px;
    background-color: var(--base-skin);
    height: 100%;
    position: absolute;
    left: 0;
}

.breadcrumb-wrapper span {
    font-family: var(--base-bodyfont);
    font-weight: 400;
    color: var(--base-skin);
    text-transform: capitalize;
    font-size: 13px;
    line-height: 20px;
    position: relative;
}

.breadcrumb-wrapper span i {
    padding-right: 7px;
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
}

.breadcrumb-wrapper span:first-child {
    padding-right: 24px;
}

.breadcrumb-wrapper span:first-child a {
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
}

.breadcrumb-wrapper span:first-child:after {
    position: absolute;
    content: "-";
    width: 0px;
    font-size: 15px;
    top: -4px;
    right: 17px;
    display: inline-block;
    color: rgba(255, 255, 255, 1);
    font-style: normal;
}



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

/*------------------------------------------------------------------------------*/
/*  single_services
/*------------------------------------------------------------------------------*/
.ttm-service-single-content-area div:not(.featured-title)>h3 {
    font-size: 30px;
    line-height: 40px;
}

.ttm-service-single-content-area p:not(:last-child) {
    margin-bottom: 25px;
}

.ttm-service-single-content-area .ttm_fatured_image-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.ttm-service-single-content-area img {
    width: 100%;
}


/*------------------------------------------------------------------------------*/
/*  single_team
/*------------------------------------------------------------------------------*/
.ttm-team-member-single-content h3,
.ttm-team-member-content h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
}

.ttm-team-member-single-content .ttm-featured-wrapper img {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ttm-team-member-detail {
    padding: 0px 25px 0 0px;
    border-radius: 5px;
}

.ttm-team-member-detail .ttm-team-member-single-title {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 8px;
}

.ttm-team-member-detail .ttm-team-member-single-position {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--base-skin);
    font-family: var(--base-bodyfont);
}

.ttm-team-member-detail .ttm-short-desc {
    margin: 12px 0 11px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9e9eb;
}

.ttm-team-member-detail ul {
    margin: 0;
    padding: 0;
}

.ttm-team-details-list li {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    display: block;
    padding: 7px 0 5px 0;
    width: 100%;
}

.ttm-team-details-list .ttm-team-list-title,
.ttm-team-details-list .ttm-team-list-value,
.ttm-team-details-list .ttm-team-list-value a {
    display: inline-block;
    color: var(--base-bodyfont-color) !important;
    font-size: 14px;
}

.ttm-team-details-list .ttm-team-list-value a:hover {
    color: var(--base-skin) !important;
}

.ttm-team-member-detail .ttm-social-links-wrapper ul li a {
    display: block;
    background-color: #385da9;
    color: #fff;
    font-size: 15px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid rgba(133, 146, 166, .3);
    border-radius: 50%;
    margin-right: 0;
}

.ttm-team-member-detail .ttm-social-links-wrapper ul li a:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}

.ttm-team-member-detail .ttm-social-links-wrapper {
    padding: 14px 0 10px;
}

.ttm-team-member-content {
    padding-top: 35px;
}

.ttm-team-member-detail .ttm-social-links-wrapper ul li.social-facebook a {
    background-color: #4b69b0;
    border-color: #4b69b0;
}

.ttm-team-member-detail .ttm-social-links-wrapper ul li.social-linkedin a {
    background-color: #b3140f;
    border-color: #b3140f;
}

.ttm-team-member-detail .ttm-social-links-wrapper ul li.social-twitter a {
    background-color: #37b1e1;
    border-color: #37b1e1;
}

.ttm-team-member-detail .ttm-social-links-wrapper ul li.social-pinterest a {
    background-color: #e83f3a;
    border-color: #e83f3a;
}

.ttm-team-member-detail .ttm-social-links-wrapper ul li.social-instagram a {
    background-color: #37b1e1;
    border-color: #37b1e1;
}

.ttm-team-member-content {
    background-color: var(--base-grey);
    margin-left: -30px;
    padding: 20px 0 40px 50px;
}

.ttm-team-member-content .ttm-team-member-single-list .ttm-team-data {
    position: relative;
    margin-top: 15px;
}

.ttm-team-details-list {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 13px;
}

.ttm-team-details-list {
    list-style: none;
    padding: 0;
}

.ttm-team-details-list li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    display: block;
    float: left;
    padding: 8px 0 5px;
    width: 100%;
}

.ttm-team-details-list .ttm-team-list-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    display: block;
    font-family: var(--base-headingfont);
    color: var(--base-dark) !important;
}



/*------------------------------------------------------------------------------*/
/*  Project_Blog
/*------------------------------------------------------------------------------*/
.ttm-pf-detail-box {
    position: relative;
}

.ttm-pf-detail-box .ttm_pf_image-wrapper {
    overflow: hidden;
}

.ttm-pf-single-detail-box {
    padding: 24px 0 12px 30px;
    margin: 0 0px -48px 0;
    background-color: var(--base-skin);
    position: relative;
    z-index: 1;
}

.ttm-pf-single-detail-box .ttm-pf-single-detail-box-title h4 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
}

.ttm-pf-single-detail-box ul {
    list-style: none;
    padding-left: 0;
    overflow: hidden;
    margin-top: 0;
}

.ttm-pf-detailbox-list li {
    position: relative;
    display: flex;
    padding: 9px 0;
}

.ttm-pf-single-detail-box ul li>span {
    display: inline;
    font-size: 14px;
    color: var(--base-white);
}

.ttm-pf-single-detail-box ul li>span:first-child {
    font-weight: 500;
    font-size: 16px;
    color: var(--base-white);
}

.ttm-pf-single-detail-box ul li:last-child {
    padding-right: 0;
}

.ttm-pf-single-content-area {
    padding-top: 15px;
}

.ttm-pf-single-content-area h2 {
    text-align: left;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 25px;
}

.ttm-pf-single-content-area .social-media-block {
    display: block;
    clear: both;
    padding: 3px 0 25px;
    border-bottom: 1px solid #e6e9ef;
}

.ttm-pf-detailbox-list li span:not(.ttm-pf-right-details) {
    font-weight: 600;
    margin-right: 5px;
    -ms-flex: 0 0 43.333333%;
    flex: 0 0 43.333333%;
    color: #252525;
}

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

.ttm-pf-single-content-area .social-icons li>a:hover {
    border-color: var(--base-white);
    color: var(--base-white);
    background-color: var(--base-skin);
}

.ttm-pf-single-content-area .ttm-pf-single-category span {
    color: var(--base-skin);
    font-size: 15px;
    font-weight: 600;
}

.ttm-pf-single-content-area .ttm-pf-single-category a:not(:hover) {
    color: inherit;
}

.ttm-nextprev-bottom-nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.justify-content-between .ttm-btn-size-sm {
    position: relative;
    color: var(--base-dark);
    display: inline-block;
    font-family: var(--base-bodyfont);
    font-weight: 400;
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 0;
    margin: 0 3px 10px;
    border: 1px solid rgba(227, 227, 227, .7);
    background-color: var(--base-white);
}

.justify-content-between .ttm-btn-size-sm:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}



#rev_slider_2_1_wrapper .revslider-initialised.rev_redraw_on_blurfocus {
    margin-top: -160px !important;
    margin-left: 100px;
}

#rev_slider_2_1_wrapper {
    visibility: hidden !important;
}

#rev_slider_2_1_wrapper {
    position: relative;
    z-index: 2;
}



/*------------------------------------------------------------------------------*/
/*  Classic_Blog
/*------------------------------------------------------------------------------*/
article.ttm-blog-classic {
    margin-bottom: 32px;
    padding: 30px;
    background-color: var(--base-white);
}

article.ttm-blog-classic:last-child {
    margin-bottom: 30px;
}

article.ttm-blog-classic .ttm-post-featured-wrapper {
    position: relative;
    overflow: hidden;
}

article.ttm-blog-classic .ttm-blog-classic-content {
    background: var(--base-white);
    padding: 22px 0px 0px;
    z-index: 11;
    position: relative;
    display: block;
    border: 0;
    overflow: hidden;
    border-radius: 5px;
}

article.ttm-blog-classic .ttm-blog-classic-content .ttm-post-catagory span a {
    background-color: var(--base-skin);
    padding: 4px 15px;
    margin-right: 10px;
    margin-bottom: 25px;
    border-radius: 0;
    font-size: 14px;
    z-index: 1;
    color: var(--base-white);
    font-style: italic;
    text-align: center;
    position: relative;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
}

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

.ttm-blog-classic .ttm-box-post-cat a {
    color: var(--base-white);
}

.ttm-blog-classic .ttm-blogbox-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
    margin-top: 25px;
    padding-top: 10px;
}

.ttm-blog-classic .post-meta,
.ttm-blog-single .post-meta {
    display: block;
    padding: 8px 0 11px;
}

.ttm-blog-classic .post-meta .ttm-meta-line,
.ttm-blog-single .post-meta .ttm-meta-line {
    padding-right: 25px;
    position: relative;
    color: inherit;
}

.ttm-blog-classic .post-meta .ttm-meta-line a,
.ttm-blog-single .post-meta .ttm-meta-line a {
    color: var(--body-font-color);
}

.ttm-blog-classic .post-meta .ttm-meta-line:last-child {
    padding-right: 0;
}

.ttm-blog-classic .post-meta .ttm-meta-line i,
.ttm-blog-single .post-meta .ttm-meta-line i {
    padding-right: 7px;
    color: var(--base-skin);
}

.ttm-blog-classic .entry-header .entry-title {
    font-size: 28px;
    line-height: 30px;
    position: relative;
    margin-bottom: 12px;
}

.ttm-blog-classic .post-meta .ttm-meta-line:not(:last-child):after {
    position: absolute;
    display: inline-block;
    content: "";
    height: 17px;
    width: 1px;
    right: 10px;
    top: 0;
    margin-top: 2px;
    background-color: #e7e7e7;
}

.ttm-blog-classic .post-meta .ttm-meta-line:last-child {
    padding-right: 0;
}

.ttm-blog-classic .post-meta .ttm-meta-line.tags-links:after {
    content: unset;
}

/*------------------------------------------------------------------------------*/
/*  Single_Blog
/*------------------------------------------------------------------------------*/

article.ttm-blog-single {
    margin-bottom: 32px;
    padding: 30px;
    background-color: var(--base-white);
}

.ttm-blog-single .ttm-post-featured-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}

.ttm-blog-single .ttm-blog-single-content .qoute-text cite {
    color: var(--base-skin);
    font-family: var(--base-headingfont);
}

.ttm-blog-single .ttm-blog-single-content .qoute-text cite p {
    font-style: italic;
}

.ttm-blog-single .ttm-blog-single-content .qoute-text p {
    font-style: italic;
    color: var(--base-dark);
    font-weight: 500;
}

.ttm-blog-single .post-meta {
    display: block;
    padding: 5px 0 15px 0;
}

.ttm-blog-single h3 {
    font-size: 24px;
    line-height: 36px;
    margin-top: 20px;
}

.ttm-blog-single blockquote {
    display: block;
    background: #fff;
    position: relative;
    text-align: center;
    padding: 55px 40px 35px 40px;
    min-height: 100px;
    border: none;
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    background-color: var(--base-grey);
}

.ttm-blog-single p {
    margin-bottom: 20px;
}

.ttm-blog-single blockquote:before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 45px;
    width: 50px;
    text-align: center;
    margin: 0 auto;
    background-position: center;
    background-color: var(--base-skin);
    background-repeat: no-repeat;
    background-image: url(../images/quote-3.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;
}

.ttm-blog-single blockquote cite {
    text-align: center;
    font-weight: 600;
    font-style: normal;
    color: var(--base-dark);
}

.ttm-blog-single .ttm_tag_lists {
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 20px;
}

.ttm-blog-single .ttm_tag_lists .ttm-tags-links-title {
    color: var(--base-skin);
}

.ttm-blog-single .social-media-block .ttm-tags-links a {
    position: relative;
    color: inherit;
    display: inline-block;
    padding: 7px 19px;
    margin: 0 3px 10px;
    border: 1px solid rgba(227, 227, 227, 0.7);
    background-color: var(--base-white);
    font-size: 14px;
}

.ttm-blog-single .ttm-social-share-wrapper ul li:last-child {
    padding-right: 0;
}

.ttm-blog-single .ttm-social-share-wrapper ul li a {
    border: 1px solid transparent;
    padding: 15px 7px 15px 0;
    width: 169px;
    text-align: center;
    display: block;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    border-radius: 0;
    color: #fff;
    border-radius: 5px;
}

.ttm-blog-single .social-media-block .ttm-tags-links a:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}

.ttm-blog-single .ttm-social-links-wrapper ul li.social-facebook a {
    background-color: #4b69b0;
    border-color: #4b69b0;
}

.ttm-blog-single .ttm-social-links-wrapper ul li.social-facebook a {
    background-color: #4b69b0;
    border-color: #4b69b0;
}

.ttm-blog-single .ttm-social-links-wrapper ul li a {
    display: block;
    background-color: #385da9;
    color: #fff;
    font-size: 15px;
    padding: 12px 0px 12px 0;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid rgba(133, 146, 166, .3);
    border-radius: 0;
    margin-right: 0;
}

.ttm-blog-single .ttm-social-links-wrapper ul li.social-twitter a {
    background-color: #37b1e1;
    border-color: #37b1e1;
}

.ttm-blog-single .ttm-social-links-wrapper ul li.social-pinterest a {
    background-color: #b3140f;
    border-color: #b3140f;
}

.ttm-blog-single .ttm-social-links-wrapper ul li.social-linkedin a {
    background-color: #0073b1;
    border-color: #0073b1;
}

.prev-link_wrapper {
    width: 48%;
    padding: 0;
}

.next-link_wrapper {
    float: right;
    width: 48%;
    padding: 0;
}

.pagination-item.prev {
    position: relative;
}

.ttm-post-prev-next-buttons .pagination-content {
    vertical-align: middle;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    background-position: 100%;
    background-size: cover;
    padding: 10px 45px 30px;
    position: relative;
    min-height: 118px;
}

.ttm-post-prev-next-buttons .pagination-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0/52%);
}

.pagination-item.next .ttm-nav-sub:before {
    font-family: 'FontAwesome';
    content: "\f101";
    font-size: 15px;
    line-height: 26px;
    transform: unset;
    background-color: var(--base-skin);
    padding: 10px 15px;
    color: var(--base-white);
    position: absolute;
    right: -57px;
    top: 100%;
}

.ttm-post-prev-next-buttons .ttm-nav-sub {
    display: block;
    font-size: 0;
    position: relative;
    font-weight: 400;
}

.pagination-item.prev .ttm-nav-sub:before {
    font-family: 'FontAwesome';
    content: "\f100";
    font-size: 15px;
    line-height: 26px;
    transform: unset;
    background-color: var(--base-skin);
    padding: 10px 15px;
    color: var(--base-white);
    position: absolute;
    left: -57px;
    top: 100%;
}

.ttm-post-prev-next-buttons span.ttm-nav-title {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-family: var(--base-headingfont);
    -webkit-box-orient: vertical;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: var(--base-white);
    position: relative;
}

.ttm-blog-single .ttm-post-prev-next-buttons {
    padding: 30px 10px 30px 25px;
    position: relative;
    background-color: var(--base-grey);
}




/*blog-comment*/
.comments-area {
    padding-top: 25px;
    margin-bottom: 0;
}

.comments-area h3.comment-reply-title {
    font-size: 29px;
    line-height: 36px;
    margin-bottom: 15px;
}

.comments-area p.comment-notes {
    margin-bottom: 10px;
    font-size: 15px;
    font-style: italic;
}

.comments-area p {
    margin-bottom: 15px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    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-url {
    margin-right: 0;
}


/*------------------------------------------------------------------------------*/
/*  Contact_page
/*------------------------------------------------------------------------------*/
.ttm_contact_widget_wrapper {
    position: relative;
    z-index: 1;
    overflow: visible;
    clear: both;
    padding: 40px 30px;
    padding-left: 35px;
}

@media (min-width: 992px) {
    .ttm_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;
    }
}

.ttm_contact_widget_wrapper ul {
    padding: 0;
    margin: 0;
    z-index: 2;
    list-style: disc;
    clear: both;
    padding-left: 23px;
}

.ttm_contact_widget_wrapper li {
    margin-bottom: 25px;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
}

.ttm_contact_widget_wrapper li h6 {
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.ttm_contact_widget_wrapper li span {
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
}


/*------------------------------------------------------------------------------*/
/*  Error_page
/*------------------------------------------------------------------------------*/
.error404 .site-main {
    padding-top: 0
}

section.error-404 {
    padding: 150px 0;
    text-align: center
}

section.error-404 .ttm-big-icon {
    font-size: 104px;
    color: var(--base-skin);
}

section.error-404 .page-header {
    border-bottom: none;
    margin-bottom: 0
}

section.error-404 h1 {
    font-size: 60px;
    line-height: 100%
}

.error404 .site-content-wrapper {
    background-color: #f1f4f9;
    background-position: right bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

section.error-404 .search-form {
    position: relative;
    max-width: 390px;
    margin: 0 auto;
}

section.error-404 .search-form label {
    display: block;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

section.error-404 .search-form .search-field {
    border-width: 1px;
    background-color: var(--base-white);
    border-radius: 0;
}

section.error-404 .search-form .search-submit {
    position: absolute;
    top: 5px;
    right: 0;
    box-shadow: none;
    border-bottom: none;
    text-indent: -999px;
    padding: 0;
    width: 46px;
    height: 46px;
    z-index: 1;
    border-radius: 0 3px 3px 0;
    background-image: url(../../../../themetechmount.com/html/wastii/css/images/search-img.html);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    opacity: .3;
}

.search-form .search-submit {
    display: block;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

section.error-404 .page-content p {
    font-size: 16px;
    margin-bottom: 30px;
}





/*------------------------------------------------------------------------------*/
/*  Map
/*------------------------------------------------------------------------------*/
#map {
    display: block;
    height: 220px;
    width: 100%;
}

#map iframe {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    border-radius: 5px;
}

.google_map #map {
    display: block;
    height: 700px;
    width: 100%;
    margin-top: -400px;
}

#map_2 iframe {
    width: 100%;
    height: 100%;
}

.google_map_2 #map_2 {
    display: block;
    height: 530px;
    width: 100%;
}


/* .min-box {
    position: relative;
    min-height: 760px;
} */