

@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");
@font-face {
  font-family: "Nimbus Roman No9 L";
  src: url("../fonts/NimbusRomNo9L-Reg.eot");
  src: url("../fonts/NimbusRomNo9L-Regd41d.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/NimbusRomNo9L-Reg.woff2") format("woff2"),
    url("../fonts/NimbusRomNo9L-Reg.woff") format("woff"),
    url("../fonts/NimbusRomNo9L-Reg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nimbus Roman No9 L";
  src: url("../fonts/NimbusRomNo9L-Med.eot");
  src: url("../fonts/NimbusRomNo9L-Medd41d.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/NimbusRomNo9L-Med.woff2") format("woff2"),
    url("../fonts/NimbusRomNo9L-Med.woff") format("woff"),
    url("../fonts/NimbusRomNo9L-Med.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Herr Von Muellerhoff";
  src: url("../fonts/HerrVonMuellerhoff-Regular.eot");
  src: url("../fonts/HerrVonMuellerhoff-Regulard41d.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/HerrVonMuellerhoff-Regular.woff2") format("woff2"),
    url("../fonts/HerrVonMuellerhoff-Regular.woff") format("woff"),
    url("../fonts/HerrVonMuellerhoff-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/**

  1. General
     - Variables
     - Shadow
     - Extra-outer

  2. Spacing
     - Padding
     - Margin

  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
     - Extra-color

  4. Pre-loader

  5. TooltipTop

  6. TopBar

  7. Header
     - SiteBrand(logo)
     - SiteNavigation(Menu)
     - ttm-search-overlay

  8. Footer
     - FirstFooter
     - SecondFooter
     - menu-footer-services
     - mailchimp-inputbox
     - flicker-widget
     - Footer-nav-menu

  9. GoTop BUtton
  
  10. Page-Title-Row

  12. Inner-Pages
      - contact-us
      - error
      - portfolio
      - blog
      - team-member-details
      - element

**/

/* ===============================================
    General
------------------------*/

/** Variables **/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
a:focus {
  text-decoration: none;
}
a:focus,
a:hover {
  color: #252525;
  text-decoration: none;
}
a {
  transition: all ease-in-out 0.3s;
}
a,
button,
input {
  outline: medium none;
  color: #252525;
}
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
strong {
  font-weight: 700;
}
iframe {
  width: 100%;
  border: none;
  display: block;
}
p {
  margin: 0 0 15px;
}

*::-moz-selection {
  background: #2d4a8a;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #2d4a8a;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #2d4a8a;
  color: #fff;
  text-shadow: none;
}
.form-control {
  padding: 10px 10px;
  height: auto;
  border-radius: 0;
  border: 1px solid #e3e3e3;
  font-size: 14px;
  background-color: transparent;
}
.form-control:focus {
  background-color: transparent;
  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="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  border: 1px solid #fda02b;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

textarea:-moz-placeholder,
textarea::-moz-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholde {
  color: #fff;
}

menu,
ol,
ul {
  margin: 0;
  padding: 0 0 0 25px;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: #585858;
  background-color: #fff;
  letter-spacing: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nimbus Roman No9 L", sans-serif;
  margin-bottom: 13px;
  font-weight: 400;
  color: #252525;
}
h1 {
  font-size: 60px;
  line-height: 65px;
  text-transform: uppercase;
}
h2 {
  font-size: 55px;
  line-height: 60px;
}
h3 {
  font-size: 30px;
  line-height: 35px;
}
h4 {
  font-size: 24px;
  line-height: 27px;
}
h5 {
  font-size: 20px;
  line-height: 23px;
}
h6 {
  font-size: 16px;
  line-height: 18px;
}

/**  Shadow **/
.box-shadow,
.featured-imagebox-blog {
  -webkit-box-shadow: 0 0 12px 0 rgba(32, 46, 60, 0.06);
  -moz-box-shadow: 0 0 12px 0 rgba(32, 46, 60, 0.06);
  box-shadow: 0 0 12px 0 rgba(32, 46, 60, 0.06);
}
.box-shadow2 {
  -webkit-box-shadow: 0 0 15px 0 rgba(32, 46, 60, 0.12);
  -moz-box-shadow: 0 0 15px 0 rgba(32, 46, 60, 0.12);
  box-shadow: 0 0 15px 0 rgba(32, 46, 60, 0.12);
}

/** Extra-outer **/
body .page {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
body .page.sidebar-true .site-main {
  padding: 0;
  background-color: #fff;
}

.container-fluid {
  padding: 0 75px;
  overflow: hidden;
}

a {
  color: #252525;
}

.z-1 {
  z-index: 1 !important;
}
.z-0 {
  z-index: 1 !important;
}

.fs-16 {
  font-size: 16px;
}

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

/** Padding **/
.spacing-1 {
  margin-top: 80px;
  margin-bottom: -80px;
  padding-top: 28px;
  padding-left: 35px;
  padding-bottom: 25px;
  padding-right: 15px;
}

.spacing-2 {
  padding: 50px 50px 50px;
}
.spacing-3 {
  padding: 35px 15px 19px 40px;
}
.spacing-4 {
  padding: 0px 15px 15px 40px;
}
.spacing-5 {
  padding: 80px 50px 60px 230px;
}
.spacing-6 {
  padding: 25px 50px 25px 17px;
}

.spacing-7 {
  padding: 50px 50px 50px 15px;
}
.spacing-8 {
  padding: 80px 0px 80px 50px;
}
.spacing-9 {
  padding: 80px 60px 80px 0px;
}
.spacing-10 {
  padding: 80px 0px 80px 40px;
}
.spacing-11 {
  padding: 40px 25px;
}

.p-12 {
  padding: 12px !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-75 {
  padding-right: 75px !important;
}
.pr-80 {
  padding-right: 80px !important;
}

.pl-0 {
  padding-left: 0px !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;
}

.pt-2 {
  padding-top: 2px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pt-18 {
  padding-top: 18px !important;
}
.pt-20 {
  padding-top: 20px !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;
}

.pb-5 {
  padding-bottom: 5px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-190 {
  padding-bottom: 190px !important;
}
.ptb-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/** Margin **/
.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-23 {
  margin-top: 23px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mt-37 {
  margin-top: 37px !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-70 {
  margin-top: 70px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mt-100 {
  margin-top: 100px !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_25 {
  margin-top: -25px !important;
}
.mt_30 {
  margin-top: -30px !important;
}
.mt_30 {
  margin-top: -30px !important;
}
.mt_35 {
  margin-top: -35px !important;
}
.mt_50 {
  margin-top: -50px !important;
}
.mt_55 {
  margin-top: -55px !important;
}
.mt_60 {
  margin-top: -60px !important;
}
.mt_70 {
  margin-top: -70px !important;
}
.mt_72 {
  margin-top: -72px !important;
}
.mt_80 {
  margin-top: -80px !important;
}
.mt_90 {
  margin-top: -90px !important;
}
.mt_95 {
  margin-top: -95px !important;
}
.mt_100 {
  margin-top: -100px !important;
}
.mt_180 {
  margin-top: -180px !important;
}
.mt_225 {
  margin-top: -225px !important;
}
.mt_230 {
  margin-top: -230px !important;
}

.ml-0 {
  margin-left: 0px !important;
}
.ml-3 {
  margin-left: 3px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.ml-65 {
  margin-left: 65px !important;
}
.ml-287 {
  margin-left: 287px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.ml_30 {
  margin-left: -30px !important;
}
.ml_40 {
  margin-left: -40px !important;
}

.mr-0 {
  margin-right: 0px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mr-70 {
  margin-right: 70px !important;
}
.mr_30 {
  margin-right: -30px;
}
.mr_35 {
  margin-right: -35px !important;
}
.mr_40 {
  margin-right: -40px;
}
.mr_60 {
  margin-right: -60px;
}
.mr_80 {
  margin-right: -80px;
}

.mb_1 {
  margin-bottom: -1px !important;
}
.mb-4 {
  margin-bottom: 4px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.mb-27 {
  margin-bottom: 27px !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-55 {
  margin-bottom: 55px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.mb_30 {
  margin-bottom: -30px !important;
}
.mb_50 {
  margin-bottom: -50px !important;
}
.mb_60 {
  margin-bottom: -60px !important;
}
.mb_80 {
  margin-bottom: -80px !important;
}
.mb_85 {
  margin-bottom: -85px !important;
}

/* ===============================================
    Color
------------------------*/
/** 1.Skin-color **/
.ttm-textcolor-skincolor,
.ttm-textcolor-skincolor h1,
.ttm-textcolor-skincolor h2,
.ttm-textcolor-skincolor h3,
.ttm-textcolor-skincolor h4,
.ttm-textcolor-skincolor h5,
.ttm-textcolor-skincolor h6,
h2.ttm-textcolor-skincolor,
h5.ttm-textcolor-skincolor,
.ttm-list-icon-color-skincolor li i,
.ttm-bgcolor-darkgrey a:hover,
.ttm-icon_element-border.ttm-icon_element-color-skincolor,
.ttm-btn-style-border.ttm-btn-color-skincolor,
.ttm-icon_element-fill.ttm-icon_element-color-white,
.ttm-icon_element-fill.ttm-icon_element-color-white i,
.copyright a.ttm-textcolor-skincolor,
.second-footer .widget_text a.ttm-color-skincolor,
.ttm-icon_element-color-skincolor,
a:hover,
.ttm-bgcolor-darkgrey a:hover,
a.ttm-btn.btn-inline:hover,
.title-box .breadcrumb-wrapper span:last-child,
.featured-imagebox-services.style2
  .ttm-bgcolor-skincolor
  .ttm-icon.ttm-icon_element-size-xs
  i,
.widget-Categories ul li a:hover:before,
#site-header-menu #site-navigation .menu > ul > li.active > a,
#site-header-menu #site-navigation .menu > ul > li > ul > li.active > a,
#site-header-menu #site-navigation .menu > ul > li a:hover,
footer .featured-desc p a:hover,
.widget.widget-download ul li a:hover,
.footer .social-icons li > a,
.team-media-block ul li a,
.featured-icon-box.icon-align-top-content.style1:hover .featured-title h5,
ul.ttm-recent-post-list > li > a:hover,
#site-header-menu #site-navigation .menu ul li:hover > ul,
.ttm-blog-classic .post-meta,
.featured-imagebox-team .media-block .social-icons li:hover a,
.breadcrumb-wrapper span a:hover {
  color: #bf9456 !important;
}

/** Skin-bg-color **/
.ttm-bgcolor-skincolor,
.ttm-btn-bgcolor-skincolor,
.ttm-bgcolor-skincolor > .ttm-bg-layer,
.ttm-bgcolor-skincolor > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner,
.ttm-icon_element-fill.ttm-icon_element-color-skincolor,
.ttm-btn-style-fill.ttm-btn-color-skincolor,
.ttm-btn.ttm-btn-style-border.ttm-btn-color-skincolor:not(
    .btn-inline
  ):hover:after,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-dark:not(.btn-inline):hover:after,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-grey:not(.btn-inline):after,
.ttm-btn.ttm-btn-style-border.ttm-btn-color-grey:not(.btn-inline):after,
.ttm-bgcolor-darkgrey .tooltip:after,
.ttm-bgcolor-darkgrey [data-tooltip]:after,
.ttm-bgcolor-grey .tooltip:after,
.ttm-bgcolor-grey [data-tooltip]:after,
.ttm-tabs.tabs-style-01 ul.tabs li.active a,
.ttm-tabs.tabs-style-01 ul.tabs li:hover a,
.ttm-tabs.tabs-style-01 ul.tabs li.active,
.ttm-blogbox-footer-readmore,
.ttm-blog-classic .ttm-postcategory .ttm-meta-line a,
.widget .tagcloud a:hover,
.footer .social-icons li > a:hover,
.ttm-pagination .page-numbers.current,
.ttm-pagination .page-numbers:hover,
.featured-imagebox-services.style2:hover
  .featured-content.ttm-bgcolor-darkgrey
  a.ttm-icon,
.tooltip:after,
[data-tooltip]:after,
#totop.top-visible,
.ttm-blog-classic .post-meta .ttm-meta-line:not(:last-child):after,
.ttm-blog-single-content .post-meta .ttm-meta-line:not(:last-child):after,
.team-media-block ul li a:hover,
.ttm-btn:not(.btn-inline):before,
.ttm-btn.ttm-btn.ttm-btn-style-border.ttm-btn-color-skincolor:hover:before,
.ttm-list.ttm-list-style-icon.style1 li:after,
.ttm-list.ttm-list-style-icon.style3 li:before,
.featured-icon-box.icon-align-top-content.style1 .ttm-border-seperator:after,
.featured-icon-box.icon-align-top-content.style1 .ttm-service-icon-dots:before,
.featured-imagebox-services.style1 a.di_link,
.featured-thumbnail .featured-thumbnail-inner:before,
.ttm-progress-bar .progress-bar,
.testimonials.style1 .testimonial-img:before,
.testimonials.style2 .testimonial-img:before,
.widget.widget-nav-menu ul li:hover a,
.widget.widget-nav-menu ul li.active a,
#site-header-menu #site-navigation .menu > ul > li ul a:before {
  background-color: #bf9456;
}

/** Skin-border-color **/
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-skincolor,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-dark:hover,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor,
.ttm-tabs.tabs-style-01 ul.tabs li.active,
.ttm-tabs.tabs-style-01 ul.tabs li:hover,
#site-header-menu #site-navigation .menu ul li:hover > ul,
.widget .tagcloud a:hover,
.ttm-blog-classic .post-meta,
.ttm-btn.ttm-btn-color-darkgrey:hover,
.ttm-btn.ttm-btn-color-white:hover,
.featured-icon-box.icon-align-top-content.style1 .ttm-border-seperator:before,
.featured-icon-box.style8 .ttm-icon.ttm-icon_element-size-xs,
.featured-imagebox-team.style1 .featured-content {
  border-color: #bf9456;
}
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-dark:after,
.ttm-btn.ttm-btn-style-border.ttm-btn-color-skincolor:after,
.ttm-bgcolor-darkgrey .tooltip-top:before,
.ttm-bgcolor-darkgrey .tooltip:before,
.ttm-bgcolor-grey .tooltip-top:before,
.ttm-bgcolor-grey .tooltip:before,
.tooltip-top:before,
.tooltip:before,
[data-tooltip]:before {
  border-top-color: #bf9456 !important;
}
.ttm-bgcolor-darkgrey .tooltip-bottom:before,
.ttm-bgcolor-darkgrey .tooltip:before,
.ttm-bgcolor-grey .tooltip-bottom:before,
.ttm-bgcolor-grey .tooltip:before,
.ttm-bgcolor-darkgrey .tooltip-bottom:before,
.tooltip-bottom:before {
  border-bottom-color: #bf9456 !important;
}

/** 2.Darkgrey-color **/
.ttm-textcolor-darkgrey,
.ttm-textcolor-darkgrey p,
.ttm-textcolor-darkgrey h1,
.ttm-textcolor-darkgrey h2,
.ttm-textcolor-darkgrey h3,
.ttm-textcolor-darkgrey h4,
.ttm-textcolor-darkgrey h5,
.ttm-textcolor-darkgrey h6,
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-darkgrey,
.ttm-btn.ttm-btn-style-border.ttm-btn-color-dark:hover,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-white,
.ttm-textcolor-darkgrey i,
.ttm-bgcolor-skincolor .ttm-btn.ttm-btn-style-fill.ttm-btn-color-white,
.ttm-bgcolor-darkgrey .ttm-btn.ttm-btn-style-fill.ttm-btn-color-white,
a.ttm-textcolor-white:hover,
.ttm-pagination .page-numbers,
.featured-imagebox
  .featured-content.ttm-bgcolor-skincolor
  .featured-title
  h5:hover
  a,
.ttm-blog-classic .post-meta .ttm-meta-line:last-child {
  color: #252525;
}

/** DarkGrey-bg-color **/
.ttm-bgcolor-darkgrey,
.ttm-bgcolor-darkgrey > .ttm-bg-layer,
.ttm-bgcolor-darkgrey > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner,
.ttm-bgcolor-skincolor .tooltip:after,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-dark,
.ttm-icon_element-fill.ttm-icon_element-color-darkgrey,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor:not(.btn-inline):after,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-white:not(.btn-inline):hover:after,
.ttm-btn.ttm-btn-style-border.ttm-btn-color-dark:not(.btn-inline):after,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-grey:hover,
.ttm-btn.ttm-btn-bgcolor-skincolor:hover:before,
.featured-imagebox-services.style1:hover a.di_link,
.featured-imagebox-services.style2:hover
  .featured-content.ttm-bgcolor-skincolor
  a.ttm-icon,
.ttm-blog-classic:hover .ttm-blogbox-footer-readmore,
.ttm-btn.ttm-btn-color-skincolor::before,
.ttm-btn.ttm-btn-bgcolor-skincolor:not(.btn-inline):before,
.widget-author .team-media-block ul li a:hover,
.ttm-btn.ttm-btn-color-skincolor::before {
  background-color: #043690;
}

a.rev-border-button,
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-darkgrey,
.slick_slider .slick-arrow:hover,
.ttm-bgcolor-darkgrey .tooltip-top:before,
.ttm-bgcolor-darkgrey .tooltip:before,
.ttm-bgcolor-grey .tooltip-top:before,
.ttm-bgcolor-grey .tooltip:before,
.tooltip-top:before,
.tooltip:before,
[data-tooltip]:before,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-dark,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-grey:hover,
a.ttm-btn.ttm-btn-style-fill.ttm-btn-color-white:hover,
a.ttm-btn.ttm-btn-style-fill.ttm-btn-color-white:hover,
.ttm-btn-color-darkgrey {
  border-color: #252525;
}
.ttm-bgcolor-skincolor [data-tooltip]:before {
  border-top-color: #252525;
}

/** 3.White-color **/
.ttm-textcolor-white,
.ttm-bgcolor-skincolor a,
.ttm-textcolor-white a,
.ttm-btn-color-white,
.ttm-icon_element-color-white,
.ttm-bgcolor-skincolor i,
.ttm-textcolor-white h1,
.ttm-textcolor-white h2,
.ttm-textcolor-white h3,
.ttm-textcolor-white h4,
.ttm-textcolor-white h5,
.ttm-textcolor-white h6,
.ttm-textcolor-white a,
.ttm-bgcolor-skincolor h1,
.ttm-bgcolor-skincolor h2,
.ttm-bgcolor-skincolor h3,
.ttm-bgcolor-skincolor h4,
.ttm-bgcolor-skincolor h5,
.ttm-bgcolor-skincolor h6,
.ttm-bgcolor-skincolor a,
.ttm-bgcolor-darkgrey h1,
.ttm-bgcolor-darkgrey > h2,
.ttm-bgcolor-darkgrey h3,
.ttm-bgcolor-darkgrey h4,
.ttm-bgcolor-darkgrey > h5,
.ttm-bgcolor-darkgrey h6,
.ttm-bgcolor-darkgrey a,
.ttm-textcolor-white .ttm-social-links-wrapper ul li a,
.ttm-icon_element-fill.ttm-icon_element-color-skincolor,
.ttm-icon_element-fill.ttm-icon_element-color-darkgrey,
.ttm-btn-style-fill.ttm-btn-color-skincolor,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-grey:hover,
.ttm-btn.ttm-btn-style-border.ttm-btn-color-dark:hover,
.ttm-btn.ttm-btn-style-border.ttm-btn-color-skincolor:hover,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-white:hover,
.footer h4.ttm-textcolor-white,
.page-title-heading h1,
.breadcrumb-wrapper span,
.breadcrumb-wrapper span a,
.ttm-tabs.tabs-style-01 ul.tabs li.active a,
.ttm-tabs.tabs-style-01 ul.tabs li:hover a,
.ttm-blogbox-footer-readmore,
.ttm-blog-classic .ttm-postcategory .ttm-meta-line a,
.featured-imagebox-services.style2:hover
  .featured-content.ttm-bgcolor-skincolor
  a.ttm-icon
  i,
.featured-imagebox-services.style2:hover
  .featured-content.ttm-bgcolor-darkgrey
  a.ttm-icon
  i,
.ttm-blog-classic .ttm-blogbox-footer-readmore a:hover,
.team-media-block ul li a:hover,
.widget.widget-nav-menu ul li:hover a,
.widget.widget-nav-menu ul li.active a,
.error-404 a.ttm-btn:hover,
.widget .tagcloud a:hover,
.footer .social-icons li > a:hover,
.ttm-pagination .page-numbers.current,
.ttm-pagination .page-numbers:hover {
  color: #fff;
}
.rs-layer.ttm-btn.ttm-btn-style-border.ttm-btn-color-skincolor:hover {
  color: #fff !important;
}
.ttm-bgcolor-skincolor .title-desc,
.ttm-bgcolor-darkgrey .title-desc,
.ttm-bgcolor-skincolor p,
.ttm-bgcolor-darkgrey p {
  color: rgba(255, 255, 255, 0.85);
}
.top_bar_contact_item {
  color: rgba(255, 255, 255, 0.9);
}

/** White-bg-color **/
.ttm-bgcolor-white,
.ttm-bgcolor-white > .ttm-bg-layer,
.ttm-bgcolor-white > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner,
.ttm-bgcolor-skincolor ul.title-shape li,
.ttm-icon_element-fill.ttm-icon_element-color-white,
.ttm-btn-style-fill.ttm-btn-color-white,
.ttm-pricing-plan:hover .ttm-p_table-body,
.ttm-bgcolor-darkgrey
  .row
  > [class*="col-"]
  :not(.ttm-bgcolor-white)
  a.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor:hover:before,
.ttm-pagination .page-numbers,
.header-btn .ttm-btn.ttm-btn-size-md:hover {
  background-color: #fff;
}

/** White-border-color **/
.ttm-bgcolor-darkgrey > .sep_holder .sep_line,
.ttm-bgcolor-skincolor > .sep_holder .sep_line,
.ttm-progress-bar .progress-bar-color-bar_white.progress-bar,
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor:hover {
  border-color: rgba(255, 255, 255, 1);
}

.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-white {
  border-color: #fff !important;
}

/** 4.Grey-color **/
.ttm-bgcolor-grey,
.ttm-bgcolor-grey > .ttm-bg-layer,
.ttm-bgcolor-grey > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner,
.ttm-btn-style-fill.ttm-btn-color-grey,
.ttm-icon_element-fill.ttm-icon_element-color-grey,
.ttm-pricing-plan:hover,
.sidebar .widget ul.download li,
.widget-Categories li span,
.widget.widget-nav-menu ul li a {
  background-color: #f7f7f6;
}

.ttm-btn-style-border.ttm-btn-color-grey,
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-grey {
  border-color: #f7f7f6;
}
.ttm-icon.ttm-icon_element-fill.ttm-icon_element-color-grey {
  color: inherit;
}

/* ===============================================
    Pre-loader ------------------------*/

#preloader {
  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/pre-loader-1.gif);
  background-repeat: no-repeat;
  background-position: center;
}

/*  ===============================================
    SocialIcon
------------------------*/
.social-icons ul {
  margin: 0;
  padding: 0;
}
.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.social-icons li {
  display: inline-block;
  border: none;
  margin: 0 3px;
}
.social-icons.circle li > a,
.social-icons.square li > a {
  border: 1px solid #e8ecef;
  height: 33px;
  width: 33px;
  line-height: 33px;
  text-align: center;
  display: block;
  font-size: 13px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.social-icons.square li > a {
  border-radius: 0;
}
.ttm-bgcolor-darkgrey .social-icons.circle li > a,
.ttm-bgcolor-skincolor .social-icons.circle li > a {
  border: none;
  color: #2c2c2c;
}
.ttm-bgcolor-darkgrey .social-icons.circle li > a,
.ttm-bgcolor-skincolor .social-icons.circle li > a {
  background-color: #fff;
}

/*  ===============================================
    TooltipTop
------------------------*/
.tooltip-top,
.tooltip-bottom {
  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 0.2s ease-in-out, visibility 0.2s ease-in-out,
    -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    transform 0.2s cubic-bezier(0.71, 1.7, 0.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: #000;
  border-top-color: rgba(24, 35, 51, 1);
}
.tooltip-top:after,
.tooltip-top:before,
.tooltip:after,
.tooltip:before,
[data-tooltip]:after,
[data-tooltip]:before {
  bottom: 78%;
  left: 50%;
}
.widget-author .team-media-block ul li a.tooltip-top:after,
.widget-author .team-media-block ul li a.tooltip-top:before,
.widget-author .team-media-block ul li a.tooltip:after,
.widget-author .team-media-block ul li a.tooltip:before {
  bottom: 90%;
}
.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(-16px);
  -moz-transform: translateY(-16px);
  transform: translateY(-16px);
}
.tooltip-top:after,
.tooltip:after,
[data-tooltip]:after {
  margin-left: -80px;
}
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  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;
}
.tooltip-bottom:after {
  bottom: -68px;
  left: 0;
  margin-left: -70px;
}
.tooltip-bottom:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: transparent !important;
}
.tooltip-bottom:before {
  bottom: -24px;
}

/*  ===============================================
    TopBar
------------------------*/
.ttm-topbar-wrapper {
  line-height: 49px;
  height: 45px;
}
.header-btn .ttm-btn.ttm-btn-size-md {
  padding: 12px 25px;
  border-radius: 0px;
  margin-left: 10px;
  font-size: 15px;
  vertical-align: top;
  line-height: 19px;
  font-weight: 500;
  transition: all 0.5s;
}
.header-btn .ttm-btn.ttm-btn-size-md:before {
  content: none;
}
.ttm-topbar-wrapper .top-contact.text-left {
  position: relative;
  float: left;
  line-height: 50px;
}
.top-contact li {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
}
.top-contact li:first-child {
  padding-left: 0px !important;
}
.top-contact li strong {
  font-weight: 500;
}
.top-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  display: inline-block;
  position: relative;
}
.ttm-topbar-content .top-contact li:before {
  content: "";
  height: 18px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.09);
  display: block;
  position: absolute;
  right: -3px;
  top: 17px;
}
.ttm-topbar-content .top-contact li:last-child:before {
  width: 0px;
}
.topbar-right .top-contact.ttm-highlight-right li:last-child:after {
  content: unset;
}
.ttm-topbar-wrapper .ttm-social-links-wrapper {
  margin: 0;
  position: relative;
  padding-left: 5px;
  padding-right: 15px;
}
.ttm-topbar-wrapper .social-icons li {
  margin: 0 3px;
}
.ttm-topbar-wrapper .social-icons li > a {
  display: block;
  border: none;
  width: 22px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  font-weight: 500;
  background-color: transparent;
  text-align: center;
}
.ttm-topbar-wrapper .social-icons li > a:hover {
  color: #bf9456 !important;
}
.ttm-topbar-content .topbar-right .list-inline {
  display: inline-block;
  line-height: 48px;
}
.top-contact.ttm-highlight-left {
  margin-right: 15px;
  padding-right: 5px;
}
.top-contact.ttm-highlight-right {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}
.top-contact.ttm-highlight-left:after,
.top-contact.ttm-highlight-right:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 5000px;
  height: 100%;
}
.top-contact.ttm-highlight-right:after {
  right: 0;
}
.top-contact.ttm-highlight-right:after {
  left: 0;
}
.top-contact strong {
  font-weight: 600;
}
.top-contact i {
  margin-right: 10px;
  font-size: 18px;
  width: 17px;
  height: 15px;
  text-align: center;
}

/*  ===============================================
    Header
------------------------*/

/** SiteBrand(logo) **/
.site-branding {
  height: 100px;
  width: 100%;
  line-height: 100px;
  position: relative;
  display: block;
  z-index: 1;
  text-align: center;
  position: absolute;
}
.ttm-header-top-wrapper {
  position: relative;
}
.site-branding img {
  max-height: 56px;
}
.ttm-header-style-01 .site-branding img {
    max-height: 110px;
    position: relative;
    top: 7px;
    right: -3px;
}
.ttm-header-style-01 .site-branding img.logo-shape {
    position: absolute;
    left: 0;
    right: 9px;
    width: 275px;
    top: 96px;
    z-index: -1;
    margin: 0 auto;
    /* display: none; */
}
.ttm-header-style-01 .fixed-header .site-branding img {
  top: 7px;
  max-height: 85px;
}
.ttm-header-style-01 .fixed-header #site-navigation .menu ul {
  margin-top: 0;
}
.ttm-header-style-01 .fixed-header .site-branding img.logo-shape {
  top: 68px;
}
/** SiteNavigation(Menu) **/
.site-navigation {
  position: relative;
  z-index: 2;
}
#site-header-menu #site-navigation .menu ul li ul > li:not(:last-child) {
  border-bottom: 1px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.04);
}
#site-header-menu #site-navigation .menu ul {
  padding: 0px;
  margin: 0px;
  text-align: center;
}
.ttm-menu-toggle {
  float: right;
}
.ttm-menu-toggle input[type="checkbox"] {
  display: none;
}
#site-header-menu #site-navigation .menu > ul > li {
  display: inline-block;
  position: relative;
  transition: all 0.5s;
}
#site-header-menu #site-navigation .menu ul li:hover > ul {
  opacity: 1;
  display: block;
  visibility: visible;
  height: auto;
  transform: translate(0, 0px);
  border-top: 3px solid;
}
#site-header-menu #site-navigation .menu ul ul > li {
  position: relative;
}
#site-header-menu #site-navigation .menu ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}
#site-header-menu #site-navigation .menu ul li > a {
  font-weight: 400;
  text-transform: capitalize;
 /* font-size: 16px;*/
  font-size: 15px;
  line-height: 20px;
  color: #252525;
  font-family: "Nimbus Roman No9 L";
}
#site-header-menu #site-navigation ul ul li {
  position: relative;
  border-bottom: 1px solid transparent;
}
#site-header-menu #site-navigation .menu ul li > ul li > a {
  margin: 0;
  display: block;
  padding: 15px 20px;
  position: relative;
  font-weight: 400;
  font-size: 13px;
  text-transform: capitalize;
  height: auto;
  line-height: 18px;
}
#site-header-menu #site-navigation .menu ul > li > ul li.has-submenu > a:after {
  content: "\f105";
  position: absolute;
  background-color: transparent;
  right: 12px;
  top: 16px;
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 15px;
  margin-left: 4px;
  opacity: 0.8;
}
#site-header-menu #site-navigation .menu ul li a span {
  padding: 1px 3px 2px;
  border-radius: 2px;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 7px;
}

