/*========================================================================*/
/*   TABLE OF CONTENT
/*========================================================================*/
/*
/*      01. GENERAL STYLING
/*      02. HEADER
/*      03. MAIN NAVIGATION MENU
/*      04. HOME PAGE
/*      05. BLOG LAYOUT
/*      06. BLOG SINGLE PAGE
/*      07. EVENTS/CAMPAIGN PAGE
/*      08. ABOUT US PAGE
/*      09. GALLERY PAGE
/*      10. SERVICE PAGE
/*      11. 404 PAGE
/*      12. FOOTER
/*      13. SIDEBAR & WIDGETS
/*      14. RESPONSIVE STYLING
/*
/*========================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: 
 * html5doctor.com/html-5-reset-stylesheet/
 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* Remove margins for navigation lists */
nav ul,
nav li {
  margin: 0;
  list-style: none;
  list-style-image: none;
}

small {
  font-size: 85%;
}

strong,
th {
  font-weight: bold;
}

td {
  vertical-align: top;
}

textarea {
  overflow: auto;
}

/* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css ; */
input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/***********************************************************************************************/
/* 01. GENERAL STYLING  */
/***********************************************************************************************/
body {
  font: 17px/28px 'Roboto', sans-serif;
  color: #555555;
  font-style: normal;
  font-weight: 400;
  position: relative;
}

img {
  max-width: 100%;
}

a {
  color: #555555;
  text-decoration: none;
  line-height: 24px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a:hover,
a:focus {
  color: #222;
  text-decoration: none;
}

blockquote {
  font: 'Roboto', sans-serif;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #555555;
  line-height: 36px;
  margin: 0 0 16px 0;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 48px;
}

h2+p {
  margin-top: 12px;
}

h3 {
  font-size: 36px;
}

h3+p {
  margin-top: 12px;
}

h4 {
  font-size: 24px;
}

h4+p {
  margin-top: 12px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

*+p {
  margin-top: 12px;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 12px;
  padding: 0;
  letter-spacing: 0.03em;
}

ul,
li {
  list-style-type: none;
}

input[type=text],
input[type=password],
input[type=submit],
input[type=button],
textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

input[type=text]:focus,
input[type=password]:focus,
input[type=submit]:focus,
input[type=button]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

strong {
  font-weight: 600;
}

/*----- CUSTOM MARGIN ----*/
.no-margin {
  margin: 0px !important;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-12 {
  margin-top: 12px !important;
}

.margin-top-24 {
  margin-top: 24px !important;
}

.margin-top-32 {
  margin-top: 32px !important;
}

.margin-top-90 {
  margin-top: 90px !important;
}

.margin-bottom-5 {
  margin-bottom: 5px !important;
}

.margin-bottom-12 {
  margin-bottom: 12px !important;
}

.margin-bottom-24 {
  margin-bottom: 24px !important;
}

.margin-bottom-32 {
  margin-bottom: 32px !important;
}

.margin-bottom-60 {
  margin-bottom: 60px !important;
}

.margin-top-60 {
  margin-top: 60px !important;
}

.padding-bottom-60 {
  padding-bottom: 60px !important;
}

.padding-top-60 {
  padding-top: 60px !important;
}

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

.padding-bottom-30 {
  padding-bottom: 30px !important;
}

.padding-top-30 {
  padding-top: 30px !important;
}

.margin-right-0 {
  margin-right: 0px;
}

.margin-top-0 {
  margin-top: 0px !important;
}

.margin-bottom-0 {
  margin-right: 0px !important;
}

.padding-top-0 {
  padding-top: 0px !important;
}

.padding-bottom-0 {
  padding-bottom: 0px !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.about-us-slogan-bold-p {
  padding-right: 30px;
}

.about-us-slogan-bold-l {
  padding-left: 60px;
}

.link-arrow {
  width: 100%;
  clear: both;
}

.link-arrow li {
  position: relative;
  padding: 4px 0px;
  padding-left: 30px;
}

.link-arrow li::before {
  left: 0px;
  top: 10px;
  width: 30px;
  height: 20px;
  content: "\f178";
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  color: #333;
}

/*----- CUSTOM PADDING ----*/
.no-gutter [class^="col-"] {
  padding: 0px;
}

.no-padding {
  padding: 0px !important;
}

.padding-left-0 {
  padding-left: 0px;
}

.padding-right-0 {
  padding-right: 0px;
}

.padding-right-5 {
  padding-right: 5px;
}

.padding-right-11 {
  padding-right: 11px;
}

#preloader {
  background: #ffffff;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

#preloader span {
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  position: absolute;
  top: 50%;
}

#backTop {
  width: 16px;
  height: 16px;
  padding: 10px;
  border-radius: 0px;
  line-height: 0;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  z-index: 999999999;
  display: none;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

#backTop:hover {
  opacity: 1;
}

#backTop:after {
  position: absolute;
  content: '-';
  width: 16px;
  height: 16px;
  text-align: center;
  top: 0;
  left: 0;
  color: #FFF;
}

#backTop.custom {
  background-color: #222;
  background-image: url('../images/uparr-48-b.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 0px solid #f9b6bb;
  -webkit-transition: 0.2s 0.2s ease-out;
  -moz-transition: 0.2s 0.2s ease-out;
  -o-transition: 0.2s 0.2s ease-out;
  transition: 0.2s 0.2s ease-out;
}

#backTop.custom:hover {
  background-color: #333;
  border: 0px solid #d31021;
}

.text-primary-color {
  color: #DD3A3E;
}

.text-light-color {
  color: #FFFFFF;
}

.text-dark-color {
  color: #1A1A1A;
}

.text-highlighter-white {
  font-weight: 500;
}

.text-bold {
  font-weight: bold;
}

.text-highlighter {
  color: #DD3A3E;
}

.text-highlighter-white {
  color: #FFFFFF;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.alert,
.progress,
.pre {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

hr {
  margin: 0px;
  border: 0px;
  height: 1px;
  background: #d9d9d9;
}

.no-border {
  border: 0px !important;
}

.margin-top-5 {
  margin-top: 5px;
}

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

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-11 {
  margin-top: 11px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-bottom-15 {
  margin-top: 15px;
}

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

.margin-bottom-11 {
  margin-bottom: 11px;
}

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

.margin-right-0 {
  margin-right: 0px;
}

.padding-left-0 {
  padding-left: 0px;
}

.padding-right-0 {
  padding-right: 0px;
}

.padding-right-5 {
  padding-right: 5px;
}

.padding-right-11 {
  padding-right: 11px;
}

.no-padding {
  padding: 0px;
}

.no-border {
  border: 0px solid #FFFFFF !important;
}

.inline li {
  display: inline-block;
  margin-right: 24px;
}

.inline li:last-child {
  margin-right: 0;
}

.narrow-p {
  margin: 0 auto 1.5em;
  width: 30%;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.cb {
  clear: both;
}

.db {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

span.border-light-dotted {
  border-bottom: 1px dotted #DD3A3E;
}

span.border-bold-dashed {
  border-bottom: 2px dashed #DD3A3E;
}

blockquote {
  padding: 12px 26px 26px 42px;
  margin: 0 0 20px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  background: #FFFFFF;
  position: relative;
  border: 1px solid #CCCCCC;
  border-left: 4px solid #4d4d4d;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

blockquote:hover {
  border: 1px solid #a6a6a6;
  border-left: 4px solid #4d4d4d;
}

blockquote p {
  font-size: 14px;
  line-height: 24px;
}

blockquote:before {
  display: block;
  position: absolute;
  left: 12px;
  top: 14px;
  content: "\f10d";
  font-family: 'FontAwesome';
  font-size: 15px;
  color: #d6d6d6;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

blockquote.testimonial {
  background: #FFFFFF;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 0;
}

cite {
  text-align: right;
  display: block;
}

cite:before {
  margin-right: 4px;
}

.bq-author {
  padding: 16px 0 0 110px;
  position: relative;
}

.bq-author:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 69px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 0 solid transparent;
  border-top: 22px solid #dcdcdc;
  z-index: 2;
}

.bq-author:after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 70px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 0 solid transparent;
  border-top: 20px solid #fff;
  z-index: 3;
}

.bq-author h6 {
  margin-bottom: 6px;
}

.bq-author .bq-author-info {
  font-size: 12px;
}

ol li {
  padding: 0;
  margin: 0 0 10px 25px;
  list-style-type: decimal;
}

.section-container {
  margin: 24px 0 0 0;
}

.login {
  background-color: #969696;
  border-radius: 5px;
  color: #fff !important;
}

.login:hover {
  background-color: #222 !important;
  border-radius: 5px;
  color: #fff !important;
}

.section-heading {
  position: relative;
  font-size: 32px;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  display: inline-block;
  color: #555555;
}

.section-heading:after {
  background-image: url("../images/heading_bg_right.png");
  background-position: right top;
  background-repeat: no-repeat;
  content: "";
  height: 24px;
  right: 0;
  margin-right: -70px;
  position: absolute;
  top: 10px;
  width: 60px;
}

.section-heading span {
  font-style: 400;
  color: #555555;
}

.section-subheading {
  font-size: 17px;
  line-height: 32px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: #d4d4d4;
  margin-bottom: 24px;
  padding: 0px 0 0 24px;
  word-spacing: 0.03em;
  letter-spacing: 0px;
}

.section-heading-wrapper {
  margin-bottom: 32px;
}

.section-heading-wrapper.jumbo-heading-style h2 {
  font-style: normal;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0em;
  margin-bottom: 32px;
  font-weight: 400;
}

.about-us-info1 h3 {
  font-style: normal;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0em;
  margin-bottom: 32px;
  color: #fff;
  font-weight: 400;
}

.about-us-info1 p {
  line-height: 26px;
  font-size: 17px;
}

.overf {
  overflow: hidden
}

.custon-bg {
  background: #727272;
  width: 100%;
  position: absolute;
  top: 130px;
  left: -100px;
  width: 1000px;
  padding-right: 347px;
  padding-left: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.custon-bg.custom-home {
  top: 100px;
}

.overf .d-flex {
  margin-bottom: 30px;
}

.custon-bg2 {
  width: 100%;
  position: relative;
  margin-top: 70px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 60px;
}

.custon-bg2::before {
  background: #727272;
  width: 100%;
  position: absolute;
  top: 0px;
  left: -250px;
  width: 1050px;
  z-index: -1;
  height: 100%;
  content: "";
}

.custon-bg1::before {
  background: #727272;
  width: 100%;
  position: absolute;
  top: 0px;
  left: -30px;
  width: 1000px;
  z-index: -1;
  height: 100%;
  content: "";
}

.custon-bg1 {
  width: 100%;
  position: relative;
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 60px;
}

.soc-about {
  width: 100%;
  float: left;
}

.soc-about li {
  float: left;
  margin-right: 10px;
}

.soc-about li a i {
  color: #fff;
  background-color: #444;
  width: 30px;
  height: 30px;
  border-right: 50%;
  line-height: 30px;
  text-align: center;
}

.about-us-info1 {
  z-index: 999;
  position: relative;
}

.custon-bg p,
.custon-bg1 p,
.custon-bg2 p {
  color: #f5f5f5;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

.margin-top-0 {
  margin-top: 0px !important;
}

.padding-bottom-10 {
  padding-bottom: 10px !important;
}

.section-heading-wrapper.jumbo-heading-style h2:after {
  display: none;
}

.section-heading-wrapper.inline-heading-style h2 {
  display: block;
  letter-spacing: 0em;
  margin-bottom: 48px;
  line-height: 48px;
}

.section-heading-wrapper.inline-heading-style h2:after {
  display: none;
}

.section-heading-wrapper.inline-heading-style h2:before {
  content: "";
  left: 0;
  position: absolute;
  bottom: -30px;
  width: 60px;
  height: 3px;
  background: #DD3A3E;
}

.section-heading-wrapper.inline-heading-style p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 0px 0 0 0px;
  word-spacing: 0.03em;
  letter-spacing: 0px;
}

.section-heading-wrapper .text-center h2 {
  margin-bottom: 32px;
}

.section-heading-wrapper .text-center h2:after {
  left: 50%;
  margin-left: -30px;
  top: 60px;
  width: 60px;
}

.section-heading-wrapper h2 {
  position: relative;
  font-size: 36px;
  margin-bottom: 0px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  display: inline-block;
  color: #464646;
}

.section-heading-wrapper h2:after {
  background: #DD3A3E;
  content: "";
  width: 60px;
  height: 3px;
  right: -12px;
  margin-right: -70px;
  position: absolute;
  top: 22px;
}

.section-heading-wrapper h2 span {
  font-style: 400;
  color: #555555;
  font-size: 17px;
}

.section-heading-wrapper p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #7d7d7d;
  margin-bottom: 12px;
  padding: 0px 0 0 0px;
  word-spacing: 0.03em;
  letter-spacing: 0px;
}

.section-heading-wrapper-alt h2 {
  color: #FFFFFF;
}

.section-heading-wrapper-alt p {
  color: #FFFFFF;
}

.section-heading-wrapper-alt .text-center h2.section-heading:after {
  left: 50%;
  margin-left: -42px;
  top: 36px;
}

.section-heading-alt {
  color: #FFFFFF;
}

.section-heading-alt span {
  font-style: 400;
  color: #FFFFFF;
}

.section-subheading-alt {
  color: #FFFFFF;
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 87, 100, 0);
  }

  20% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 87, 100, 0.3);
  }

  50% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 87, 100, 0.5);
  }

  80% {
    -webkit-box-shadow: 0 0 0 15px rgba(242, 87, 100, 0.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 87, 100, 0);
  }
}

@keyframes pulse-effect {
  0% {
    -moz-box-shadow: 0 0 0 5px rgba(242, 87, 100, 0);
    box-shadow: 0 0 0 5px rgba(242, 87, 100, 0);
  }

  20% {
    -moz-box-shadow: 0 0 0 10px rgba(242, 87, 100, 0.3);
    box-shadow: 0 0 0 10px rgba(242, 87, 100, 0.3);
  }

  50% {
    -moz-box-shadow: 0 0 0 15px rgba(242, 87, 100, 0.5);
    box-shadow: 0 0 0 15px rgba(242, 87, 100, 0.5);
  }

  80% {
    -moz-box-shadow: 0 0 0 10px rgba(242, 87, 100, 0.3);
    box-shadow: 0 0 0 10px rgba(242, 87, 100, 0.3);
  }

  100% {
    -moz-box-shadow: 0 0 0 5px rgba(242, 87, 100, 0);
    box-shadow: 0 0 0 5px rgba(242, 87, 100, 0);
  }
}

.accordion .panel {
  margin-bottom: 3px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

.accordion .panel .panel-title a {
  display: block;
}

span.label {
  margin-right: 1px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  font-size: 100%;
}

#btn,
.btn {
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

#btn:hover,
.btn:hover {
  color: #000000;
}

.btn-dynamism {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 12px 42px;
}

.btn-dynamism:hover {
  background: #DD3A3E;
  color: #FFFFFF;
}

.btn-custom {
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  border: 1px solid #CCCCCC;
  background: #DD3A3E;
  color: #FFFFFF;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 12px 14px;
}

.btn-custom:hover {
  border-color: #a6a6a6;
  color: #DD3A3E;
  background: #FFFFFF;
}

.btn-custom-inverse {
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  border: 1px solid #CCCCCC;
  color: #DD3A3E;
  background: #FFFFFF;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 12px 14px;
}

.btn-custom-inverse:hover {
  background: #DD3A3E;
  color: #FFFFFF;
}

a.btn-load-more {
  margin-bottom: -36px;
  margin-top: 32px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: transparent;
  color: #FFFFFF;
  background: #DD3A3E;
  border: 1px solid #DD3A3E;
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

a.btn-load-more:hover {
  color: #DD3A3E;
  background: #FFFFFF;
  border: 1px solid #DD3A3E;
}

.btn-theme,
.btn-theme1,
.btn-theme2 {
  border: 0px;
  background: #484848;
  color: #FFFFFF;
  display: inline-block;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  padding: 10px 30px;
  position: relative;
  -webkit-transition: 'all''0.5s'ease-out;
  -moz-transition: 'all''0.5s'ease-out;
  -o-transition: 'all''0.5s'ease-out;
  transition: 'all''0.5s'ease-out;
  margin-bottom: 0;
  letter-spacing: 0em;
  overflow: hidden;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-theme1 {
  background: #fff;
  color: #111;
}

.btn-theme2 {
  background: #DD3A3E;
  color: #fff;
}

.btn-theme:hover {
  color: #FFFFFF;
  background-color: #444;
}

.btn-theme-invert {
  color: #FFFFFF;
  background-color: #111;
  font-weight: 400;
}

.btn-theme-invert:hover {
  background: #fff;
  color: #111;
}

.btn-capitalize {
  text-transform: capitalize !important;
}

.button {
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  color: white;
  font-weight: bold;
  height: 3em;
  line-height: 1em;
  padding: 1em;
}

.small-button {
  display: inline-block;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  color: #000000;
  font-weight: bold;
  height: 0;
  line-height: 0;
  padding: 1em 1em;
  margin: 6px 0;
  width: 100%;
}

hr.hr-half-center {
  border: 0px;
  height: 1px;
  background: #DD3A3E;
  width: 40%;
  max-width: 320px;
  margin: 0px auto 24px auto;
}



.text-curly-no-italic {
  font-style: normal;
}

.text-highlighter-primary {
  color: #222321 !important;
}

.text-highlighter-white {
  color: #FFFFFF;
}

#comment_btn {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #333333;
  padding: 6px 12px;
}

#comment_btn:hover {
  border: 1px solid #DD3A3E;
  color: #DD3A3E;
  background: transparent;
}

#contact-form .p-errors label {
  color: lightcoral;
}

#contact-form .p-errors input[type="text"],
#contact-form .p-errors input[type="email"],
#contact-form .p-errors textarea {
  border-color: lightcoral;
}

.contact-information {
  width: 90%;
  margin: 0 auto;
  display: block;
  margin-bottom: 80px;
}

.contact-text h1 {
  line-height: 60px;
  font-size: 55px;
  color: #111;
}

.contact-text p {
  margin: 30px 0px;
  color: #717483;
  font-size: 17px;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(3.25rem + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #f4f6f9 url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
  background-size: auto;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  border-radius: 5px;
  border: none;
  font-size: 14px;
  color: #717483;
}

.margin-bottom-60 {
  margin-bottom: 60px !important;
}

.contact-information .icon-container {
  float: none;
  background: #F4F6F9;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #3389FF;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 25px;
  display: block;
  text-align: center;
  margin-right: 16px;
  margin: 5px auto;
}

.box-contact {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  min-height: 244px;
  -webkit-box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.1);
}

.contact-information aside {
  float: left;
  width: 100%;
}

.contact-information h4 {
  margin-bottom: 0px;
  padding-top: 0px;
  line-height: 25px;
  font-weight: 500;
  font-size: 16px;
}

.contact-information p {
  margin-top: 0px;
}

.wp-caption {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin-bottom: 0px;
  font-size: 12px;
  font-style: italic;
  line-height: 34px;
}

.sticky {
  margin-bottom: 21px;
  background: #FFFFFF;
}

/*------------------------------ Gallery Caption  ---------------------------------*/
/*------------------------------ By Post Author ---------------------------------*/
/***********************************************************************************************/
/* 02. HEADER */
/***********************************************************************************************/
.main-header {
  height: auto;
  left: 0;
  position: relative;
  /*position: relative;*/
  top: 0;
  width: 100%;
  z-index: 1000;
}

.main-header .sticky-wrapper {
  background: #ffffff;
}

.main-header .navgiation-wrapper {
  background: #ffffff;
}

.main-header .top-bar {
  background: #bc0000;
  line-height: 48px;
  color: #FFFFFF;
  font-size: 14px;
}

.main-header .top-bar i {
  color: #FFFFFF;
  margin-right: 5px;
  display: inline-block;
}

.main-header .top-bar a {
  color: #FFFFFF;
}

.main-header ul.top-bar-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-header ul.top-bar-info li.top-bar-phone {
  text-indent: 3px;
  margin-right: 20px;
  position: relative;
  display: inline;
}

