@charset "UTF-8";
/* Root */
:root {
  /* Colors */
  --primary-color: #ff3c2e;
  --secondary-color: #161921;
  --font-color: #6c6c6c;
  --white-color: #ffffff;
  --grey: #dadada;
  --hover-color: #e63427;
  /* Fonts */
  --font-family: "Roboto Condensed", sans-serif;
  /* Text properties */
  --font-size: 16px;
  --line-height: 28px;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: var(--font-family);
  letter-spacing: 0px;
  font-size: var(--font-size);
  color: var(--font-color);
  font-weight: 400;
  line-height: var(--line-height);
  background-color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #dadada;
  margin: 0px 0px 15px 0px;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

h1 {
  font-size: 40px;
  line-height: 48px;
}

h2 {
  font-size: 32px;
  line-height: 42px;
}

h3 {
  font-size: 28px;
  line-height: 36px;
}

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

h5 {
  font-size: 18px;
}

h6 {
  font-size: 12px;
}

p {
  margin: 0 0 26px;
  line-height: 1.6;
}

p:last-child {
  margin: 0px;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

a:focus,
a:hover {
  text-decoration: none;
  color: var(--hover-color);
}

sub {
  bottom: 0em;
}

.lead {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.6;
  font-family: "Oswald", sans-serif;
  color: #6c6c6c;
  margin-bottom: 30px;
}

blockquote {
  padding: 40px;
  border-radius: 0px;
  background-color: #1a1a1a;
  border-top: 2px solid #ff3c2e;
  border-left: transparent;
}

.qoute-icon {
}

.blockquote-content {
  font-family: "Oswald", sans-serif;
  color: var(--white-color);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.blockquote-author {
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  color: #ff3c2e;
  letter-spacing: 3px;
}

strong {
  color: #333333;
  font-weight: 600;
  margin-right: 8px;
}

hr {
  border-top: 1px solid #2e2e2e;
  margin-bottom: 50px;
  margin-top: 50px;
}

/*----------------------- 
    2 Form Elements:
-------------------------*/
label {
}

.control-label {
}

.form-control:focus {
}

.textarea.form-control {
}

.required {
}

.form-group {
  margin-bottom: 5px;
}

.form-control {
  border-radius: 0px;
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  height: 54px;
  padding: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.42857143;
  border: 1px solid #292929;
  background-color: #292929;
  margin-bottom: 10px;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 8px 0 0;
  margin-top: 1px\9;
  line-height: normal;
}

input::-webkit-input-placeholder {
  color: #9a9a9a !important;
}

textarea::-webkit-input-placeholder {
  color: #9a9a9a !important;
}

.input-group-addon {
  border-radius: 0px;
  background-color: #f3f6f8;
  border: 1px solid #e4e7e9;
}

.focus {
  border: 1px solid #c3c7cd;
  background-color: #292929;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control {
  border-color: #3c763d;
  background-color: #292929;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control {
  border-color: #a94442;
  background-color: #292929;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

#datepicker.form-control {
  border-right: transparent !important;
}

.default-skin .ui-widget-header {
  border: 1px solid #e4e7e9;
  background: #f3f6f8;
  color: var(--white-color);
  font-weight: bold;
}

.default-skin .ui-state-highlight,
.default-skin .ui-widget-content .ui-state-highlight,
.default-skin .ui-widget-header .ui-state-highlight {
  border: 1px solid #e4e7e9;
  background: #f3f6f8;
  color: var(--white-color);
}

/*-------------- align ------------*/

/* =WordPress Core
-------------------------------------------------------------- */

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 0px 0 20px 30px;
}

.alignleft {
  float: left;
  margin: 0px 20px 0px 0;
}

a img.alignright {
  float: right;
  margin: 0px 0 30px 30px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: var(--white-color);
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/*-----------------------------------
    3. Buttons 
-----------------------------------*/
.btn {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 20px;
  margin-bottom: 4px;
  border-radius: 5px;
  line-height: 1.8;
  letter-spacing: 1px;
  border: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #ff3c2e;
  color: #ffeae9;
}
.btn-secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
  margin-left: 1rem;
}
.btn-secondary:hover{
  background-color: #e63427;
  color: var(--white-color);
  border-color: #e63427;  
}
.btn-primary:hover {
  background-color: #e63427;
  color: var(--white-color);
}

.btn-primary.focus,
.btn-primary:focus {
  background-color: #e63427;
  color: var(--white-color);
}

.btn-default {
  background-color: #090909;
  color: #686868;
}

.btn-default:hover {
  background-color: #000;
  color: var(--white-color);
}

.btn-default.focus,
.btn-default:focus {
  background-color: #000;
  color: var(--white-color);
}

.btn-lg {
  padding: 20px 42px;
  font-size: 17px;
}

.btn-sm {
  padding: 14px 28px;
  font-size: 14px;
}

.btn-xs {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-link {
  color: #ff3c2e;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-link:hover {
  color: #e63427;
  text-decoration: none;
}

button.btn {
  margin-right: -1px;
}

/*--------------------------------
 4.8 Image Hover Effect 
----------------------------------*/
img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  line-height: normal;
  vertical-align: middle;
  object-fit: cover;
}

.imghover {
  display: block;
  position: relative;
  max-width: 100%;
}

.imghover::before,
.imghover::after {
  display: block;
  position: absolute;
  content: "";
  text-align: center;
  opacity: 0;
}

.imghover::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.imghover::after {
  top: 55%;
  left: 50%;
  padding: 10px;
  line-height: 10px;
  margin: -25px 0 0 -25px;
  content: "\f196";
  font-family: "FontAwesome";
  font-size: 30px;
}

.imghover:hover::before,
.imghover:hover::after {
  opacity: 1;
}

.imghover:hover::before {
  background: rgba(255, 60, 46, 0.6);
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  /* ...and now for the proper property */
  transition: 0.5s;
}

.imghover:hover::after {
  color: var(--white-color);
}

/*--------------------------------
4.9 Icon 
----------------------------------*/
.icon {
}

.icon-1x {
  font-size: 18px;
}

/* default icon size of font*/
.icon-2x {
  font-size: 38px;
}

.icon-4x {
  font-size: 65px;
}

.icon-6x {
  font-size: 88px;
}

.icon-8x {
  font-size: 108px;
}

.icon-default {
  color: #aa9144;
}

.icon-primary {
  color: #474954;
}

.icon-secondary {
  color: var(--white-color);
}

.icon-white {
  color: var(--white-color);
}

/*--------------------------------
5 Header / Navigations 
----------------------------------*/

/*--------------------
    5.1 Header Regular 
   ----------------------*/
.header-wrapper {
  z-index: 9;
  position: relative;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--grey);
  padding: 10px 0;
}

.header-btn {
  padding-top: 7px;
  text-align: right;
}

.call-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.call-icon {
  font-size: 30px;
  color: var(--grey);
  display: inline-block;
}
.call-block {
  display: inline-block;
}
.call-text {
  padding-left: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0 0 0 20px;
  border-bottom: 1px solid var(--grey);
}

.call-text a,
.call-text a:hover,
.call-text a:focus {
  color: var(--white-color);
}
.call-text:last-child {
  margin: 0 0 0 20px;
  border-bottom: 0;
}
.logo {
  max-width: 40%;
}

/*--------------------------
    5.2 Navigations Regular
   ----------------------------*/
.navigation {
}

#navigation {
}

