@font-face {
  font-family: Aeonik-Regular;
  src: url(../fonts/Aeonik-Regular.otf);
}
@font-face {
  font-family: Truculenta-Bold;
  src: url(../fonts/Truculenta-Bold.ttf);
}
@font-face {
  font-family: Truculenta-Medium;
  src: url(../fonts/Truculenta-Medium.ttf);
}
@font-face {
  font-family: Truculenta-Regular;
  src: url(../fonts/Truculenta-Regular.ttf);
}
@font-face {
  font-family: Truculenta-SemiBold;
  src: url(../fonts/Truculenta-SemiBold.ttf);
}
@font-face {
  font-family: Truculenta-Light;
  src: url(../fonts/Truculenta-Light.ttf);
}
@font-face {
  font-family: Mulish-Bold;
  src: url(../fonts/Mulish-Bold.ttf);
}
@font-face {
  font-family: Mulish-Regular;
  src: url(../fonts/Mulish-Regular.ttf);
}
body {

}

a {
  color: #cda45e;
}

a:hover {
  color: #d9ba85;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {

}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: #cda45e;
  border-bottom-color: #cda45e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 995;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  color: #f07d2d;
  transition: all 0.4s;
  border: 2px solid #f07d2d;
}

.back-to-top i:hover {
  background: #f07d2d;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info {
  color: white;
}

#topbar .contact-info i {
  color: #d9ba85;
  padding-right: 4px;
}

#topbar .contact-info i + i {
  margin-left: 15px;
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cda45e;
}

#topbar .languages ul a {
    color: #fff;
    font-family: Truculenta-Light;
    font-size: 18px;
    padding-right: 20px;
}

#topbar .languages ul li + li {
  padding-left: 10px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  border:none;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  top: 35px;
}
#header .container {
    background-color: #000;
    padding: 10px 30px 11px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#header.header-scrolled {
  top: 0;
  background: #01060a;
  border-bottom: 1px solid #01060a;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-width: 128px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding-left: 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
  font-family: Mulish-Regular;
  text-transform: capitalize;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.nav-menu .book-a-table a {
  border: 2px solid #cda45e;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-menu .book-a-table a:hover {
  background: #cda45e;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #1a1814;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #cda45e;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 15px;
    right: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #e11305;
    border: none;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav .mobile-nav-close {
  margin: 0 15px 0 auto;
  display: block;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-nav .mobile-nav-close:hover {
  color: #fff;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  transition: 0.3s;
  font-size: 16px;
  font-family: Truculenta-Medium;
  text-transform: capitalize;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #cda45e;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .book-a-table a {
  color: #fff;
  border: 2px solid #cda45e;
  border-radius: 50px;
  margin: 20px 0 0 0;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  display: inline-block;
}

.mobile-nav .book-a-table a:hover {
  background: #cda45e;
  color: #fff;
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 750px;
  background: url("../img/tts-hero-bg.png") top right;
  background-size: cover;
  position: relative;
  padding: 0;
  background-position: bottom;
}

@media only screen and (max-width: 600px) {
  #hero {
    height: 500px;
  }
}


#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 0px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

#hero h1 {
    margin: -4.6em 0em 0em 0em;
    font-size: 46px;
    font-weight: 700;
    line-height: 50px;
    color: #fff;
    font-family: Mulish-Bold;
}

#hero h1 span {
  color: #cda45e;
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}

#hero .btns {
  margin-top: 30px;
}

#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #cda45e;
}

#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #cda45e;
  color: #fff;
}

#hero .btn-book {
  margin-left: 15px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #cda45e;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #cda45e;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/about-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .about-img {
  position: relative;
  transition: .5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: '';
  border-left: 5px solid #cda45e;
  border-top: 5px solid #cda45e;
  transition: .5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: '';
  border-right: 5px solid #cda45e;
  border-bottom: 5px solid #cda45e;
  transition: .5s;
}

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

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #cda45e;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #cda45e;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
}

.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #cda45e;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
}

.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  margin-left: 85px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................"
 "...................................................................."
 "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: #cda45e;
}

.menu .menu-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: #cda45e;
}

.menu .menu-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid #cda45e;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #cda45e;
}

.specials .nav-link.active {
  color: #1a1814;
  background: #cda45e;
  border-color: #cda45e;
}

.specials .nav-link:hover {
  border-color: #cda45e;
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.specials .details p {
  color: #aaaaaa;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cda45e;
}

.events .event-item .price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #cda45e;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .owl-nav, .events .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.events .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.events .owl-dot.active {
  background-color: #cda45e !important;
}

@media (min-width: 992px) {
  .events .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-webkit-input-placeholder, .book-a-table .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::-moz-placeholder, .book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:-ms-input-placeholder, .book-a-table .php-email-form textarea:-ms-input-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::-ms-input-placeholder, .book-a-table .php-email-form textarea::-ms-input-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder, .book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus, .book-a-table .php-email-form textarea:focus {
  border-color: #cda45e;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #cda45e !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.chefs .member .social a:hover {
  color: #cda45e;
}

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #cda45e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}

.contact .info .open-hours, .contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input:-ms-input-placeholder, .contact .php-email-form textarea:-ms-input-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::-ms-input-placeholder, .contact .php-email-form textarea::-ms-input-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #cda45e;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0c0b09;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #cda45e;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cda45e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #cda45e;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #28251f;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #28251f;
  color: white;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #cda45e;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}






#ttsslide1 {
  margin-top: -24%;
  margin-bottom: 5%;
}

#ttsslide1 .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    
}
#ttsslide1 .tts-home-img-center {
  text-align: center!important;
}
#ttsslide1 .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 180px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    text-align: left;
}
#ttsslide1 .carousel-caption h6 {
  font-family: Mulish-Bold;
  font-size: 21px;
  text-transform: capitalize;
  line-height: 28px;
  margin-bottom: 10px;
  position: relative;
  margin-left: 30px;
}
#ttsslide1 .carousel-caption h6:before {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #000;
  left: -30px;
  top: 51%;
  position: absolute;
}