.main-header ul.top-bar-info li.top-bar-phone:after {
  content: '';
  display: inline-block;
  width: 1px;
  background: #FAFAFA;
  margin: 0 11px;
  height: 14px;
  position: absolute;
  top: 3px;
}

.main-header ul.top-bar-info li.top-bar-phone:last-child:after {
  display: none;
}

.main-header ul.top-bar-info li.top-bar-hour {
  margin-right: 20px;
  position: relative;
  display: inline;
}

.main-header ul.top-bar-info li.top-bar-hour:after {
  content: '';
  display: inline-block;
  width: 1px;
  background: #FAFAFA;
  margin: 0 11px;
  height: 14px;
  position: absolute;
  top: 3px;
}

.main-header ul.top-bar-info li.top-bar-address {
  position: relative;
  display: inline;
}

.main-header .top-bar-social {
  color: #FFFFFF;
  font-size: 16px;
  border: 0px solid #FFF;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.main-header .top-bar-social a {
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.main-header .top-bar-social a i.fa {
  width: 24px;
  height: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  color: #666;
  background: #fafafa;
  line-height: 24px;
  font-size: 14px;
  position: relative;
  top: -2px;
}

.main-header .top-bar-social a:hover i.fa {
  color: #DD3A3E;
  background: #fafafa;
}

.sticky-header {
  height: auto;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.sticky-header .top-bar {
  background: #DD3A3E;
}

.sticky-header .navgiation-wrapper {
  background: rgba(255, 255, 255, 0.97);
}

.sticky-header .sticky-wrapper {
  background: transparent !important;
}

.logo {
  margin-top: 32px;
  margin-bottom: 0;
}

.header-container {
  border-bottom: 0px solid #EEEEEE;
  padding-bottom: 0px;
  box-shadow: 0px 0px 2px -4px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s 0.2s ease-out;
  -moz-transition: 0.2s 0.2s ease-out;
  -o-transition: 0.2s 0.2s ease-out;
  transition: 0.2s 0.2s ease-out;
}

.navbar-right .dropdown-menu {
  right: 0;
  left: 0;
  min-width: 251px;
}

/***********************************************************************************************/
/* 03. MAIN NAVIGATION MENU */
/***********************************************************************************************/
.navbar-header a.logo {
  margin-top: 10px;
  display: inline-block;
  margin-bottom: 1px;
}

.navbar-header a.logo img {
  display: block;
}

.navbar-default {
  border: none;
  background: transparent;
  margin-bottom: 0px;
  padding: 0 !important;
}

/* .navbar-default .navbar-nav {
  margin-top: 22px;
  margin-bottom: 12px;
} */
.navbar-default .navbar-nav>li {
  margin-left: 0px;
}

.navbar-default .navbar-nav>li>a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
  text-transform: uppercase;
  padding-bottom: 48px;
  padding-top: 48px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 20px;
}

.navbar-brand {
  padding: 5px 5px;
  max-width: 255px;
  height: auto;
  width: 150px;
}

.icon-pri img {
  width: 30px;
}

.navbar-default .navbar-nav>li>a:hover {
  color: #000000;
}

.navbar-default .navbar-nav>li:last-child a {
  padding-bottom: 10px;
  padding-top: 10px;
  margin: 38px 1px;
}

.navbar-default .navbar-nav li.drop {
  position: relative;
}

.navbar-default .navbar-nav li.drop a:after {
  content: "\f107";
  font-family: fontawesome;
  position: absolute;
  right: -3px;
  top: 15px;
  font-weight: normal;
}

.navbar-default .navbar-nav li ul.drop-down {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 71px;
  left: 0;
  width: 190px;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  text-align: left;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar-default .navbar-nav li ul.drop-down li {
  list-style: none;
  display: block;
  margin: 0;
}

.navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -o-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  top: 0px;
  left: 100%;
  border-bottom: none;
}

.navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 a:after {
  content: '';
}

.navbar-default .navbar-nav li ul.drop-down li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  display: block;
  color: #000000;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
  border: none;
}

.navbar-default .navbar-nav li ul.drop-down li a:after {
  content: '';
  font-family: FontAwesome;
  position: absolute;
  right: 12px;
}

.navbar-default .navbar-nav li ul.drop-down li a:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #FFFFFF;
}

.navbar-default .navbar-nav li ul.drop-down li.drop a {
  display: inline-block;
  text-decoration: none;
  display: block;
  color: #000000;
  font-size: 14px;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
  border: none;
}

.navbar-default .navbar-nav li ul.drop-down li.drop a:after {
  content: '\f105';
  font-family: FontAwesome;
  position: absolute;
  right: 12px;
}

.navbar-default .navbar-nav li ul.drop-down li.drop a:hover {
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.8);
}

.navbar-default .navbar-nav li ul.drop-down li:hover ul.drop-down.level3 {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.navbar-default .navbar-nav li ul.drop-down li:hover ul.drop-down.level3 a:after {
  content: '';
}

.navbar-default .navbar-nav li ul.drop-down li:last-child {
  border-bottom: none;
}

.navbar-default .navbar-nav li:hover>ul.drop-down {
  visibility: visible;
  opacity: 1;
}

header.one-page .navbar-nav>li {
  margin-left: 0;
}

header.one-page .navbar-nav>li>a span {
  color: #DD3A3E;
}

.stuck {
  position: fixed;
  top: 0;
  left: 0px;
  right: 0px;
  z-index: 99;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  padding: 0px;
  margin: 0 !important;
  -webkit-box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.05);
}

.menu-container {
  border: 5px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.8);
  margin-top: 20px;
  padding: 0px 20px;
}

.menu-container .navbar-nav li ul.drop-down {
  top: 66px;
}


.dropdown-menu>li.kopie>a {
  padding-left: 5px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu>a:after {
  border-color: transparent transparent transparent #333;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: " ";
  display: block;
  float: right;
  height: 0;
  margin-right: -10px;
  margin-top: 5px;
  width: 0;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #555;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>.active>a:hover {
  text-decoration: none;
}

.dropdown-menu {
  border: 0px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

header nav li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  display: block;
  color: #000000;
  padding: 32px 20px;
  text-transform: uppercase;
  font-weight: 500;
  /* background: rgba(255, 255, 255, 0.9); */
  margin: 0;
  padding: 10px 13px;
  border: none;
}

.dropdown-menu li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  display: block;
  color: #000000;
  padding: 10px 8px;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
  border: none;
}

footer .textwidget p {
  color: #fff;
}

.navbar li.active a {
  color: #b40000 !important;
  background-color: transparent !important;
}

.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
  color: #b40000 !important;
  background-color: transparent;
}

.dropdown.active .dropdown-menu li a {
  color: #222 !important;
}

.dropdown .dropdown-menu li a:hover {
  background: rgba(0, 0, 0, 0.8) !important;
  color: #fff !important;
}

.navbar-nav li:last-child .dropdown-menu {
  right: auto;
  left: 0;
  min-width: 251px;
  margin-left: -158px;
}

.navbar-nav li:last-child .dropdown-menu a {
  margin: 0px;
}

@media (max-width: 767px) {
  .navbar {
    min-height: 64px;
  }

  .navbar-brand img {
    max-width: 123px;
  }

  .navbar-nav {
    display: inline;
  }

  .navbar-default .navbar-brand {
    display: inline;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: #222;
  }

  .navbar-default .navbar-toggle {
    border-color: #000;
  }

  .navbar-default .navbar-nav .dropdown-menu>li>a {
    color: red;
    background-color: #fff;
    border-radius: 0px;
    margin-top: 2px;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    color: #333 !important;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
    background-color: #ccc !important;
  }

  .navbar-nav li:last-child .dropdown-menu {
    margin: 0px;
    min-width: 200px;
  }

  .navbar-nav .open .dropdown-menu {
    border-bottom: 1px solid white;
    border-radius: 0;
  }

  .dropdown-menu {
    padding-left: 10px;
  }

  .dropdown-menu .dropdown-menu {
    padding-left: 20px;
  }

  .dropdown-menu .dropdown-menu .dropdown-menu {
    padding-left: 30px;
  }

  li.dropdown.open {
    border: 0px solid red;
  }

}

@media (min-width: 768px) {
  ul.nav li:hover>ul.dropdown-menu {
    display: block;
  }

  #navbar {
    text-align: center;
  }
}


/***********************************************************************************************/
/* 04. HOME PAGE */
/***********************************************************************************************/
.highlight-layout-1 {
  margin: 24px 0;
  background: transparent;
  padding: 0px;
  position: relative;
}

.highlight-layout-1 figure {
  margin-bottom: 20px;
}

.highlight-layout-1 figure img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  top: 0px;
  transform: rotateY(0deg);
  width: auto !important;
  display: inline-block !important;
}

.highlight-layout-1 h5 {
  color: #555555;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 22px;
  margin-top: 12px;
}

.highlight-layout-1 p {
  color: #555555;
}

.highlight-layout-1 a {
  margin-top: 24px;
  color: #DD3A3E;
  background: #FAFAFA;
  padding: 10px 15px;
  display: inline-block;
  display: none;
}

.highlight-layout-1:hover figure img {
  position: relative;
  top: -10px;
  transform: rotateY(360deg);
}

.highlight-carousel {
  clear: both;
}

.highlight-carousel [class^="col-"] {
  width: 100%;
}

.highlight-carousel .owl-nav {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.6;
  margin: 0;
  z-index: 1;
}

.highlight-carousel .owl-nav [class*="owl-"] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.highlight-carousel .owl-nav .owl-prev {
  left: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #DD3A3E;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: left;
}

.highlight-carousel .owl-nav .owl-prev:hover {
  color: #5c96bb;
}

.highlight-carousel .owl-nav .owl-next {
  right: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #DD3A3E;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: right;
}

.highlight-carousel .owl-nav .owl-next:hover {
  color: #5c96bb;
}

.highlight-carousel .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}

.highlight-carousel .owl-dots .owl-dot {
  -webkit-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 4px;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid #CCCCCC;
  margin: 0 4px;
}

.highlight-carousel .owl-dots .owl-dot span {
  display: block;
  background: #254559;
}

.highlight-carousel .owl-dots .active span {
  padding: 0px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #59a10d;
}

.highlight-carousel:hover .owl-nav {
  opacity: 1;
}

.section-content-block {
  padding: 80px 0 80px 0;
  background: #FFFFFF;
}

.section-content-block a button.button {
  margin-bottom: 5px;
  width: auto;
  min-width: 200px;
  background-color: #5b5b5b;
  padding: 1px 5px;
  margin: 0px;
  color: #fff;
  display: inline-block;
  text-shadow: none;
}

.btn-tes {
  width: auto;
  min-width: 200px;
  margin: 5px;
  display: inline-block;
}

.section-pure-white-bg {
  background: #FFFFFF !important;
}

.section-secondary-bg {
  background: #F9FAFB !important;
}

.section-pure-black-bg {
  background: #000000;
}

.section-white-bg-overlay {
  overflow: hidden;
  position: relative;
  clear: both;
}

.section-white-bg-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  background: #f7f7f7;
  opacity: 0.8;
  content: '';
  width: 100%;
  height: 6000px;
}

.section-theme-bg-overlay {
  overflow: hidden;
  position: relative;
  clear: both;
}

.section-theme-bg-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  background: #DD3A3E;
  opacity: 0.7;
  content: '';
  width: 100%;
  height: 6000px;
}

.section-black-bg-overlay {
  overflow: hidden;
  position: relative;
  clear: both;
}

.section-black-bg-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  background: #2C2C2C;
  opacity: 0.7;
  content: '';
  width: 100%;
  height: 6000px;
}

.slider-wrap {
  clear: both;
}

#slider_1 {
  text-align: left;
}

#slider_1 .item img {
  display: block;
  width: 100%;
  height: auto;
}

#slider_1 .slider_item_container {
  position: relative;
  text-align: left;
  width: 100%;
  min-height: 550px;
  background-repeat: no-repeat;
  background-size: cover;
  background: #000000;
}

#slider_1 .slider-content {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  -webkit-transform: translateY(-55%);
  -moz-transform: translateY(-55%);
  -o-transform: translateY(-55%);
  transform: translateY(-55%);
  width: 100%;
}

#slider_1 .slider-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 70px;
  line-height: 70px;
  font-weight: 900;
  margin: 0px 0 0;
  color: #fff;
}

#slider_1 .slider-content h2 span {
  background: rgba(235, 70, 74, 0.8);
  padding: 0 3px;
}

#slider_1 .slider-content h2.jumbo-heading {
  font-size: 90px;
  line-height: 70px;
  color: #fff;
  text-shadow: 1px 1px 1px #666666;
}

#slider_1 .slider-content h2.jumbo-heading span {
  color: #fff;
  background: none;
  padding: 0px;
  text-shadow: 1px 1px 1px #666666;
}

#slider_1 .slider-content h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0.02em;
  margin: 16px 0 0;
  color: #fff;
  text-shadow: 1px 1px 1px #666666;
}

#slider_1 .slider-content a.btn-slider {
  font-size: 16px;
  margin-top: 36px;
  background: #111111;
  border: 0px solid #111111;
  color: #FFFFFF;
  line-height: 48px;
  padding-left: 42px;
  padding-right: 42px;
  font-weight: 600;
  text-align: left;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

#slider_1 .slider-content a.btn-slider:hover {
  background: #254559;
  border: 0px solid #DD3A3E;
  color: #FFFFFF;
}

#slider_1 .owl-nav {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.6;
  margin: 0;
  z-index: 1;
}

#slider_1 .owl-nav [class*="owl-"] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

#slider_1 .owl-nav .owl-prev {
  left: 0%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 60px;
  color: #fff;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: center;
}

#slider_1 .owl-nav .owl-prev:hover {
  color: #fff;
}

#slider_1 .owl-nav .owl-next {
  right: 0%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 60px;
  color: #fff;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: center;
}

#slider_1 .owl-nav .owl-next:hover {
  color: #fff;
}

#slider_1 .owl-dots {
  margin: 0;
  position: absolute;
  bottom: 24px;
  left: 48%;
  margin-left: -50px;
  width: 110px;
  text-align: center;
}

#slider_1 .owl-dots .owl-dot {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 2px;
  width: 16px;
  height: 8px;
  background: #FAFAFA;
  margin: 0 4px;
}

#slider_1 .owl-dots .owl-dot span {
  display: none;
}

#slider_1 .owl-dots .active {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 24px;
  background: #111;
}

#slider_1 .owl-dots .active span {
  display: none;
}

#slider_1:hover .owl-nav {
  opacity: 1;
}

.slide-bg {
  height: 100%;
  width: 100%;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  background-origin: initial;
  background-repeat: no-repeat;
  -webkit-transition: all 5s ease-out;
  -moz-transition: all 5s ease-out;
  -o-transition: all 5s ease-out;
  transition: all 5s ease-out;
  transform: rotate(0deg) scale(1);
}

.slidezoom {
  transform: rotateY(2deg) scale(1.1);
}

.owl-carousel .owl-item {
  overflow: hidden !important;
}

.section-banner {
  padding: 250px 0px 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.banner-content {
  width: 100%;
}

.banner-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 70px;
  line-height: 70px;
  font-weight: 900;
  margin: 0px 0 0;
  color: #FFFFFF;
}

.banner-content h2 span {
  background: rgba(235, 70, 74, 0.8);
  padding: 0 3px;
}

.banner-content h2.jumbo-heading {
  font-size: 70px;
  line-height: 70px;
  text-shadow: 1px 1px 1px #666666;
}

.banner-content h2.jumbo-heading span {
  color: #DD3A3E;
  background: none;
  padding: 0px;
  text-shadow: 1px 1px 1px #666666;
}

.banner-content h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0em;
  margin: 16px 0 0;
  color: #FFFFFF;
  text-shadow: 1px 1px 1px #666666;
}

.banner-content span.slider-text-separator {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: #DD3A3E;
  margin: 24px 0 12px 0;
}