#navigation,
#navigation ul,
#navigation ul li,
#navigation ul li a,
#navigation #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#navigation:after,
#navigation > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#navigation #menu-button {
  display: none;
}

#navigation {
  font-family: "Oswald", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#navigation > ul > li {
  display: inline-block;
}

#navigation.align-center > ul {
  font-size: 0;
  text-align: center;
}

#navigation.align-center > ul > li {
  display: inline-block;
  float: none;
}

#navigation.align-center ul ul {
  text-align: left;
}

#navigation.align-right > ul > li {
  float: right;
}

#navigation > ul > li > a {
  padding: 16px 17px;
  font-size: 14px;
  color:var(--white-color);
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}

#navigation > ul > li:hover > a {
  color: var(--white-color);
  background-color: #e23225;
}

#navigation > ul > li.has-sub > a {
  padding-right: 30px;
}

/*#navigation>ul>li>a:after {
    position: absolute;
    top: 16px;
    right: -3px;
    height: 2px;
    display: block;
    content: '/';
}*/
#navigation > ul > li.has-sub > a:before {
  position: absolute;
  right: 12px;
  font-family: FontAwesome;
  content: "\f107";
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/*#navigation > ul > li.has-sub:hover > a:before {
 top: 23px;
 height: 0;
}*/
#navigation ul ul {
  position: absolute;
  left: -9999px;
}

#navigation.align-right ul ul {
  text-align: right;
}

#navigation ul ul li {
  top: 0px;
  height: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#navigation li:hover > ul {
  left: auto;
}

#navigation.align-right li:hover > ul {
  left: auto;
  right: 0;
}

#navigation li:hover > ul > li {
  height: 54px;
}

#navigation ul ul ul {
  margin-left: 100%;
  top: 0;
}

#navigation.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}

#navigation ul ul li a {
  background-color: #ff3c2e;
  padding: 20px 14px;
  width: 216px;
  font-size: 13px;
  text-decoration: none;
  color: var(--white-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: #e23225 1px solid;
}

#navigation ul ul li:first-child > a {
  border-top-right-radius: 0%;
}

#navigation ul ul li:last-child > a {
  border-bottom-right-radius: 0%px;
  border-bottom-left-radius: 0%px;
}

#navigation ul ul li:last-child > a,
#navigation ul ul li.last-item > a {
  border: transparent;
}

#navigation ul ul li:hover > a,
#navigation ul ul li a:hover {
  color: var(--white-color);
  background-color: #e23225;
}

#navigation ul ul li.has-sub > a:after {
  position: absolute;
  top: 25px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: var(--white-color);
  content: "";
}

#navigation.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 11px;
}

#navigation ul ul li.has-sub > a:before {
  position: absolute;
  top: 22px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: var(--white-color);
  content: "";
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#navigation.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 14px;
}

#navigation ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}

#navigation.small-screen {
  width: 100%;
}

#navigation.small-screen ul {
  width: 100%;
  display: none;
}

#navigation.small-screen.align-center > ul {
  text-align: left;
}

#navigation.small-screen ul li {
  width: 100%;
  border-top: 1px solid #e23225;
  top: auto;
  background-color: transparent;
}

#navigation.small-screen ul ul li,
#navigation.small-screen li:hover > ul > li {
  height: auto;
}

#navigation.small-screen ul li a,
#navigation.small-screen ul ul li a {
  width: 100%;
  border-bottom: 0;
  padding: 20px 15px;
  color: var(--white-color);
  background-color: #ff3c2e;
}

#navigation.small-screen > ul > li > a:after {
  position: absolute;
  top: 16px;
  right: -3px;
  height: 2px;
  display: block;
  content: "";
}

#navigation.small-screen > ul > li {
  float: none;
}

#navigation.small-screen ul ul li a {
  padding-left: 25px;
}

#navigation.small-screen ul ul ul li a {
  padding-left: 35px;
}

#navigation.small-screen ul ul li a {
  color: var(--white-color);
  background-color: #ff3c2e;
}

#navigation.small-screen ul ul li:hover > a,
#navigation.small-screen ul ul li.active > a {
  color: var(--white-color);
  background-color: #e23225;
}