#ttsslide1 .carousel-caption h5 {
  font-family: Mulish-Bold;
  font-size: 42px;
  text-transform: capitalize;
  line-height: 28px;
  margin-bottom: 15px;
  margin-top: 15px;
}
#ttsslide1 .carousel-caption p {
  font-family: Mulish-Bold;
  font-size: 20px;
  text-transform: capitalize;
  line-height: 28px;
  margin-bottom: 10px;
}
#ttsslide1 .carousel-inner a {
    float: right;
    background-color: #000000;
    border:1px solid #000;
    text-align: left;
    padding: 10px 25px 10px  25px;
    border:none;
    font-family: Mulish-Bold;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 30px;
}

#ttsslide1 .carousel-inner a:hover {
  background-color: #f07d2d;
  border:1px solid #fff;
}

#ttsslide1 .carousel-inner a img {
  max-width: 50px;
  margin-left: 20px;
}
#ttsslide1 .carousel-control-next {
    position: absolute;
    top: 0px;
    bottom: 150px;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
}
#ttsslide1 .carousel-control-prev {
    position: absolute;
    top: 0px;
    bottom: 0px;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
}
#ttsslide1 .bx {
  color: #fff;
  font-size: 42px;
}

#ttsslide1 .carousel-indicators li {
  display: none;
}
#ttsslide1 .carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: none;
    border-bottom: none;
    opacity: 1;
    transition: opacity .6s ease;
    margin-bottom: -110px;
}



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

#ttsslide1 {
    margin-top: 0%;
}
#ttsslide1 .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 0px;
  left: 15%;
  z-index: 10;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #000;
  text-align: center;
}
#ttsslide1 .carousel-caption p {
    font-family: Truculenta-SemiBold;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 22px;
    margin-bottom: 0px;
}
#ttsslide1 .carousel-caption h5 {
    font-family: Truculenta-SemiBold;
    font-size: 19px;
    text-transform: capitalize;
    line-height: 28px;
    margin-bottom: 0px;
    margin-top: 5px;
}
#ttsslide1 .carousel-caption h6 {
    font-family: Truculenta-SemiBold;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 20px;
    margin-bottom: 0px;
}
#ttsslide1 .carousel-control-next, .carousel-control-prev {
  bottom: 0px;
  width: 22%;
}
#ttsslide1 .carousel-control-next, .carousel-control-prev .bx {
    color: #000;
    font-size: 22px;
}


}




.tts-home-sec-2 {
  background-image: url(../img/home-about-us-welcome.png);
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 5%;
  padding-bottom: 20%;
}


.tts-home-sec-2-sub-1 {
  background-color: rgba(255,255,255, 0.8);
  padding: 10px;
}

.tts-home-sec-2-sub-1 h4 {
    margin: 0;
    font-size: 24px;
    color: #000;
    font-family: Mulish-Bold;
    text-transform: capitalize;
    position: relative;
}
.tts-home-sec-2-sub-1 h4::before {
    content: "";
    display: block;
    width: 49px;
    height: 2px;
    background: #000;
    left: -50px;
    top: 51%;
    position: absolute;
} 

.tts-home-sec-2-sub-1 h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Mulish-Bold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}
.tts-home-sec-2-sub-1 p {
    margin: 0;
    font-size: 15px;
    color: #393939;
    font-family: Mulish-Regular;;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
}

.tts-home-sec-2-sub-1 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 12px 25px 12px 25px;
    border: none;
    font-family: Mulish-Bold;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 30px;
    border-top-left-radius: 0px!important;
    width: 40%;
    margin-top: 1em;
}
.tts-home-sec-2-sub-1 .btn-success img {
  float: right;
  margin-top: 6px;
}

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

.tts-home-sec-2 {
    background-image: none;
    padding-top: 3em;
    padding-bottom: 3em;
}
.tts-home-sec-2-sub-1 h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 42px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 0.3em;
}
.tts-home-sec-2-sub-1 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 7px 25px 7px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 18px;
    border-radius: 30px;
    border-top-left-radius: 0px !important;
    width: auto;
    margin-top: 0.5em;
}

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

.tts-home-sec-2 {
    background-image: none;
    padding-top: 3em;
    padding-bottom: 3em;
}

}

.tts-our-strength-1 h3 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}
.tts-our-strength-1 p {
    margin: 0;
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
}



.tts-home-sec-4 {
  padding-bottom: 4em;
  padding-top: 4em;
  margin: 0em 6em 0em 6em;
  background-image: url(../img/tts-bg-color-section.png);
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
}


.tts-home-sec-3 {
  padding-top: 3em;
}