.banner-content a.btn-slider {
  font-size: 16px;
  margin-top: 36px;
  background: #DD3A3E;
  border: 0px solid #DD3A3E;
  color: #FFFFFF;
  line-height: 48px;
  padding-left: 42px;
  padding-right: 42px;
  font-weight: 600;
  text-align: left;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.banner-content a.btn-slider:hover {
  background: #254559;
  border: 0px solid #DD3A3E;
  color: #FFFFFF;
}

.home-page-section-heading span {
  font-size: 16px;
  font-weight: normal;
  font-style: italic;
  color: #676767;
}

.home-page-section-sub-heading {
  font-size: 26px;
  line-height: 32px;
  font-style: italic;
  color: #808080;
}

.btn-heading {
  background: transparent;
  border: 2px solid #DD3A3E;
  color: #DD3A3E;
}

.theme-gradient {
  background: transparent !important;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, rgba(255, 0, 0, 0), #ff0000) !important;
  /*Safari 5.1-6*/
  background: -o-linear-gradient(right, rgba(255, 0, 0, 0), #ff0000) !important;
  /*Opera 11.1-12*/
  background: -moz-linear-gradient(right, rgba(255, 0, 0, 0), #ff0000) !important;
  /*Fx 3.6-15*/
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) !important;
  /*Standard*/
}

.latest-news-container {
  border: 0px solid #CCCCCC;
  margin-bottom: 24px;
}

.latest-news-container figure {
  display: block;
  position: relative;
  overflow: hidden;
}

.latest-news-container figure img {
  display: block;
  position: relative;
  width: 1000%;
  overflow: hidden;
}

.latest-news-container figure:after {
  font-family: FontAwesome;
  content: '+';
  position: absolute;
  right: 150%;
  margin-left: -30px;
  bottom: -64px;
  background: #FFFFFF;
  color: #DD3A3E;
  text-align: center;
  width: 60px;
  height: 60px;
  font-size: 30px;
  line-height: 60px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.latest-news-container .news-content {
  position: relative;
  background: #FFFFFF;
  padding: 15px 25px 35px;
}

.latest-news-container .news-content h3 {
  color: #1A1A1A;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 32px;
  margin-bottom: 16px;
  margin-top: 24px;
}

.latest-news-container .news-content h3 a {
  display: block;
}

.latest-news-container .news-content p {
  color: #555555;
}

.latest-news-container .news-content .news-meta-info {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  position: absolute;
  background: #DD3A3E;
  color: #FFFFFF;
  padding: 8px 24px;
  top: -24px;
  left: 20px;
}

.latest-news-container:hover figure:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  top: 50%;
  left: 50%;
  margin-top: -30px;
}

.counter-section-1 {
  padding: 0px;
}

.counter-layout-1 {
  border: 1px solid #CCCCCC;
  background: #F9FAFB;
  border-top: 0px;
  padding: 20px;
}

.counter-layout-1 i {
  float: left;
  font-size: 72px;
  display: none;
  margin: 12px 12px 0 0;
  color: #e6e6e6;
}

.counter-layout-1 span.counter {
  display: block;
  font-size: 46px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 46px;
  margin: 5px 0;
  position: relative;
  text-align: center;
  left: -11px;
}

.counter-layout-1 span.counter:after {
  position: absolute;
  content: '+';
  font-size: 48px;
  display: inline-block;
  margin-left: 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #9a9a9a;
}

.counter-layout-1 span.counter_text {
  color: #eb464a;
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 32px;
  text-transform: uppercase;
  text-align: center;
}

.counter-layout-1:first-child {
  border-right: 0px;
}

.counter-layout-1:nth-child(2) {
  border-right: 0px;
}

.counter-layout-1:nth-child(3) {
  border-right: 0px;
}

.ce_event_wrap,
.default_width {
  float: left;
  position: relative;
  width: 100%;
}

.ce_event_wrap img,
.default_width img {
  height: auto;
  width: 100%;
}

.ce_event_wrap .ce_event_des_wrap,
.default_width .ce_event_des_wrap {
  position: relative;
  padding: 0px;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_date,
.default_width .ce_event_des_wrap .ce_event_date {
  border: 1px solid #CCCCCC;
  color: #DD3A3E;
  background-color: #ffffff;
  float: left;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  margin-left: -100px;
  padding: 6px;
  position: absolute;
  text-align: center;
  top: -32px;
  width: 200px;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_new_des,
.default_width .ce_event_des_wrap .ce_event_new_des {
  float: none;
  padding: 0px;
  width: auto;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_new_des h5 a,
.default_width .ce_event_des_wrap .ce_event_new_des h5 a {
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #DD3A3E;
  text-transform: capitalize;
  display: block;
  margin: 24px 0 15px;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_new_des h5 a:hover,
.default_width .ce_event_des_wrap .ce_event_new_des h5 a:hover {
  color: #555555;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_new_des ul,
.default_width .ce_event_des_wrap .ce_event_new_des ul {
  text-transform: uppercase;
  float: left;
  margin: 0 0 10px;
  width: 100%;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_new_des ul li,
.default_width .ce_event_des_wrap .ce_event_new_des ul li {
  color: #555555;
  display: inline-block;
  font-size: 14px;
  padding: 0 10px;
  position: relative;
  list-style: outside none none;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_new_des ul li:first-child,
.default_width .ce_event_des_wrap .ce_event_new_des ul li:first-child {
  padding-left: 0;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_new_des ul li a,
.default_width .ce_event_des_wrap .ce_event_new_des ul li a {
  color: #555555;
  display: inline-block;
  font-weight: 300;
}

.ce_event_wrap .ce_event_des_wrap .ce_event_new_des ul li i,
.default_width .ce_event_des_wrap .ce_event_new_des ul li i {
  margin-right: 5px;
}

.ce_event_wrap:hover .ce_event_des_wrap .ce_event_date,
.default_width:hover .ce_event_des_wrap .ce_event_date {
  color: #DD3A3E;
}

.event_wrapper {
  border: 1px solid #CCCCCC;
}

.event_wrapper .event-img {
  position: relative;
  display: block;
  clear: both;
  overflow: hidden;
  margin: -1px -1px 0px -1px;
}

.event_wrapper .event-img img {
  display: block;
  clear: both;
  text-align: center;
  opacity: 1;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  max-width: 100%;
}

.event_wrapper .event-img .event-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #DD3A3E;
  margin: 0;
  color: #FFFFFF;
  clear: both;
}

.event_wrapper .event-img .event-info .event-date {
  padding: 6px;
  width: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
}

.event_wrapper .event-img .event-info .event-date i.fa {
  position: absolute;
  content: '';
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: #DD3A3E;
  color: #FFFFFF;
  top: -10px;
  left: 50%;
  margin-left: -16px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.event_wrapper .event-img .event-info .event-location {
  background: #ee2838;
  padding: 6px;
  float: right;
  width: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
}

.event_wrapper .event-img .event-info .event-location i.fa {
  position: absolute;
  content: '';
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: #ee2838;
  color: #FFFFFF;
  top: -10px;
  left: 50%;
  margin-left: -16px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.event_wrapper .event-text {
  text-align: center;
  padding: 12px;
}

.event_wrapper .event-text .event-time {
  font-weight: 600;
}

.event_wrapper .event-text .event-time span.speaker-name {
  font-weight: 400;
  font-style: italic;
}

.event_wrapper .event-text h5 a {
  margin-top: 18px !important;
  font-size: 22px;
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 32px;
}

.event_wrapper:hover .event-img {
  position: relative;
  display: block;
  clear: both;
}

.event_wrapper:hover .event-img img {
  display: block;
  clear: both;
  text-align: center;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.9;
}

.event_wrapper:hover .event-img .event-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #DD3A3E;
  margin: 0;
  color: #FFFFFF;
  clear: both;
}

.event_wrapper:hover .event-img .event-info .event-date {
  padding: 6px;
  width: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
}

.event_wrapper:hover .event-img .event-info .event-date i.fa {
  position: absolute;
  content: '';
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: #DD3A3E;
  color: #FFFFFF;
  top: -32px;
  left: 50%;
  margin-left: -16px;
  opacity: 1;
}

.event_wrapper:hover .event-img .event-info .event-location {
  background: #ee2838;
  padding: 6px;
  float: right;
  width: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
}

.event_wrapper:hover .event-img .event-info .event-location i.fa {
  position: absolute;
  content: '';
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: #ee2838;
  color: #FFFFFF;
  top: -32px;
  left: 50%;
  margin-left: -16px;
  opacity: 1;
}

.event-carousel {
  clear: both;
}

.event-carousel [class^="col-"] {
  width: 100%;
}

.event-carousel .owl-nav {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.6;
  margin: 0;
  z-index: 1;
}

.event-carousel .owl-nav [class*="owl-"] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.event-carousel .owl-nav .owl-prev {
  left: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #DD3A3E;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: left;
}

.event-carousel .owl-nav .owl-prev:hover {
  color: #254559;
}

.event-carousel .owl-nav .owl-next {
  right: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #DD3A3E;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: right;
}

.event-carousel .owl-nav .owl-next:hover {
  color: #254559;
}

.event-carousel .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}

.event-carousel .owl-dots .owl-dot {
  -webkit-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 4px;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid #CCCCCC;
  margin: 0 4px;
}

.event-carousel .owl-dots .owl-dot span {
  display: block;
  background: #254559;
}

.event-carousel .owl-dots .active span {
  padding: 0px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #f68690;
}

.event-carousel:hover .owl-nav {
  opacity: 1;
}

.cta-section-1 {
  padding: 80px 0 0;
}

.cta-section-1 h2 {
  font-size: 42px;
  line-height: 42px;
  color: #1A1A1A;
  margin: 48px 0 36px 0;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.cta-section-1 h2 small {
  display: inline-block;
  margin-bottom: 24px;
}

.cta-section-1 p {
  margin-bottom: 42px;
  color: #808080;
}

.cta-section-1 .btn-cta-1 {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 0px;
  padding: 10px 24px;
  color: #FFFFFF;
  background: #DD3A3E;
  font-size: 14px;
  font-weight: 600px;
}

.cta-img {
  vertical-align: middle;
  padding: 0;
  margin: 0;
}

.cta-img img {
  display: block;
}

.cta-section-3 {
  padding: 120px 0;
  background: transparent;
  background-image: url('../images/pattern_1.png');
  background-repeat: repeat;
  background-position: center center;
  background-size: initial;
  background-attachment: fixed;
  display: block;
  clear: both;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section-3:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #DD3A3E;
  opacity: 0.9;
  top: 0;
  left: 0;
  content: '';
}

.cta-section-3 h2 {
  font-size: 36px;
  line-height: 48px;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cta-section-3 p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

.newsletter-area-bg {
  padding: 55px 0;
  background-color: #2C2C2C;
  color: #FFFFFF;
}

.newsletter-area-bg h3 {
  color: #FFFFFF;
  font-size: 24px;
}

.newsletter-area-bg p {
  margin-top: 20px;
  margin-bottom: 0px;
}

.newsletter-area-bg .newsletter-form {
  height: 50px;
  margin-top: 28px;
  overflow: hidden;
  position: relative;
}

.newsletter-area-bg .newsletter-form>input {
  background: #FFFFFF;
  border: 0;
  color: #333333;
  height: 50px;
  padding-left: 13px;
  width: 100%;
}

.newsletter-area-bg .newsletter-form>button {
  background: #FFFFFF;
  border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #999999;
  border-style: none none none solid;
  border-width: 0 0 0 1px;
  color: #DD3A3E;
  font-weight: 700;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100px;
}

.newsletter-area-bg .newsletter-form>button:hover {
  background: #e6e6e6;
}

.testimonial-block {
  background: #DD3A3E;
  padding: 42px;
}

.testimonial-block h4 {
  font-size: 30px;
  line-height: 36px;
  color: #FFFFFF;
}

.testimonial-block p {
  color: #FFFFFF;
}

.section-news-block .news-wrapper {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}

.section-news-block .news-wrapper .news-img {
  display: block;
  position: relative;
  overflow: hidden;
}

.section-news-block .news-wrapper .news-img img {
  margin-bottom: 0px !important;
  width: 100%;
  display: block;
}

.section-news-block .news-wrapper .news-img .date-meta {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 60px;
  background: #DD3A3E;
  font-size: 30px;
  width: 110px;
  text-align: center;
  margin-left: -55px;
  color: #FFFFFF;
  padding: 6px 0;
  font-weight: 600;
}

.section-news-block .news-wrapper .news-img .date-meta span {
  font-size: 16px;
  display: block;
}

.section-news-block .news-wrapper .news-meta {
  list-style: none;
  overflow: hidden;
  margin: 6px 0;
}

.section-news-block .news-wrapper .news-meta li {
  display: block;
}

.section-news-block .news-wrapper .news-button {
  border-radius: 0 !important;
  border: 0px;
  transition: all 0.4s ease 0s;
  background: #DD3A3E;
  font-size: 14px;
  color: #FFFFFF;
}

.section-news-block .news-wrapper .news-button:hover {
  background: #FFFFFF;
  border: 0px;
  color: #DD3A3E;
}

.section-news-block .news-wrapper .news-content {
  padding: 0px 12px 24px 12px;
}

.section-news-block .news-wrapper .news-content .news-text h5 a {
  font-family: 'Roboto', sans-serif;
  margin-top: 18px !important;
  color: #444444;
  font-size: 18px;
  line-height: 32px;
  display: block;
  text-transform: capitalize;
  font-weight: 400;
}

.section-news-block .news-wrapper .news-content .news-text p {
  font-size: 16px;
  font-weight: normal;
}

.section-news-block .news-wrapper:hover .news-img:before {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.section-news-block .news-wrapper:hover .news-button {
  background: #eb464a;
  color: #FFFFFF;
}

.section-news-block .news-wrapper:hover .news-button .fa {
  color: #FFFFFF;
}

.btn-social-icon {
  height: 42px;
  width: 42px;
  border: 0;
  border-radius: 0px !important;
  margin: 3px 3px;
  color: #FFFFFF;
  background-color: #939393;
}

.btn-social-icon:hover {
  color: #FFFFFF;
  background-color: #222;
}

.btn-social-icon .fa {
  line-height: 32px;
}

.section-contact-block {
  position: relative;
  overflow: hidden;
}

.section-contact-block .content-block {
  padding: 0 48px 0 0;
}

.section-contact-block .contact-title {
  font-size: 24px;
  border-bottom: 3px solid #fff;
  color: #DD3A3E;
  padding-bottom: 0px;
  position: relative;
}

/* .section-contact-block .contact-title:after {
  bottom: -3px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 32px;
  background: #DD3A3E;
} */
.section-contact-block .contact-info li {
  margin-bottom: 24px;
}

.section-contact-block .contact-info .icon-container {
  display: inline-block;
  background: #939393;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  margin-right: 16px;
}

.section-contact-block .contact-info .icon-container i {
  font-size: 14px;
}

.section-contact-block .contact-info address {
  display: inline-block;
}

.section-contact-block .contact-info a {
  color: #555555;
}

.section-contact-block .contact-info a:hover {
  color: #DD3A3E;
}

.section-contact-block .contact-form-block {
  padding: 0 0 0 0px;
}

.section-contact-block #contact-form input[type=text],
.section-contact-block #contact-form input[type=email],
.section-contact-block #contact-form input[type=url],
.section-contact-block #contact-form input[type=password] {
  width: 100%;
  background: #f4f6f9;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  height: 55px;
  color: #717483;
  padding: 25px 30px;
  font-weight: 500;
}

.section-contact-block #contact-form textarea {
  background-color: #f4f6f9;
  border: 0px
}

.section-contact-block #contact-form textarea:focus {

  border: 0px;
}

.section-transparent-bg {
  background: transparent !important;
}

/***********************************************************************************************/
/* MAIN CONTENT */
/***********************************************************************************************/
.main-content {
  margin: 48px 0;
}

/***********************************************************************************************/
/* 05. BLOG LAYOUT */
/***********************************************************************************************/
.page-header {
  margin: 0;
  padding: 100px 0 100px;
  height: 365px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-attachment: scroll;
  background-color: transparent;
  background-image: url('../images/header-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  border: 0px solid #FFF;
  background-position: 0% 0px !important;
}

/* .page-header:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(74 73 73 / 65%);
  top: 0;
  left: 0;
  content: '';
  z-index: -1;
} */

.page-header h3 {
  color: #FFFFFF;
  text-align: center;
  font-size: 36px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin: 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 120px;
  text-shadow: 2px 2px #000000;
}

b {
  font-weight: 700;
}

.page-header .page-breadcrumb {
  font-size: 18px;
  color: #FFFFFF;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  text-shadow: 2px 2px #000000;
}

.page-header .page-breadcrumb a {
  color: #FFFFFF;
}

.page-header .page-breadcrumb a:hover {
  color: #DD3A3E;
}

.single-post {
  margin-bottom: 50px;
}

.single-post p {
  line-height: 30px;
}

.single-post .single-post-content {
  margin-bottom: 30px;
  padding: 6px;
  background: #F9FAFB;
}

.single-post .single-post-content p a {
  display: block;
}

.single-post .single-post-content p a img {
  width: 100%;
  display: block;
}

.single-post .single-post-title {
  line-height: 24px;
}

.single-post .single-post-title h2 {
  font-size: 28px;
  line-height: 32px;
  line-height: 30px;
  font-weight: 500;
}

.single-post .single-post-title .single-post-meta {
  font-size: 15px;
}

.readmore {
  border: 0px;
  background: #DD3A3E;
  color: #FFFFFF;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 12px 24px;
}

.readmore-sm {
  border: 0px;
  background: #DD3A3E;
  color: #FFFFFF;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 6px 12px;
}

/***********************************************************************************************/
/* 06. BLOG SINGLE PAGE */
/***********************************************************************************************/
.single-post-inner {
  background: #F9FAFB;
  padding: 30px;
}

.post-inner-featured-content {
  display: block;
}

.post-inner-featured-content img {
  display: block;
  width: 100%;
  text-align: center;
}

.single-post-inner-title {
  margin-bottom: 24px;
}

.single-post-inner-title h2 {
  font-size: 32px;
  margin: 32px 0 24px 0;
}

.single-post-inner-meta h2 {
  font-size: 24px;
}

.single-post-inner-meta .tag-list a {
  display: inline-block;
  padding: 4px 12px;
  margin-right: 3px;
  background: #DD3A3E;
  color: #FFFFFF;
}

.custom-post-info {
  margin: 0;
  padding: 0;
}

.custom-post-thumb-small {
  width: 70px;
  height: 70px;
}

.custom-post-thumb-medium {
  width: 350px;
  height: 120px;
}

.single-post-container {
  margin: 0 0 24px 0;
}

.single-post-container h3 {
  margin: 24px 0 12px 0;
  font-size: 18px;
  text-transform: capitalize;
}

.single-post-container h3 a {
  color: #555555;
}

.single-post-container h3 a:hover {
  color: #333333;
}

.single-post-container .custom-breadcrumb {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
}

.single-post-container .article-meta-extra {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 6px 0;
  margin-bottom: 12px;
}

.single-post-container .article-meta-extra span {
  margin-right: 5px;
}

.single-post-container .article-meta-extra span:last-child {
  margin-right: 0px;
}

.single-post-container .article-meta-extra i {
  color: #555555;
  margin-right: 3px;
}

.single-post-container h2+p {
  margin-top: 12px;
}

.single-post-content h1 {
  margin: 12px 0;
}

.single-post-content h2 {
  margin: 12px 0;
}

.single-post-content h3 {
  margin: 12px 0;
}

.single-post-content h4 {
  margin: 12px 0;
}

.single-post-content h5 {
  margin: 12px 0;
}

.single-post-content h6 {
  margin: 12px 0;
}

.articles-nav {
  margin-top: -1.5em;
  margin-bottom: 1.5em;
  padding: 0 2.4em;
}

.articles-nav .articles-nav-prev {
  float: left;
}

.articles-nav .articles-nav-next {
  float: right;
}

.aligncenter,
.alignleft,
.alignright,
.alignnone {
  margin: 12px 0 24px 0;
  max-width: 100%;
  height: auto;
}

.aligncenter,
img.centered {
  display: block;
  margin: 12px auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.alignnone {
  clear: both;
}

.wp-caption {
  text-align: center;
}

.wp-caption img {
  max-width: 100%;
  max-height: auto;
}

.wp-caption .wp-cap {
  margin-bottom: 0px;
  font-size: 12px;
}

.post-navigation {
  text-align: center;
  clear: both;
}

.post-navigation p {
  text-transform: uppercase;
}

.post-navigation p a {
  position: relative;
  padding-left: 24px;
  margin-right: 5px;
}

.post-navigation p a:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 4px;
  left: 3px;
  background: transparent;
  border: 1px solid #CCCCCC;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.post-navigation p a:hover:before {
  background: #DD3A3E;
  border: 1px solid #333333;
}

.post-navigation p a:first-child {
  margin-right: 0px;
}

.comments-nav-section,
.post-nav-section {
  margin: 24px 0 0 0;
}

.comments-nav-section p,
.post-nav-section p {
  margin-bottom: 0px;
}

.comments-nav-section a,
.post-nav-section a {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  background: transparent;
  color: #333333;
  padding: 6px 12px;
}

.comments-nav-section a:hover,
.post-nav-section a:hover {
  border: 1px solid #DD3A3E;
  color: #DD3A3E;
  background: transparent;
}

.article-share-section {
  margin: 24px 0 0 0;
  border: 1px solid #CCCCCC;
  border-left: 0px;
  border-right: 0px;
  padding: 14px 0 10px 0;
}

.article-author {
  margin-top: 24px;
  background: #F9FAFB;
  padding: 30px;
  min-height: 100px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 24px;
}

.article-author .author-avatar img {
  width: 100px;
  max-width: 100%;
  max-height: auto;
  float: right;
  border: 1px solid #CCCCCC;
  padding: 3px;
  margin-top: 0px;
  margin-left: 12px;
}

.article-author .about_author {
  margin-bottom: 24px;
}

.article-author .social-icons a {
  display: inline-block;
  padding: 8px 10px;
  text-align: center;
  border: 1px solid #999999;
  color: #555555;
  margin-right: 3px;
}

.article-author .social-icons a:hover {
  color: #DD3A3E;
}

.related-post {
  margin-top: 24px;
  background: #F9FAFB;
  padding: 30px;
}

.related-post ul li {
  margin: 5px 0;
}

.related-post ul li a {
  font-size: 15px;
  position: relative;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  color: #555555;
}

.related-post ul li a:hover {
  color: #DD3A3E;
}

ul.pagination li a {
  color: #DD3A3E;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 6px 12px;
  border: 0px;
  margin: 0 2px;
}

ul.pagination li a:hover {
  backgroud: #000 !important;
}

ul.pagination li a.current {
  background: #DD3A3E;
  color: #FFFFFF;
  border: 0px;
}

ul.pagination li:first-child {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

ul.pagination li:last-child {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.comments-area {
  margin-top: 24px;
  background: #F9FAFB;
  padding: 30px;
}

.article-add-comments {
  float: right;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #555555;
  border: 1px solid #CCCCCC;
  background: #FFFFFF;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.article-add-comments:hover {
  border: 1px solid #DD3A3E;
  color: #DD3A3E;
}

.commentslist {
  margin-top: 24px;
  counter-reset: comment-id;
}

.commentslist li {
  list-style-type: none;
  margin-left: 0px;
}

.commentslist li:first-child {
  margin-top: 24px;
}

.commentslist li+li {
  margin-top: 24px;
}

.commentslist li ol,
.commentslist li ul {
  padding-left: 3em;
  margin-left: 3em;
  border-left: 1px dotted #CCCCCC;
  list-style-type: none;
}

.commentslist li ol li,
.commentslist li ul li {
  position: relative;
}

.commentslist li ol li::before,
.commentslist li ul li::before {
  content: '';
  width: 2em;
  height: 1px;
  border-bottom: 1px dotted #CCCCCC;
  position: absolute;
  left: -3em;
  top: 2em;
}

.commentslist li article {
  background: #FFFFFF;
  padding: 12px;
}

.commentslist li article header {
  border-bottom: 1px solid #CCCCCC;
  font-size: 12px;
  margin-bottom: 1.5em;
  position: relative;
}

.commentslist li article header span {
  color: #808080;
}

.commentslist li article header::before {
  counter-increment: comment-id;
  content: counter(comment-id);
  position: absolute;
  right: 5px;
  top: 15px;
  color: #F8F8F8;
  font-size: 32px;
  font-family: 'Roboto', sans-serif;
}

.commentslist li article header h5 {
  margin-bottom: 12px;
  text-transform: capitalize;
  color: #555555;
}

.commentslist li article header h5 a {
  color: #555555;
}

.commentslist li article header h5 a:hover {
  color: #333333;
}

.commentslist li article header h5 span {
  font-size: 12px;
  background: #000000;
  color: #FFFFFF;
  padding: 3px 5px;
  font-style: normal;
  margin-right: .5em;
}

.commentslist li article .comment_text {
  padding-right: 24px;
}

.comment-avatar img {
  width: 64px;
  height: 64px;
  float: right;
  background: #FFFFFF;
  margin: 2px;
  border: 1px solid #CCCCCC;
  padding: 2px;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.comment-avatar img:hover {
  border-color: #a6a6a6;
}

.waiting-moderation {
  color: #808080;
}

.comments-nav-section {
  margin: 48px 0;
}

.comments-nav-section .btn-primary {
  background: #FFFFFF;
}

.comments-nav-section .btn-primary:hover {
  background: #FFFFFF;
}

#comment-form label {
  margin-bottom: 12px;
}

#comment-form input[type=text],
#comment-form input[type=email],
#comment-form input[type=url],
#comment-form input[type=password] {
  border: 0px;
  border-bottom: 1px solid #EEE;
  line-height: 42px;
  height: 42px;
  margin-bottom: 24px;
  padding: 0 12px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

#comment-form input[type=text]:focus,
#comment-form input[type=email]:focus,
#comment-form input[type=url]:focus,
#comment-form input[type=password]:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #a1a1a1;
}

#comment-form textarea {
  border: 0px;
  border-bottom: 1px solid #EEE;
  padding: 12px;
  margin-bottom: 24px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

#comment-form textarea:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border: 0px;
  border-bottom: 1px solid #a1a1a1;
}

/***********************************************************************************************/
/* 07. EVENTS/CAMPAIGN PAGE */
/***********************************************************************************************/
.event-search-box {
  margin-bottom: 48px;
  padding: 24px;
  background: #FAFAFA;
  border: 1px solid #CCCCCC;
}

.event-search-box input {
  border: 0px;
  border-bottom: 1px dotted #999999;
}

.event-search-box input:focus {
  border-bottom: 1px dotted #4d4d4d;
}

.event-search-box button {
  border-radius: 0px;
}

.event-search-box .btn-event-search {
  background-color: #DD3A3E;
  border-color: #DD3A3E;
  color: #fff;
}

.event-search-box .btn-event-search:hover {
  background-color: #ee2838;
}

.event-content-title {
  font-size: 24px;
  border-bottom: 3px solid #eeeeee;
  color: #5c5c5c;
  padding-bottom: 15px;
  position: relative;
}

.event-content-title:after {
  bottom: -3px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 32px;
  background: #DD3A3E;
}

.event-sub-content-title {
  margin-top: 12px;
  font-weight: bold;
  display: block;
}

.event-sub-content-title em.date {
  font-weight: normal;
  border-bottom: 1px dashed #b3b3b3;
  cursor: help;
}

.event-content-info {
  font-size: 14px;
}

.article-event {
  margin-top: 24px;
  background: #F9FAFB;
  padding: 30px;
  min-height: 100px;
  border-bottom: 0px solid #CCCCCC;
  padding-bottom: 24px;
}

.article-event .single-post-inner {
  padding: 12px 0px;
}

/***********************************************************************************************/
/* 07. ABOUT US PAGE */
/***********************************************************************************************/
.about-us-header {
  background-image: url("../images/our_mission_bg.html");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.section-heading-bold {
  position: relative;
  font-size: 32px;
  margin-bottom: 32px;
  line-height: 48px;
}

.about-us-full-width {
  background: #F9FAFB;
  padding: 0;
}

.about-featured-image-block {
  background: transparent;
  background-image: none;
  background-repeat: repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto auto;
  background-image: url('../images/about_us_bg.jpg');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  height: 720px;
}

.about-us-info-block {
  padding: 52px 0 52px 52px;
}

.about-us-info {
  margin-top: 72px;
  margin-bottom: 60px;
}

.about-us-bg {
  background-image: url("../images/about_us_bg.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: relative;
  overflow: hidden;
  background-color: #e0e6eb;
}

.section-about-us {
  clear: both;
}

.about-us-slogan {
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 42px;
  margin-bottom: 48px;
  position: relative;
}

.about-us-slogan:after {
  content: "";
  height: 3px;
  left: 0;
  background: #DD3A3E;
  position: absolute;
  bottom: -25px;
  width: 72px;
}

.about-us-slogan-bold {
  font-weight: 800;
  font-size: 50px;
  line-height: 72px;
  letter-spacing: 0.01em;
}

.about-us-slogan-bold span {
  font-weight: 500;
  font-size: 24px;
}

.about-us-slogan-alt {
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 42px;
  margin-bottom: 32px;
}

/*------------------------------  NEW ABOUT LAYOUT---------------------------------*/
.section-feat-about-us {
  position: relative;
  margin: 80px 0px;
  margin-bottom: 0px;
}

.feat-img-side-bg {
  left: 0;
  padding: 0;
  position: absolute !important;
  top: 0px;
  height: 100%;
  overflow: hidden;
  z-index: 100;
}

.feat-img-side-bg.img {
  position: absolute;
  top: -30px;
  left: 0;
  max-width: 100%;
}

.service-lists {
  position: relative;
  float: left;
  display: block;
  padding-top: 24px;
  clear: both;
}

.service-lists.custom-service {
  background: #EEEEEE;
  padding-left: 24px;
}

.service-lists.custom-service:before {
  top: 0;
  right: 0;
  content: '';
  width: 100px;
  height: 100px;
  background: yellow;
}

.service-lists li {
  width: 50%;
  float: left;
  margin: 16px 0;
}

.service-lists li .service-item {
  padding-left: 84px;
  position: relative;
}

.service-lists li .service-icon {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: #FFFFFF;
  color: #DD3A3E;
  border: 2px solid #CCCCCC;
  height: 60px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  line-height: 54px;
  left: 0px;
  position: absolute;
  top: 8px;
  width: 60px;
  text-align: center;
  font-size: 24px;
}

.service-lists li .service-icon:hover {
  color: #254559;
  background: #fafafa;
  border-color: #DD3A3E;
}

.service-lists li .service-text {
  position: relative;
}

.service-lists li .service-text span {
  position: relative;
  display: block;
  padding-top: 6px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
}

.service-lists li .service-text span:after {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 32px;
  height: 1px;
  background: #CCCCCC;
  content: '';
}

.service-lists li .service-text p {
  color: #959595;
}

.about-us-img img {
  display: block;
}

.about-us-layout-2 {
  display: block;
  padding: 12px 0px 0px;
}

.about-us-layout-2 .about-us-img-2 {
  overflow: hidden;
  position: relative;
}

.about-us-layout-2 .about-us-img-2:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3000px;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.about-us-layout-2 .about-us-img-2:after {
  color: #343434;
  position: absolute;
  font-family: FontAwesome;
  content: '\f04b';
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 40px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  text-indent: 5px;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.about-us-layout-2 .about-us-img-2 img {
  display: block;
  width: 100%;
}

.about-us-layout-2 .about-us-img-2:hover:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3000px;
  background: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}

.about-us-layout-2 .about-us-img-2:hover:after {
  color: #1A1A1A;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 6px rgba(237, 19, 93, 0.7);
}

.full-width-video-box {
  display: block;
  margin: 24px 0 48px 0;
  padding: 0px;
}

.full-width-video-box .video-box-img-container {
  overflow: hidden;
  position: relative;
}

.full-width-video-box .video-box-img-container:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3000px;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.full-width-video-box .video-box-img-container:after {
  color: #343434;
  position: absolute;
  font-family: FontAwesome;
  content: '\f04b';
  width: 110px;
  height: 110px;
  line-height: 110px;
  font-size: 42px;
  top: 50%;
  left: 50%;
  margin-left: -55px;
  margin-top: -55px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  text-indent: 5px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  animation: pulse-effect 3s infinite;
}

.full-width-video-box .video-box-img-container img {
  display: block;
  width: 100%;
}

.full-width-video-box .video-box-img-container:hover:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3000px;
  background: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}

.full-width-video-box .video-box-img-container:hover:after {
  color: #DD3A3E;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 0px #254559;
}

.section-our-team {
  clear: both;
}

.section-our-team .team-centered {
  text-align: center !important;
}

.team-layout-1 {
  background: #fafafa;
  position: relative;
  margin-bottom: 0px;
  margin-bottom: 25px;
  box-shadow: 0px 1px 5px -1px rgb(0 0 0 / 22%);
  border-bottom: 5px solid #ccc;
}

.partner-logo {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}

.team-layout-1 .team-member {
  overflow: hidden;
  border: 1px solid #f5f5f5;
}

.team-layout-1 .team-member a {
  display: block;
  position: relative;
}

.team-layout-1 .team-member a:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: #DD3A3E;
  opacity: 0.01;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.9s ease-out;
  -moz-transition: all 0.9s ease-out;
  -o-transition: all 0.9s ease-out;
  transition: all 0.9s ease-out;
}

.team-layout-1 .team-member img {
  vertical-align: middle;
  width: 100%;
}

.team-layout-1 .team-info {
  padding: 6px 12px;
}

.team-layout-1 h3 {
  font-family: 'Roboto', sans-serif;
  margin: 12px 0 0 0;
  font-size: 19px;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.team-layout-1 h4 {
  font-family: 'Roboto', sans-serif;
  color: #666;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-weight: 500;
  padding-bottom: 12px;
}

.team-layout-1 p {
  color: #7b7b7b;
  margin: 0;
  font-weight: 400;
}

.team-layout-1 .team-social-share {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0;
  position: absolute;
  top: 30%;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  margin: 15px 0px 0px 0px;
  padding: 5px;
}

.team-layout-1 .team-social-share a {
  border: 1px solid #CCCCCC;
  display: inline-block;
  margin: 0 2px;
  background: #FFFFFF;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

.team-layout-1:hover .team-member a {
  display: block;
  position: relative;
}

.team-layout-1:hover .team-member a:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: rgb(89 160 13 / 58%);
  opacity: 0.4;
  width: 1000px;
  height: 100%;
}

.team-layout-1:hover .team-social-share {
  opacity: 1;
  top: 40%;
}

.team-layout-1:hover .team-social-share a {
  display: inline-block;
  margin: 0 2px;
  border: 1px solid #CCCCCC;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

.team-carousel {
  clear: both;
}

.team-carousel [class^="col-"] {
  width: 100%;
}

.team-carousel .owl-nav {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.6;
  margin: 0;
  z-index: 1;
}

.team-carousel .owl-nav [class*="owl-"] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.team-carousel .owl-nav .owl-prev {
  left: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #DD3A3E;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: center;
}

.team-carousel .owl-nav .owl-prev:hover {
  color: #254559;
}

.team-carousel .owl-nav .owl-next {
  right: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #DD3A3E;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: center;
}

.team-carousel .owl-nav .owl-next:hover {
  color: #254559;
}

.team-carousel .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}

.team-carousel .owl-dots .owl-dot {
  -webkit-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 4px;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid #CCCCCC;
  margin: 0 4px;
}

.team-carousel .owl-dots .owl-dot span {
  display: block;
  background: #254559;
}

.team-carousel .owl-dots .active span {
  padding: 0px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #59a10d;
}

.team-carousel:hover .owl-nav {
  opacity: 1;
}

.section-counter {
  background-image: url("../images/counter_bg.jpg");
  background-repeat: no-repeat;
  background-position: 0 70%;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.counter-block-1 {
  margin: 0 0 24px 0;
}

.counter-block-1 h4 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 42px;
  color: #FFFFFF;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  position: relative;
}

.counter-block-1 h4.invert {
  color: #254559;
}

.counter-block-1 h4:before {
  content: '';
  position: absolute;
  width: 42px;
  height: 1px;
  top: -12px;
  left: 50%;
  margin-left: -21px;
  background: #DD3A3E;
}

.counter-block-1 .counter {
  display: block;
  margin-top: 0px;
  font-size: 42px;
  color: #DD3A3E;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
}

.counter-block-1 .icon {
  font-size: 42px;
  display: block;
  margin: 32px 0;
  color: #FFFFFF;
}

.counter-block-1 .icon.invert {
  color: #254559;
}

.counter-block-1.text-left h4 {
  position: relative;
}

.counter-block-1.text-left h4:before {
  left: 0;
  margin-left: 0px;
}

.counter-block-1.text-right h4 {
  position: relative;
}

.counter-block-1.text-right h4:before {
  left: initial;
  right: 0;
  margin-left: 0px;
}

.counter-block-2 {
  margin: 24px 0;
}

.counter-block-2 h4 {
  margin-top: 12px;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  letter-spacing: 0.03em;
  position: relative;
}

.counter-block-2 h4:after {
  content: '';
  position: absolute;
  width: 42px;
  height: 2px;
  bottom: -22px;
  left: 50%;
  margin-left: -21px;
  background: #DD3A3E;
}

.counter-block-2 .counter {
  display: block;
  margin-top: 48px;
  font-size: 48px;
  color: #333333;
  font-weight: 400;
}

.counter-block-2 .icon {
  font-size: 42px;
  display: block;
  margin: 32px 0;
  color: #d4d4d4;
  display: none;
}

.counter-block-2.text-left h4 {
  position: relative;
}

.counter-block-2.text-left h4:after {
  left: 0;
  margin-left: 0px;
}

.counter-block-2.text-right h4 {
  position: relative;
}

.counter-block-2.text-right h4:after {
  left: initial;
  right: 0;
  margin-left: 0px;
}

.section-client-testimonial {
  background: transparent;
  background-image: url("../images/testimony_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.section-client-testimonial:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 5000px;
  overflow: hidden;
  content: '';
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
}

.section-testimonial-bg {
  background-image: url("../images/testimonial_bg_2.jpg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  background-attachment: initial;
  position: relative;
  overflow: hidden;
  background-color: #d1dee4;
  padding: 160px 0 200px 0;
}

.section-testimonial-bg-alt {
  background-image: url("../images/testimonial_bg_alt.jpg");
}

.testimony-layout-1 {
  position: relative;
  padding: 60px 0 0 0;
}

.testimony-layout-1 h6 {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: #7b7b7b;
}

.testimony-layout-1 span {
  font-size: 14px;
  color: #888888;
}

.testimony-layout-1 img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 32px;
  display: inline-block !important;
}

.testimony-layout-1 .testimony-text {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 32px;
  margin: 0 0 24px 0;
  padding-top: 24px;
  color: #555555;
}

/*.testimony-layout-1 .testimony-text:before*/
.testimony-layout-1 .testimony-text i {
  opacity: 0.7;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-style: normal;
  color: #FFFFFF;
  position: absolute;
  font-family: FontAwesome;
  content: '\f10d';
  top: -60px;
  left: 50%;
  margin-left: -32px;
  font-size: 32px;
  line-height: 64px;
  width: 64px;
  height: 64px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #DD3A3E;
  text-align: center;
}

.testimony-layout-1 .testimony-text img {
  opacity: 0.7;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-style: normal;
  color: #FFFFFF;
  position: absolute;
  font-family: FontAwesome;
  content: '\f10d';
  top: -60px;
  left: 50%;
  margin-left: -32px;
  font-size: 32px;
  line-height: 64px;
  width: 64px;
  height: 64px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #DD3A3E;
  text-align: center;
}

.testimony-layout-1:hover .testimony-text {
  clear: both;
}

.testimony-layout-1:hover .testimony-text:before {
  opacity: 1;
  background: #254559;
}

.testimonial-container.single-item .testimony-text {
  max-width: 720px;
}

.testimonial-container.light-color-style .testimony-text {
  color: #FFFFFF;
}

.testimonial-container.light-color-style h6,
.testimonial-container.light-color-style span {
  color: #FFFFFF;
}

.testimonial-container.text-left {
  text-align: left;
}

.testimonial-container.text-left .testimony-text {
  text-align: left;
}

.testimonial-container.text-left .testimony-text:before {
  font-style: normal;
  color: #DD3A3E;
  position: absolute;
  font-family: FontAwesome;
  content: '\f10d';
  top: -42px;
  left: 0;
  margin-left: 0px;
  font-size: 100px;
  line-height: 150px;
  width: 150px;
  height: 150px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: transparent;
  text-align: left;
  z-index: -1;
  opacity: 0.4;
}

.testimonial-container.text-left .owl-dots {
  text-align: left !important;
  margin: 24px 0px 0 12px !important;
}

.testimonial-container {
  clear: both;
}

.testimonial-container [class^="col-"] {
  width: 100%;
}

.testimonial-container .owl-nav {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.6;
  margin: 0;
  z-index: 1;
}

.testimonial-container .owl-nav [class*="owl-"] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.testimonial-container .owl-nav .owl-prev {
  left: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #DD3A3E;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: left;
}

.testimonial-container .owl-nav .owl-prev:hover {
  color: #5c96bb;
}

.testimonial-container .owl-nav .owl-next {
  right: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #DD3A3E;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: right;
}

.testimonial-container .owl-nav .owl-next:hover {
  color: #5c96bb;
}

.testimonial-container .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}

.testimonial-container .owl-dots .owl-dot {
  -webkit-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 4px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  margin: 0 4px;
}

.testimonial-container .owl-dots .owl-dot span {
  display: block;
  background: #162935;
}

.testimonial-container .owl-dots .active span {
  padding: 0px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #ee2838;
}

.testimonial-container:hover .owl-nav {
  opacity: 1;
}

.btn-cta {
  width: 200px;
  font-weight: bold;
  text-transform: uppercase;
}

/***********************************************************************************************/
/* SECTION APPOINTMENT  */
/***********************************************************************************************/
.section-appointment-bg {
  background: transparent;
  background-image: url("../images/appointment_bg.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  background-attachment: initial;
  position: relative;
  overflow: hidden;
}

.section-appointment-bg:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 5000px;
  overflow: hidden;
  content: '';
  background: rgb(101 101 101 / 30%);
  position: absolute;
}

.appointment-form-wrapper {
  background: rgb(255 255 255 / 35%);
  padding: 42px 12px 42px;
}

.appointment-form-wrapper .appointment-form-heading {
  position: relative;
  background: #DD3A3E;
  padding: 30px;
  margin: -1px -1px 48px -1px;
}

.appointment-form-wrapper .appointment-form-heading p.form-title {
  position: relative;
  clear: both;
  overflow: hidden;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
}

.appointment-form-wrapper .appoinment-form {
  padding: 0 12px;
}

.appointment-form-wrapper .appoinment-form .form-control {
  font-size: 14px;
}

.appointment-form-wrapper .appoinment-form .form-group {
  margin-bottom: 0;
  position: relative;
}

.appointment-form-wrapper .appoinment-form .form-group i {
  position: absolute;
  top: 12px;
  right: 32px;
  font-size: 17px;
  color: #e6e6e6;
  transition: all 0.5s ease 0s;
}

.appointment-form-wrapper .appoinment-form .form-control::-moz-placeholder {
  color: #737373;
  font-size: 14px;
  text-transform: capitalize;
}

.appointment-form-wrapper .appoinment-form label {
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 10px 0;
  color: #FFFFFF;
}

.appointment-form-wrapper .appoinment-form input[type=text],
.appointment-form-wrapper .appoinment-form input[type=email],
.appointment-form-wrapper .appoinment-form input[type=url],
.appointment-form-wrapper .appoinment-form input[type=password] {
  color: #737373;
  border: 1px solid #ccc;
  line-height: 42px;
  padding-right: 32px;
  height: 42px;
  margin-bottom: 0px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.appointment-form-wrapper .appoinment-form input[type=text]:focus,
.appointment-form-wrapper .appoinment-form input[type=email]:focus,
.appointment-form-wrapper .appoinment-form input[type=url]:focus,
.appointment-form-wrapper .appoinment-form input[type=password]:focus {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
}

.appointment-form-wrapper .appoinment-form textarea {
  color: #737373;
  border: 0px;
  border: 1px solid #ccc;
  padding-left: 2px;
  margin-bottom: 24px;
  padding: 6px 12px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.appointment-form-wrapper .appoinment-form textarea:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #CCCCCC;
}

.appointment-form-wrapper .appoinment-form select {
  border: 0px;
  border: 1px solid #ccc;
  padding-left: 2px;
  margin-bottom: 24px;
  padding: 6px 12px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.appointment-form-wrapper .appoinment-form select:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #CCCCCC;
}

.appointment-form-wrapper .appoinment-form .select-style {
  position: relative;
}

.appointment-form-wrapper .appoinment-form .select-style select.form-control {
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url("../images/down_arrow.html");
  background-position: 100% 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  box-shadow: none;
  color: #737373;
  padding: 6px 12px;
  height: 42px;
  line-height: 32px;
  margin-bottom: 24px;
  font-size: 14px;
}

.appoinment-person {
  position: relative;
  top: 12px;
}

/***********************************************************************************************/
/* 09. GALLERY PAGE */
/***********************************************************************************************/
.section-gallery-block-parallax {
  background-attachment: scroll;
  background-color: transparent;
  background-image: url('../images/bg-geometry.html');
  background-repeat: repeat;
  background-size: initial;
}

.gallery-container {
  padding: 12px;
  margin: 0;
}

.no-padding-gallery .gallery-container {
  padding: 0px;
  margin: 0;
}

.no-bottom-padding {
  padding-bottom: 0px;
}

.gallery-light-box {
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery-light-box .gallery-img {
  display: block;
  position: relative;
  max-width: 100%;
  padding: 6px;
}

.gallery-light-box .gallery-img:before {
  opacity: 0.3;
  background: #DD3A3E;
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.gallery-light-box .gallery-img:after {
  font-family: FontAwesome;
  content: '\f1c5';
  position: absolute;
  right: 150%;
  margin-left: -21px;
  bottom: -64px;
  background: #FFFFFF;
  color: #DD3A3E;
  text-align: center;
  width: 42px;
  height: 42px;
  line-height: 42px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.gallery-light-box .gallery-img img {
  width: 100%;
  max-width: 100%;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}

.gallery-light-box:hover .gallery-img:before {
  background: #DD3A3E;
  width: 100%;
  height: 1500px;
}

.gallery-light-box:hover .gallery-img:after {
  opacity: 1;
  top: 50%;
  left: 50%;
  margin-top: -24px;
}

.gallery-light-box:hover .gallery-img img {
  opacity: 0.4;
}

.gallery-light-box:hover .gallery-img figcaption {
  bottom: 0px;
  left: 0;
}

/***********************************************************************************************/
/*  FAQ PAGE */
/***********************************************************************************************/
.faq-layout {
  position: relative;
  overflow: hidden;
}

.faq-layout .panel {
  box-shadow: none;
}

.faq-layout .panel-default {
  position: relative;
  border: 0px solid #EEE;
  padding: 17px 16px 0;
  background: #f7f7f7;
  border-radius: 0;
}

.faq-layout .faq-box .panel-heading {
  background: none;
  border: 0 none;
  display: block;
  padding: 16px;
  margin: -16px -15px;
  background: #DD3A3E;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.faq-layout .faq-box .panel-heading:hover {
  background: #2C2C2C;
}

.faq-layout .faq-box .panel-title {
  display: block;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  margin-top: 0;
  font-size: inherit;
  text-transform: uppercase;
  color: #FFFFFF;
}

.faq-layout .faq-box .panel-title>a {
  line-height: 24px;
  display: block;
  color: #FFFFFF;
}

.faq-layout .faq-box .panel-title>a:hover,
.faq-layout .faq-box .panel-title>a:focus {
  outline: none;
  color: #FFFFFF;
}

.faq-layout .faq-box .panel-body {
  padding-top: 32px;
  padding-left: 0px;
}

.faq-layout .faq-box .panel-heading [data-toggle="collapse"]:after {
  font-family: 'FontAwesome';
  content: '\f0d8';
  float: left;
  color: #FFFFFF;
  font-size: 16px;
  margin-right: 10px;
}

.faq-layout .faq-box .panel-heading [data-toggle="collapse"].collapsed:after {
  content: '\f0d7';
}

/***********************************************************************************************/
/* 10. SERVICE PAGE */
/***********************************************************************************************/
.service-header {
  background-image: url("../images/home_1_banner.html");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.section-services {
  background: transparent;
  background-image: url("../images/service_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: initial;
  position: relative;
  overflow: hidden;
}

.section-services:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 5000px;
  overflow: hidden;
  content: '';
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
}

.section-services .service-block-bg {
  overflow: hidden;
  padding: 6px;
  border: 1px solid #CCCCCC;
  margin-top: 42px;
  background: #f2f2f2;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.section-services .service-block-bg:hover {
  background: rgb(0 0 0 / 3%);
}

.section-services .service-block-bg:hover .service-block {
  background: #ffffff;
}

.section-services .service-block-bg:hover .service-block i.fa {
  bottom: 20px;
  font-size: 48px;
  position: absolute;
  right: 24px;
  color: #808080;
  opacity: 0.5;
}

.section-services .service-block-bg:hover .service-block a.service_read_more {
  color: #DD3A3E;
}

.section-services-bg {
  background-color: #ccc;
  /* background-image: url(../images/background2.png); */
  /* background-repeat: repeat;
  background-position: center right;
  background-size: cover;
  background-attachment: initial; */
  position: relative;
  overflow: hidden;
}

.service-layout-1 {
  margin-top: 0px;
  margin-bottom: 10px;
  background: transparent;
  position: relative;
  padding: 0;

}

.services-p .service-layout-1 {
  margin-bottom: 25px;
  box-shadow: 0px 1px 5px -1px rgb(0 0 0 / 22%);
  border-radius: 5px;
}

.side-img {
  padding: 0px;
}

.service-layout-1 .service-img-box {
  display: block;
  overflow: hidden;
  position: relative;
}

.service-layout-1 .service-img-box .service-img {
  display: block;
  position: relative;
  max-width: 100%;
  padding: 0px;
}

.services-frame-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.figure-i {
  width: 200px;
  height: 250px;
  margin: 0 auto;
  display: block;
  position: relative;
  background: #727272;
}

.figure-i figure img {
  padding-top: 45%;
}

.services-frame-1 img {
  width: 100%;
  height: 100%;
}

.overf .services-frame-1 img {
  width: 100%;
  height: 101%;
}

.service-layout-1 .service-img-box .service-img:before {
  background: #254559;
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.service-layout-1 .service-img-box .service-img:after {
  font-family: FontAwesome;
  content: '\f0c1';
  position: absolute;
  right: 150%;
  margin-left: -21px;
  bottom: -64px;
  background: #FFFFFF;
  color: #222;
  text-align: center;
  width: 42px;
  height: 42px;
  line-height: 42px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}

.service-layout-1 .service-img-box .service-img img {
  width: 100%;
  max-width: 100%;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.service-layout-1 .service-img-box:hover .service-img:before {
  background: rgb(0 0 0 / 100%);
  width: 100%;
  height: 1500px;
}

.service-layout-1 .service-img-box:hover .service-img:after {
  opacity: 1;
  top: 50%;
  left: 50%;
  margin-top: -24px;
}

.service-layout-1 .service-img-box:hover .service-img img {
  opacity: 0.5;
  -webkit-transform: scale(1.1) rotate(3deg);
  -moz-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

.service-layout-1 .service-img-box:hover .service-img figcaption {
  bottom: 0px;
  left: 0;
}

.service-layout-1 h2 {
  font-size: 17px;
  color: #555555;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  line-height: 22px;
  min-height: 44px;
}

.service-layout-1 h2:after {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: absolute;
  content: '';
  bottom: -12px;
  left: 0;
  display: block;
  width: 60px;
  height: 1px;
  margin-left: 0px;
  background: #DD3A3E;
}

.service-layout-1 p {
  margin-top: 24px;
}

.service-layout-1 a.service_read_more {
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  color: #222;
  display: inline-block;
}

.service-layout-1 i.fa {
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  font-size: 48px;
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: #222;
  opacity: 1;
}

.service-layout-1:hover .icon {
  color: #222;
  top: 60px;
  opacity: 1;
}

.service-layout-1:hover h2:after {
  background: #222;
  width: 100px;
  height: 1px;
}

.service-carousel {
  clear: both;
}

.service-carousel [class^="col-"] {
  width: 100%;
}

.service-carousel .owl-nav {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.6;
  margin: 0;
  z-index: 1;
}

.service-carousel .owl-nav [class*="owl-"] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #222;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.service-carousel .owl-nav .owl-prev {
  left: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #222;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: left;
}

.service-carousel .owl-nav .owl-prev:hover {
  color: #254559;
}

.service-carousel .owl-nav .owl-next {
  right: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  color: #222;
  background: transparent;
  margin-top: -42px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: right;
}

.service-carousel .owl-nav .owl-next:hover {
  color: #254559;
}

.service-carousel .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}

.service-carousel .owl-dots .owl-dot {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 4px;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid #CCCCCC;
  margin: 0 4px;
}

.service-carousel .owl-dots .owl-dot span {
  display: block;
  background: #254559;
}

.service-carousel .owl-dots .active span {
  padding: 0px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #f68690;
}

.service-carousel:hover .owl-nav {
  opacity: 1;
}

.service-info {
  padding: 12px 15px;
}

.section-client-logo {
  clear: both;
}

.box-care,
.box-care img {
  position: relative;
}

.box-over {
  display: none;
}

.box-over h5,
.box-over p {
  color: #fff;
}

.box-care:hover .box-over {
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: block;
  background-color: rgb(0 0 0 / 90%);
  padding: 10px;
}

.content {
  position: relative;
  width: 100%;
  margin: 15px auto;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.1);
}

.content .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 50px;
  width: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  -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;
}

.content:hover .content-overlay {
  opacity: 1;
  height: 100%;
}

.content-image {
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 1;
  -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;
  height: 50px;
}

.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
  height: auto;
}

.content-details h3 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.10em;
  font-size: 16px;
  margin-bottom: 0.5em;
}

.content-details p {
  color: #fff;
  font-size: 16px;
}

.fadeIn-bottom {
  top: 94%;
}

.fadeIn-top {
  top: 20%;
}

.fadeIn-left {
  left: 20%;
}

.fadeIn-right {
  left: 80%;
}

/***********************************************************************************************/
/* SINGLE SERVICE PAGE */
/***********************************************************************************************/
.service-bottom-layout {
  margin-top: 30px;
}

.single-service-content h3 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 15px;
}

.single-service-content ul {
  list-style-type: none;
  margin-bottom: 16px;
  overflow: hidden;
}

.single-service-content ul li {
  padding-left: 32px;
  position: relative;
}

.single-service-content ul li:before {
  content: '\f00c';
  font-family: FontAwesome;
  display: inline-block;
  color: #DD3A3E;
  margin: 0 11px 0 0;
  position: absolute;
  left: 0px;
}

.single-service img {
  width: 100%;
  max-width: 100%;
}

.logo-layout-1 .logo {
  padding: 15px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.logo-items.owl-carousel .owl-item {
  padding: 0 5px;
}

.logo-layout-1 .logo img {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 100%;
  margin: 0;
  display: block;
  padding: 0px;
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.logo-layout-1 .logo:hover img {
  opacity: 1;
}

.logo-items {
  clear: both;
}

.logo-items [class^="col-"] {
  width: 100%;
}

.logo-items .owl-nav {
  clear: both;
  color: #000000;
  font-size: 22px;
  line-height: 42px;
  margin-top: -42px;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo-items .owl-nav div.owl-prev {
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  left: -4px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background: #DD3A3E;
  color: #ededed;
  float: left;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.logo-items .owl-nav div.owl-next {
  text-align: center;
  float: right;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  right: -4px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background: #DD3A3E;
  color: #ededed;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.logo-items .owl-nav:hover {
  opacity: 0.8;
}

.logo-items .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}

.logo-items .owl-dots .owl-dot {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 4px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  margin: 0 4px;
}

.logo-items .owl-dots .owl-dot span {
  display: block;
  background: #162935;
}

.logo-items .owl-dots .active span {
  padding: 0px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #59a10d;
}

.logo-items:hover .owl-nav {
  opacity: 1;
}

/***********************************************************************************************/
/* 11. 404 PAGE */
/***********************************************************************************************/
.section-404 {
  background: #F9FAFB;
}

.message-container-404 {
  margin: 48px 0;
}

.message-container-404 .text-404 {
  font-size: 170px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin: 80px 0;
  color: #DD3A3E;
}

.message-container-404 .text-404 span {
  color: #ee2838;
}

.message-container-404 .search-form-404 {
  margin: 0 auto;
  padding: 5px 5px;
  width: 40%;
}

.message-container-404 .message-text-404 {
  padding: 24px 160px;
  display: block;
  text-align: center;
}

/***********************************************************************************************/
/* 12. FOOTER */
/***********************************************************************************************/
footer {
  background-image: url('../images/footer_b.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  margin-top: 0px;
}

footer .footer-intro {
  margin-bottom: 32px;
}

footer a {
  color: #FFFFFF;
}

footer a:hover {
  color: #f5f5f5;
}

.footer-social-links {
  clear: both;
  margin-top: 24px;
}

.footer-social-links a {
  border: 1px solid #CCCCCC;
  color: #FFFFFF;
  display: block;
  float: left;
  font-size: 12px;
  height: 28px;
  line-height: 26px;
  margin-right: 8px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 28px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.footer-social-links a:hover {
  background: #DD3A3E;
  color: #FFFFFF;
}

.footer-widget-area {
  padding: 100px 0 80px 0;
  background: #333333;
  margin: 0;
}

.footer-widget-area .footer-widget input[type=text],
.footer-widget-area .footer-widget input[type=password],
.footer-widget-area .footer-widget input[type=submit],
.footer-widget-area .footer-widget input[type=button],
.footer-widget-area .footer-widget textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 1px solid #444444;
}

.footer-widget-area .footer-widget input[type=text]:focus,
.footer-widget-area .footer-widget input[type=password]:focus,
.footer-widget-area .footer-widget input[type=submit]:focus,
.footer-widget-area .footer-widget input[type=button]:focus,
.footer-widget-area .footer-widget textarea:focus {
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #a1a1a1;
}

.footer-widget-area .footer-widget button[type=submit],
.footer-widget-area .footer-widget input[type=submit],
.footer-widget-area .footer-widget input[type=button] {
  background: #C2C2C2;
}

.footer-widget-area .footer-widget-header h3 {
  position: relative;
  font-size: 28px;
  margin-bottom: 24px;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  display: inline-block;
  color: #FFFFFF;
}

.footer-widget-area .footer-widget-header h3:after {
  background: #DD3A3E;
  content: "";
  height: 3px;
  right: 0;
  margin-right: -70px;
  position: absolute;
  top: 22px;
  width: 60px;
}

.footer-widget-area .footer-widget-header h3 span {
  font-style: 400;
  color: #555555;
}

.footer-widget-area .footer-useful-links {
  clear: both;
}

.footer-widget-area .footer-useful-links li {
  width: 100%;
  margin-bottom: 4px;
  float: left;
  font-size: 17px;
}

.footer-widget-area .footer-subscription {
  margin-top: 24px;
}

.footer-widget-area .footer-subscription input[type="email"] {
  border: 0px solid #FFF;
  background: #FAFAFA;
  color: #1A1A1A;
  height: 48px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.footer-widget-area .footer-subscription input[type="email"]:focus {
  box-shadow: none;
}

.footer-widget-area .footer-subscription input[type="submit"] {
  border: 0px solid #FFF;
  background: #333;
  color: #FFFFFF;
  line-height: 60px;
  padding: 0 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.footer-widget-area .footer-subscription input[type="submit"]:hover {
  color: #FFFFFF;
  background-color: #222;
}

.footer-widget-area .fa-footer {
  display: inline;
  text-align: center;
  width: 12px;
  height: 12px;
  color: #fff;
  padding: 4px 6px 6px 0;
  margin-right: 6px;
}

.footer-widget-area .footer-widget+.footer-widget {
  margin-top: 24px;
}

.footer-widget-area li {
  line-height: 32px;
}

.footer-widget-area-bg {
  background: rgb(101 101 101 / 90%);
}

.footer-contents {
  background: rgb(101 101 101 / 87%);
  border-top: 1px solid #444;
  padding: 28px 0 20px 0;
}

.footer-nav {
  float: right;
}

.footer-nav li {
  display: inline;
  list-style-type: none;
}

.footer-nav li a {
  padding: 6px 12px;
  position: relative;
}

.footer-nav li a:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 14px;
  right: 0;
  margin: 0;
  height: 8px;
  width: 1px;
  background: #808080;
}

.footer-nav li:last-child a:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 12px;
  right: 0;
  color: #DD3A3E;
  margin: 0;
  height: 8px;
  width: 0px;
  background: #FFFFFF;
}

/***********************************************************************************************/
/* 13. SIDEBAR & WIDGETS */
/***********************************************************************************************/
.widget {
  background: #F9FAFB;
  margin-bottom: 30px;
  padding: 20px;
}

.widget-title {
  position: relative;
  font-size: 24px;
  margin-bottom: 24px;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  display: inline-block;
  color: #1A1A1A;
}

.widget-title:after {
  background: #DD3A3E;
  content: "";
  height: 3px;
  right: 0;
  margin-right: -70px;
  position: absolute;
  top: 18px;
  width: 60px;
}

.widget-title span {
  font-style: 400;
  color: #555555;
}

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

.widget ul li {
  padding: 5px 0;
}

.widget ul li a {
  color: #555555;
}

.widget ul li a:hover {
  color: #DD3A3E;
}

.search-form {
  margin: 0 0 12px 0;
}

.search-form span.input-group-addon {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #DD3A3E;
  border-right: 0px;
  color: #FFFFFF;
  font-weight: bold;
  width: 10%;
  padding: 0 20px;
}

.search-form input[type="text"] {
  box-shadow: 0;
  margin-bottom: 0;
  font-size: 14px;
  padding-left: 5px;
  height: 42px;
  border: 0px;
  box-shadow: none;
  border-bottom: 1px solid #EEE;
  width: 100%;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.search-form input[type="text"]:focus {
  box-shadow: none;
  border-bottom: 1px solid #d5d5d5;
}

.widget-post-category {
  margin: 11px auto;
}

.widget-post-category li {
  margin: 5px 0;
  padding: 0;
  text-transform: capitalize;
}

.widget-post-category li a {
  font-size: 15px;
  position: relative;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.single-recent-post {
  margin-bottom: 26px;
  overflow: hidden;
}

.single-recent-post a {
  color: #555555;
  margin-bottom: 8px;
  display: block;
}

.single-recent-post a:hover {
  color: #DD3A3E;
}

.single-recent-post span {
  font-size: 12px;
  display: block;
  color: #DD3A3E;
}

.single-post-thumb {
  float: left;
  margin-bottom: 10px;
  margin-right: 20px;
  margin-top: 5px;
  width: 100px;
}

.widget-recent-tags {
  margin: 0 auto;
}

.widget-recent-tags li {
  margin: 0px 5px 7px 0px;
  float: left;
}

.widget-recent-tags li a {
  padding: 3px 7px;
  text-transform: capitalize;
  text-align: center;
  border: 1px solid #DD3A3E;
  display: block;
  background: transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.widget-recent-tags li a:hover,
.widget-recent-tags li a:active {
  background: transparent;
  border: 1px solid #DD3A3E;
  background: #FFFFFF;
}

/***********************************************************************************************/
/* Widget Link Color */
/***********************************************************************************************/
.sidebar-widget a {
  color: #333333;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.sidebar-widget a:hover {
  color: #DD3A3E;
}

/***********************************************************************************************/
/* CALENDAR WIDGET */
/***********************************************************************************************/
#calendar_wrap {
  margin: 0 auto 5px auto;
}

#calendar_wrap #wp-calendar {
  width: 100%;
  border: 1px solid #CCCCCC;
  padding: 2px;
}

#calendar_wrap #wp-calendar caption {
  border-color: #CCCCCC;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 1px medium;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}

#calendar_wrap #wp-calendar thead {
  border-right: 1px solid #CCCCCC;
}

#calendar_wrap #wp-calendar thead th {
  border-right: 1px solid #CCCCCC;
}

#calendar_wrap #wp-calendar th {
  background: none repeat scroll 0 0 #F9F9F9;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
}

#calendar_wrap #wp-calendar tr th,
#calendar_wrap #wp-calendar thead th {
  font-weight: bold;
  padding: 9px 0;
  text-align: center;
}

#calendar_wrap #wp-calendar tbody {
  color: #aaa;
}

#calendar_wrap #wp-calendar tbody tr td {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  padding: 6px;
  background: #f5f5f5;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

#calendar_wrap #wp-calendar tbody tr td:hover {
  background: #FAFAFA;
}

#calendar_wrap #wp-calendar tbody .pad {
  background: none;
}

#calendar_wrap #wp-calendar tfoot tr td {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  padding: 6px;
  text-align: center;
}

#calendar_wrap #wp-calendar tfoot #next {
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

#calendar_wrap #wp-calendar tfoot #prev {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 10px;
}

#calendar_wrap #wp-calendar #today {
  background-color: #DD3A3E;
  color: #FFFFFF;
  font-weight: bold;
}

.no-gutter {
  margin-right: 0;
  margin-left: 0;
  vertical-align: top;
}

.no-gutter>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.va2 div {
  vertical-align: top;
}

/***********************************************************************************************/
/* 14. RESPONSIVE STYLING */
/***********************************************************************************************/
@media only screen and (min-width:1600px) and (max-width:2516px) {

  .custon-bg.custom-home {
    top: 116px;
    left: -450px;
    width: 1068px;
    padding-left: 77%;
    padding-right: 10%;
  }

  .custon-bg1 {
    margin-top: 60px
  }

  .custon-bg2 {
    margin-top: 70px
  }
}

@media only screen and (min-width:1024px) and (max-width:1199px) {
  .custon-bg.custom-home {
    width: 920px;
    top: 26px;
  }

  .custon-bg1 {
    width: 100%;
    position: relative;
    margin-top: 2px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 60px;
  }

  .custon-bg2 {
    width: 100%;
    position: relative;
    margin-top: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 45px;
  }

  .order-1 .services-frame-1 img {
    width: 100%;
    height: 101%;
  }

  .box-contact {
    min-height: 271px;
  }

  .service-info {
    padding: 12px 6px;
  }
}

/* Tablet Portrait size to standard (devices and browsers) */
@media only screen and (max-width: 1224px) {
  footer .footer-logo:after {
    display: none;
  }
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .header-top .icon-box .icon-container {
    font-size: 25px;
  }

  .header-top .icon-box .text {
    font-size: 13px;
  }

  .header-top .icon-box .text .head-heading {
    font-size: 13px;
  }

  .header-top .btn-quote .btn-request_quote {
    font-size: 12px;
    padding: 12px 3px;
  }

  .main-top-header p {
    font-size: 13px;
  }

  #slider_1 .slider-content h2 {
    font-size: 100px;
    line-height: 120px;
  }

  #slider_1 .slider-content h3 {
    font-size: 32px;
  }

  #slider_1 .slider-content p {
    font-size: 20px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1370px) {
  #slider_1 {
    text-align: left;
  }

  #slider_1 .slider_item_container {
    min-height: 460px;
  }

  #slider_1 .item img {
    display: block;
    width: 100%;
    height: auto;
  }

  #slider_1 .slider-content {
    margin-top: 24px;
  }

  #slider_1 .slider-content h3 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 12px;
    width: 100%;
    display: block;
    float: left;
  }

  #slider_1 .slider-content h2.jumbo-heading,
  #slider_1 .slider-content h2 {
    font-size: 50px;
    line-height: 60px;
    width: 100%;
    display: block;
    float: left;
  }

  /*----- Banner ----*/
  .section-banner {
    padding: 130px 0px;
  }

  .section-banner h2,
  .section-banner h2.jumbo-heading {
    font-size: 60px;
    line-height: 60px;
  }

  .section-banner h3 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 12px;
  }

  .btn-theme {
    line-height: 24px;
  }
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-header h3 {
    margin-top: 120px;
  }

  .navbar-brand {
    max-width: 96px;
    padding: 10px 0px;
  }

  .navbar-nav {
    margin-top: 15px;
  }

  .custon-bg {
    left: -100px;
    width: 800px;
    padding-top: 15px;
  }

  .custon-bg.custom-home {
    top: 5px
  }

  .dashboard-upper-info .d-single-info {
    border-right: 1px solid #ccc;
    padding: 20px 15px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  .revGallery-anchor {
    overflow: hidden;
    position: relative;
    width: calc(100% / 3);
  }

  .about-us-info1 p {
    line-height: 23px;
    font-size: 15px;
  }

  .footer-widget-area .footer-widget-header h3 {
    position: relative;
    font-size: 20px;
  }

  footer p {
    font-size: 15px;
  }

  .footer-widget-area .footer-useful-links li {
    font-size: 15px;
  }

  .footer-widget-area .footer-widget-header h3::after {
    background: #DD3A3E;
    content: "";
    height: 3px;
    right: 0;
    margin-right: -39px;
    position: absolute;
    top: 20px;
    width: 33px;
  }

  .custon-bg1 {
    width: 100%;
    position: relative;
    margin-top: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0px;
  }

  .custon-bg2::before {
    background: #727272;
    width: 100%;
    position: absolute;
    top: 0px;
    left: -200px;
    width: 705px;
    z-index: -1;
    height: 100%;
    content: "";
  }

  .image-box {
    margin-top: 16px;
    position: relative;
  }

  .about-us-slogan {
    font-size: 25px;
    letter-spacing: 0.03em;
    line-height: 32px;
    margin-bottom: 32px;
  }

  .about-us-slogan::after {
    bottom: -15px;
  }

  .link-arrow li {
    position: relative;
    padding: 0px 0px;
    padding-left: 30px;
    font-size: 15px;
  }

  .custon-bg2 {

    width: 100%;
    position: relative;
    margin-top: 1px;
    padding-top: 15px;
    padding-bottom: 12px;
    padding-right: 0px;

  }

  .about-us-info {
    margin-top: 11px;
    margin-bottom: 46px;
  }

  .about-us-info1 h3 {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 8px;
  }

  #slider_1 .slider-content h2.jumbo-heading {
    font-size: 50px;
  }

  .navbar-default .navbar-nav>li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 20px 3px;
  }

  .navbar-default .navbar-nav>li:last-child a {
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 9px 1px;
  }
}