#navigation.small-screen ul ul,
#navigation.small-screen ul ul ul,
#navigation.small-screen.align-right ul ul {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: left;
}

#navigation.small-screen > ul > li.has-sub > a:after,
#navigation.small-screen > ul > li.has-sub > a:before,
#navigation.small-screen ul ul > li.has-sub > a:after,
#navigation.small-screen ul ul > li.has-sub > a:before {
  display: none;
}

#navigation.small-screen #menu-button {
  display: block;
  padding: 18px;
  color: var(--white-color);
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  background-color:var(--primary-color);
  margin-top: 20px;
}

#navigation.small-screen #menu-button:after {
  position: absolute;
  top: 18px;
  right: 17px;
  display: block;
  height: 12px;
  width: 20px;
  border-top: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
  content: "";
}

#navigation.small-screen #menu-button:before {
  position: absolute;
  top: 23px;
  right: 17px;
  display: block;
  height: 2px;
  width: 20px;
  background: var(--white-color);
  content: "";
}

#navigation.small-screen #menu-button.menu-opened:after {
  top: 20px;
  border: 0;
  height: 2px;
  width: 10px;
  background: var(--white-color);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#navigation.small-screen #menu-button.menu-opened:before {
  top: 20px;
  background: var(--white-color);
  width: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#navigation.small-screen .submenu-button {
  position: absolute;
  z-index: 99;
  right: 0;
  top: 0;
  display: block;
  border-left: 1px solid #e23225;
  height: 54px;
  width: 53px;
  cursor: pointer;
}

#navigation.small-screen .submenu-button.submenu-opened {
}

#navigation.small-screen ul ul .submenu-button {
  height: 34px;
  width: 34px;
}

#navigation.small-screen .submenu-button:after {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 8px;
  height: 2px;
  display: block;
  background: var(--white-color);
  content: "";
}

#navigation.small-screen ul ul .submenu-button:after {
  top: 15px;
  right: 13px;
}

#navigation.small-screen .submenu-button.submenu-opened:after {
  background: ;
}

#navigation.small-screen .submenu-button:before {
  position: absolute;
  top: 22px;
  right: 23px;
  display: block;
  width: 2px;
  height: 8px;
  background: var(--white-color);
  content: "";
}

#navigation.small-screen ul ul .submenu-button:before {
  top: 12px;
  right: 16px;
}

#navigation.small-screen .submenu-button.submenu-opened:before {
  display: none;
}

#navigation.small-screen.select-list {
  padding: 5px;
}

#navigation.small-screen > ul > li > a {
  border-left: transparent;
  margin: 0;
  border-right: transparent;
}

#navigation.small-screen > ul > li:hover > a {
  border-left: transparent;
  border-right: transparent;
  background-color: #e23225;
}

/*----------------------------------------------
    5.4 Page Header
----------------------------------------------*/
.page-header {
  background: url(../images/page_header.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 0px;
  padding-top: 238px;
  margin: 0px;
  border: 0px;
}

.page-section {
  background-color: rgba(20, 20, 20, 0.5);
  padding: 25px 8px;
}

.page-title {
  font-size: 40px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  margin-bottom: 4px;
  color: var(--white-color);
}
.breadcumb-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8rem 0;
}

.breadcumb-title {
  font-weight: bold;
}
.breadcumb-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.breadcumb-menu li {
  display: inline-block;
  padding: 0 0 0 0;
  color: #fff;
  list-style: none;
  position: relative;
  font-size: 18px;
}
.breadcumb-menu li:after {
  content: ">";
  padding: 0 10px;
}
.breadcumb-menu li:last-child:after{
  content:none;
}
.page-breadcrumb {
  color: #6c6c6c;
}

.page-breadcrumb .breadcrumb {
  background-color: transparent;
  padding: 5px 0px;
  margin-bottom: 0px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
  color: #6c6c6c;
  letter-spacing: 1px;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #6c6c6c;
  content: "/\00a0";
}

.breadcrumb > li > a {
  color: var(--white-color);
}

/*-----------------------------------
    6. Slider 
-------------------------------------*/
.slider {
  margin-bottom: 0px;
}

.slider-img {
  position: relative;
  width: 100%;
}

.slider-img img {
  position: relative;
  z-index: -1;
}
.slider .owl-carousel .owl-item .item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
.slider .owl-carousel .owl-item .item:before {
  background: linear-gradient(
    90deg,
    #161921 11.93%,
    rgba(22, 25, 33, 0.951508) 24.74%,
    rgba(22, 25, 33, 0.890928) 37.55%,
    rgba(22, 25, 33, 0.829997) 47.86%,
    rgba(22, 25, 33, 0) 100%
  );
  z-index: -1;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.slider-captions {
  padding: 20px;
  margin: 0;
  max-width: 70%;
}

.slider-title {
  color: var(--white-color);
  font-size: 70px;
  font-weight: 500;
  line-height: 80px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.slider-para {
  color: var(--white-color);
}

.slider-btn {
}

.slider .owl-carousel .owl-stage-outer {
}

.slider .owl-theme .owl-dots {
  text-align: center !important;
  position: relative;
  bottom: 50px;
}

.slider .owl-theme .owl-nav {
  line-height: 1.8;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.slider .owl-theme .owl-nav .owl-prev {
  position: absolute;
  top: 35%;
  left: 10px;
  color: var(--white-color);
  font-size: 40px;
  margin: 8px;
  padding: 0px;
  background: transparent;
  border: transparent;
  display: inline-block;
  cursor: pointer;
  border-radius: 0%;
  height: 0px;
  width: 0px;
}

.slider .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 35%;
  right: 50px;
  color: var(--white-color);
  font-size: 35px;
  margin: 8px;
  padding: 0px;
  background: transparent;
  border: transparent;
  display: inline-block;
  cursor: pointer;
  border-radius: 0%;
  height: 0px;
  width: 0px;
}

.slider .owl-theme .owl-nav .owl-prev:hover {
  color: #ff3c2e;
}

.slider .owl-theme .owl-nav .owl-next:hover {
  color: #ff3c2e;
}

.slider .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.slider .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 4px;
  background: #bbbdbe;
  border-radius: 50px;
  border: 2px solid #bbbdbe;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
}

.slider .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #d75e69;
  border: 2px solid #d75e69;
}