.tts-home-sec-3-box-1 {
    background-image: url(../img/tts-sec-box-bg-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    height: 352px;
    padding: 2em 2em 2em 2em;
    position: relative;
}


.tts-home-sec-3-box-2 {
    background-image: url(../img/tts-sec-box-bg-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    height: 430px;
    padding: 2em 2em 2em 2em;
    position: relative;
}


.tts-home-sec-3-box-3 {
    background-image: url(../img/tts-sec-box-bg-3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    height: 355px;
    padding: 2em 2em 2em 3em;
    position: relative;
}


.tts-home-sec-3-box-4 {
    background-image: url(../img/tts-sec-box-bg-4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    height: 419px;
    padding: 2em 2em 2em 4em;
    position: relative;
}


 .tts-home-sec-3-box-1-content {
    position: absolute;
    bottom: 0;
    padding-bottom: 2em;
 }
 .tts-home-sec-3-box-1-content h4 {
    margin: 0;
    font-size: 27px;
    line-height: 30px;
    color: #fff;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}
.tts-home-sec-3-box-1-content p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 0.5em;
}



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

.tts-home-sec-4 {
    padding-bottom: 2em;
    padding-top: 2em;
    margin: 0em;
}
.tts-home-sec-3-box-1-content {
    position: inherit;
    bottom: inherit;
    padding-bottom: 0em;
}


}




.tts-home-sec-5 {
  padding-top: 6em;
  padding-bottom: 3em;
}
.sec-5-box-1 h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}
.sec-5-box-1 p {
    margin: 0;
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
}
.sec-5-box-1 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 12px 25px 12px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width: 40%;
    margin-top: 1em;
}
.sec-5-box-1 .btn-success img {
  float: right;
  margin-top: 6px;
}


.sec-5-box-2 h5  {
    margin: 0;
        margin-bottom: 0px;
    font-size: 27px;
    line-height: 30px;
    color: #393939;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-top: 0.5em;
}
.sec-5-box-2 p {
    margin: 0;
        margin-bottom: 0px;
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
}
.sec-5-box-2 img {
    z-index: 9999!important;
}



.sec-5-box-3 {
    background-color: #094d8e;
    padding: 5em 3em 3em 3em;
    text-align: right;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 100px;
    margin: 50% 0% 0% -20%;
}
.sec-5-box-3 p {
    margin: 0;
        margin-bottom: 0px;
    font-size: 15px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
    text-align: right;
}
.sec-5-box-3-btn {
  text-align: right;
}
.sec-5-box-3-btn .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 12px 25px 12px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width:;
    margin: -1em 1em 0em 0em;
}
.sec-5-box-3-btn .btn-success img {
    float: right;
    margin-top: 6px;
    margin-left: 20px;
}

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

.sec-5-box-1 {
  padding-bottom: 1em;
}
.tts-home-sec-5 {
    padding-top: 2em;
    padding-bottom: 2em;
}
.sec-5-box-3 {
    background-color: #094d8e;
    padding: 2em;
    text-align: left;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 10px;
    margin: 0% 0% 0% 0%;
}
.sec-5-box-3-btn {
    text-align: left;
}
.sec-5-box-3 p {
  text-align: left;
}
.sec-5-box-3-btn .btn-success {
  margin: 1em 1em 0em 0em;
}


}




.n-tts-home-sec-6-sub-1 {
  background-image: url(../img/raybg-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 4em;
  padding-bottom: 4em;
}

.tts-home-sec-6-n {
  padding-bottom: 4em;
  padding-top: 6em;
}
.n-tts-home-sec-6-sub-1 h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
}
.n-tts-home-sec-6-sub-1 p {
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
}
.n-tts-home-sec-6-sub-1 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 12px 25px 12px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width: 40%;
    margin-top: 1em;
}
.n-tts-home-sec-6-sub-1 .btn-success:hover {
    background-color: #000;
}
.n-tts-home-sec-6-sub-1 .btn-success img {
  float: right;
  margin-top: 6px;
}
.n-tts-home-sec-6-sub-2 {
  padding: 2em 4em 0em 0em;
}
@media only screen and (max-width: 600px) {

.n-tts-home-sec-6-sub-2 {
  padding: 0em;
}


.n-tts-home-sec-6-sub-1 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 9px 25px 9px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 18px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width: auto;
    margin-top: 0.5em;
}
.n-tts-home-sec-6-sub-2 img {
  margin-top: 1em;
}



}





/*.tts-home-sec-6 {
  background-image: url(../img/home-background-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  padding-bottom: 4em;
  padding-top: 3em;
}
.tts-home-sec-6-sub-1 {
  padding-top: 4em;
  margin-top: 4em;
}
.tts-home-sec-6-sub-1 h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-top: 4em;
}
.tts-home-sec-6-sub-2 {
    padding-top: 4em;
    margin-top: 1em;
}
.tts-home-sec-6-sub-2 img {
    padding-top: 10em;
    margin: 0em 0em 0em -18em;
}
.tts-home-sec-6-sub-1 p {
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
}
.tts-home-sec-6-sub-1 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 12px 25px 12px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width: 40%;
    margin-top: 1em;
}
.tts-home-sec-6-sub-1 .btn-success:hover {
    background-color: #000;
}


.tts-home-sec-6-sub-1 .btn-success img {
  float: right;
  margin-top: 6px;
}

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

.tts-home-sec-6 {
    background-image: url(../img/home-background-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 1em;
    padding-top: 1em;
}
.tts-home-sec-6-sub-1 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 9px 25px 9px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 18px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width: auto;
    margin-top: 0.5em;
}
.tts-home-sec-6-sub-1 {
    padding-top: 2em;
    margin-top: 0em;
}
.tts-home-sec-6-sub-2 {
    padding-top: 0em;
    margin-top: 0em;
}
.tts-home-sec-6-sub-2 img {
    padding-top: 2em;
    margin: 0em;
}


}

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

.tts-home-sec-6-sub-2 img {
    padding-top: 6em;
    margin: 0em 0em 0em 0em;
}
.tts-home-sec-6-sub-1 {
    padding-top: 0em;
    margin-top: 0em;
}


}*/




.tts-home-sec-7 {
  background-image: url(../img/home-background-4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  padding-bottom: 10em;
  padding-top: 7em;
  margin-bottom: 3em;
}
.tts-home-sec-7-box-4 {
  margin-top: -4em;
  text-align: right;
}
.tts-home-sec-7-box-4 h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}
.tts-home-sec-7-box-4 p {
    margin: 0;
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
}
.tts-home-sec-7-box-4 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 12px 25px 12px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width: 70%;
}
.tts-home-sec-7-box-4 .btn-success:hover {
  background-color: #000;
}

.tts-home-sec-7-box-4 .btn-success img {
  float: right;
  margin-top: 6px;
}

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