@media only screen and (max-width: 767px) {
  .custon-bg.custom-home {
    top: 0px;
  }

  .survey .appointment-form-wrapper .appoinment-form {
    padding: 0 0px;
  }

  .survey .appointment-form-wrapper .appoinment-form label {
    letter-spacing: 0;
  }

  .survey {
    padding: 15px;
    width: 100%;
  }

  .va2 {
    margin-top: 20px !important;
  }

  .top-bar {
    text-align: center;
  }

  .about-us-slogan-bold-l {
    padding-left: 0px;
    margin: 0px;
  }

  .about-us-slogan-bold-l p {
    margin-bottom: 0px !important;
  }

  .section-feat-about-us {
    margin: 0px;
  }

  .overf {
    margin-top: 20px;
  }

  .main-header ul.top-bar-info li.top-bar-phone {
    text-indent: 0;
    position: relative;
    display: inline;
  }

  .main-header ul.top-bar-info li.top-bar-hour {
    margin-right: 0px;
    position: relative;
    display: inline;
  }

  .main-header ul.top-bar-info li.top-bar-hour:after {
    display: none;
  }

  .main-header ul.top-bar-info li.top-bar-address {
    margin-right: 0px;
    position: relative;
    display: block;
  }

  a.logo {
    text-align: center;
  }

  .navbar-default .navbar-nav li ul.drop-down {
    top: 71px;
  }

  .navbar-default .navbar-header {
    width: 100%;
    text-align: center;
    clear: both;
    float: none;
    margin: 0;
  }

  .navbar-default .navbar-toggle {
    margin: 22px 0 0 0;
    padding: 5px;
  }

  .navbar-default .navbar-toggle span.icon-bar {
    height: 1px;
  }

  .navbar-default .navbar-right {
    float: none;
    padding: 0;
    margin: 0px 0 0;
  }

  .navbar-default .navbar-nav>li:last-child a {
    margin: 0px;
    border-radius: 0;
  }

  .navbar-default .navbar .navbar-collapse {
    text-align: center;
  }

  .main-menu-container {
    float: none;
  }

  .main-header {
    background: #2C2C2C;
    position: relative;
  }

  .sticky-wrapper {
    background: rgba(0, 0, 0, 0.8);
  }

  .navbar-nav>li {
    margin-left: 0;
  }

  .navbar-default .navbar-nav>li {
    margin-left: 3px;
  }

  .nav>li>a {
    padding: 15px 12px;
    padding-bottom: 22px;
  }

  header.one-page .navbar-nav>li>a {
    padding: 15px 5px;
    font-size: 15px;
    padding-bottom: 22px;
  }

  .section-heading-wrapper {
    margin-bottom: 0px;
  }

  .section-content-block {
    padding: 60px 0;
  }

  #slider_1 {
    text-align: center;
  }

  #slider_1 .item img {
    display: block;
    width: 100%;
    height: auto;
  }

  #slider_1 .slider-content h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
  }

  #slider_1 .slider-content h2 {
    font-size: 54px;
    line-height: 60px;
    font-weight: 700;
  }

  .main-sidebar {
    width: 100%;
    border: 0px solid transparent;
  }

  .logo {
    text-align: center;
  }

  .activity-section-1 .activity-info-block {
    padding: 90px 0 90px 90px;
  }

  .activity-section-1 .activity-info-block p {
    max-width: 662px;
  }

  .page-header {
    padding: 80px 0;
    background-position: center !important;
  }

  .section-about-us {
    padding-bottom: 48px;
  }

  .about-us-slogan {
    margin-top: 24px;
    font-size: 22px;
  }

  a.btn-load-more {
    margin: 0px 0 0 0;
  }

  .team-layout-1 h3 {
    font-size: 24px;
  }

  .cta-section-1 {
    padding: 32px 0 80px 0;
  }

  .event-search-box input[type=text] {
    margin-bottom: 12px;
  }

  .event_wrapper {
    margin-bottom: 48px;
  }

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

  /*----------------HOME 2 -------------------*/
  .section-home-blog {
    padding-bottom: 24px;
  }

  .section-home-blog .section-subheading {
    margin-bottom: 24px;
  }

  .latest-news-container {
    margin: 24px 0;
  }

  .footer-widget-area {
    padding: 42px 0 0 0;
  }

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

  .footer-intro {
    display: none;
  }

  .footer-nav {
    display: none;
  }

  .copyright-text {
    text-align: center;
  }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (min-width:0px) and (max-width:767px) {
  .d-flex {
    display: flex;
    flex-direction: column;
  }

  .order-1 {
    -webkit-order: 1;
    order: 1;
  }

  .order-2 {
    -webkit-order: 2;
    order: 2;
  }

  .custon-bg2,
  .custon-bg1 {
    padding: 10px 15px 30px 30px;
    margin-top: -2px;
    background: #727272;
    margin-bottom: 30px;
  }

  .custon-bg1::before,
  .custon-bg2::before {
    width: 100%;
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .top-bar {
    text-align: center;
  }

  .contact-information .col-12 {
    width: 100%;
    display: block;
    clear: both;
    padding: 5px 0px;
  }

  .navbar-header a.logo img {
    display: block;
    max-width: 130px;
  }

  .navbar-header a.logo {
    float: left;
    margin: 5px 0px;
  }

  .image-box {
    width: 100%;
    position: relative;
  }

  .custon-bg {
    position: relative;
    width: 100%;
    top: 10px;
    left: 0;
    padding: 20px;
  }

  .footer-widget-area .footer-widget-header h3:after {
    display: none;
  }

  .main-menu-container {
    float: none;
  }

  .section-content-block {
    padding: 60px 0;
  }

  .section-heading-wrapper {
    margin-bottom: 0px;
  }

  .section-heading-wrapper h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: normal;
  }

  .section-heading-wrapper h2:after,
  .section-heading-wrapper h2:before {
    display: none;
  }

  .section-heading-wrapper p {
    padding: 0px;
    margin-bottom: 24px;
    line-height: 1.5em;
  }

  .section-heading {
    font-size: 30px;
    line-height: 32px;
    font-weight: normal;
    margin-bottom: 12px;
  }

  .section-heading:after,
  .section-heading:before {
    display: none;
  }

  .section-subheading {
    padding: 0px;
    margin-bottom: 0px;
    line-height: 1.5em;
  }

  .section-heading-wrapper {
    margin-bottom: 32px;
  }

  .section-heading-wrapper.jumbo-heading-style h2 {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0em;
    margin-bottom: 32px;
  }

  .section-heading-wrapper.jumbo-heading-style h2:after {
    display: none;
  }

  .section-heading-wrapper.inline-heading-style h2 {
    letter-spacing: 0em;
    margin-bottom: 0px;
    line-height: 48px;
  }

  .section-heading-wrapper.inline-heading-style h2:after {
    display: none;
  }

  .section-heading-wrapper.inline-heading-style h2:before {
    content: "";
    left: 0;
    position: absolute;
    bottom: -24px;
    width: 60px;
    height: 2px;
    background: #DD3A3E;
  }

  .section-heading-wrapper.inline-heading-style p {
    display: none;
  }

  .section-heading-wrapper h2 {
    position: relative;
    font-size: 36px;
    margin-bottom: 0px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.03em;
    font-weight: 900;
    display: inline-block;
    color: #555555;
  }

  .section-heading-wrapper h2:after {
    background-image: url("../images/heading_bg_right.png");
    background-position: right top;
    background-repeat: no-repeat;
    content: "";
    height: 24px;
    right: 0;
    margin-right: -70px;
    position: absolute;
    top: 10px;
    width: 60px;
  }

  .section-heading-wrapper h2 span {
    font-style: 400;
    color: #555555;
  }



  .section-heading-wrapper-alt h2 {
    color: #FFFFFF;
  }

  .section-heading-wrapper-alt p {
    color: #FFFFFF;
  }

  .section-heading-wrapper-alt .text-center h2.section-heading:after {
    left: 50%;
    margin-left: -42px;
    top: 36px;
  }

  hr.hr-half-center {
    margin: 24px auto 12px auto;
  }

  #slider_1 .slider_item_container {
    min-height: 350px;
  }

  #slider_1 .slider-content {
    text-align: center;
    top: 50%;
    transform: translateY(-55%);
  }

  #slider_1 .slider-content h2,
  #slider_1 .slider-content h2.jumbo-heading,
  #slider_1 .slider-content h2.inline-heading-style {
    margin-top: 12px;
    font-size: 36px;
    line-height: 42px;
  }

  #slider_1 .slider-content h3 {
    display: block;
  }

  #slider_1 .slider-content a.btn-slider {
    font-size: 16px;
    margin-top: 16px;
    background: #DD3A3E;
    border: 2px solid #DD3A3E;
    color: #FFFFFF;
    height: 42px;
    line-height: 24px;
    padding-left: 12px;
    padding-right: 12px;
    letter-spacing: 0.03em;
    font-weight: 600;
    text-align: left;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }

  #slider_1 .slider-content a.btn-slider:hover {
    background: #ee2838;
    border: 2px solid #DD3A3E;
    color: #FFFFFF;
  }

  .section-banner {
    padding: 80px 0px;
  }

  .section-banner .banner-content {
    transform: translateY(-20px);
  }

  .section-banner .banner-content h2 {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
  }

  .section-banner .banner-content h2.jumbo-heading {
    font-size: 40px;
    line-height: 50px;
    text-shadow: 1px 1px 1px #666666;
  }

  .about-us-slogan {
    font-size: 36px;
    line-height: 42px;
  }

  .about-us-info-block {
    padding: 0 24px;
  }

  .stuck {
    position: initial;
  }

  .navbar-default a:after {
    display: none;
  }

  .navbar-default .navbar-toggle {
    margin-top: 36px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }

  .navbar-default .navbar-toggle span.icon-bar {
    color: #DD3A3E;
  }

  .navbar-default .nav>li>a,
  .navbar-default header.one-page .navbar-nav>li>a {
    padding: 5px 15px;
  }

  .navbar-default .navbar .navbar-right {
    width: 100%;
    text-align: left;
  }

  .navbar-default .navbar-collapse {
    background: #fff;
    margin-top: 0;
    padding: 0 0;
  }

  .navbar-brand {
    padding: 8px 15px;
    min-height: 62px;
  }

  .navbar-default .navbar-nav li ul.drop-down,
  .navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 {
    color: #FFFFFF !important;
    background: transparent;
    border: none;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    position: relative;
    width: auto;
    visibility: visible;
    opacity: 1;
    top: inherit;
    left: inherit;
  }

  .navbar-default .navbar-nav li ul.drop-down li a,
  .navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 li a {
    background: none;
    color: #FFFFFF !important;
    font-size: 16px;
    text-transform: inherit;
    padding: 4px 20px;
  }

  .navbar-default .navbar-nav li ul.drop-down li a:hover,
  .navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 li a:hover {
    color: #FFFFFF;
  }

  .navbar-default .navbar-nav {
    margin: 0px;
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.7);
  }

  .navbar-default .navbar-nav li {
    margin-left: 0px;
  }

  .navbar-default .navbar-nav li a {
    font-weight: 500 !important;
    color: #DD3A3E;
    padding: 8px 10px;
  }

  .navbar-default .navbar-nav li a:hover {
    color: #fbcdd1 !important;
  }

  .navbar-default .navbar-nav .drop-down li .drop-down li a,
  .navbar-default .navbar-nav .drop-down li .drop-down li .drop a {
    color: #FFFFFF !important;
  }

  .logo {
    text-align: center;
  }

  .main-header {
    background: #fff;
    position: relative;
  }

  .sticky-wrapper {
    background: rgba(0, 0, 0, 0.8);
  }

  .page-header {
    padding: 80px 0;
  }

  .message-container-404 {
    margin: 48px 0;
  }

  .message-container-404 .text-404 {
    margin: 80px 0;
  }

  .message-container-404 .search-form-404 {
    padding: 5px;
    width: 100%;
  }

  .message-container-404 .message-text-404 {
    padding: 24px 0px;
  }

  .article-container-fix,
  .main-sidebar {
    width: 100%;
    margin-left: 0px;
    border: 0px solid transparent;
  }

  .post-details-container h3 {
    margin-top: 12px;
  }

  .post-box-container .bd-post-image-container {
    margin: 0 auto;
  }

  .image_gallery_carousel {
    margin-bottom: 48px;
  }

  /*----- Video Box Layout  ----*/
  .full-width-video-box .video-box-img-container:after {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 32px;
    top: 50%;
    left: 50%;
    margin-left: -35px;
    margin-top: -35px;
  }

  .counter-block-1 h4 {
    font-size: 18px;
    line-height: 32px;
  }

  .counter-block-1 .counter {
    font-size: 36px;
  }

  /*----- Service Layout  ----*/
  .service-layout-1 {
    margin-bottom: 24px;
  }

  .logo-layout-1 .logo {
    margin-top: 0px;
    margin-bottom: 24px;
  }

  .event-section-1 .section-subheading {
    margin-bottom: 24px;
  }

  .event_wrapper .event-text .event-time {
    bottom: -32px;
  }

  .section-testimonial-bg {
    background: #d1dee4;
  }

  a.btn-load-more {
    margin-bottom: -24px;
    margin-top: -16px;
  }

  .cta-section-1 {
    padding: 80px 0 32px 0;
  }

  .section-our-team .section-heading {
    margin-bottom: 0px;
  }

  .section-our-team .team-layout-1 {
    margin-top: 24px;
  }

  .section-our-team .team-layout-1 .team-member img {
    text-align: center;
    display: block;
    width: 100%;
  }

  .section-gallery-block .section-subheading {
    margin-bottom: 24px;
  }

  /*----------------HOME 2 -------------------*/
  .section-home-blog {
    padding-bottom: 24px;
  }

  .section-home-blog .section-subheading {
    margin-bottom: 24px;
  }

  .latest-news-container {
    margin: 24px 0;
  }

  .cta-section-3 h2 {
    font-size: 20px;
    line-height: 32px;
  }

  .cta-section-1 h2 {
    font-size: 28px;
    line-height: 32px;
    margin: 0px 0 24px;
  }

  .cta-section-1 a.btn-cta-1 {
    margin-bottom: 42px;
  }

  .cta-img {
    display: none;
  }

  .footer-nav {
    float: none;
    width: 100%;
    margin: 10px auto;
    display: inline-block;
    text-align: center;
  }

  .copyright-text {
    text-align: center;
  }

  .footer-widget-area {
    padding: 42px 0 0 0;
  }

  .footer-widget {
    margin-bottom: 36px;
    text-align: center;
  }

  .footer-intro {
    display: none;
  }

  .footer-nav {
    display: none;
  }

  .copyright-text {
    text-align: center;
  }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (min-width: 0px) and (max-width: 479px) {
  .navbar-header a.logo img {
    display: block;
    max-width: 120px;
  }

  .main-header ul.top-bar-info li.top-bar-phone {
    font-size: 12px;
  }

  .navbar-header a.logo {
    float: left;
    margin: 5px 0px;
  }

  .sticky-wrapper {
    background: rgba(0, 0, 0, 0.8);
  }

  .main-menu-container {
    float: none;
  }

  a.logo {
    text-align: center;
    width: 75%;
  }

  .navbar-default a:after {
    display: none;
  }

  .navbar-default .navbar-toggle {
    margin: 36px 0 0 0;
    padding: 5px 3px;
  }

  .navbar-default .navbar-toggle span.icon-bar {
    height: 1px;
  }

  .navbar-default .navbar-nav {
    margin: 0px;
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.7);
  }

  .navbar-default .navbar-nav li {
    margin-left: 0px;
  }

  .navbar-default .navbar-nav li a {
    font-weight: 600;
    color: #222;
    border-bottom: 1px solid #ccc;
  }

  .navbar-default .navbar-nav li a:hover {
    color: #222 !important;
  }

  .navbar-default .navbar-nav .drop-down li a,
  .navbar-default .navbar-nav .drop-down li .drop a {
    color: #FFFFFF !important;
  }

  .logo {
    text-align: center;
  }

  .btn-theme {
    padding: 12px 24px;
  }

  .section-heading-wrapper {
    margin-bottom: 0px;
  }

  .section-heading-wrapper h2 {
    font-size: 24px;
    line-height: 36px;
    font-weight: normal;
    margin-bottom: 24px;
  }

  .section-heading-wrapper h2:after,
  .section-heading-wrapper h2:before {
    display: none;
  }



  .section-content-block {
    padding: 42px 0;
  }

  .section-heading {
    font-size: 24px;
    line-height: 36px;
    font-weight: normal;
    margin-bottom: 24px;
  }

  .section-heading:after,
  .section-heading:before {
    display: none;
  }

  .section-subheading {
    display: none;
  }

  .section-heading-wrapper {
    margin-bottom: 32px;
  }

  .section-heading-wrapper.jumbo-heading-style h2 {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0em;
    margin-bottom: 32px;
  }

  .section-heading-wrapper.jumbo-heading-style h2:after {
    display: none;
  }

  .section-heading-wrapper.inline-heading-style h2 {
    letter-spacing: 0em;
    margin-bottom: 0px;
    line-height: 48px;
  }

  .section-heading-wrapper.inline-heading-style h2:after {
    display: none;
  }

  .section-heading-wrapper.inline-heading-style h2:before {
    content: "";
    left: 0;
    position: absolute;
    bottom: -24px;
    width: 60px;
    height: 2px;
    background: #DD3A3E;
  }

  .section-heading-wrapper.inline-heading-style p {
    display: none;
  }

  .section-heading-wrapper h2 {
    position: relative;
    font-size: 35px;
    margin-bottom: 0px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.03em;
    font-weight: 400;
    display: inline-block;
    color: #555555;
  }

  .section-heading-wrapper h2:after {
    background-image: url("../images/heading_bg_right.png");
    background-position: right top;
    background-repeat: no-repeat;
    content: "";
    height: 24px;
    right: 0;
    margin-right: -70px;
    position: absolute;
    top: 10px;
    width: 60px;
  }

  .section-heading-wrapper h2 span {
    font-style: 400;
    color: #555555;
  }


  .section-heading-wrapper-alt h2 {
    color: #FFFFFF;
  }

  .section-heading-wrapper-alt p {
    color: #FFFFFF;
  }

  .section-heading-wrapper-alt .text-center h2.section-heading:after {
    left: 50%;
    margin-left: -42px;
    top: 36px;
  }

  hr.hr-half-center {
    margin: 24px auto 12px auto;
  }

  .page-header {
    padding: 80px 0;
  }

  /*-------------------- HOME #1 RESPONSIVE CODES ------------------------*/
  #slider_1 .slider_item_container {
    min-height: 300px;
  }



  #slider_1 .slider-content h2,
  #slider_1 .slider-content h2.jumbo-heading,
  #slider_1 .slider-content h2.inline-heading-style {
    margin-top: 12px;
    font-size: 25px;
    line-height: 35px;
  }

  #slider_1 .slider-content h3,
  #slider_1 .slider-content a.btn-slider,
  #slider_1 .slider-content a.btn-slider-2 {
    display: block;
    line-height: 22px;
    font-size: 19px;
  }

  .slider-content .btn-theme {
    padding: 4px 12px;
    font-size: 15px;
  }

  .section-banner {
    padding: 80px 0px;
  }

  .section-banner .banner-content {
    transform: translateY(-20px);
  }

  .section-banner .banner-content h2 {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
  }

  .section-banner .banner-content h2.jumbo-heading {
    font-size: 30px;
    line-height: 40px;
    text-shadow: 1px 1px 1px #666666;
  }

  .section-banner .banner-content h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .about-us-slogan {
    font-size: 36px;
    line-height: 42px;
  }

  .about-us-info-block {
    padding: 0 24px;
  }

  .section-services .section-heading {
    margin-bottom: 0px;
  }

  .service-layout-1 {
    margin-bottom: 24px;
  }

  .event_wrapper .event-text .event-time {
    bottom: -32px;
  }

  .section-testimonial-bg {
    background: #d1dee4;
  }

  a.btn-load-more {
    margin: -16px 0 0 0;
  }

  .section-our-team .section-heading {
    margin-bottom: 0px;
  }

  .section-our-team .team-layout-1 {
    margin-top: 24px;
  }

  .section-counter {
    padding: 32px 0;
  }

  .image-box {
    width: 100%;
    position: relative;
  }

  .custon-bg {
    position: relative;
    width: 100%;
    top: 10px;
    left: 0;
    padding: 20px;
  }

  .footer-widget-area .footer-widget-header h3:after {
    display: none;
  }

  .section-counter .counter-block-2 {
    margin: 12px 0 48px;
  }

  .logo-layout-1 .logo {
    margin-top: 0px;
    margin-bottom: 24px;
  }

  .section-news-block .news-wrapper {
    margin: 0 0 48px 0;
  }

  .cta-section-3 h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .cta-section-1 h2 {
    font-size: 28px;
    line-height: 32px;
    margin: 0px 0 24px;
  }

  .cta-section-1 a.btn-cta-1 {
    margin-bottom: 42px;
  }

  .cta-img {
    display: none;
  }

  /*-------------------- HOME #2 RESPONSIVE CODES ------------------------*/
  .service-lists {
    clear: both;
  }

  .service-lists li {
    width: 100%;
  }

  .latest-news-container {
    margin: 24px 0;
  }

  .page-header h3 {
    font-size: 24px;
    line-height: 32px;
    margin: 12px 0;
  }

  .message-container-404 {
    margin: 48px 0;
  }

  .message-container-404 .text-404 {
    margin: 80px 0;
  }

  .message-container-404 .search-form-404 {
    padding: 5px;
    width: 100%;
  }

  .message-container-404 .message-text-404 {
    padding: 24px 0px;
  }

  .footer-widget-area {
    padding: 42px 0 0 0;
  }

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

  .footer-intro {
    display: none;
  }

  .footer-nav {
    display: none;
  }

  .copyright-text {
    text-align: center;
  }
}