.slider .owl-theme .owl-carousel .owl-item img {
  width: 100%;
}

/*-----------------------------------
8. Footer 
-------------------------------------*/
.footer {
  background-color: #101010;
  padding-top: 70px;
  padding-bottom: 50px;
  color: #6c6c6c;
}

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

.footer-title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}

.footer-widget ul li a {
  font-size: 14px;
  line-height: 2;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-widget .th-widget-contact .info-box {
  padding-bottom:.5rem;
}
.newsletter {
}

.newsletter-text {
  margin-bottom: 10px;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social ul {
}

.footer-social ul li {
  display: inline-block;
}

.footer-social ul li a {
}

.footer-social-text {
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 10px;
  letter-spacing: 1px;
}

.btn-social,
.btn-facebook .btn-twitter .btn-instagram .btn-linkedin .btn-googleplus {
  font-size: 14px;
  margin-right: 6px;
  display: inline-block;
  line-height: 1.2;
  padding: 16px 61px;
  color: #6c6c6c;
  background-color: #1e1e1e;
  margin-bottom: 10px;
}

.btn-twitter {
}

.btn-twitter:hover,
.btn-twitter:active {
  background: #0084b4;
  color: var(--white-color);
}

.btn-facebook {
}

.btn-facebook:hover,
.btn-facebook:active {
  background: #2d4372;
  color: var(--white-color);
}

.btn-googleplus {
}

.btn-googleplus {
}

.btn-googleplus:hover,
.btn-googleplus:active {
  background: #b53525;
  color: var(--white-color);
}

.btn-instagram {
}

.btn-instagram:hover,
.btn-instagram:active {
  background: radial-gradient(
    circle at 33% 100%,
    #fed373 4%,
    #f15245 30%,
    #d92e7f 62%,
    #9b36b7 85%,
    #515ecf
  );
  color: var(--white-color);
}

.btn-linkedin {
}

.btn-linkedin:hover,
.btn-linkedin:active {
  background: #006288;
  color: var(--white-color);
}

.tiny-footer {
  background-color: #080808;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

/*--- easetemplate copyright link --*/
.mute-text {
  font-size: 13px;
  font-weight: 500;
  color: #6c6c6c;
  margin-bottom: 8px;
}

.copyrightlink {
  color: #e63427;
}

.copyrightlink:hover {
  color: #e63427;
}

/*-------------------------
 9.1 Classes-list
---------------------------*/
.class-block {
  box-shadow: 0px 6px 15px rgba(229, 229, 229, 0.6);
  border-radius: 20px;
  padding: 30px;
  background-color:var(--white-color);
}

.class-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.class-img img {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.class-block:hover .class-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
.class-title {
  margin: 10px 0;
  color:var(--secondary-color);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}
.class-para {
  text-align: center;
}

/*-------------------------
 9.2 Classes-Single
---------------------------*/

#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  position: relative;
}

#cssmenu a {
  line-height: 1.3;
  padding: 18px 28px;
}

#cssmenu {
  margin-bottom: 30px;
}

#cssmenu > ul > li {
  cursor: pointer;
  background: #1a1a1a;
  border-bottom: 1px solid #141414;
}

#cssmenu > ul > li:last-child {
  border-bottom: 1px solid #141414;
}

#cssmenu > ul > li > a {
  font-size: 13px;
  display: block;
  color: var(--white-color);

  background: #1a1a1a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#cssmenu > ul > li > a:hover {
  text-decoration: none;
  color: #ff3c2e;
}

#cssmenu > ul > li.active {
  border-bottom: none;
}

#cssmenu > ul > li.active > a {
  background: #141414;
  border-left: #ff3c2e 2px solid;

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

#cssmenu > ul > li.has-sub > a:after {
  content: "\f105";
  position: absolute;
  top: 16px;
  right: 14px;
  font-family: "FontAwesome";
  font-size: 14px;
}

#cssmenu > ul > li.has-sub.active > a:after {
  content: "\f106";
  position: absolute;
  right: 14px;
  top: 16px;
  font-family: "FontAwesome";
  color: #ff3c2e;
  font-size: 14px;
}

/* Sub menu */
#cssmenu ul ul {
  padding: 0;
  display: none;
}

#cssmenu ul ul a {
  background: #1a1a1a;
  display: block;
  color: var(--white-color);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

#cssmenu ul ul a:hover {
  color: #ff3c2e;
}

#cssmenu ul ul li {
  border-bottom: 1px solid #141414;
}

#cssmenu ul ul li.odd a {
  background: #1a1a1a;
}

#cssmenu ul ul li:last-child {
  border: none;
}

.st-tabs {
  margin-bottom: 40px;
}

.st-tabs .nav-tabs {
  border-bottom: 1px solid #292929;
}

.st-tabs .nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 0px 0px 0 0;
  background-color: transparent;
  padding: 14px 40px;
  color: #dadada;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 500;
}

.st-tabs .nav-tabs > li > a:hover {
  background-color: transparent;
  color: #ff3c2e;
  border-bottom: 1px solid #ff3c2e;
}

.st-tabs .nav-tabs > li.active > a,
.st-tabs .nav-tabs > li.active > a:focus,
.st-tabs .nav-tabs > li.active > a:hover {
  cursor: default;
  background-color: transparent;
  color: #ff3c2e;
  border-bottom: 1px solid #ff3c2e;
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
}