/**  rs-slider Home banner  **/
#rev_slider_1_1_forcefullwidth .tparrows:before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 40px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
/**  ttm-search-overlay **/
.ttm-header-icon {
  position: relative;
}
.ttm-search-overlay {
  position: absolute;
  top: 100%;
  right: -24px;
  width: 400px;
  background: #fff;
  border-top: 3px solid;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  z-index: 111;
}
.ttm-header-style-01 .ttm-search-overlay .w-search-form-row:before {
  right: 27px;
}
.ttm-search-overlay .w-search-form-row {
  display: table;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  position: relative;
  padding: 20px;
}
.ttm-search-overlay .w-search-form-row:before {
  position: absolute;
  right: 17px;
  top: -8px;
  width: 47px;
  height: 47px;
  text-align: center;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 8px solid;
  content: " ";
}
.ttm-search-overlay .ttm-site-searchform input[type="search"] {
  font-size: 14px;
  text-align: left;
  height: 45px;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none !important;
  color: #252525;
  width: 88%;
  line-height: 45px;
  float: left;
  padding: 9px 15px;
}
.ttm-search-overlay .ttm-site-searchform button {
  font-size: 14px;
  width: 12%;
  padding: 0;
  border: 0;
  border-radius: 0;
  height: 45px;
  text-align: center;
  display: block;
  line-height: 50px;
  color: #fff;
  float: left;
}
.ttm-header-search-link .ttm-tectxon-icon-search:before {
  font-weight: 600;
}
.ttm-tectxon-icon-search:before {
  content: "\e825";
  font-family: "themify";
}
.ttm-search-overlay.st-show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* .widget_info */
.widget_info {
  position: relative;
}
.widget_info:not(:last-child) {
  padding-right: 50px;
}
.widget_info .widget_icon {
  font-size: 34px;
}
.widget_info .widget_content {
  margin-left: 14px;
  position: relative;
}
.widget_info:not(:last-child) .widget_content:after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: rgba(243, 243, 243, 1);
  display: block;
  position: absolute;
  right: -25px;
  top: 0px;
}
.widget_info .widget_title {
  font-size: 17px;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 5px;
}
.widget_info .widget_desc {
  font-size: 15px;
  line-height: 1;
  margin-bottom: 0;
}
/* ===============================================
    Footer
------------------------*/
.footer {
  background-image: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer .widget ul.ttm-recent-post-list > li {
  padding: 10px 7px !important;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-height: 100px;
}
.footer .widget ul.ttm-recent-post-list > li:first-child {
  padding-top: 0 !important;
}
.footer .widget {
  margin: 45px 0 45px;
}
.textwidget .featured-icon-box:last-child {
  border-bottom: none;
}
.footer .featured-icon-box.icon-align-before-content .featured-icon i {
  font-size: 19px;
}
.footer .featured-desc p {
  font-size: 14px;
}
.footer .featured-icon-box.icon-align-before-content .featured-content {
  padding-left: 10px;
}
.footer .widget .ttm-btn.ttm-btn-size-md {
  padding: 14px 27px 14px 27px;
}
.footer .widget ul > li {
  padding: 20px 0;
}
/*first footer*/
.first-footer .newsletter-form input[type="email"] {
  padding: 12px 15px;
  border: none;
  padding-right: 115px;
  height: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: #444;
  border-radius: 5px;
  color: #fff;
}
.first-footer .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.first-footer .newsletter-form button[type="submit"] {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 14px;
  font-weight: 600;
  padding: 0 40px 0;
  height: 50px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  border: 0;
}
.first-footer .newsletter-form button[type="submit"]:hover {
  background-color: #232323;
  color: #fff;
  cursor: pointer;
}
.first-footer {
  padding: 55px 0;
}
/*second-footer*/
footer ul.ttm-recent-post-list > li {
  padding: 20px 0 !important;
  border-bottom: 1px solid #3b3b3b;
}

/** bottom-footer **/
.bottom-footer-text,
.second-footer {
  border-top: 1px solid #3b3b3b;
}

/* newsletter-form */
.newsletter-form {
  position: relative;
  margin-top: 20px;
}
.newsletter-form p {
  margin-bottom: 0;
}

.newsletter-form input[type="submit"] {
  position: absolute;
  content: "\e628";
  top: 0px;
  right: 0px;
  font-family: "themify";
  font-style: normal;
  font-weight: 400;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  font-size: 14px;
  color: #fff;
  z-index: 1;
  height: 47px;
  width: 55px;
  padding: 0;
  line-height: 47px;
  text-align: center;
  border: 0;
  cursor: pointer;
}
.newsletter-form i {
  padding-right: 1px;
  position: absolute;
  left: 15px;
  top: 17px;
}

/** SecondFooter **/
.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul > li {
  padding: 0 0 13px 0;
  position: relative;
}
.widget .widget-title {
  position: relative;
  margin-bottom: 0;
  display: inline-block;
  text-align: center;
  margin: auto;
  font-size: 24px;
  line-height: 40px;
  text-transform: capitalize;
  font-weight: 400;
}

/** footer-social-icons **/
.footer .social-icons li {
  min-width: auto;
  padding-bottom: 0 !important;
  margin: 0;
}
.footer .social-icons li > a {
  font-size: 16px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  display: block;
  transition: all 0.3s;
}

/** Footer-nav-menu **/
.copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  align-items: center;
}