.tts-home-sec-7 {
    background-image: none;
    padding-bottom: 2em;
    padding-top: 2em;
    margin-bottom: 3em;
}
.tts-home-sec-7-box-4 {
    margin-top: 0em;
    text-align: left;
    padding: 1em 0em 2em 0em;
}

.tts-home-sec-7-box-1 {
  text-align: center;
}
.tts-home-sec-7-box-2 {
  text-align: center;
}
.tts-home-sec-7-box-3 {
  text-align: center;
}


}





.tts-home-sec-8 {
  padding-top: 3em;
  padding-bottom: 3em;
}
.tts-home-sec-8 h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
}
.tts-home-sec-8 p {
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;
    line-height: 26px;
    margin-bottom: 0.5em;
}










.tts-home-sec-9 {
    background-image: url(../img/home-background-4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding-bottom: 10em;
    padding-top: 7em;
}
.tts-home-sec-9-sub-1 {
  padding-bottom: 3em;
}
.tts-home-sec-9-sub-1 h5 {
    margin: 0;
    font-size: 24px;
    color: #000;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    position: relative;
}
.tts-home-sec-9-sub-1 h5::before {
    content: "";
    display: block;
    width: 49px;
    height: 2px;
    background: #000;
    left: -50px;
    top: 51%;
    position: absolute;
}

.tts-home-sec-9-sub-1 h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}
.tts-home-sec-9-sub-1 p {
    margin: 0;
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 1em;
}
.tts-home-sec-9-sub-1 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 12px 25px 12px 25px;
    border: none;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width: 40%;
}
.tts-home-sec-9-sub-1 .btn-success:hover {
  background-color: #000;
}
.tts-home-sec-9-sub-1 .btn-success img {
  float: right;
  margin-top: 6px;
}

.tts-home-sec-9-sub-2 img {
  margin-bottom: 5em;
}


@media only screen and (max-width: 600px) {
  .tts-home-sec-9-sub-2 img {
    margin-bottom: 0em;
  }
  .tts-home-sec-9-sub-1 h2 {
    font-size: 33px;
    font-weight: bold;
    line-height: 48px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
  }



}




.tts-footer {
  background-image: url(../img/tts-footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  
  padding-bottom: 0.6em;
  padding-top: 0.6em;
}

.tts-footer-box-1 h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    font-family: Mulish-Bold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 1em;
}

.tts-footer-box-1 img {
    max-width: 118px;
}

.tts-footer-box-1 h4 a {
    color: #fff;
}
.tts-footer-box-1 ul li {
    margin: 0;
    font-size: 13.5px;
    color: #fff;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 1em;
    list-style-type: none;
}
.tts-footer-box-1 h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    font-family: Mulish-Regular;
    margin-bottom: 0.5em;
    margin-top: 1em;
}
.tts-footer-box-1 h3 a {
    color: #fff;
}



.tts-footer-box-2 {
  padding-left: 2em;
}

.tts-footer-box-2 .fa-chevron-circle-right {
    color: #cc5f10;
    margin-right: 3px;
}

.tts-footer-box-2 h5 {
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 1em;
}
.tts-footer-box-2 p a {
    margin: 0;
    font-size: 13px;
    color: #fff;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    line-height: 26px;
    list-style-type: none;
    display: block;
    padding-bottom: 0.5em;
}




.tts-footer-box-3 h5 {
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 1em;
}
.tts-footer-box-3 .btn-success {
    background-color: #f07d2d;
    text-align: left;
    padding: 12px 25px 12px 25px;
    border: none;
    font-family: Mulish-Bold;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 30px;
        border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-left-radius: 0px !important;
    width:;
}
.tts-footer-box-3 .btn-success:hover {
  background-color: #ccc;
   
}
.tts-footer-box-3 .btn-success img {
  max-width: 30px;
}



.tts-footer-box-3 h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 1em;
}
.tts-footer-box-3 a {
    display: inline-block;
    padding-right: 5px;
}
.footer-btn-box {
  text-align: right;
  padding-top: 1em;
}


.tts-footer-box-4 h5 {
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 1em;
}
.tts-footer-box-4 h6 a {
    display: inline-block;
}
.tts-footer-box-4 p {
    margin: 0;
    font-size: 13px;
    color: #fff;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 1em;
    list-style-type: none;
}
.tts-footer-box-4 .fa-facebook {
    margin-right: 5px;
    font-size: 15px;
    color: #040000d1;
    background-color: #fff;
    padding: 7px 10px 7px 10px;
}
.tts-footer-box-4 .fa-twitter {
    margin-right: 5px;
    font-size: 15px;
    color: #040000d1;
    background-color: #fff;
    padding: 7px 8px 7px 8px;
}
.tts-footer-box-4 .fa-linkedin-square {
    margin-right: 5px;
    font-size: 15px;
    color: #040000d1;
    background-color: #fff;
    padding: 7px 8px 7px 8px;
}
.tts-footer-box-4 .fa-youtube-square {
    margin-right: 5px;
    font-size: 15px;
    color: #040000d1;
    background-color: #fff;
    padding: 7px 8px 7px 8px;
}