.st-tabs .tab-content {
  background-color: transparent;
  padding-top: 50px;
  border: transparent;
}

/*-----------------------------------
10. Pages 
-------------------------------------*/

/*-------------------------
 10.1 Workshop
---------------------------*/

.event-block {
  margin-bottom: 30px;
}

.event-img {
}

.event-img img {
  width: 100%;
}

.event-content {
  background-color: #1a1a1a;
  padding: 35px;
  text-align: center;
}

.event-title {
  line-height: 28px;
  margin-bottom: 20px;
}

.event-text {
  margin-bottom: 5px;
}

/*-------------------------
 10.2 about us
---------------------------*/
.space {
  padding:120px 0;
}
.img-box1 {
  position: relative;
}

.img-box1 .img1 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Medium devices */
}

@media (max-width: 991px) {
  .img-box1 .img1 {
    margin-bottom: 30px;
  }
}

.img-box1 .img1 img {
  width: 100%;
  border-radius: 20px;
}

.img-box1 .img1 .shape_1 {
  content: "";
  position: absolute;
  left: -30px;
  top: -20px;
  z-index: -1;
  width: 474px;
  height: 395px;
  border-radius: 20px;
  -webkit-animation: movingX 8s linear infinite;
          animation: movingX 8s linear infinite;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .img-box1 .img1 .shape_1 {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 575px) {
  .img-box1 .img1 .shape_1 {
    display: none;
  }
}
.sub-title {
  color:var(--primary-color);
  font-family: "Norican", cursive;
  font-size: 24px;
}
.sec-title {
  font-size: 40px;
  color:var(--secondary-color);
  font-weight: 700;
  line-height: 55px;
}
#class-sec {
  background-color: #f0f0ec;
}
#class-sec .owl-theme .owl-nav {
  position: absolute;
  margin: 0;
  top: -102px;
  right: 0;
  width: 100%;
  max-width: 10%;
}
#class-sec .owl-carousel .owl-nav button.owl-next, 
#class-sec .owl-carousel .owl-nav button.owl-prev{
  border: 1px solid var(--white-color);
  box-shadow: 0px 0px 15px #E5E5E5;
  background-color: var(--white-color);
  border-radius: 10px;
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  font-size: 30px;
}
.service-box_icon {
  padding-bottom: 1rem;
  text-align:left;
}
#service-sec{
  position: relative;
  z-index:1;
}
.servc-blck .class-title,
.servc-blck .class-para{
  text-align:left;
  color: #fff;
}
.servc-blck {
  background-color:var(--secondary-color);
}
.service-box_icon svg {
  fill:var(--primary-color);
}
.servc-blck:hover .service-box_icon svg {
  fill: #fff;
}
.servc-blck:hover .btn-primary {
  background-color: #fff;
  color:var(--primary-color);
}

/*--------------------------
10.3  Testimonial
---------------------------*/
.testimonial-block {
  background-color: #292929;
  padding-top: 20px;
  padding-bottom: 20px;
}

.testimonial-section {
  margin-bottom: 80px;
  margin-top: 40px;
}

.testimonial-content {
  margin-top: 40px;
  font-size: 18px;
}

.testimonial-user {
  margin-bottom: 5px;
}

.testimonial-text {
  font-size: 21px;
  font-style: italic;
}

.testimonial-meta {
  color: #ff3c2e;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.testimonial-img {
}

.testimonial-img img {
  border: 2px solid #2e2e2e;
  padding: 20px;
}

.testimonials-carousel {
  margin-top: 50px;
}

.testimonials-carousel,
.owl-carousel .owl-stage-outer {
  overflow: inherit;
}

.testimonials-carousel .owl-carousel .owl-nav {
  display: none;
}

.testimonials-carousel .owl-carousel .owl-item img {
  width: inherit;
  display: inline;
}

.testimonials-carousel .owl-theme .owl-dots {
  text-align: center !important;
  position: relative;
  bottom: -30px;
}

.testimonials-carousel .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.testimonials-carousel .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 4px;
  background: #2e2e2e;
  border-radius: 0px;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
}

.testimonials-carousel .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #ff3c2e;
}

.testimonials-carousel .owl-theme .owl-carousel .owl-item img {
  width: 100%;
}

/*--------------------------
 10.4  Tutor
 ----------------------------*/
.tutor-block {
  background-color: #1a1a1a;
  padding: 30px;
}

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

.tutor-title {
  margin-bottom: 5px;
}

.tutor-designation {
  color: #ff3c2e;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 12px;
}

.tutor-img img {
  width: 100%;
  margin-bottom: 30px;
}

.social-media {
  background-color: #292929;
  padding: 12px;
  text-align: center;
}

.social-media span {
  margin-right: 18px;
  font-size: 20px;
}

/*-------------------------
 10.5 Contact us
---------------------------*/
.contact-widget {
}

.contact-block {
  background-color: #1a1a1a;
  padding: 50px;
  margin-bottom: 60px;
}
.contact-info {
  background-color: #292929;
  padding: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color:#ffffff;
}
.info-box i {
  padding-right: .5rem;
}
.info-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.service-item_title,
.instrct-item_title,
.couple-card_title {
  color: var(--secondary-color);
}
.service-item p{
  font-size:20px;
}
#instrc {
  padding-top: 0;
}
.contact-icon {
  color: #ff3c2e;
  font-size: 22px;
  vertical-align: middle;
  width: 32px;
  display: inline-block;
}

.contact-form {
  margin-bottom: 60px;
  background-color: #e62315;
  padding: 50px;
}

.contact-form .form-control {
  background-color: #ffd0cd;
  border: #ffd0cd 1px solid;
  margin-bottom: 30px;
  height: 60px;
}