/* Tab Portrait Size to Tab Landscape Size (devices and browsers) */
@media only screen and (min-width: 380px) and (max-width: 480px) {
  .xs-margin {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 600px) {
  .xs-margin {
    margin-left: 70px;
    margin-right: 70px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .xs-margin {
    margin-left: 120px;
    margin-right: 120px;
  }
}

/*# sourceMappingURL=styles.css.map */
.table-wrapper {
  background: #fff;
  overflow-x: auto;
}

.table-wrapper table {
  position: relative;
  text-align: center;
  width: 100%;
  border: 1px solid #ddd;
}

.table-wrapper table thead {
  background: #fff;
  transition: box-shadow 0.2s;
}

.table-wrapper table tr {
  display: flex;
}

.table-wrapper table th,
.table-wrapper table td {
  width: 25%;
  min-width: 150px;
}

.table-wrapper table th:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 0 10px;
}

.table-wrapper table th:nth-child(1) .svg-wrapper {
  margin-top: 10px;
}

.table-wrapper table th:nth-child(1) svg {
  width: 22px;
  height: 22px;
}

.table-wrapper table th .heading,
.table-wrapper table th {
  color: #fff;
  text-transform: uppercase;
  font-size: 17px !important;
  padding: 15px 10px;
  background: #ee6e73;
}

/* .table-wrapper table th:nth-child(2) .heading {
  background: #969696;
}

.table-wrapper table th:nth-child(3) .heading {
  background: #717171;
}

.table-wrapper table th:nth-child(4) .heading {
  background: #555;
} */

.table-wrapper table th .info {
  position: relative;
  padding: 1.5rem 0;
  border-left: 1px solid whitesmoke;
}

.table-wrapper table th .popular {
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 11px;
  background: #ffdd40;
  padding: 4px 8px;
  border-radius: 2px;
}

.table-wrapper table th .amount {
  font-size: 2rem;
}

.table-wrapper table th .amount span {
  display: block;
  transform: translateY(-8px);
}

.table-wrapper table th:nth-child(2) .amount {
  color: #f73859;
}

.table-wrapper table th:nth-child(3) .amount {
  color: #00AEEF;
}

.table-wrapper table th:nth-child(4) .amount {
  color: #FF7F45;
}

.table-wrapper table th .billing-msg,
.table-wrapper table th .amount span {
  font-weight: normal;
  font-size: 0.8rem;
}

.table-wrapper table th button {
  display: inline-block;
  border-radius: 20px;
  padding: 8px 20px;
  margin-top: 10px;
  transition: all 0.2s;
}

.table-wrapper table th:nth-child(2) button {
  color: #f73859;
  border: 1px solid #f73859;
}

.table-wrapper table th:nth-child(2) button:hover {
  background: #f73859;
}

.table-wrapper table th:nth-child(3) button {
  color: #00AEEF;
  border: 1px solid #00AEEF;
}

.table-wrapper table th:nth-child(3) button:hover {
  background: #00AEEF;
}

.table-wrapper table th:nth-child(4) button {
  color: #FF7F45;
  border: 1px solid #FF7F45;
}

.table-wrapper table th:nth-child(4) button:hover {
  background: #FF7F45;
}

.table-wrapper table th button:hover {
  color: #fff;
}

.table-wrapper table td {
  padding: 10px;
}



.table-wrapper table td:first-child {
  font-size: 1rem;
  text-align: right !important;
  font-size: 17px !important;
  font-weight: 600 !important;
}


.table-wrapper table td {
  color: #111;
}

/* BODY CLASSES & MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sticky-table thead tr,
.sticky2-table thead tr {
  z-index: 1;
}

@media screen and (min-width: 780px) {

  .pricing:nth-child(1),
  .pricing:nth-child(3) {
    padding: 0;
  }

  .pricing:nth-child(1) {
    height: 70vh;
  }

  .pricing:nth-child(3) {
    height: 100vh;
  }

  .table-wrapper table th:nth-child(1) {
    padding: 0 20px;
    font-weight: 400;
  }

  .table-wrapper table td {
    padding: 20px;
  }

  .sticky-table table thead {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
  }

  .sticky-table table thead {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
  }

  .sticky2-table table thead {
    position: absolute;
    left: 0;
  }
}

.main-container {
  background-color: #fff;
  padding: 70px 0px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.main-container a {
  text-decoration: none;
}

.main-container .login-wrapper {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);

  width: 100%;
  max-width: 500px;
  display: flex;
}

/* Estilos del contenedor del formulario */
.main-container .login-wrapper .form-wrapper {
  min-width: 100%;

  display: flex;
  flex-direction: column;
}

/* Estilos del header del formulario */
.main-container .login-wrapper .form-wrapper .form-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  padding: 15px;
  margin-top: 15px;

  font-weight: 900;
}