.tts-footer hr.footer-hr {
  border-top: 1px solid #fff;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}

.footer-cp p {
    margin: 0;
        margin-bottom: 0px;
    font-size: 12.5px;
    color: #fff;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 1em;
    text-align: center;
}
.footer-cp p a {
    color: #fff;
}



.tts-footer-box-1 .bx {
  font-size: 20px;
  margin-right: 4px;
}












.knowledge-box-1 {
  background-image: url(../img/knowledge-slider-bg-1.png);
  background-repeat: no-repeat;
  height: 430px;
  padding: 2em;
  position: relative;
}
.knowledge-box-2 {
  background-image: url(../img/knowledge-slider-bg-2.png);
  background-repeat: no-repeat;
  height: 430px;
  padding: 2em;
  position: relative;
}
.knowledge-box-3 {
  background-image: url(../img/knowledge-slider-bg-3.png);
  background-repeat: no-repeat;
  height: 430px;
  padding: 2em;
  position: relative;
}
.knowledge-box-4 {
  background-image: url(../img/knowledge-slider-bg-4.png);
  background-repeat: no-repeat;
  height: 430px;
  padding: 2em;
  position: relative;
}



.knowledge-box-1-content {
  position: absolute;
  bottom: 0px;
  padding-bottom: 1.5em;
}
.knowledge-box-1-content h4 {
    margin: 0;
    font-size: 27px;
    line-height: 30px;
    color: #fff;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}
.knowledge-box-1-content p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 0.5em;
}
.knowledge-box-1-content h6 {
    margin: 0;
    font-size: 17px;
    line-height: 30px;
    color: #fff;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-top: 0.5em;
    text-align: right;
} 
.knowledge-box-1-content h6 a {
    color: #fff;
}



@media (min-width: 768px) {

    /* show 3 items */
    .sec-knoledge-slider .carousel-inner .active,
    .sec-knoledge-slider .carousel-inner .active + .carousel-item,
    .sec-knoledge-slider .carousel-inner .active + .carousel-item + .carousel-item,
    .sec-knoledge-slider .carousel-inner .active + .carousel-item + .carousel-item + .carousel-item  {
        display: block;
    }
    
    .sec-knoledge-slider .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    .sec-knoledge-slider .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
    .sec-knoledge-slider .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item,
    .sec-knoledge-slider .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item {
        transition: none;
    }
    
    .sec-knoledge-slider .carousel-inner .carousel-item-next,
    .sec-knoledge-slider .carousel-inner .carousel-item-prev {
      position: relative;
      transform: translate3d(0, 0, 0);
    }
    
    .sec-knoledge-slider .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -25%;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    
    /* left or forward direction */
    .sec-knoledge-slider .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    .sec-knoledge-slider .carousel-item-next.carousel-item-left + .carousel-item,
    .sec-knoledge-slider .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
    .sec-knoledge-slider .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item,
    .sec-knoledge-slider .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    
    /* farthest right hidden item must be abso position for animations */
    .sec-knoledge-slider .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    
    /* right or prev direction */
    .sec-knoledge-slider .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    .sec-knoledge-slider .carousel-item-prev.carousel-item-right + .carousel-item,
    .sec-knoledge-slider .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
    .sec-knoledge-slider .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item,
    .sec-knoledge-slider .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }

}


.sec-knoledge-slider .carousel-item {
  margin-right: auto;
}
.sec-knoledge-slider .carousel {
    margin-right: 4em;
    margin-left: 4em;
}


.sec-knoledge-slider .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1%;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease;
    right: 0;
}
.sec-knoledge-slider .carousel-control-prev .bx {
    color: #fff;
    background-color: #773a7d;
    border-top-right-radius: 0px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 36px;
    padding: 4px 12px;
}

.sec-knoledge-slider .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1%;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease;
    right: 0;
}
.sec-knoledge-slider .carousel-control-next .bx {
    color: #fff;
    background-color: #f07d28;
    border-top-right-radius: 20px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 36px;
    padding: 4px 12px;
}


.sec-knoledge-slider {
  background-image: url(../img/home-background-5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
  padding-bottom: 10em;
  padding-top: 3em;
}
@media only screen and (max-width: 600px) {

.sec-knoledge-slider {
  padding-bottom: 3em;
  padding-top: 3em;
}
.sec-knoledge-slider .carousel-control-prev .bx {
    color: #fff;
    background-color: #773a7d;
    border-top-right-radius: 0px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 20px;
    padding: 2px 5px;
    margin-left: 0px;
}
.sec-knoledge-slider .carousel-control-next .bx {
    color: #fff;
    background-color: #f07d28;
    border-top-right-radius: 20px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 20px;
    padding: 2px 5px;
    margin-right: 0px;
}


}


.sec-knoledge-slider .imghover .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 30px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-top: 0.7em;
    margin-bottom: 0.5em;
    text-align: center;
}

.sec-knoledge-slider .content {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.sec-knoledge-slider .content .content-overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 40px;
}

.sec-knoledge-slider .content:hover .content-overlay {
  opacity: 1;
}

.sec-knoledge-slider .content-image {
  width: 100%;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 40px;
}

.sec-knoledge-slider .content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.sec-knoledge-slider .content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.sec-knoledge-slider .content-details h3 {
    font-size: 27px;
    line-height: 30px;
    color: #fff;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}

.sec-knoledge-slider .content-details p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 0.5em;
}

.sec-knoledge-slider .fadeIn-bottom {
  top: 80%;
}





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

.tts-home-sec-2-sub-1 .btn-success img {
    float: right;
    margin-top: 8px;
    max-width: 27px;
}
.sec-5-box-1 .btn-success img {
    float: right;
    margin-top: 8px;
    max-width: 27px;
}





}









/* TTS NEW HOME PAGE LAYOUT */