.contact-form input::-webkit-input-placeholder {
  color: #141414 !important;
}

.contact-form select {
  color: #141414 !important;
}

.contact-form input[type="checkbox"],
input[type="radio"] {
  height: 50px;
  width: 18px;
  margin-top: -12px;
  margin-right: 20px;
  display: block;
}

.checkbox-text {
  padding-right: 13px;
  padding-left: 6px;
  font-weight: 400;
  text-transform: uppercase;
  color: #dadada;
}

#map {
  width: 100%;
  height: 450px;
}

#contact-map {
  width: 100%;
  min-height: 450px;
}

/*-------------------------
 10.6 Video Gallery
---------------------------*/
.video-block {
  border: 1px solid #e4e7e9;
  padding: 40px;
  margin-bottom: 30px;
}

.video-img {
}

.video-img img {
  width: 100%;
}

.video-btn {
  position: absolute;
  color: var(--white-color);
  left: 46%;
  top: 45%;
}

.video-block .video-btn {
  top: 47%;
}

.gallery-wrapper {
}

.owl-thumb-item {
  background: transparent;
  border: none;
  margin-right: 19px;
  margin-top: 20px;
  padding: 0px;
}

.owl-thumb-item:active {
}

/*-------------------------
 10.7 Locations
---------------------------*/
.location-block {
  margin-bottom: 30px;
}

.location-img {
  width: 100%;
}

.location-icon {
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: top;
}

.location-head {
  background-color: #1a1a1a;
  text-align: center;
  padding: 20px 0px;
}

.location-title {
  display: inline-block;
  margin-bottom: 0px;
  padding-top: 5px;
}

.location-content {
  background-color: #1a1a1a;
  padding: 30px;
  text-align: center;
}

.location-text {
  font-weight: 700;
  color: #ff3c2e;
}

/*-------------------------
 10.8 404 error
---------------------------*/
.error-wrapper {
  padding: 100px 250px;
  text-align: center;
  border: 20px solid #292929;
  background-color: #1a1a1a;
}

.error-title {
  font-size: 56px;
  margin-bottom: 40px;
}

/*------------------------
10.9 styleguide
--------------------------*/
.box {
  background-color: #1a1a1a;
  padding: 38px;
}

.box-info {
  font-size: 16px;
  line-height: 1.6;
}

.circle-default-color {
  background-color: #090909;
  height: 162px;
  width: 162px;
  border-radius: 50%;
  border: 5px solid #1c1c1c;
}

.circle-primary-color {
  background-color: #ff3c2e;
  height: 162px;
  width: 162px;
  border-radius: 50%;
  border: 5px solid #b93026;
}

.circle-secondary-color {
}

.circle-heading-color {
  background-color: #dadada;
  height: 162px;
  width: 162px;
  border-radius: 50%;
  border: 5px solid #9f9f9f;
}

.circle-paragraph-color {
  background-color: #6c6c6c;
  height: 162px;
  width: 162px;
  border-radius: 50%;
  border: 5px solid #5d5d5d;
}

.box-bg-color {
}

.unordered ul {
  list-style: none;
  padding-left: 16px;
}

.ordered ol {
  list-style: decimal;
  margin-left: 20px;
}

.ordered ol li {
  line-height: 2;
}

.altenate {
}

.altenate ul {
  list-style: none;
}

.altenate ul li {
  border-bottom: 1px solid #2e2e2e;
  line-height: 2.5;
}

.box-table {
  padding: 16px 30px;
  margin: 0 -15px 15px;
  border-color: ;
  border: 1px solid #dbdad8;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #1a1a1a;
}

/*------------------------
11. Blog pages
--------------------------*/

/*----- post-----*/

.post-holder {
  margin-bottom: 40px;
}

.post-head {
  background-color: #1a1a1a;
  padding: 30px;
}

.post-block {
  margin-bottom: 30px;
}

.post-img img {
  width: 100%;
}

.post-content {
  background-color: #1a1a1a;
  padding: 30px;
}

.post-title {
  margin-bottom: 0px;
}

.post-btn {
  display: inline-block;
  float: right;
}

/*----- meta -----*/
.meta {
  padding-right: 3px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
}

.meta-date {
  color: #ee4236;
  margin-right: 8px;
}

.meta-admin,
.meta-comments,
.meta-categories {
  margin-left: 8px;
  margin-right: 8px;
  color: #666666;
}

/*----- pagination -----*/
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
}

.st-pagination {
  margin-top: 30px;
}

.st-pagination .pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  line-height: 1.7;
  color: var(--white-color);
  text-decoration: none;
  font-size: 15px;
  border-radius: 0px;
  border: 1px solid #292929;
  background-color: #292929;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 2px;
  padding: 8px 16px;
  margin-bottom: 5px;
}

.st-pagination .pagination > li > a:focus,
.st-pagination .pagination > li > a:hover,
.st-pagination .pagination > li > span:focus,
.st-pagination .pagination > li > span:hover {
  z-index: 2;
  color: var(--white-color);
  background-color: #ff3c2e;
  border: #ff3c2e 1px solid;
}

.st-pagination .pagination > li:first-child > a,
.st-pagination .pagination > li:first-child > span {
  margin-left: 0;
  border-radius: 0px;
}

.st-pagination .pagination > li:last-child > a,
.st-pagination .pagination > li:last-child > span {
  border-radius: 0px;
}

.st-pagination .pagination > .active > a,
.st-pagination .pagination > .active > a:focus,
.st-pagination .pagination > .active > a:hover,
.st-pagination .pagination > .active > span,
.st-pagination .pagination > .active > span:focus,
.st-pagination .pagination > .active > span:hover {
  z-index: 3;
  color: var(--white-color);
  cursor: default;
  background-color: #ff3c2e;
  border: 1px solid #ff3c2e;
}