.main-container .login-wrapper .form-wrapper .form-header .fa-arrow-left,
.main-container .login-wrapper .form-wrapper .form-header .register-link,
.main-container .login-wrapper .form-wrapper .form-container .forgot-pass {
  color: #686b72;
}

/* Estilos del formulario y sus mensajes */
.main-container .login-wrapper .form-wrapper .form-container {
  padding: 0px 60px;
}

.main-container .login-wrapper .form-wrapper .form-container .form-messages {
  text-align: left;
  line-height: 20px;
  margin-bottom: 30px;
}

.main-container .login-wrapper .form-wrapper .form-container .form-messages h2 {
  margin-bottom: 15px;
  margin-top: 30px;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}

.main-container .login-wrapper .form-wrapper .form-container .form input {
  width: 100%;
  margin-bottom: 15px;
  background-color: #eeeeee;
  border: none;
  padding: 10px;
}

.main-container .login-wrapper .form-wrapper .form-container .form input:focus {
  outline: 2px solid #4694a8;
}

.main-container .login-wrapper .form-wrapper .form-container .form a {
  display: block;
}

.main-container .login-wrapper .form-wrapper .form-container .form .forgot-pass {
  text-align: right;
  font-weight: 900;
}

.main-container .login-wrapper .form-wrapper .form-container .form .login-button {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 50px;
  background-color: #484848;
  color: #fff;
  text-align: center;
}