.new-tts-home-pg-1 {
    background-image: url(../img/tts-hero-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    padding-top: 5em;
    padding-bottom: 5em;
}
.new-tts-home-pg-1 h2 {
    color: #fff;
    font-size: 42px;
    margin-top: 5em;
    margin-bottom: 5em;
    text-transform: capitalize;
    font-weight: bold;
}


.new-tts-home-pg-2 {
    padding-top: 4em;
    padding-bottom: 2em;
    background-image: url(../img/home-background-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
}
.new-tts-home-pg-2 p {
    font-size: 17px;
    color: #000;
    text-transform: capitalize;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 1.5em;
    margin-top: 1em;
}




.new-tts-home-pg-3 {
    background-image: url(../img/home-background-4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 4em;
    padding-bottom: 4em;
    margin-bottom: 4em;
}
.new-tts-box-1 {
    border: 1px solid #00000024;
    margin-bottom: 0.5em;
    text-align: center;
}
.new-tts-box-1 h4 {
    color: #fff;
    font-size: 20px;
    background-color: #000;
    text-transform: capitalize;
    text-align: center;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    margin: 0px;
}
@media only screen and (max-width: 600px) {


    .new-tts-home-pg-1 {
      height: auto;
    }
    .new-tts-home-pg-1 h2 {
      color: #fff;
      font-size: 30px;
      margin-top: 4.6em;
      text-transform: capitalize;
      text-align: center;
      font-weight: bold;
    }



}



.new-tts-about-1 {
    background-image: url(../img/new-tts-about-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 400px;
    width: 100%;
}
.new-tts-about-2 {
    padding-top: 3em;
    padding-bottom: 3em;
}
.new-tts-about-box-1 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.8) ), url(../img/new-about-sec-1-img.jpg);
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 0.5em;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.new-tts-about-box-1 h2 {
    font-size: 56px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    margin-top: 2em;
}
.new-tts-about-box-1 p {
    font-size: 14px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    list-style-type: none;
    text-align: center;
}


.new-tts-about-2 {
    padding-top: 2em;
    padding-bottom: 3em;
}

.new-tts-about-box-2 h3 {
    color: #d40309;
    font-size: 42px;
    margin-top: 3em;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
}
.new-tts-about-box-3 p {
    font-size: 14px;
    color: #000000cf;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    text-align: right;
    margin-top: 1.5em;
}
.new-tts-about-box-3 img {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}




.new-tts-about-3 {
    padding-top: 2em;
    padding-bottom: 3em;
}
.new-tts-about-box-4 h3 {
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 0.7em;
    text-align: center;
}
.new-tts-about-box-5 p {
    font-size: 15px;
    color: #000000cf;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-top: 1.5em;
}
.new-tts-about-master {
    background: linear-gradient( rgba(0, 0, 0, 0.9), rgba(255, 0, 0, 0) ), url(../img/new-about-sec-4-bg.jpg);
    padding: 2em;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.new-tts-about-box-5 {
  padding: 2.5em;
  margin: 0.5em;
}
.new-tts-about-box-5 h5 {
    font-size: 22px;
    color: #a9e10c;
    text-transform: capitalize;
    font-weight: bold;

}
.new-tts-about-box-5 p {
    font-size: 14px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-top: 0.5em;
}
.new-tts-about-box-5 .fa {
    color: #fff;
    font-size: 66px;
    margin-bottom: 0.3em;
}



.new-tts-about-4 {
  padding-bottom: 3em;
}
.new-tts-about-4 h2 {
    color: #d40309;
    font-size: 36px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 1em;
}
.new-tts-about-4 .accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: "\f068";
    float: right; 
}
.new-tts-about-4 .accordion .card-header.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\f067"; 
}
.new-tts-about-4 .accordion .card-header {
    background: linear-gradient(90deg, rgba(225,19,5,1) 0%, rgba(225,19,5,1) 35%, rgba(169,225,12,1) 100%);
    color: #fff;
    margin: 4px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    text-transform: capitalize;
}
.new-tts-about-4 .accordion .card-header .card-title {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}
.new-tts-about-4 .card {
    border:none;
}
.new-tts-about-4 .accordion .card-body p {
    font-size: 15px;
    color: #000000cf;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
}








.new-tts-services-1 {
    background-image: url(../img/new-tts-services-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 400px;
    width: 100%;
}
.new-tts-services-2 {
    padding-top: 3em;
    padding-bottom: 3em;
}
.new-tts-services-box-1 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/new-services-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.new-tts-services-box-0 h2 {
    color: #d40309;
    font-size: 36px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 1em;
}
.new-tts-services-box-1 h2 {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    text-transform: capitalize;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.new-tts-services-box-1 p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    list-style-type: none;
}
.new-tts-services-box-1 .btn {
    font-size: 14px;
    text-transform: capitalize;
    background-color: #fff;
    font-weight: 600;
}


.new-tts-services-box-2 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/new-services-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.new-tts-services-box-2 h2 {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    text-transform: capitalize;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.new-tts-services-box-2 p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    list-style-type: none;
}
.new-tts-services-box-2 .btn {
    font-size: 14px;
    text-transform: capitalize;
    background-color: #fff;
    font-weight: 600;
}

.new-tts-services-box-3 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/new-services-3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.new-tts-services-box-3 h2 {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    text-transform: capitalize;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.new-tts-services-box-3 p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    list-style-type: none;
}
.new-tts-services-box-3 .btn {
    font-size: 14px;
    text-transform: capitalize;
    background-color: #fff;
    font-weight: 600;
}



.new-tts-services-box-4 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/new-services-4.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.new-tts-services-box-4 h2 {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    text-transform: capitalize;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.new-tts-services-box-4 p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    list-style-type: none;
}
.new-tts-services-box-4 .btn {
    font-size: 14px;
    text-transform: capitalize;
    background-color: #fff;
    font-weight: 600;
}




.new-tts-team-1 {
    background-image: url(../img/new-tts-services-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 400px;
    width: 100%;
}
.new-tts-team-box-1 h2 {
    color: #d40309;
    font-size: 36px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
}
.new-tts-team-2 {
  padding-top: 3em;
  padding-bottom: 3em;
}
.new-tts-team-box-1 p {
    font-size: 16px;
    color: #000000cf;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-top: 0.5em;
}



.new-tts-team-box-2 {
  background-color: #f7f7f7;
  padding: 10px;
}
.new-tts-team-box-2 h3 {
    color: #060513;
    font-size: 25px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
}
.new-tts-team-box-2 h4 {
    color: #d40309;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
    margin-bottom: 0.7em;
}
.new-tts-team-box-2 p {
    font-size: 14px;
    color: #000000cf;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-top: 0.5em;
}



.new-tts-knowledge-1 {
    background-image: url(../img/new-tts-services-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 400px;
    width: 100%;
}

.new-tts-knowledge-2 {
  padding-bottom: 3em;
  padding-top: 3em;
}
.new-tts-knowledge-2 h2 {
    color: #d40309;
    font-size: 36px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 1em;
}

.tts-know-box-1 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/knowledge/fibire.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 15px;
}
.tts-know-box-2 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/knowledge/spinning.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 15px;
}
.tts-know-box-3 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/knowledge/knitting.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 15px;
}
.tts-know-box-4 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/knowledge/weaving.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 15px;
}
.tts-know-box-5 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/knowledge/coloration.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 15px;
}
.tts-know-box-6 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/knowledge/finishing.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 15px;
}
.tts-know-box-7 {
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.87) ), url(../img/knowledge/non-woven-and-technical.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 6em;
    padding-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 2em;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 15px;
}