.second-footer .widget-area:nth-child(2) .widget {
  border-left: 1px solid #3b3b3b;
  border-right: 1px solid #3b3b3b;
  padding: 0 25px;
}
/** Footer-nav-menu **/
.footer-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-menu li {
  display: inline-block;
  padding-left: 2px;
  padding-right: 16px;
  font-size: 14px;
  padding-bottom: 0;
}
.footer-nav-menu li:last-child {
  padding-right: 0;
}
.footer-nav-menu li:first-child {
  padding-left: 0;
}
ul.footer-nav-menu li:not(:last-child):after {
  position: absolute;
  content: "|";
  padding-left: 7px;
}
.widget ul#menu-footer-services li a {
  padding-left: 16px;
  position: relative;
}
.widget ul#menu-footer-services li a:before {
  font-family: "FontAwesome";
  content: "\f101";
  position: absolute;
  top: 0px;
  left: 0;
  line-height: 18px;
  font-size: 15px;
}
/* ===============================================
    GoTop BUtton
------------------------*/
#totop {
  font-weight: 900;
  color: #fff;
  display: none;
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 999;
  height: 0;
  width: 0;
  font-size: 0;
  text-align: center;
  padding-top: 3px;
  line-height: 34px;
  border-radius: 3px;
}
#totop.top-visible {
  height: 40px;
  width: 40px;
  font-size: 22px;
  display: inline;
}