.related-post-block {
  margin-bottom: 40px;
  border-top: 1px solid #2e2e2e;
  border-bottom: 1px solid #2e2e2e;
  margin-top: 40px;
}

.related-post-block .meta {
  text-align: left;
}

.related-post-title {
  margin-top: 40px;
}

.related-post {
  margin-bottom: 40px;
}

.related-img img {
  margin-bottom: 30px;
}

.related-post-content {
}

/*------post-gallery----*/
.post-gallery {
}

.post-gallery-img {
  position: relative;
  width: 100%;
}

.post-gallery-img img {
  position: relative;
  z-index: -1;
}

.post-gallery .owl-theme .owl-dots {
  text-align: center !important;
  position: relative;
  bottom: 50px;
}

.post-gallery .owl-theme .owl-nav {
  line-height: 1.8;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.post-gallery .owl-theme .owl-nav .owl-prev {
  position: absolute;
  top: 40%;
  left: 0px;
  color: var(--white-color);
  font-size: 20px;
  margin: 8px;
  padding: 3px;
  background: transparent;
  border: 1px solid var(--white-color);
  display: inline-block;
  cursor: pointer;
  border-radius: 100%;
  height: 45px;
  width: 45px;
}

.post-gallery .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 40%;
  right: 0px;
  color: var(--white-color);
  font-size: 20px;
  margin: 8px;
  padding: 3px;
  background: transparent;
  border: 1px solid var(--white-color);
  display: inline-block;
  cursor: pointer;
  border-radius: 100%;
  height: 45px;
  width: 45px;
}

.post-gallery .owl-theme .owl-nav .owl-prev:hover {
  background-color: #d75e69;
  border: 1px solid #d75e69;
  text-decoration: none;
  color: var(--white-color);
}

.post-gallery .owl-theme .owl-nav .owl-next:hover {
  background-color: #d75e69;
  border: 1px solid #d75e69;
  text-decoration: none;
  color: var(--white-color);
}

.post-gallery .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.post-gallery .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 4px;
  background: var(--white-color);
  border-radius: 50px;
  border: 2px solid var(--white-color);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
}

.post-gallery .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #d75e69;
  border: 2px solid #d75e69;
}

.post-gallery .owl-theme .owl-carousel .owl-item img {
  width: 100%;
}

/*----- prev-next-----*/
.post-navigation {
  border-bottom: 1px solid #2e2e2e;
  border-top: 1px solid #2e2e2e;
  padding: 40px 0px;
}

.nav-links {
  text-decoration: none;
}

.nav-previous {
}

.prev-link .next-link {
  color: #666666;
}

.next-link {
  color: #666666;
  font-size: 12px;
}

.nav-next {
}

.next-link {
}

.previous-next-title {
  margin-bottom: 30px;
}

/*----- Author-post -----*/
.author-block {
  margin-top: 40px;
}

.author-post {
}

.author-img {
  float: left;
  margin-right: 120px;
}

.author-img img {
  margin-bottom: 30px;
}

.author-header h3 {
  margin-bottom: 10px;
}

.author-title {
}

.author-content {
  padding: 50px 0px;
}

.author-text {
  margin-top: 10px;
}

.author-meta {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.2px;
  font-size: 12px;
  color: #ff3c2e;
  margin-bottom: 30px;
  display: block;
}

/*----- Comments -----*/
.comment-area {
  margin-top: 40px;
  margin-bottom: 10px;
}

.comment-title {
  margin-bottom: 5px;
}

.comment-list {
  margin-bottom: 40px;
  border-bottom: 1px solid #2e2e2e;
}

.comment {
}

.comment-body {
}

.comment-header {
}

.comment-author {
}

.comment-author img {
  float: left;
}

.comment-info {
  padding-left: 100px;
  margin-bottom: 20px;
}

.comment-meta-date {
  color: #afb2b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  display: block;
}

.comment-content {
  margin-bottom: 10px;
  font-size: 16px;
  margin-top: 10px;
}

.comment-btn {
}

.childern {
  background-color: transparent;
  padding-left: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #2e2e2e;
}

/*----- leave-Comments -----*/
.leave-comments {
}

/*------------------------
 12. Sidebar / Widgets
--------------------------*/

/*----- widget -----*/

.widget {
  margin-bottom: 40px;
  border-radius: 0px;
  background-color: #1a1a1a;
  padding: 30px;
  border-top: 3px solid #ff3c2e;
}

.widget-title {
  font-family: "Oswald", sans-serif;
  color: #dadada;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1;
}

.widget-categories {
}

.widget-archives ul li {
  position: relative;
  margin-bottom: 8px;
}

.widget-archives ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #6c6c6c;
  padding: 3px 16px;
  display: block;
  line-height: 1.5;
  font-size: 14px;
  text-transform: uppercase;
}

.widget-categories ul li {
  position: relative;
  margin-bottom: 8px;
}

.widget-categories ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #6c6c6c;
  padding: 3px 16px;
  display: block;
  line-height: 1.5;
  text-transform: uppercase;
}

.widget-categories ul li a:hover {
  color: #ff3c2e;
}

.widget-archives ul li a:hover {
  color: #ff3c2e;
}

.widget-categories li:before {
  font-family: "FontAwesome";
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 14px;
  color: #6c6c6c;
  content: "\f105";
  top: -1px;
}

.widget-archives li:before {
  font-family: "FontAwesome";
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 14px;
  color: #6c6c6c;
  content: "\f105";
  top: -1px;
}

.widget-archives {
}

.recent-post {
  margin-bottom: 20px;
}

.recent-img img {
}

.recent-title {
  line-height: 28px;
  font-size: 16px;
}

.widget-tags {
}