.tts-know-box-content h4 {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    text-transform: capitalize;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.tts-know-box-content p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    list-style-type: none;
}
.tts-know-box-content .btn {
    font-size: 14px;
    text-transform: capitalize;
    background-color: #fff;
    font-weight: 600;
    border:none;
    color: #000;
}
.tts-know-box-content .fa {
    font-size: 19px;
    color: #d20406;
    margin-left: 7px;
}





.new-tts-insights-1 {
    background-image: url(../img/new-tts-services-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 400px;
    width: 100%;
}
.new-tts-insights-2 {
  padding-top: 3em;
  padding-bottom: 3em;
}
.new-tts-insights-2 h2 {
    color: #d40309;
    font-size: 36px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 1em;
}

.new-tts-insights-box-1 {
  margin-bottom: 2em;
  margin-top: 2em;
  background-color: #f7f7f7;
  padding: 1em 0em 1em 0em;
}
.new-tts-insights-box-1 h3 {
    color: #060513;
    font-size: 25px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
    margin-bottom: 0.5em;
}
.new-tts-insights-box-1 p {
    font-size: 14px;
    color: #000000cf;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-top: 0.5em;
}
.new-tts-insights-box-1 img {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.new-tts-insights-box-1 .btn {
    font-size: 15px;
    text-transform: capitalize;
    background-color: #d20406;
    font-weight: 600;
    color: #fff;
    border:none;
}




.new-tts-contact-1 {
    background-image: url(../img/new-tts-contact-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 400px;
    width: 100%;
}
.new-tts-contact-2 {
    padding-top: 3em;
    padding-bottom: 3em;
}
.new-tts-contact-box-1 h3 {
    color: #060513;
    font-size: 21px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
    margin-top: 1em;
}
.new-tts-contact-box-1 p {
    font-size: 16px;
    color: #000000cf;
    font-family: Aeonik-Regular;
     
    line-height: 26px;
    margin-top: 0.5em;
}
.new-tts-contact-box-1 .fa {
    margin-right: 5px;
    color: #d20406;
}
.contact-icons h3 {
    padding-bottom: 0.6em;
}
.contact-icons .fa {
    padding-right: 10px;
    color: #d20406;
    font-size: 20px;
}


.new-tts-contact-box-2 h3 {
    color: #060513;
    font-size: 21px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3em;
    margin-top: 1em;
}
.new-tts-contact-box-2 label {
    font-size: 16px;
    color: #000000cf;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-top: 0.5em;
}
.new-tts-contact-box-2 .fa {
    margin-right: 5px;
    color: #d20406;
}
.new-tts-contact-box-2 .form-control {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 10px;
}
.new-tts-contact-box-2 .btn {
    font-size: 15px;
    text-transform: capitalize;
    background-color: #d20406;
    font-weight: 600;
    color: #fff;
    border: none;
}


.new-tts-home-pg-3 .imghover .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 30px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-top: 0.7em;
    margin-bottom: 0.5em;
    text-align: center;
}

.new-tts-home-pg-3 .content {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.new-tts-home-pg-3 .content .content-overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.new-tts-home-pg-3 .content:hover .content-overlay {
  opacity: 1;
}

.new-tts-home-pg-3 .content-image {
  width: 100%;
}

.new-tts-home-pg-3 .content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.new-tts-home-pg-3 .content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.new-tts-home-pg-3 .content-details h3 {
    font-size: 27px;
    line-height: 30px;
    color: #fff;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
}

.new-tts-home-pg-3 .content-details p {
    font-size: 16px;
    color: #fff;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 0.5em;
}

.new-tts-home-pg-3 .fadeIn-bottom {
  top: 80%;
}




.tts-testimonial-slider {
    padding-bottom: 3em;
}
.tts-testimonial-slider h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Truculenta-SemiBold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    text-align: center;
}
.tts-testimonial-slider p {
    margin: 0;
        margin-bottom: 0px;
    font-size: 15px;
    color: #393939;
    font-family: Aeonik-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 0.5em;
}

.testimonial_095_slide>h5>a:hover {
    border: 1px solid #aa914f
}

#testimonial_095 {
    overflow: hidden;
    position: relative;
    background: #cccccc1a;
    border-radius: 10px;
}

#testimonial_095>.carousel-inner {
    width: 75%;
    margin: auto
}

#testimonial_095>.carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab
}

#testimonial_095>.carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing
}

#testimonial_095>.carousel-inner>.carousel-item {
    overflow: hidden
}

.testimonial_095_indicators>.carousel-indicators {
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 0;
    height: 20px;
    bottom: 15px;
    padding: 0 5px;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    text-align: center;
    white-space: nowrap
}