/* ===============================================
    Page-Title-Row
------------------------*/

.ttm-page-title-row {
  position: relative;
  background-image: url(../images/breadcrumb.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
div.ttm-page-title-row > .ttm-bg-layer {
  background-color: rgba(24, 35, 51, 0.85);
}
.ttm-page-title-row {
  display: block;
  padding-top: 110px;
  padding-bottom: 110px;
}
.title-box .page-title-heading h1 {
  text-transform: uppercase;
  font-size: 42px;
  line-height: 48px;
  margin-bottom: 0px;
  display: inline-block;
  font-weight: 400;
}
.title-box .page-title-heading {
  position: relative;
}
.breadcrumb-wrapper span {
  font-weight: 400;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 20px;
}

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

/*------------------------------------------------------------------------------*/
/*  Contact_Us
/*------------------------------------------------------------------------------*/
.contact-detail-wrapper {
  padding: 50px 70px;
}
.map-section {
  margin-bottom: -200px;
  padding-top: 50px;
  padding-bottom: 50px;
}
#map_canvas {
  margin: 0;
  padding: 0;
  height: 100%;
}
.map-wrapper {
  height: 450px;
  border: 10px solid #fff;
}

/*------------------------------------------------------------------------------*/
/*  Error_page
/*------------------------------------------------------------------------------*/
.error-404 {
  position: relative;
}
.page-header {
  margin: 40px 0 20px;
}
section.error-404 {
  padding: 150px 0 150px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.error-404 .ttm-big-icon {
  font-size: 150px;
}
section.error-404 h1 {
  font-size: 95px;
  text-transform: uppercase;
  line-height: 100%;
}
section.error-404 .page-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* ===   link-list ==
------------------------*/
.list-style-disc {
  list-style-type: disc !important;
}
.list-style-decimal {
  list-style-type: decimal !important;
}
ul.ttm-list {
  list-style: none;
  padding: 0;
  padding-left: 0;
}
.ttm-list.ttm-list-style-icon li i {
  position: absolute;
  left: 0px;
  top: 5px;
}
.ttm-list.ttm-list-style-icon li {
  padding-left: 27px;
  list-style: none;
  position: relative;
  padding-bottom: 10px;
}
.ttm-list.ttm-list-textsize-medium li {
  font-size: 16px;
  padding-bottom: 9px;
}

/* ===   ttm-services-box-wrapper ==
------------------------*/

/* ===   project single ==
------------------------*/

.ttm-pf-single-detail-box {
  padding: 35px 35px 25px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
  -moz-box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
  box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
  border-bottom: 3px solid #000;
}
.ttm-pf-single-title h5 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 11px;
}
.ttm-pf-single-detail-box ul li {
  position: relative;
  display: block;
  padding: 15px 0 15px 0px;
  font-size: 15px;
  margin-left: 3px;
}
.ttm-pf-single-detail-box ul {
  margin: 0;
  padding: 0;
}
.ttm-pf-single-detail-box ul li i {
  margin-right: 10px;
  font-size: 16px;
}
.ttm-pf-single-detail-box ul li span {
  font-weight: 500;
  margin-right: 5px;
}
.ttm-pf-single-detail-box ul li:not(:last-child) {
  border-bottom: 1px solid #e8ecef;
}
.ttm-nextprev-bottom-nav .nav-next a:after,
.ttm-nextprev-bottom-nav .nav-previous a:after {
  position: absolute;
  font-size: 15px;
  top: 10px;
}
.ttm-nextprev-bottom-nav .nav-previous a {
  padding-right: 25px;
  padding-left: 44px;
}
.ttm-nextprev-bottom-nav .nav-previous a:after {
  content: "\f100";
  font-family: FontAwesome;
  left: 25px;
}
.ttm-nextprev-bottom-nav .nav-next a {
  padding-right: 50px;
  padding-left: 32px;
}
.ttm-nextprev-bottom-nav .nav-next a:after {
  content: "\f101";
  font-family: FontAwesome;
  right: 25px;
}
.ttm-pf-single-related-wrapper {
  margin-top: 50px;
}

/*------------------------------------------------------------------------------*/
/*  Classic_Blog
/*------------------------------------------------------------------------------*/
article.ttm-blog-classic {
  margin-bottom: 90px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
  -moz-box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
  box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
}
article.ttm-blog-classic.ttm-blog-single {
  box-shadow: none;
}
article.ttm-blog-classic.ttm-blog-single .ttm-blog-classic-content {
  padding: 0;
  margin-top: 20px;
}
article.ttm-blog-classic:last-child {
  margin-bottom: 15px;
}
article.ttm-blog-classic,
.post-featured-wrapper {
  position: relative;
}
.ttm-blog-classic .ttm-box-post-date .entry-month,
.ttm-blog-classic .ttm-box-post-date .entry-date {
  display: block;
  font-size: 22px;
  line-height: 18px;
}
article.ttm-blog-classic .ttm-blog-classic-content {
  padding: 35px 30px 20px;
  background: #fff;
  z-index: 1;
  position: relative;
}
.ttm-blog-single blockquote {
  display: block;
  padding: 35px 45px;
  position: relative;
  font-weight: 400;
  margin: 35px 0 35px 0;
  font-size: 24px;
  font-style: italic;
  line-height: 30px;
  font-family: "Nimbus Roman No9 L";
}
.ttm-blog-single blockquote:after {
  content: "\e67e";
  font-family: "themify";
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  position: absolute;
  left: 33px;
  top: 22px;
  opacity: 0.15;
  display: block;
}
.ttm-blog-single blockquote p {
  font-size: 14px;
  margin: 10px 0 0;
  font-family: "Poppins";
}
.ttm-blog-classic .post-meta {
  padding: 0px 10px;
  border-left: 2px solid;
  margin-bottom: 6px;
}
.ttm-blog-classic .post-meta .ttm-meta-line,
.ttm-blog-single-content .post-meta .ttm-meta-line {
  font-size: 13px;
  line-height: 15px;
  display: inline-block;
  padding-right: 25px;
  position: relative;
}
.ttm-blog-classic .post-meta .ttm-meta-line:not(:last-child):after,
.ttm-blog-single-content .post-meta .ttm-meta-line:not(:last-child):after {
  position: absolute;
  content: "";
  height: 4px;
  width: 4px;
  top: 5px;
  right: 10px;
  display: block;
}
.ttm-blog-classic .ttm-postcategory .ttm-meta-line a {
  position: absolute;
  top: 0;
  padding: 2px 15px;
  left: 35px;
  font-size: 13px;
}
.ttm-blog-classic .team-media-block ul li a {
  border-radius: 50%;
  border: 1px solid #e3e3e3;
  color: #252525;
}
.ttm-author-widget {
  padding: 30px 0 20px;
}
.widget-author .team-media-block ul li a {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}
.ttm-author-widget .author-widget_img {
  padding-bottom: 20px;
}
.ttm-blog-classic .post-meta .ttm-meta-line i,
.ttm-blog-single-content .post-meta .ttm-meta-line i {
  padding-right: 7px;
  font-size: 13px;
}
.ttm-blog-classic .entry-header .entry-title {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 10px;
}
.ttm-blog-classic .ttm-blogbox-footer-wrap {
  margin-top: 25px;
  clear: both;
  overflow: hidden;
  border-top: 1px solid #e3e3e3;
  padding: 40px 0;
}
.ttm-blogbox-footer-readmore {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  position: absolute;
  transition: all 0.5s;
}
.ttm-blog-classic .ttm-commentbox i {
  margin-right: 5px;
}
.ttm-blog-classic .ttm-post-featured,
.ttm-blog-classic .ttm-post-featured a img {
  overflow: hidden;
  transition: all 0.7s;
}
.ttm-blog-classic .ttm-post-featured a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.ttm-blog-classic:hover .ttm-post-featured a:after {
  opacity: 1;
}
.ttm-blog-classic:hover .ttm-post-featured a img {
  transform: scale(1.03) rotate(0.5deg);
}
.ttm-blog-single .ttm-blog-single-content blockquote {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
  -moz-box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
  box-shadow: 0 0 15px 0 rgba(40, 61, 88, 0.07);
  padding: 32px 60px 16px 40px;
  position: relative;
  font-weight: 500;
  margin: 35px 0 50px 0;
  font-style: normal;
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
  color: #6e6e6e;
  border-left: 4px solid;
}
.ttm-blog-single .ttm-blog-single-content blockquote:before {
  content: "\f10d";
  font-family: "FontAwesome";
  display: inline-block;
  position: absolute;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  line-height: 70px;
  top: auto;
  bottom: -30px;
  right: 35px;
  width: 70px;
  height: 70px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
}
.ttm-tag-list span a {
  padding: 7px 15px;
  background-color: #f7f9fe;
  display: inline-block;
  margin-right: 6px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 7px;
}
/* pagination */
.ttm-pagination {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
.ttm-pagination .page-numbers {
  width: 43px;
  height: 43px;
  line-height: 41px;
  text-align: center;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
  margin: 0 3px;
  padding: 0;
  -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;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 0px rgba(43, 52, 59, 0.18);
}
/*author*/
.ttm-author .author-avatar {
  float: left;
  margin-top: 10px;
  margin-right: 30px;
  width: 100px;
  height: 100px;
}
.ttm-author {
  padding: 40px 60px;
}
.ttm-author .author-info {
  margin-left: 120px;
}
/*blog-comment*/
.comments-area {
  margin-top: 50px;
  margin-bottom: 0;
}
.comments-area h2,
.comment-reply-title {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.comment-list li {
  position: relative;
  margin-top: 40px;
  border-bottom: 1px solid #e3e3e3;
}
.comment-list,
.comment-list .children {
  list-style-type: none;
  padding: 0;
}
.single-post .comments-area {
  margin-top: 50px;
  margin-bottom: 0;
}
.single-post .comments-area .comments-title {
  font-size: 33px;
  font-weight: 600;
}
.comment-body {
  margin-bottom: 30px;
  position: relative;
}
.comment-author {
  float: left;
  text-align: center;
  width: 80px;
  height: 80px;
  display: block;
  margin-right: 25px;
  overflow: hidden;
}
.comment-author img {
  max-width: 100%;
  height: auto;
}
.comment-box {
  margin-left: 110px;
}
.comment-meta {
  font-size: 14px;
  padding: 0;
  position: relative;
}
.comment-box a {
}
.comment-meta,
.comment-meta a {
  color: #6e6e6e;
  font-size: 13px;
}
.comment-meta .ttm-comment-owner h5,
.ttm-comment-owner {
  display: block;
  font-size: 19px;
  line-height: 22px;
  font-weight: 400;
  color: #182333;
  font-style: normal;
  font-family: "Poppins";
}
.comment-meta .ttm-comment-owner h5 span {
  font-size: 14px;
}
.comment-box .author-content-wrap p {
  margin-top: 10px;
}
.single article.post .comment-body p {
  margin-top: 10px;
  margin-bottom: 0;
}
.comment-list a.comment-reply-link {
  border: none;
  color: #fff;
  font-size: 13px;
  padding: 2px 30px 3px 17px;
  position: relative;
  margin-top: 5px;
  display: inline-block;
}
.comment-list a.comment-reply-link:after {
  position: absolute;
  top: 6px;
  font-family: "themify";
  content: "\e649";
  font-weight: 400;
  display: inline-block;
  margin-right: 0.2em;
  text-align: center;
  opacity: 1;
  line-height: 22px;
  font-size: 10px;
  margin-left: 8px;
}
.comments-area .comment-respond {
  padding-top: 10px;
}
#respond .comment-reply-title {
  margin: 0 0 20px !important;
}
.comments-area .comment-form textarea,

/*------------------------------------------------------------------------------*/
/*  Elements_page
/*------------------------------------------------------------------------------*/
.element-row {
  position: relative;
}
.element-row .section-title h2.title {
  margin-top: 22px;
  margin-bottom: 25px;
}
.element-row .ttm-row {
  padding: 50px 0;
}

/** element-progressbar **/
.ttm-progress-bar .progress-bar.progress-bar-color-bar_blue,
.ttm-progress-bar .progress-bar-color-bar_blue.progress-bar:before {
  background-color: #0074cc;
}
.ttm-progress-bar .progress-bar.progress-bar-color-bar_green,
.ttm-progress-bar .progress-bar-color-bar_green.progress-bar:before {
  background-color: #5bb75b;
}
.ttm-progress-bar .progress-bar.progress-bar-color-bar_pink,
.ttm-progress-bar .progress-bar-color-bar_pink.progress-bar:before {
  background-color: #f4524d;
}
.ttm-progress-bar .progress-bar.progress-bar-color-bar_turquoise,
.ttm-progress-bar .progress-bar-color-bar_turquoise.progress-bar:before {
  background-color: #00c1cf;
}
.ttm-progress-bar .progress-bar.progress-bar-color-bar_yellow,
.ttm-progress-bar .progress-bar-color-bar_yellow.progress-bar:before {
  background-color: #ffb300;
}

/** icon_element-style-fill **/
.ttm-icon.ttm-icon_element-fill {
  color: #fff;
}
.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-yellow {
  background-color: #ffb300;
}
.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-orange {
  background-color: #ff4c00;
}
.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-red {
  background-color: #ff0a26;
}
.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-dark_pink {
  background-color: #ff0061;
}
.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-mulled_wine {
  background-color: #50485b;
}
.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-aqua {
  background-color: #39c8df;
}
.ttm-icon.ttm-icon_element-fill.ttm-icon_element-color-aqua {
  color: #39c8df;
}

/** icon_element-style-border **/
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-mulled_wine {
  border-color: #50485b;
  color: #50485b;
}
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-blue {
  border-color: #5472d2;
  color: #5472d2;
}
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-white {
  border-color: #fff;
  color: #fff;
}
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-yellow {
  border-color: #ffb300;
  color: #ffb300;
}
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-orange {
  border-color: #ff4c00;
  color: #ff4c00;
}
.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-red {
  border-color: #ff0a26;
  color: #ff0a26;
}

/** icon_element-bgcolor **/
.element-style .icon-box-wrapper {
  padding-top: 15px;
}
.element-style .row .col-md-6 .featured-icon-box:not(:last-child) {
  padding: 0;
  margin-bottom: 40px;
}

/** team-member-details **/
.tm-team-member-single-content-wrapper {
  border: 1px solid #e3e3e3;
  padding-top: 50px;
}
.ttm-team-member-single-title {
  font-size: 32px;
  line-height: 37px;
  margin-bottom: 10px;
}
.ttm-team-member-single-list p {
  font-size: 15px;
}
.ttm-team-member-single-position {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}
.ttm-team-details-list {
  margin: 0;
  padding: 0;
}
.ttm-team-details-list li {
  width: 50%;
  float: left;
  padding-bottom: 10px;
}
.team-media-block ul li a {
  width: 35px;
  height: 35px;
  font-size: 15px;
  line-height: 35px;
  background-color: #fff;
  display: block;
  text-align: center;
}
.member-info-box {
  padding: 30px;
}
.timing-box {
  position: relative;
}
.timing-box i {
  font-size: 25px;
  position: absolute;
  left: 0;
  font-weight: normal;
}
.timing-box h5 {
  padding-left: 35px;
}
ul.timing-list,
ul.info-list {
  padding: 0;
  margin: 0;
}
ul.timing-list li {
  padding: 2px 0;
  font-size: 15px;
  line-height: 23px;
}
ul.timing-list li span {
}
ul.timing-list li span.day {
}
ul.timing-list li span.time {
  float: right;
}

ul.info-list li {
  padding: 15px 0;
  font-size: 15px;
  line-height: 23px;
}
ul.info-list li:first-child {
  padding-top: 0;
}
ul.info-list li:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
ul.info-list li:last-child {
  padding-bottom: 0;
}
ul.timing-list,
ul.info-list {
  padding-top: 10px;
}
ul.info-list li i {
  margin-right: 10px;
  font-size: 15px;
}
.member-contact-form {
  padding: 40px;
}

/*** Color Switcher Style
==================================================================== ***/
.cmt_floting_customsett {
  position: fixed;
  top: 50%;
  right: 0;
  padding: 3px 0 10px;
  margin: -89px 0 0;
  background-color: #fff;
  box-shadow: 0 6px 12px rgb(0 0 0 / 25%);
  z-index: 99999;
}
.tmtheme_fbar_icons {
  display: block;
  position: relative;
  width: 55px;
  height: 45px;
  line-height: 52px;
  text-align: center;
}
.tmtheme_fbar_icons i {
  display: inline-block;
  vertical-align: middle;
  transition: 0.3s;
  font-size: 21px;
  color: #232323;
}
.tmtheme_fbar_icons > span {
  display: block;
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0 6px 12px rgb(0 0 0 / 25%);
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  color: #232323;
  transform: translateX(-5px);
  transition: 0.5s ease;
  padding: 0 20px;
}
.tmtheme_fbar_icons > span > span {
  padding-left: 5px;
}
.tmtheme_fbar_icons > span:after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -10px;
  right: -15px;
  width: 15px;
  background-color: #fff;
  height: 55px;
}
.tmtheme_fbar_icons:hover > span {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.tm-desctext {
  position: absolute;
  top: 30px;
  background-color: #fff;
  max-width: 400px;
  right: 30px;
  padding: 30px 50px 23px 30px;
  text-align: left;
}
.tm-desctext:before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffb120;
}
.tm-iocnbox-btn {
  font-size: 18px;
  line-height: 26px;
  margin-top: 15px;
}

/* 12-06-2024 */
#site-header-menu #site-navigation .menu > ul > li.active > a,
#site-header-menu #site-navigation .menu > ul > li:hover > a {
  color: #043690;
}
.ttm-header-style-01 .site-branding,
.ttm-header-style-01 #site-header-menu #site-navigation .menu > ul > li > a,
.ttm-header-style-01 .ttm-header-icons,
.ttm-header-style-01 .ttm-header-icon {
  font-weight: 400;
  /* letter-spacing: 1px; */
}
header .container {
  max-width: 95%;
}
#site-header-menu #site-navigation .menu > ul > li.logo-after-this {
  margin-right: 150px;
}