/* Separador */
.main-container .login-wrapper .form-wrapper .form-container .separator {
  border: 2px solid #e8e9ea;
  margin-bottom: 35px;
}

/* Otras opciones de login */
.main-container .login-wrapper .form-wrapper .form-container .login-options {
  margin: 20px 20px;
  text-align: center;
}

.main-container .login-wrapper .form-wrapper .form-container .login-options .login-text {
  margin-bottom: 15px;
}

.main-container .login-wrapper .form-wrapper .form-container .login-icons {
  font-size: 20px;
}

.main-container .login-wrapper .form-wrapper .form-container .login-icons .fa-facebook-square,
.main-container .login-wrapper .form-wrapper .form-container .login-icons .fa-google,
.main-container .login-wrapper .form-wrapper .form-container .login-icons .fa-twitter {
  color: #4694a8;
  padding: 0px 10px;
}

.box-card {
  background-color: #fff !important;
  box-shadow: 5px 0 7px -6px rgba(0, 0, 0, .1), -5px 0 2px -6px rgba(0, 0, 0, .1);
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, .125);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #ad6d00;
}

.box-card a {
  width: 100%;
  display: block;
  padding: .5rem 1rem;
}

/**
 * Responsive Bootstrap Tabs by @hayatbiralem
 * 15 May 2015
 */
@media screen and (max-width: 479px) {}

/**
 * Demo Styles
 */
.wrapper {
  padding: 0px 0;
  margin-bottom: 50px;
}

.bs-example-tabs .nav-tabs {
  margin-bottom: 15px;
}

@media (max-width: 479px) {
  #narrow-browser-alert {
    display: none;
  }
}

.row-custom1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -21px;
  margin-left: -21px;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.row-custom1 table {
  text-align: center;
}

.row-custom1 .table>tbody>tr>td {
  vertical-align: middle;
}

.row-custom1 .table>tbody>tr>td:first-child {
  font-size: 15px;
}

.table>thead>tr>th {
  border-bottom: 1px solid #ccc;
}

.dashboard-upper-info {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin: 60px 0;
}

.dashboard-upper-info p {
  font-size: 16px;
  margin-bottom: 0px;
}

.dashboard-upper-info .d-single-info {
  border-right: 1px solid #ccc;
  padding: 20px 15px;
}

.dashboard-upper-info [class*="col-"]:first-child .d-single-info {
  border-left: 1px solid #ccc;
  padding: 20px 15px;
}

.d-single-info strong {
  color: #d00;
}

.d-single-info a {
  color: #d00;
}

.d-single-info p {
  color: #222;
}

.d-single-info p+p {
  color: #d00;
  font-weight: 600;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

@media only screen and (min-width:767px) and (max-width:2000000000px) {
  .custom-tab {
    width: 100%;
  }

  .nav-tabs>li.active>a {
    border: 0px
  }

  .nav-tabs>li.active>a,
  .nav-tabs>li.active>a:focus,
  .nav-tabs>li.active>a:hover {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 0px solid #ccc;
    border-bottom-color: transparent;
    border-radius: 0px;
  }

  .custom-tab .nav-tabs li.active a {
    background-color: #f5f5f5 !important;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc !important;
    margin: 0px;
  }

  .custom-tab .nav-tabs li:first-child a {
    border-top: 0px solid #fff !important
  }

  .form-control {
    border-radius: 5px !important;
  }

  .custom-tab ul {
    width: 100%;
    background-color: #fff !important;
    box-shadow: 5px 0 7px -6px rgba(0, 0, 0, .1), -5px 0 2px -6px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .125);
  }

  .custom-tab ul li {
    width: 100%;
  }
}

.card {
  background-color: rgba(255, 255, 255, 0.8);
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #ccc;
  border-radius: .25rem;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1rem;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;


}

.tab-head {
  margin-right: -20px;
  margin-left: -20px;
  background-color: #f5f5f5;
  margin-bottom: 0px;
  padding: 5px;
  margin-top: -20px;
  margin-bottom: 10px;
}

.tab-content h4 {
  font-size: 16px;
  margin-bottom: 0px;
  padding: 0 20px;
}

.tab-content .row1 {

  background-color: #f5f5f5;
  margin-bottom: 15px;
  margin-top: 15px;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(3.25rem + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #f4f6f9 url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
  background-size: auto;
  background-size: 8px 10px;
  border: 0px solid #ced4da;
  border-radius: .25rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.banner-pricing {
  position: relative;
  padding: 0px !important;
  background-size: cover;
}

.banner-pricing-area-bg {
  background: rgb(0 0 0 / 68%);
  padding: 60px 0px 30px 0px;
}

.banner-pricing h2,
.banner-pricing p {
  color: #fff;
}

.revGallery-anchor,
.gal-overlay,
.nak-gallery-poster {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}


.revGallery-anchor {
  overflow: hidden;
  position: relative;
  width: calc(100% / 5);
  display: block;
  float: left;
  border: 10px solid #fff;

}

.gal-overlay {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/frame-1.png);
  background-size: 100% 100%;
  /* transition: background .4s ease;
  -webkit-transition: background .4s ease; */
}

.revGallery-anchor:hover .gal-overlay {
  background-image: url(../images/frame-1.png);
  background-color: rgba(27, 27, 27, 0.4);
}

.nak-gallery {
  display: block;
  width: 100%;
  position: relative;
  margin-top: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.nak-gallery p {
  position: absolute;
  left: 6%;
  width: 89%;
  bottom: 0px;
  background: #fff;
}

.nak-gallery-poster {
  /* padding-bottom: 100%; */
  /* transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transition: all .4s ease;
  -webkit-transition: all .4s ease; */
}

/* .revGallery-anchor:hover .nak-gallery-poster{
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
} */

.img-responsive {
  display: none;
}

.button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  width: 200px;
  height: 48px;
  border: 1px solid rgb(91, 91, 91);
  background-color: rgb(91, 91, 91);
  border-radius: 2px;
  color: #fff;
  letter-spacing: 2px;
}

.button:hover {
  background-color: #363636;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #fff;
}

.button:active,
.button.is-checked {
  background-color: #363636;
}

.button.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}