.widget-tags a {
  color: var(--white-color);
  padding: 4px 10px;
  background-color: #292929;
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 0px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
  margin-right: 5px;
  border: 0px;
  letter-spacing: 1px;
}

.widget-tags a:hover {
  background-color: #ff3c2e;
  color: var(--white-color);
  border: 0px;
}

.widget-search {
}

.widget-search button {
  background-color: transparent;
  border: transparent;
  color: #6c6c6c;
  font-size: 12px;
  position: absolute;
  right: 0px;
  padding: 12px 20px;
  position: absolute;
  bottom: 0;
}

.widget-search .form-control {
  height: 49px;
  margin-bottom: 0px;
}

.search-form {
  position: relative;
}

/*-------------Template-features-------------*/
.key-features {
  margin-bottom: 30px;
}

.key-features-title {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  border-bottom: 1px solid #2e2e2e;
  margin-bottom: 12px;
  padding-bottom: 4px;
  line-height: 1;
}

.key-features p {
  font-size: 16px;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation,
.play-btn:after,
.play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
  animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}

@-webkit-keyframes headerSticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes headerSticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.movingX-reverse {
  -webkit-animation: movingX-reverse 8s linear infinite;
  animation: movingX-reverse 8s linear infinite;
}

@-webkit-keyframes movingX-reverse {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes movingX-reverse {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.moving {
  -webkit-animation: moving 8s linear infinite;
  animation: moving 8s linear infinite;
}

@-webkit-keyframes moving {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.spin {
  -webkit-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

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

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

.sectionShape {
  -webkit-animation: sectionShape 8s linear infinite;
  animation: sectionShape 8s linear infinite;
}

@-webkit-keyframes sectionShape {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

@keyframes sectionShape {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

.scalein.th-animated {
  --animation-name: scalein;
}

.slidetopleft.th-animated {
  --animation-name: slidetopleft;
}

.slidebottomright.th-animated {
  --animation-name: slidebottomright;
}

.slideinleft.th-animated {
  --animation-name: slideinleft;
}

.slideinright.th-animated {
  --animation-name: slideinright;
}

.slideinup.th-animated {
  --animation-name: slideinup;
}

.slideindown.th-animated {
  --animation-name: slideindown;
}

.rollinleft.th-animated {
  --animation-name: rollinleft;
}

.rollinright.th-animated {
  --animation-name: rollinright;
}

.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
  animation-name: var(--animation-name);
}

.th-animated {
  opacity: 1;
}

@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
    transform: translateX(70px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
    transform: translateX(70px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
    transform: translateX(-70px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
    transform: translateX(-70px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) translateY(100px);
    transform: translateX(100px) translateY(100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) translateY(100px);
    transform: translateX(100px) translateY(100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes bounceSlide {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounceSlide {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce-slide {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounceSlide;
  animation-name: bounceSlide;
}
@-webkit-keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

@-webkit-keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

.fadeOut {
  -webkit-animation: fadeOut 1s;
  animation: fadeOut 1s;
}

/*==========  Non-Mobile First Method  ==========*/
@media only screen and (min-width: 767.99px) {
  #navigation > ul {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  #navigation ul ul {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
  }
  #navigation li:hover > ul {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1440px) {
  #navigation > ul > li > a {
    padding: 16px 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .slider .owl-theme .owl-dots {
    bottom: 35px;
  }
  #class-sec .owl-theme .owl-nav {
    max-width:20%;
  }
  .page-section {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 1024px) {
  .slider-captions {
    margin: 0px 20px 20px 8px;
  }

  .slider-title {
    font-size:40px;
    line-height:55px;
  }
}
@media only screen and (max-width: 991.99px) {
  .call-text {
    font-size: 16px;
  }
  .logo {
    max-width: 55%;
  }
  #class-sec .owl-theme .owl-nav {
    position: static;
    margin: 20px 0 0 0;
    max-width: 100%;
    text-align: left;
  }
}
@media (min-width: 767.99px) and (max-width: 991.99px) {
  #navigation > ul {
    justify-content: flex-start;
  }
  #navigation > ul > li > a {
    padding: 10px 8px;
    letter-spacing: 0;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 767.99px) {
  .slider-captions {
    text-align: center;
    width: 100%;
    padding: 10px;
    margin: 0;
    max-width: 100%;
  }
  .space {
    padding:80px 0;
  }
  .slider-title {
    font-size: 30px;
    line-height: 45px;
  }

  .slider .owl-theme .owl-nav {
    display: none;
  }

  .slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px;
    background: transparent;
    border-radius: 50px;
    border: 2px solid var(--white-color);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
  }
  .logo {
    max-width: 15%;
    margin: 0 auto;
  }
  .sec-title {
    font-size:30px;
    line-height:45px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  .slider-captions {
    width: 100%;
    padding: 0;
  }

  .slider .owl-theme .owl-nav {
    display: none;
  }

  .slider .owl-theme .owl-dots {
    bottom: 24px;
  }

  .slider .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px;
    background: transparent;
    border-radius: 50px;
    border: 2px solid var(--white-color);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
  }

  .testimonial-img {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .slider .owl-carousel .owl-item .item{
    background-position: -440px 0px;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
  .slider-captions {
    text-align: center;
    bottom: -10px;
    width: 87%;
    padding: 10px;
    margin: 0px 20px 20px 18px;
  }

  .slider-title {
    font-size: 12px;
    line-height: 20px;
  }

  .slider .owl-theme .owl-nav {
    display: none;
  }

  .slider .owl-theme .owl-dots {
    bottom: 24px;
  }

  .slider .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px;
    background: transparent;
    border-radius: 50px;
    border: 2px solid var(--white-color);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
  }
  .testimonial-img {
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .error-wrapper {
    padding: 50px 40px;
  }
}