/* 13-06-2024 */
rs-slides,
rs-slide,
rs-slide:before {
  height: 600px !important;
}
rs-module-wrap {
  height: 600px !important;
}
.rev_slider_1_1_height {
  height: 600px !important;
}
rs-fullwidth-wrap {
  position: relative;
  width: 100%;
  height: 600px !important;
  display: block;
}
.about-img {
  position: relative;
}
.featured-imagebox .featured-content .featured-title h5 a {
  color: #2c2c2c;
  font-size: 20px;
}
.featured-imagebox-post
  .featured-content.featured-content-post
  .post-footer
  span
  a {
  font-size: 15px;
  color: #5e5e5e;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-slide .owl-controls .owl-nav div.owl-prev,
.blog-slide .owl-controls .owl-nav div.owl-next {
  opacity: 1;
  /* background: red; */
  border: 1px solid white;
  color: white;
}
.testimonial-slide .owl-controls .owl-nav div.owl-prev,
.testimonial-slide .owl-controls .owl-nav div.owl-next {
  border: 1px solid white;
  color: white;
}
.blog-slide .owl-controls .owl-nav div.owl-prev::before,
.blog-slide .owl-controls .owl-nav div.owl-next::before,
.testimonial-slide .owl-controls .owl-nav div.owl-prev::before,
.testimonial-slide .owl-controls .owl-nav div.owl-next::before {
  color: white;
}
.blog-slide .owl-controls .owl-nav div.owl-prev {
  left: -35px;
}
.blog-slide .owl-controls .owl-nav div.owl-next {
  right: -35px;
}
.team-slide .owl-controls .owl-nav div.owl-prev,
.team-slide .owl-controls .owl-nav div.owl-next,
.services-slide .owl-controls .owl-nav div.owl-prev,
.services-slide .owl-controls .owl-nav div.owl-next {
  opacity: 1;
  /* background: red; */
  border: 1px solid black;
  color: black;
}
.service-slide .owl-controls .owl-nav div.owl-prev::before,
.service-slide .owl-controls .owl-nav div.owl-next::before {
  color: black;
}
.team-slide .owl-controls .owl-nav div:hover,
.services-slide .owl-controls .owl-nav div:hover {
  background-color: #bf9456;
  border-color: #bf9456 !important;
}
.team-slide .owl-controls .owl-nav div.owl-prev::before,
.team-slide .owl-controls .owl-nav div.owl-next::before {
  color: black;
}
.team-slide .owl-controls .owl-nav div.owl-prev,
.services-slide .owl-controls .owl-nav div.owl-prev {
  left: -50px;
}
.team-slide .owl-controls .owl-nav div.owl-next,
.services-slide .owl-controls .owl-nav div.owl-next {
  right: -50px;
}

.bg-gold-light {
  background: #f8f7f3;
}
.featured-imagebox.style1 .featured-thumbnail img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}
.process-section .container-fluid {
  padding: 0 50px;
}
.pricelist-section .container-fluid {
  padding: 0px 70px;
}
.pricelist-section table {
  font-size: 13px;
}
.pricelist-section table td, .pricelist-section table th {
  padding: 5px 5px;
  font-size: 12px;
}
.ttm-post-thumbnail img {
  height: 290px;
  width: 100%;
  object-fit: cover;
}
.ttm-bgcolor-skincolor {
  background-color: #043690 !important;
}
.services-slide {
  margin-top: -160px !important;
}