.revGallery-anchor-width1 {
  width: 40%
}

.revGallery-anchor-width2 {
  width: 30%
}

.revGallery-anchor-width3 {
  width: 20%
}

.nak-gallery-height1 {
  padding-bottom: 400px
}

.nak-gallery-height2 {
  padding-bottom: 300px
}

.nak-gallery-height3 {
  padding-bottom: 200px
}

.preloader {
  display: none;
}

.preloaderStyle {
  background: red;
  width: 100%;
  height: 100px;
}

.pricing-table {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
}

.pricing-table .ptable-item {
  width: 33.33%;
  padding: 0 15px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .pricing-table .ptable-item {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .pricing-table .ptable-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .pricing-table .ptable-item {
    width: 100%;
  }
}

.pricing-table .ptable-single {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.pricing-table .ptable-status,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
  position: relative;
  width: 100%;
  text-align: center;
}

.pricing-table .ptable-single {
  background: #f6f8fa;
}

.pricing-table .ptable-single:hover {
  box-shadow: 0 0 10px #999999;
}

.pricing-table .ptable-header {
  margin: 0 30px;
  padding: 30px 0 45px 0;
  width: auto;
  background: #333;
}

.pricing-table .ptable-header::before,
.pricing-table .ptable-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 100px solid #f6f8fa;
}

.pricing-table .ptable-header::before {
  right: 50%;
  border-right: 250px solid transparent;
}

.pricing-table .ptable-header::after {
  left: 50%;
  border-left: 250px solid transparent;
}

.pricing-table .ptable-item.featured-item .ptable-header {
  background: #c50000;
}

.pricing-table .ptable-status {
  margin-top: -30px;
}

.pricing-table .ptable-status span {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  padding: 5px 0;
  text-align: center;
  color: #c50000;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  background: #2A293E;
}

.pricing-table .ptable-status span::before,
.pricing-table .ptable-status span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 10px solid #FF6F61;
}

.pricing-table .ptable-status span::before {
  right: 50%;
  border-right: 25px solid transparent;
}

.pricing-table .ptable-status span::after {
  left: 50%;
  border-left: 25px solid transparent;
}

.pricing-table .ptable-title h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
}

.pricing-table .ptable-price h2 {
  margin: 0;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  margin-left: 15px;
}

.pricing-table .ptable-price h2 small {
  position: absolute;
  font-size: 18px;
  font-weight: 300;
  margin-top: 16px;
  margin-left: -15px;
}

.pricing-table .ptable-price h2 span {
  margin-left: 3px;
  font-size: 16px;
  font-weight: 300;
}

.pricing-table .ptable-body {
  padding: 20px 0;
}

.pricing-table .ptable-description ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-table .ptable-description ul li {
  color: #2A293E;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 7px;
  border-bottom: 1px solid #dedede;
}

.pricing-table .ptable-description ul li:last-child {
  border: none;
}

.pricing-table .ptable-footer {
  padding-bottom: 30px;
}

.pricing-table .ptable-action a {
  display: inline-block;
  padding: 10px 20px;
  color: #FF6F61;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  background: #2A293E;
}

.pricing-table .ptable-action a:hover {
  color: #2A293E;
  background: #FF6F61;
}

.pricing-table .ptable-item.featured-item .ptable-action a {
  color: #2A293E;
  background: #FF6F61;
}

.pricing-table .ptable-item.featured-item .ptable-action a:hover {
  color: #FF6F61;
  background: #2A293E;
}

.survey:before {
  display: none;
}

.survey h5 {
  color: #fb6971;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-weight: 600;
}

.survey h3,
.survey p {
  color: #444;
}

.survey h5::after {

  content: "";
  background: #fb6971;
  height: 2px;
  width: 80px;
  position: absolute;
  top: 100%;
  left: 0;

}

.survey .appointment-form-wrapper {
  background: rgb(255 255 255 / 100%);
  padding: 42px 12px 42px;
  box-shadow: 1px 0px 15px rgb(0 0 0 / 7%);
}

.survey .appointment-form-wrapper .appoinment-form label {
  color: #444;
  font-weight: 400;
}

.survey .custom-select {
  display: inline-block;
  width: 100%;
  height: calc(42px + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
  background-size: auto;
  background-size: 8px 10px;
  border: 0px solid #ced4da;
  border-radius: .25rem !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.filterDate2 {
  background: #fff;
  border-radius: 5px;
}

.appointment-form-wrapper .appoinment-form .form-group {
  margin-bottom: 10px;
}

.appoinment-form .input-group-addon:last-child {
  border: 0px;
}

.survey {
  width: 90%;
  margin: 0 auto;
  display: block;
  border: 1px solid #ccc;
  padding: 20px;
}

.appointment-form-wrapper.survey .appoinment-form label {
  color: #444;
  font-weight: 400;
}

.radio {
  margin: 0rem;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"]+.radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type="radio"]:checked+.radio-label:before {
  background-color: #3197ee;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type="radio"]:focus+.radio-label:before {
  outline: none;
  border-color: #3197ee;
}

.radio input[type="radio"]:disabled+.radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.radio input[type="radio"]+.radio-label:empty:before {
  margin-right: 0;
}

.appointment-form-wrapper.survey .appoinment-form input[type=text],
.appointment-form-wrapper.survey .appoinment-form input[type=email],
.appointment-form-wrapper.survey .appoinment-form input[type=url],
.appointment-form-wrapper.survey .appoinment-form input[type=password] {
  border: 1px solid #ccc;
}

.table-striped>tbody>tr:nth-of-type(2n+1) {
  background-color: #f9f9f9;
}

.survey input[type="checkbox"] {
  vertical-align: middle;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.table-wrapper .table>tbody>tr>td,
.table-wrapper .table>thead>tr>th {
  padding: 0px;
  line-height: 1.42857143;
  vertical-align: top;
  border: 0px;
  border-right: 1px solid #ddd;
  text-align: center;
}

.table-wrapper .table>tbody>tr>td {
  padding: 15px 10px;
}

.table-wrapper .table>tbody>tr>td:last-child {
  border-right: 0px solid #ccc;
}

@media only screen and (min-width:640px) and (max-width:767px) {
  .revGallery-anchor {
    width: calc(100% / 2);
  }

  .slider-bg {
    padding-top: 90px;
  }

  .nav-tabs>li {
    float: left;
    margin-bottom: 0px;
  }

  .nav-tabs {
    border: 1px solid #ccc !important;
  }

  .nav-tabs li.active a {
    background-color: #f5f5f5 !important;
    border: 0px !important;
    margin-right: 0px;
    border-radius: 0px;
  }

  .nav-tabs>li a {
    padding: 5px 10px;
  }

  .caregivers .col-md-3 {
    width: 50%;
    float: left;
    position: relative;
  }

  .dashboard-upper-info .d-single-info {
    border-right: 1px solid #ccc;
    padding: 20px 15px;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }

  .dashboard-upper-info [class*="col-"]:last-child .d-single-info {
    border-bottom: 0px;
  }

  .page-header h3 {
    color: #FFFFFF;
    text-align: center;
    font-size: 25px;
    line-height: 30px;
    margin-top: 100px;
  }

  .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
    display: -ms-flexbox !important;
    display: block !important;
  }
}

@media only screen and (min-width:480px) and (max-width:639px) {
  .revGallery-anchor {
    width: calc(100% / 1);
  }

  .slider-bg {
    padding-top: 90px;
  }

  .caregivers .col-md-3 {
    width: 50%;
    float: left;
    position: relative;
  }

  .dashboard-upper-info .d-single-info {
    border-right: 1px solid #ccc;
    padding: 20px 15px;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }

  .dashboard-upper-info [class*="col-"]:last-child .d-single-info {
    border-bottom: 0px;
  }

  .page-header h3 {
    color: #FFFFFF;
    text-align: center;
    font-size: 25px;
    line-height: 30px;
    margin-top: 100px;
  }

  .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
    display: -ms-flexbox !important;
    display: block !important;
  }

  .nav-tabs>li {
    float: left;
    margin-bottom: 0px;
    width: 100%;
  }

  .nav-tabs {
    border: 1px solid #ccc !important;
  }

  .nav-tabs li.active a {
    background-color: #f5f5f5 !important;
    border: 0px !important;
    margin-right: 0px;
    border-radius: 0px;
  }

  .nav-tabs>li a {
    padding: 5px 10px;
  }
}

@media only screen and (min-width:220px) and (max-width:479px) {
  .revGallery-anchor {
    width: calc(100% / 1);
  }

  .slider-bg {
    padding-top: 90px;
  }


  .file-trsns .btn-theme2 {
    max-width: 166px;
    margin: 5px auto !important;
    display: block;
    float: none;
  }

  .file-trsns .btn-theme {
    max-width: 166px;
    margin: 5px auto !important;
    display: block;
    float: none;
    line-height: 20px;
  }

  .nav-tabs>li {
    float: left;
    margin-bottom: 0px;
    width: 100%;
  }

  .nav-tabs {
    border: 1px solid #ccc !important;
  }

  .nav-tabs li.active a {
    background-color: #f5f5f5 !important;
    border: 0px !important;
    margin-right: 0px;
    border-radius: 0px;
  }

  .nav-tabs>li a {
    padding: 5px 10px;
  }

  .content {
    width: 85%;
  }

  .dashboard-upper-info .d-single-info {
    border-right: 1px solid #ccc;
    padding: 20px 15px;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }

  .dashboard-upper-info [class*="col-"]:last-child .d-single-info {
    border-bottom: 0px;
  }

  .page-header h3 {
    color: #FFFFFF;
    text-align: center;
    font-size: 25px;
    line-height: 30px;
    margin-top: 100px;
  }

  .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
    display: -ms-flexbox !important;
    display: block !important;
  }
}

.file-trsns {
  margin-bottom: 20px;
}

.custom-tab ul.pagination {
  width: auto;
  margin-right: 15px !important;
  margin-top: 30px !important;
}

.select2-container .select2-selection--single {
  height: 35px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px !important
}

.survey .btn-theme-invert {
  color: #FFFFFF;
  background-color: #111;
}

@media only screen and (min-width:220px) and (max-width:767px) {
  .slide-bg .item {
    width: 100% !important;
    display: block;
    position: relative;
  }

  .survey.appointment-form-wrapper .appoinment-form {
    padding: 0 0px;
  }

  .survey.appointment-form-wrapper .appoinment-form label {
    letter-spacing: 0;
    padding: 0px;
    display: inherit;
    line-height: 20px;
  }

  .survey {
    padding: 15px;
    width: 100%;
  }

  .checkbox,
  .radio {
    position: relative;
    margin: 5px 0px;
    display: inline-flex
  }
}

/* CROUSAL-STARTS */
#sg-carousel {
  position: relative;

}

.carousel-caption {
  top: 50%;
}

.carousel-caption h1 {
  font-size: 6em;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

#sg-carousel .carousel-control.left {
  top: 48%;
}

#sg-carousel .carousel-control.right {
  top: 48%;
}

.uppr-txt {
  text-transform: uppercase;
  color: #fff;
  font-size: 35px;
}

#sg-carousel .carousel-control.left,
#sg-carousel .carousel-control.right {
  background-image: none;
  background-repeat: no-repeat;
  opacity: 1;
  text-shadow: none;
  transition: all 0.8s ease 0s;
}

.carousel-control {
  bottom: 0;
  color: #fff;
  font-size: 20px;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  top: 0;
  width: auto;
  transition: all 0.8s ease 0s;

}

.fa-angle-right,
.fa-angle-left {
  font-size: 80px;
}

#sg-carousel:hover .carousel-control.left {
  left: 38px;
  transition: all .2s ease 0;
}

#sg-carousel:hover .carousel-control.right {
  right: 38px;
  transition: all .2s ease 0;
}

#sg-carousel:hover .carousel-control.left,
#sg-carousel:hover .carousel-control.right {
  opacity: 1;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.item.active img {
  transition: transform 5000ms linear 0s;
  transform: scale(1.05, 1.05);
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
  font-size: 80px;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 100%;
  left: 0px;

}

h2.jumbo-heading {
  font-size: 50px;
  line-height: 60px;
  color: #fff;
  text-shadow: 1px 1px 1px #666666;
}

.carousel-caption h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.02em;
  margin: 16px 0 0;
  color: #fff;
  text-shadow: 1px 1px 1px #666666;
}

.slider-bg {
  text-align: center;
  max-width: 460px;
}

.carousel-caption>p {
  font-size: 30px;
  color: #fff;
}

.carousel-caption a {
  border: 2px solid #dd0000;
  color: #fff;
}

.button--tamaya {
  border: 2px solid #40a304 !important;
  border-radius: 5px;
  color: #7986cb;
  min-width: 180px;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button--border-thick {
  border: 3px solid;
}

.button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  color: inherit;
  display: block;
  float: left;
  max-width: 250px;
  min-width: 199px;
  padding: 1em 7em;
  position: relative;
  vertical-align: middle;
  z-index: 1;
}

.button--tamaya::before {
  padding-top: 1em;
  top: 0;
}

.button--tamaya::before,
.button--tamaya::after {
  background: #40a304;
  color: #fff;
  content: attr(data-text);
  height: 50%;
  left: 0;
  overflow: hidden;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1) 0s;
  width: 100%;
}

.button--tamaya::after {
  bottom: 0;
  line-height: 0;
}

.button--tamaya:hover::before {
  transform: translate3d(0px, -100%, 0px);
}

.button--tamaya:hover::after {
  transform: translate3d(0px, 100%, 0px);
  color: #40a304;
}

.button--tamaya:hover {
  color: #40a304;
  font-weight: 600;
}

.carousel-indicators li {
  background-color: #b3b5b9;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  height: 12px;
  margin: 1px;
  text-indent: -999px;
  width: 12px;
  border: 0;
}

.carousel-indicators .active {
  background-color: #041132;
  height: 12px;
  margin: 0;
  width: 12px;
  border: 0;
}

#sg-carousel .item img {
  object-fit: cover;
  height: 455px;
}

#sg-carousel h1 {
  animation-delay: 1s;
  margin-bottom: 25px;
}

#sg-carousel p {
  animation-delay: 2s;
}

#sg-carousel button {
  animation-delay: 3s;
  margin-top: 25px;
}

@media all and (transform-3d),
(-webkit-transform-3d) {

  .carousel-fade .carousel-inner>.item.next,
  .carousel-fade .carousel-inner>.item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .carousel-fade .carousel-inner>.item.prev,
  .carousel-fade .carousel-inner>.item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .carousel-fade .carousel-inner>.item.next.left,
  .carousel-fade .carousel-inner>.item.prev.right,
  .carousel-fade .carousel-inner>.item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
  .slider-bg {
    padding: 0px 40px;
  }

  #sg-carousel .item img {
    object-fit: cover;
    height: 350px;
  }

  h2.jumbo-heading {
    font-size: 40px;
    margin-bottom: 0px;
  }

}

@media only screen and (min-width:640px) and (max-width:767px) {
  #sg-carousel {
    min-height: 300px;
  }

  #sg-carousel .item img {
    object-fit: cover;
    height: 300px;
  }

  h2.jumbo-heading {
    font-size: 30px;
    line-height: 30px;
  }

  .carousel-caption h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
  }

  #sg-carousel:hover .carousel-control.left {
    left: 0px;
  }

  #sg-carousel:hover .carousel-control.right {
    right: 0px;
  }

  .carousel-caption .btn-theme {
    padding: 4px 12px;
    font-size: 15px;
  }

  .slider-bg {
    padding: 15px 15px 0px 15px;
  }
}

@media only screen and (min-width:0px) and (max-width:639px) {
  #sg-carousel {
    min-height: 300px;
  }

  #sg-carousel .item img {
    object-fit: cover;
    height: 300px;
  }

  h2.jumbo-heading {
    font-size: 27px;
    line-height: 30px;
  }

  .carousel-caption h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
  }

  #sg-carousel:hover .carousel-control.left {
    left: 0px;
  }

  #sg-carousel:hover .carousel-control.right {
    right: 0px;
  }

  .carousel-caption .btn-theme {
    padding: 4px 10px;
    font-size: 13px;
  }

  .slider-bg {
    padding: 15px 15px 0px 15px;
  }
}

  .table-font.table-wrapper table{
            border:0px
          }
         .table-font.table-wrapper table th, .table-font.table-wrapper table td{
  border-bottom: 2px dashed #ccc;
  border-left: 2px dashed #ccc;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 7px;
   min-width: 135px;
   min-height: 81px;
    vertical-align: middle;
}

table > tbody > tr > td {
     vertical-align: middle;
}
.table-font.table-wrapper table th{
  font-size: 23px;
  text-align: center;
  color: #222;
  font-weight: 900;
  padding: 10px 7px;
  background-color: transparent;
}
.table-font.table-wrapper table th:first-child{
  border-left: 0px;
  min-width: 350px;
  
}
.table-font.table-wrapper table td:first-child{
  border-left: 0px;
  min-width: 350px;
  text-align: left !important;
}
.table-font.table-wrapper table tr:last-child td{
  border-bottom: 0px;
}
.table-font .table-bordered{
  border:0px;
}
.table-font table img{
  width: 60px;
} 


.c-card {
  display: flex;
  align-items: center;
  width: 100%;
}
.c-card-body {
  /*box-shadow: 0 3px 7px rgba(0,0,0,.1), 0 7px 6px rgba(0,0,0,.12);*/
  box-shadow: 0 3px 17px rgba(0,0,0,.1), 0 7px 17px rgba(0,0,0,.1);;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
}
.c-card .content {
  margin: 0 auto;
}
.c-card .about-us-slogan:after {
  display: none;
  position: absolute;
  bottom: -13px;
}
.c-card-body .about-us-slogan {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 25px;
  margin-bottom: 0px;
  position: relative;
}
.custom-div-d-flex {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
}
.c-card-body .line {
  width: 72px;
  height: 3px;
  background: #DD3A3E;
  margin: 5px 0 0 0;
}
.c-card-body .reg-mb {
  margin: 0;
  font-size: 13px;
}
.c-card-body .reg-mb1 {
  margin: 0;
  font-size: 14px;
}
.c-card-body p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin: 0 0px 10px 0;
  padding: 0;
  letter-spacing: 0;
}
.custom_sidebar{
  box-shadow: 0 3px 17px rgba(0,0,0,.1), 0 7px 17px rgba(0,0,0,.1);
  padding: 7px 0;
  border-radius: 5px;
  width: 100%;
  margin-top: 0px;
}
.custom_sidebar ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom_sidebar ul li{
  width: 100%;
  margin: 0;
  padding:7px 10px 7px 40px;
  position: relative;
}
.custom_sidebar ul li:before {
  content: "\f178";
  font-family: 'FontAwesome';
  font-size: 20px;
  position: absolute;
  left: 10px ;
  top: 10px;
  color: #BC0000;
}
.custom_sidebar ul li:last-child {
  border: 0;
}
.custom_sidebar ul li a{
  font-size: 16px;
  line-height: 20px;
}
.doctor-title {
  font-style: normal !important;
  font-size: 30px !important;
  line-height: 35px !important;
  letter-spacing: 0em !important;
  margin-bottom: 5px !important;
  font-weight: 400 !important;
}
.doctor-desc {
  margin-top: 10px !important;
}
hr.hr-half-center1 {
    border: 0px;
    height: 2px;
    background: #DD3A3E;
    width: 9%;
    max-width: 320px;
    margin: 0px 0px 24px 0px;
}
.order-3 {
  -webkit-order: 3;
  order: 3;
}
@media only screen and (min-width:1499px) and (max-width:24000px) {
  .page-header {
    height: 510px;
  }
}
@media only screen and (min-width:220px) and (max-width:767px) {
  .c-card-body .col-md-5 {
    width: 100%;
  }
  .c-card-body .content {
    width: 100% !important;
  }
  .c-card-body {
    margin: 15px 0px;
    min-height: auto !important;
  }
  .custom_sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}

.custom_sidebar ul.playicon li:before {
    content: "\f01d";
    font-family: 'FontAwesome';
    top: 13px;
}