.testimonial_095_indicators>.carousel-indicators li {
    padding: 0;
    width: 10px;
    height: 10px;
    border: none;
    text-indent: 0;
    margin: 2px 3px;
    cursor: pointer;
    display: inline-block;
    background: #ccc;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.testimonial_095_indicators>.carousel-indicators .active {
    padding: 0;
    width: 10px;
    height: 10px;
    border: none;
    margin: 2px 3px;
    background: #e11305;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.testimonial_095_indicators>.carousel-indicators::-webkit-scrollbar {
    height: 3px
}

.testimonial_095_indicators>.carousel-indicators::-webkit-scrollbar-thumb {
    background: #ffffff;
    -webkit-border-radius: 0;
    border-radius: 0
}

.testimonial_095_control_button .carousel-control-next,
.testimonial_095_control_button .carousel-control-prev {
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: 0 0;
    border: 2px solid #000;
    color: #000;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .6s cubic-bezier(.3, 1, 0, 1);
    transition: all .6s cubic-bezier(.3, 1, 0, 1)
}

.testimonial_095_control_button .carousel-control-prev {
    left: 7%;
    right: auto
}

.testimonial_095_control_button .carousel-control-next {
    right: 7%;
    left: auto
}

.testimonial_095_control_button .carousel-control-next:hover,
.testimonial_095_control_button .carousel-control-prev:hover {
    color: #ffffff;
    background: #e11305;
    border: 2px solid #e11305
}

.testimonial_095_header>h5,
.testimonial_095_slide>h5>a,
.testimonial_095_slide>p {
    text-shadow: none;
    font-family: Raleway, sans-serif;
    -webkit-font-smoothing: antialiased
}

.testimonial_095_header {
    top: 0;
    left: 0;
    bottom: 0;
    width: 550px;
    display: block;
    margin: 30px auto;
    text-align: center;
    position: relative
}

.testimonial_095_header>h5 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
    color: #225c97;
    font-family: Mulish-Bold;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    text-align: center;
}

.testimonial_095_slide,
.testimonial_095_slide>a {
    right: 0;
    margin: auto;
    text-align: center;
    position: relative;
    top: 0;
    left: 0
}

.testimonial_095_slide {
    bottom: 0;
    width: 70%;
    padding: 20px
}

.testimonial_095_slide>a {
    width: 50px;
    height: 50px;
    display: block;
    color: #e11305;
    font-size: 18px;
    line-height: 46px;
    border: 3px solid #e11305;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.testimonial_095_slide>a:after {
    top: 0;
    left: 0;
    padding: 0;
    opacity: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .1)
}

.testimonial_095_slide>a:hover:after {
    -webkit-animation: psBoxShadowEffect_2 2s ease-out;
    animation: psBoxShadowEffect_2 2s ease-out
}

.testimonial_095_slide>p {
    font-size: 17px;
    color: #000000;
    font-family: Mulish-Regular;
    text-transform: capitalize;
    line-height: 26px;
    margin-bottom: 1.8em;
    margin-top: 1em;
}

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

    .testimonial_095_control_button .carousel-control-next,
    .testimonial_095_control_button .carousel-control-prev {
        display: none
    }
}

@media only screen and (max-width:480px) {
    .testimonial_095_header {
        width: 95%
    }
}

@media only screen and (max-width:480px) {
    .testimonial_095_header>h5 {
        font-size: 20px
    }
}

@media only screen and (max-width:480px) {
    .testimonial_095_slide {
        width: 98%;
        padding: 5px
    }
}

@media (min-width:481px) and (max-width:767px) {
    .testimonial_095_control_button .carousel-control-prev {
        left: 2%
    }
}

@media (min-width:481px) and (max-width:767px) {
    .testimonial_095_control_button .carousel-control-next {
        right: 2%
    }
}

@media (min-width:481px) and (max-width:767px) {
    .testimonial_095_header {
        width: 95%
    }
}

@media (min-width:481px) and (max-width:767px) {
    .testimonial_095_slide {
        width: 98%;
        padding: 5px
    }
}

@media (min-width:768px) and (max-width:991px) {
    .testimonial_095_control_button .carousel-control-prev {
        left: 5%
    }
}

@media (min-width:768px) and (max-width:991px) {
    .testimonial_095_control_button .carousel-control-next {
        right: 5%
    }
}

@keyframes psBoxShadowEffect_2 {}

.ps_ease .carousel-item {
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.ps_easeInOut .carousel-item {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

.ps_speedy .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
    transition-timing-function: cubic-bezier(0, 1, 0, 1)
}

.ps_slowSpeedy .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
    transition-timing-function: cubic-bezier(.3, 1, 0, 1)
}

.ps_easeOutInCubic .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
    transition-timing-function: cubic-bezier(.22, .81, .01, .99)
}

.ps_swing .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
    transition-timing-function: cubic-bezier(.02, .01, .47, 1)
}

.ps_easeOutCubic .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.ps_easeInOutCubic .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition-timing-function: cubic-bezier(.645, .045, .355, 1)
}

.ps_easeOutCirc .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
    transition-timing-function: cubic-bezier(.075, .82, .165, 1)
}

.ps_easeOutExpo .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.ps_easeInQuad .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

.ps_easeOutQuad .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

.ps_easeInOutQuad .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

.ps_easeOutQuart .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.ps_easeInOutQuart .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
    transition-timing-function: cubic-bezier(.77, 0, .175, 1)
}

.ps_easeOutQuint .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
    transition-timing-function: cubic-bezier(.23, 1, .32, 1)
}

.ps_easeInSine .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
    transition-timing-function: cubic-bezier(.47, 0, .745, .715)
}

.ps_easeOutSine .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
    transition-timing-function: cubic-bezier(.39, .575, .565, 1)
}

.ps_easeInOutSine .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
    transition-timing-function: cubic-bezier(.445, .05, .55, .95)
}