.clients-slide .owl-stage {
  display: flex;
  align-items: center;
}
/* .sponsor-section{
    padding-bottom: 0;
} */

.world-critical {
  width: 190px !important;
 margin-top: -165px !important;
}

/* Media query for smaller screens (example: tablets and below) */
@media screen and (max-width: 768px) {
  .world-critical {
    width: 120px !important;
    margin-top: -95px !important;
  }
}

/* Media query for very small screens (example: smartphones) */
@media screen and (max-width: 480px) {
  .world-critical {
    width: 120px !important;
    margin-top: -95px !important;
  }
}

/* Media query for larger screens (example: desktops) */
/*@media screen and (min-width: 1024px) {*/
/*  .world-critical {*/
/*    width: 200px !important;*/
/*  }*/
/*}*/

.client-box .client img {
  width: 160px;
}
rs-layer-wrap,
rs-mask-wrap,
rs-cbg-mask-wrap {
  top: 158px !important;
}


/*.rs-parallax-wrap {*/
/*  left: 81px !important;*/
/*}*/
rs-fullwidth-wrap .ttm-btn {
  margin: 115px 15px 0px 20px !important;
}
.header-btn .ttm-btn {
  margin: 0 !important;
  margin-left: 10px !important;
}
rs-module .rs-layer .slider-heding-title-font {
  line-height: 120px !important;
}

/* 28-06-2024 */
sup {
  font-size: 30px;
  top: 4px;
}
.copyright a {
  margin-right: 2px;
}
.about-float img {
  float: left;
  width: 50%;
  padding-right: 25px;
  padding-bottom: 20px;
}
.about-float .section-title {
  margin-bottom: 0;
}

.contact-section-wrapper {
  margin-right: -400px;
  margin-top: -130px;
}
.contact-section-wrapper .spacing-10 {
  padding: 40px 400px 50px 50px;
}
.contact-section-wrapper .ttm-quote-form .form-group {
  margin-bottom: 20px;
}
.contact-section-wrapper .ttm-quote-form .form-group .form-control {
  border: none;
  background-color: #fff;
  padding: 12px 15px;
}
.contact-section img {
  object-fit: cover;
}
.contact-section-wrapper .spacing-10 .ttm-btn {
  color: black;
}
.contact-section-wrapper .spacing-10 .title {
  font-size: 35px;
}
.contact-section-wrapper .spacing-10 .section-title {
  margin-bottom: 25px;
}
.contact-detail h2 {
  font-size: 40px;
  padding-top: 0 !important;
}
.textwidget.widget-text p {
  text-align: justify;
}
.sponsor-dec .client img {
  height: 12pc;
  width: 100%;
  border-radius: 11px;
  padding: 17px;
  margin: 12px 0;
  object-fit: contain;
  background: white;
  box-shadow: rgb(118 118 118 / 39%) 0px 5px 15px !important;
}

.modal-backdrop.show {
  opacity: 0 !important;
}
.modal-backdrop {
  z-index: 9 !important;
}
.modal {
  background: #0000007a !important;
}
.modal-xl {
  max-width: 1100px;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-scrollable {
  height: calc(100% - 3.5rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.team-detail-img img {
  float: left;
  height: 15pc;
  margin: 10px 18px 5px 10px;
  object-fit: cover;
  border-radius: 10px;
}
.team-media-block ul li a {
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  background-color: #063891;
  display: block;
  border-radius: 50%;
  color: #ffc167 !important;
  text-align: center;
}
.team-media-block {
  position: absolute;
  right: 3pc;
  top: 0;
}

.event-list .featured-imagebox.style1 .featured-thumbnail img {
    height: 15pc;
    object-fit: cover;
    width: 100%;
}
.event-list  .featured-imagebox.style1 .featured-content {
    padding: 15px 13px;
    text-align: center;
}
.event-list .featured-imagebox-post .featured-content .featured-title h5{
    margin-bottom: 8px;
}
.event-list .featured-imagebox-post .ttm-post-thumbnail {
    overflow: hidden;
    border: 8px solid rgba(255,255,255,1);
    border-bottom: 0;
}
.event-list .featured-imagebox-post.style1 {
    margin-bottom: 25px;
}
.block-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-sideimg {
    height: 90px!important;
    width: 105px!important;
    border-radius: 5px;
}
ul.ttm-recent-post-list>li {
    padding: 15px 10px !important;
    border-bottom: 1px solid #e3e3e3;
}
.ttm_single_image-wrapper img {
    border-radius: 10px;
    width: 100%;
    height: 25pc;
    object-fit: contain;
    background: #8db5ff26;
}
/* multiple upload image */
.img-thumbs {
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  margin: 1.5rem 0;
  padding: 0.75rem;
}
.img-thumbs-hidden {
  display: none;
}

.wrapper-thumb {
  position: relative;
  display:inline-block;
  margin: 1rem 0;
  justify-content: space-around;
}

/* image upload custom */
.img-preview-thumb {
  background: #fff;
  border: 1px solid none;
  border-radius: 0.25rem;
  box-shadow: 0.125rem 0.125rem 0.0625rem rgba(0, 0, 0, 0.12);
  margin-right: 1rem;
  max-width: 140px;
  padding: 0.25rem;
}

.remove-btn{
  position:absolute;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:.7rem;
  top:-5px;
  right:10px;
  width:20px;
  height:20px;
  background:white;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
}

.remove-btn:hover{
  box-shadow: 0px 0px 3px grey;
  transition:all .3s ease-in-out;
}
#sidebar {
  position: absolute;
  right: 6pc;
  width: 25pc;
}
#sidebar.fixed {
  position: fixed;
  top: 7pc;
  z-index: 0;
}
#footer {
  z-index: 1;
  position: inherit;
}
.truncate-lines {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ttm-blog-classic .ttm-post-featured img {
  object-fit: contain;
  width: 100%;
  background: #c5daff63;
  height: 20pc;
  border-radius: 10px;
}
.ttm-box-desc-text p {
  text-align: justify;
}
.sidebar .widget-area .widget {
  padding: 5px 25px !important;
}
footer .widget .widget-title{
  margin-bottom: 10px;
}

.d-flex-reverse {
  display: flex !important;
  flex-direction: row-reverse;
}

.bg-gray {
  background: #c0c0c02b;
}
.ttm-tabs.tabs-style-03 > ul.tabs li a {
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 65px;
  padding: 13px 20px;
  /* top: 10px; */
  margin-bottom: -1px;
  line-height: 6px;
  width: auto;
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-family: "Nimbus Roman No9 L";
  border-radius: 0;
  text-transform: capitalize;
  font-weight: 400;
  color: inherit;
  transition: all .5s;
  background: #043690;
  clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
}
.ttm-tabs.tabs-style-03 > ul.tabs li.active a{
  background-color: #bf9456;
}
.ttm-tabs.tabs-style-03 > ul.tabs li.active {
  color: white;
  /* border-color: #bf9456; */
}
.ttm-tabs.tabs-style-03 > ul.tabs li.active:hover a {
  color: white !important;
}
.ttm-tabs.tabs-style-03 > ul.tabs li a i {
  top: 2px;
  margin-right: 5px;
}
.ttm-tabs.tabs-style-03 > ul.tabs li {
  width: 20%;
  padding: 0;
  color: white;
  margin: 0 10px;
  /* background: #043690;
  clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%); */
}
.ttm-tabs.tabs-style-03 > ul.tabs{
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  margin-bottom: 40px;
}
.icon-custom i {
  font-size: 35px !important;
  top: 0px !important;
}
/* .icon-custom a {
  padding: 16px 20px 27px !important;
} */
.content-inner {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 15px;
}
.ttm-tabs .content-tab .content-inner p {
  font-size: 16px;
  text-align: justify;
  /* font-weight: 500; */
}
.ttm-tabs .content-tab .content-inner ul li {
  font-size: 16px;
  text-align: justify;
  /* font-weight: 500; */
}
.ttm-tabs .content-tab .content-inner p:last-child{
  margin-bottom: 0;
}
.ttm-header-style-01 #site-header-menu #site-navigation .menu > ul > li > a i {
  font-size: 12px;
  position: relative;
  top: -1px;
  /* right: 0px; */
}
ul.number-style li {
  list-style: decimal;
}
.criteria p,.criteria ul li {
  font-size: 15px;
  /* font-weight: 600; */
}
.mcqs-form .form-control-sm {
    padding: 5px 10px;
}
.mcqs-form label {
  font-size: 16px;
  /* font-weight: 600; */
}
.mcqs-form .form-group {
  margin-bottom: 10px;
}
.team-section .spacing-4 {
  padding-left: 0;
  padding-right: 0;
}
.section-title sup {
  top: 0;
  font-size: 23px;
  left: -5px;
}
.ttm-list.ttm-list-style-icon.style2 li i {
  width: 20px;
  height: 20px;
  line-height: 23px;
  background: #043690;
  border-radius: 50%;
  color: white !important;
  text-align: center;
}
.ttm-list.ttm-list-style-icon.style2 .ttm-list-li-content {
  padding-top: 2px;
}
rs-slide::before {
  content: '';
  position: absolute;
  height: 100% !important;
  width: 100%;
  background: #00000082;
  z-index: 9;
  visibility: visible;
}
#totop:hover {
  color: white !important;
}
.mcqs-form textarea {
  height: 109px;
}
.mcqs-form .custom-file-label {
  height: 34px;
  background: none;
}
.mcqs-form .custom-file-label::after{
  height: 34px;
border-bottom: 1px solid #ced4da;
}
.mcqs-form .form-control:disabled, .mcqs-form .form-control[readonly] {
  background-color: unset;
}

.form-check-input:checked {
  background-color: #5e72e4 !important;
  border-color: #5e72e4 !important; 
}

/*Radio buttons*/


.mcqs-form input[type="radio"] {
  display: none;
}

.mcqs-form input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 4px;
  margin-right: 10px;
  background-clip: content-box;
  border: 2px solid #bbb;
  background-color: #e7e6e7;
  border-radius: 50%;
}

.mcqs-form input[type="radio"]:checked + label:before {
  background-color: #bf9456;
  border: 2px solid #bf9456;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(190 147 86 / 30%);
}

.mcqs-form label {
  display: flex;
  align-items: center;
}
.ttm-header-style-01 .ttm-topbar-wrapper.fixed-header {
  z-index: 111 !important;
  background: #043690 !important;
}
.site-header-menu-inner.fixed-header {
  top: 45px !important;
}
.question-card {
  padding: 30px;
  box-shadow: rgb(0 0 0 / 18%) 0px 0px 15px;
  margin-top: 25px;
  margin-bottom: 35px;
}
.question-card hr {
  margin-top: 10px;
  margin-bottom: 15px;
  border-top: 1px solid rgb(0 0 0 / 28%);
}
.question label {
  font-weight: 500;
  color: #000000cf;
}
.question .col-lg-1 {
  max-width: 10%;
}
.frame {
  margin-bottom: 50px;
}
.frame ul{
  justify-content: center;
}
.frame ul li button {
  font-size: 25px;
  float: left;
  background: #eee;
  text-align: center;
  border: none;
  cursor: pointer;
  padding: 9px 22px !important;
  text-transform: uppercase;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.42857143;
  color: #333;
  font-weight: bold;
  margin: 3px;
  transition: 0.3s;
}
.frame ul li button.active, .frame ul li button.active1 {
  color: #fff;
  background: #ff7200 !important;
}
.frame ul li button:focus {
  border: none;
  outline: none;
}
.frame1 ul li button {
  font-size: 16px;
  padding: 9px 22px !important;
  background: #ffffff;
}

.gallery-area .featured-imagebox.style2:before {
  bottom: 14px !important;
}
.dbl-bg {
  position: relative;
}
.dbl-bg::before {
  top: 0px;
  content: '';
  position: absolute;
  background: #043690;
  width: 100%;
  height: 52%;
}
.event_reg_btn {
  float: right;
  margin-top: 0;
  position: relative;
  top: -89px;
}
.event-title {
  padding: 20px 20px 0 20px;
}
.event-address {
  display: flex;
  font-size: 15px;
}
.event-address .time {
  margin-right: 19px;
}
.event-address i {
  color: #bf9456;
  font-size: 18px;
  margin-right: 7px;
}
.event_d_card {
  border: 0;
  border-radius: 10px;
  margin-bottom: 25px;
}
.event_d_card1 {
  border: 0;
  padding: 20px;
  border-radius: 10px;
}
.video-box .featured-imagebox.style2:before{
  opacity: 0;
  display: none;
}
#site-header-menu #site-navigation .menu > ul > li .ttm-btn {
  display: none;
}
.home-a-title {
  font-size: 36px !important;
}
.featured-imagebox .featured-content .featured-title h5 a sup {
  left: -3px;
  top: -5px;
  font-size: 18px;
}
#site-header-menu #site-navigation .menu ul > li ul li > a sup {
  top: 5px;
  font-size: 27px;
  left: -3px;
}
.sidebar .widget ul >li a.active {
  color: #bf9456;
}
.widget-Categories ul li a.active:before {
  color: #bf9456;
}
.book-hotel a img {
  position: fixed;
  z-index: 999;
  width: 80px;
  right: 20px;
  bottom: 30%;
}
button.btn.btn-primary {
  background: #bf9456;
  border-color: #bf9456;
}
.events-img img {
  object-fit: cover;
  width: 100%;
  height: 22pc;
  border-radius: 10px;
  margin-top: 15px;
}
img.why-img {
  width: 95%;
  border-radius: 10px;
  object-fit: cover;
}
.why-attend .testimonial-content p {
  font-size: 16px !important;
  line-height: 26px !important;
}
.about-weare-section img {
  border-radius: 10px;
}
.why-attend img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}
.why-attend .ttm-list.ttm-list-style-icon.style2 li i{
  background: white;
  color: #043690 !important;
}
/*.testimonial-slide2 .owl-controls .owl-nav div.owl-prev, .testimonial-slide .owl-controls .owl-nav div.owl-next {*/
/*  border: 1px solid black;*/
/*  color: black;*/
/*}*/
.testimonial-slide2 .owl-controls .owl-nav div.owl-prev:hover, .testimonial-slide .owl-controls .owl-nav div.owl-next:hover{
  border: 1px solid #bf9456;
}
.testimonial-slide2 .owl-controls .owl-nav div.owl-prev::before{
  /*border: 1px solid black;*/
  color: black;
}
.testimonial-slide .owl-controls .owl-nav div.owl-next::before{
  /*border: 1px solid black;*/
  /*color: black;*/
}

.font-14{
  font-size: 14px !important;
}
.pricelist-section .owl-prev,.pricelist-section .owl-next {
    border-color: black !important;
}
.pricelist-section .owl-controls .owl-nav div.owl-next::before{
        color: black;
}

.scroll-blue::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.scroll-blue::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.scroll-blue::-webkit-scrollbar-thumb {
  background-color: #043690;
}

.hide-header-footer header,
.hide-header-footer footer {
    display: none !important;
}