@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700');

body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td
    {background:transparent;border:0;margin:0;padding:0;outline:none;box-sizing:border-box;}
html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 1.8rem;
	line-height: 1.6;
	color: #2d2d2d;
}
p {
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 18px;
	font-weight: normal;
	font-style: normal;
	font-size: 1.8rem;
	line-height: 1.6;
	color: #2d2d2d;
}
.p-large {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0;
}
.p-upper {
    text-transform: uppercase;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	color: #272727;	
	font-weight: 600;
	font-style: normal;	
	line-height: 1.2;
}
h1 {
	font-size: 4rem;
	margin-bottom: 20px;

}
h2 {
	font-size: 3.5rem;
	margin-bottom: 20px;
}
h3 {
	font-size: 2.7rem;
	margin-bottom: 15px;
}
h4 {
	font-size: 2.2rem;
	margin-bottom: 12px;
}
h5 {
	font-size: 1.8rem;
	margin-bottom: 10px;
}
h6 {
	font-size: 1.6rem;
	margin-bottom: 10px;
}
a {
	color: #690000;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: medium none !important;
}
a:hover {
	text-decoration: none;
	color: #101010;
}
a:focus, a:hover {
	color: #101010;
}
ul {
	list-style-type: disc;
    margin: 0 0 25px 30px;
}
ol {
    margin: 0 0 25px 30px;
}
.text-primary {
	color: #f51e46 !important;
}
.text-white {
	color: #fff;
}
b, strong {
	font-weight: 700;
}
@media screen and (max-width: 766px) {
  	body, p {
     font-size: 1.8rem;
  }  
}
.sppb-btn, .btn {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
}
.error-btn {
    background-color: #690000;
    color: #ffffff;
    border-radius: 5px;
    padding: 10px 30px;    
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active {
    background-color: #690000;
    border-color: #690000;
    color: #ffffff;
}
.error-btn:hover, .error-btn:focus, .error-btn:active {
    background-color: #101010;
    color: #ffffff;
}
.sppb-optin-form.form-inline .button-wrap {
    margin-bottom: 0;
}
figcaption {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 10px;
}

/* HEADER */

#sp-top-bar {background-color: #f51e46;}

#sp-header {
	background: transparent;
	height: inherit;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
	box-shadow: none;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@keyframes menu_sticky {
  0%   {margin-top:-100px;}
  50%  {margin-top: -90px;}
  100% {margin-top: 0;}
}

#sp-header .logo {
	height: inherit;
	display: inline-flex;
	margin: 0;
	align-items: center;
}
#sp-header #sp-logo {
    display: table;
    margin: auto;
}
.logo-image {
	height: unset !important;
}
.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
	display: inline-block;
	padding: 35px 15px;
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 20px;
	text-transform: uppercase;
}
.sp-megamenu-parent > li.active > a {
	font-weight: 500;
}
.sp-megamenu-parent > li.sp-has-child > a::after, .sp-megamenu-parent > li.sp-has-child > span::after {
	display: none;
}
#sp-header.header-sticky {
	position: fixed;
	z-index: 9999;
	box-shadow: 0px 0px 8px 1px rgba(0, 0,0, 0.2);
	-webkit-transition: all .6s;
	transition: all .6s;
	background: rgba(255, 255, 255, 0.96);
	animation-name: menu_sticky;
	animation-duration: 0.60s;
	animation-timing-function: ease-out;
	border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}
#sp-header.header-sticky .sp-megamenu-parent > li > a {
    color: #000000;
}
#sp-header.header-sticky .sp-megamenu-parent > li > a:hover {
    color: #690000;
}
#sp-header.header-sticky .sp-megamenu-parent > li.active > a, .sp-megamenu-parent > li.active:hover > a {
    color: #690000;
}
.sp-megamenu-parent > li > a > i, .sp-megamenu-parent > li > span > i {
	color: #690000;
}
.sp-megamenu-parent > li > a {
  color: #ffffff;
}
.sp-megamenu-parent > li:hover > a {
  color: #c8bb86;
}
.sp-megamenu-parent > li.active > a, .sp-megamenu-parent > li.active:hover > a {
  color: #c8bb86;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: #fff;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  color: #242424;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a:hover {
  color: #690000;
  padding-left: 30px;
  background-color: #c8bb86;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a {
  color: #690000;
}
.sp-megamenu-parent .sp-mega-group > li > a {
  color: #252525;
}
/* SUBMENU */

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
	box-shadow: 0px 3px 18px 0px rgba(0,0,0,0.07);
	padding: 0;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
	border-bottom: 1px solid #f0f0f0;
	text-transform: uppercase;
	position: relative;
}

.sp-megamenu-parent .no-uppercase .sp-dropdown li.sp-menu-item {text-transform: capitalize;}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
	font-size: 1.5rem;
	line-height: 23px;
	display: block;
	padding: 12px 23px;
	cursor: pointer;
	font-weight: 500;
	letter-spacing: 1px;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item .sp-menu-item {text-transform: capitalize;}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item .sp-menu-item a {font-weight: 500;}


.sp-megamenu-parent .left-drop .sp-dropdown.sp-dropdown-sub {
	top: 0 !important;
	left: auto !important;
	right: 100% !important;
}

.sp-megamenu-parent .sp-mega-group {
	list-style: none;
	padding: 20px 0px 30px 0px;
	margin: 0;
}

.sp-megamenu-parent .sp-mega-group > li > a {
	text-transform: uppercase;
	padding: 12px 23px;
	letter-spacing: 0.5px;
	padding-bottom: 10px;
	font-weight: 600;
	margin: 0;
}

.sp-megamenu-parent .sp-dropdown .sp-mega-group li.sp-menu-item {
	border-bottom: 0px solid #f0f0f0;
	text-transform: none;
	position: relative;
}

.sp-megamenu-parent .sp-dropdown .sp-mega-group li.sp-menu-item a {
	padding: 8px 23px;
	font-weight: 500;
}

.sp-megamenu-parent .sp-dropdown .sp-mega-group li.sp-menu-item a i {margin-right: 3px;}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
	display: inline-block;
	line-height: 1;
	padding: 0 !important;
	letter-spacing: 0;
}
#offcanvas-toggler {
	display: block;
	height: 60px;
	line-height: 60px;
	font-size: 2rem;
}
body.ltr.offcanvs-position-right.offcanvas-active .offcanvas-menu {
    right: 0;
    background-color: #c8bb86;
}
#offcanvas-toggler > .fa {
	color: #fff;
}
.burger-icon>span {
    background-color: #ffffff; 
}
#sp-header.header-sticky .burger-icon>span {
    background-color: #690000;
}
#sp-header.header-sticky #offcanvas-toggler > .fa {
	color: #c8bb86;
}
.offcanvas-active .burger-icon>span, #modal-menu-toggler.active .burger-icon>span {
    background-color: #690000;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a, .offcanvas-menu .offcanvas-inner .sp-module ul > li span {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
}
/* */

.padding-percent1 {padding: 10%;}

/* WELCOME CAAAI */
.welcome-feature .sppb-addon-content {
    display: flex;
}
.welcome-feature {
    padding: 25px;
    border: 1px solid #fff;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 1px 1px 18px rgba(0,0,0,0.20);
    transition: all 0.3s ease-out 0s;
}
.welcome-feature:hover {
    -webkit-box-shadow: 1px 4px 20px -2px rgba(0,0,0,0.2);
    box-shadow: 1px 4px 20px -2px rgba(0,0,0,0.2);
    transform: translateY(-8px);
}
.welcome-feature .sppb-icon {
    color: #101010;
    font-size: 6rem;
    width: 20%;
}
.welcome-feature .sppb-addon-title {
    margin-top: 45px;
}
.welcome-feature .sppb-btn {
    background-color: #690000;
    color: #fff;
    border-radius: 5px;
    padding: 10px 30px;
}
.welcome-feature .sppb-btn:hover {
    color: #fff;
    background-color: #101010;
}
@media screen and (max-width: 766px) {
    .welcome-feature .sppb-addon-content {
        display: block;
        text-align: center;
    }
    .welcome-feature .sppb-icon {
        width: 100%;
    }
    .welcome-feature .sppb-media .pull-left {
        float: none !important;
    }
}
/* END WELCOME CAAAI */

/* PAGE BUILDER ARTICLE ADDON */
.sppb-addon-articles .sppb-addon-article {
  margin-bottom: 30px;
  border-radius: 15px;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 0px 40px -1px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 40px -1px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 40px -1px rgba(0,0,0,0.1);
}
.sppb-addon-articles .sppb-addon-article:hover {
  box-shadow: 0 20px 20px rgba(0,0,0,0.14);
  -webkit-box-shadow: 0 20px 20px rgba(0,0,0,0.14);
  transform: translateY(-10px);
}
.sppb-addon-articles .image-content {
  position: relative;
  border-radius: 15px 0 0 15px;
  width: 100%;
  padding: 0px;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
.sppb-addon-articles .overlay {
    display: none;
}
.sppb-addon-articles .sppb-addon-article .image-content img {
  transition: all 0.3s ease-out 0s;
  height: 295px;
  width: -webkit-fill-available;
}
.sppb-addon-articles .sppb-addon-article:hover .image-content img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
  transition: all 0.3s ease-out 0s;
}
.sppb-addon-articles .article-content {
  padding: 25px;
  border-radius: 15px;
  background-color: #fff;
  transition: all 0.3s ease-out 0s;
}
.sppb-addon-articles h5 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 3px;
  font-style: normal;
  font-weight: 600;
}
.sppb-addon-articles h5 > a {
    color: #690000;
    font-size: inherit;
}
.sppb-addon-articles .sppb-article-introtext p {
    font-size: 1.6rem;
    margin: 0 0 5px 0;
    line-height: 1.4;
}
.sppb-addon-article .sppb-readmore {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}
.sppb-addon-articles .sppb-article-meta {
	margin: 0 0 8px;
}
.sppb-addon-articles .sppb-article-meta > span {
	display: inline-block;
	margin: 0;
	font-size: 1.4rem;
    color: #674242;
    margin-right: 15px;
}
/* END ARTICLE ADDON */

/* Hide main article image on blog layout */
.article-introtext img,
.article-introtext figcaption {
    display: none;
}

/* COLUMN */
#sp-right .sp-column {
    border-radius: 15px;
}
/* END COLUMN */

/* ARTICLE */
span.badge.bg-danger.featured-article-badge {
    display: none;
}
.article-list .article .article-header h1 {
    font-size: 4rem;
    font-style: normal;
	font-weight: 600;
	transition: all 0.3s ease-out 0s;
	margin-top: 0;
	line-height: 1.2;
	margin-bottom: 18px;
}
.article-list .article .article-header h2 {
    font-size: 3.5rem;
    font-style: normal;
	font-weight: 600;
	transition: all 0.3s ease-out 0s;
	margin-top: 0;
	line-height: 1.2;
	margin-bottom: 18px;
}
.article-list .article .article-header h1 a {
	color: #690000;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.2;
}
.article-list .article .article-header h2 a {
	color: #690000;
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.2;
}
.article-list .article .article-header h1 a:hover,
.article-list .article .article-header h2 a:hover,
.article-list .article .article-header h2 a:active,
.article-list .article .article-header h2 a:focus {
	color: #101010;
}
.article-details .article-header h1 {
    font-size: 4rem;
}
.article-details .article-header h2 {
    font-size: 3.5rem;
}
.article-info > span a:hover {
    text-decoration: underline;
}
.article-info {
	margin-bottom: 0;
}
.article-info > span, .article-info > span > a {
	font-size: 1.6rem;
	color: #674242;
	margin-right: 5px;
}
.article-info > span a:hover {
    text-decoration: underline;
    color: #674242;
}
.article-info > span + span:before {
	display: none;
}
.article-introtext {
	margin-top: 20px;
}
.article-introtext p {
	margin-top: 0;
/*	margin-bottom: inherit;*/
}
.article-list .article .readmore {
	font-size: inherit;
}
.article-list .article .readmore a {
	font-size: 1.6rem;
	padding: 10px 30px;
	color: #ffffff;
	background-color: #690000;
	border-radius: 5px;
	box-shadow: none;
	display: inline-block;
	margin: 32px 5px 5px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	font-weight: 500;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	border: 1px solid transparent;
}
.article-list .article .readmore a:hover,
.article-list .article .readmore a:active,
.article-list .article .readmore a:focus {
	color: #ffffff;
	background-color: #101010;
}
.image-container {
    display: flex;
    flex-direction: column;
    float: left;
    width: 225px;
}
.image-caption {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}
@media screen and (max-width: 766px) {
  	.article-introtext img {
      width: 300px !important;
      height: auto !important;
      margin: 0 0 1.5em 0 !important;
  }
  .image-container {
      align-items: center;
      width: 100%;
  }
}
/* SINGLE */
.article-details {
    background: #f5f5f5;
    padding-bottom: 45px;
    border-radius: 15px;
}
.article-details > div {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
}
.article-details > div.article-full-image {padding: 0;}
@media screen and (max-width: 766px) {
    .article-details > div {
        padding-left: 25px; padding-right: 25px;
    }
}
.article-details .article-full-image img {
    display: inline-block;
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}
.image-shadow {
      border: 4px solid #ffffff;
      box-shadow: 0px 0px 13px 1px rgba(0, 0, 0, 0.35);
      transition: all 0.3s ease-out 0s;
  }  
@media screen and (max-width: 766px) {
  	.article-details .article-full-image img {
      width: 100%;
      height: auto;
      margin: 0 0 1.5em 0 !important;
  }  
}
.article-details blockquote {
	font-size: 1.6rem;
	font-style: italic;
	border-left: 3px solid #f51e46;
	padding: 15px 0 15px 20px;
	margin: 35px 0 35px 40px;
	line-height: 2;
	font-weight: 500;
}
.mt-3, .my-3 {
	margin-top: 2rem !important;
}
.blog-layout-2 .article-list .article {
	margin-bottom: 40px;
	border-radius: 0;
	background: #fff;
	padding: 30px;
	border: 1px solid #e4e4e4;
}
.blog-layout-2 .article-body {
	padding: 0;
	background-color: transparent;
}
.signature-block {
    display: flex;
    justify-content: space-between;
}
.signature {
/* END ARTICLE */

}
/* PORTFOLIO DEFAULTS */

.featherlight {
  top: 11%;
}

.featherlight .featherlight-content {
  max-height: 95%;
  max-width: 55%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: transparent none repeat scroll 0 0;
}

.sp-simpleportfolio .sp-simpleportfolio-img {
	display: block;
	width: 100%;
	height: auto;
}

.sp-simpleportfolio .sp-simpleportfolio-description {
	width: 100%;
	float: none;
	margin-top: 40px;
}

.sp-simpleportfolio .sp-simpleportfolio-description .clearfix {height: 1px;}

.sp-simpleportfolio .sp-simpleportfolio-description ul {
	width: 100%;
	padding: 40px;
	border: 1px solid #f1f1f1;
	margin-bottom: 0;
}

.sp-simpleportfolio .sp-simpleportfolio-description ul li {
	padding: 0 0 10px 0;
	margin: 0px;
}
.sp-simpleportfolio .sp-simpleportfolio-description ul li strong {
	color: #323335;
	display: inline-block;
	font-weight: 700;
	width: 150px;
}
.sp-simpleportfolio .sp-simpleportfolio-description h4 {
	font-weight: 700;
}
#sp-main-body {
	padding: 100px 0;
    background-color: #ffffff;
}
.com-spsimpleportfolio #sp-left, .com-spsimpleportfolio #sp-right {padding-top: 0; padding-bottom: 0;}
@media (min-width: 992px) {.com-content #sp-left, .com-content #sp-right {padding-top: 0; padding-bottom: 0;}}
/* */

/* SIDEBAR COLUMN */
#sp-right .sp-column {
	border: solid 1px #efefef;
    padding: 1em;
    box-sizing: border-box;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-out 0s;
}
/* Pinkerton Video in article */
.sppb-addon-video .sppb-addon-video-local-video-wrap {
    padding-top: 56.3%;
    position: relative;
    margin: 1.5em 0;
}
.sppb-addon-video-local-source {
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%
}
#sp-right, #sp-left {
    padding-top: 55px; 
    padding-bottom: 85px;
}
#sp-left .sp-module:first-child, #sp-right .sp-module:first-child {
	margin-top: 0;
}
#sp-left .sp-module, #sp-right .sp-module {
	margin-top: 60px;
	border: 0px solid #f3f3f3;
	padding: 0;
	border-radius: 0;
}
#sp-left .sp-module .sp-module-title, #sp-right .sp-module .sp-module-title {
	border-bottom: 0px solid #f3f3f3;
	font-size: 2.5rem;
	margin-bottom: 25px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 23px;
	margin-top: 10px;
	padding: 0;
}
#sp-left .sp-module ul > li, #sp-right .sp-module ul > li {
	display: block;
	min-height: 85px;
	border-bottom: none;
	margin-bottom: 20px;
}
#sp-left .sp-module ul > li a:hover, #sp-right  .sp-module ul > li a:hover {
    color: #690000;
    text-decoration: none;
}
#sp-left .latestnews li:last-child, #sp-right .latestnews li:last-child {
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
}
.latestnews img {
	width: 80px;
	height: 80px;
	margin: 0px 20px 0px 0px;
    border-radius: 5px;
    object-fit: cover;
}
.latestnews .media-body span a {
    font-size: 1.6rem;
    line-height: .5;
    font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	text-decoration: none;    
	padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}
.media-body span a:hover {
	color: #101010;
}
.media-body small {
	display: block;
	margin: 5px 0;
	font-size: 1.3rem;
	color: #674242;
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	font-style: normal;
	line-height: 1;
}
#sp-left .sp-module .tagspopular ul > li, #sp-right .sp-module .tagspopular ul > li,
#sp-left .sp-module .sppb-addon-gallery ul > li, #sp-right .sp-module .sppb-addon-gallery ul > li {
	display: inline-block;
	min-height: inherit;
	border-bottom: 0px solid #ececec;
	margin-bottom: 0;
}
#sp-left .sp-module .sppb-addon-gallery ul > li, #sp-right .sp-module .sppb-addon-gallery ul > li {
	margin: 4px 4px 0 0;
}
#sp-left .sp-module .sppb-addon-gallery  ul > li > a, #sp-right .sp-module .sppb-addon-gallery  ul > li > a {
	padding: 0;
}
#sp-left .sp-module .tagspopular ul > li > a, #sp-right .sp-module .tagspopular ul > li > a {
	display: inline-block;
	background-color: #fff;
	border: 1px solid #dadada;
    border-radius: 5px;
	color: #674242;
	margin: 0 10px 10px 0;
	padding: 5px 15px;
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 1.5rem;
	line-height: 23px;
}
#sp-left .sp-module .tagspopular ul > li > a:hover, #sp-right .sp-module .tagspopular ul > li > a:hover {
	background-color: #690000;
	color: #fff;
}
.sidebar-class  .sppb-row-container {width: 100% !important; }
.sidebar-class.com-sppagebuilder #sp-main-body {margin: 0 auto;}
@media (min-width: 768px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 750px;}
}
@media (min-width: 992px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 970px;}
}
@media (min-width: 1200px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 1170px;}
}
/* END SIDEBAR */

/* RESPONSIVE */
@media (max-width: 768px) {
	.owl-item .feature-box-4{margin: 20px 0;}
}
/* */

.text-box-negative {
    width: 100%;
    padding: 70px 100px 0;
    background-color: #fff;
}
.ce-feature-box-28 .negative {
	position: relative;
	width: 100%;
	z-index: 2;
	margin: 0;
	top: -150px;
}
.border-top-gray {
	border-top: 1px solid #f1f1f1;
}
.border-bottom-gray {
	border-bottom: 1px solid #f1f1f1;
}
.border-top-gray-opacity {
	border-top: 1px solid rgba(241, 241, 241, 0.1);
}

/* PAGE TITLE */
.sp-page-title {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 320px;
	padding: 50px 0;
	background-repeat: no-repeat;
	background-position: 40% 30%;
	background-size: cover;
	text-align: center;
}
.sp-page-title:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	top: 0;
	left: 0;
}
.sp-page-title .sp-page-title-heading {
    font-family: 'Montserrat';
	font-style: normal;
	position: relative;
	z-index: 2;
	font-size: 4.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #ffffff;
	text-transform: none;
	margin-top: 0;
	line-height: 1.4;
	text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 8px;
}
.sp-page-title .sp-page-title-sub-heading {
	width: 100%;
	font-size: 1.8rem;
	margin: 0 auto 40px auto;
	text-transform: uppercase;
	line-height: 1.6;
	font-weight: 500;
	color: #fff;
	position: relative;
	z-index: 2;
}
/* END PAGE TITLE */

.password-group .input-group-prepend {display: none;}

.btn-primary.focus, .btn-primary:focus {
	box-shadow: none;
}
.white-popup-block {
	background: #fff;
	padding: 40px;
	text-align: left;
	max-width: 700px;
	margin: 40px auto;
	position: relative;
}

/* BLOG */
.blog-classic-sidebar #sp-main-body {
	background-color: #fff;
}
.blog-classic-sidebar .article-body {
	background-color: #f5f5f5;
	border-radius: 0 0 15px 15px;
}
.blog-about-caaai .article-body {
	background-color: #f5f5f5;
    padding: 45px;
    border-radius: 15px;
}
.blog-about-caaai .article-details {
	background-color: #f5f5f5;
    padding: 45px;
    border-radius: 15px;
}
#sp-main-body .paypal-response {
    padding: 45px;
    background-color: #f5f5f5;
}
.blog-about-caaai .article-intro-image img {
    display: none;
}
.blog-classic-sidebar hr, .blog-about-caaai hr {
    display: none;
}
.article-list .article {
	margin-bottom: 40px;
	padding: 0px;
	border: 0px solid #f5f5f5;
	border-radius: 0;
}
.article-list .article .article-intro-image img, .article-list .article .article-featured-video img, .article-list .article .article-featured-audio img, .article-list .article .article-feature-gallery img {
    border-radius: 0;
    width: 100%;
    height: 350px;
    transition: all 0.3s ease-out 0s;
    object-fit: cover;
    object-position: center;
}
.article-list .article .article-intro-image, .article-list .article .article-featured-video, .article-list .article .article-featured-audio, .article-list .article .article-feature-gallery {
	margin: 0;
	border-radius: 15px 15px 0 0;
	border-bottom: 0px solid #f5f5f5;
	overflow: hidden;
	float: none !important;
	transition: all 0.3s ease-out 0s;
}
.article-list .article:hover .article-intro-image img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.article-body {
	padding: 45px;
}
.layout-blog ul {
    list-style-type: disc;
}
@media screen and (max-width: 766px) {
  	.article-body {
     padding: 25px;
  }  
}

/* TAGS */
.view-tag .float-end {
    float: none !important;
}
select.form-control:not([multiple]), select.inputbox:not([multiple]), select:not([multiple]) {
    height: inherit;
    padding: 10px;
    font-size: 1.5rem;
    border-radius: 5px;
}
.view-tag .list-group {
    border-radius: 15px;
}
.tags {
	display: none;
}
/* Hide main areticle image on Tag layout page */
.tag-body img {
    display: none;
}
.view-tag .list-group-item a {
    font-size: 2.7rem;
    font-weight: 600;
    color: #690000;
}
.list-group-item img {
    width: 35%;
    margin: 15px 0 15px 0;
}
.tag-article-date {
    display: block;
    color: #495057;
    text-align: inherit;
    font-style: normal;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 0.3em;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 40px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
}
@media (max-width: 415px) {
	.list-group-item img {
	   width: 50%;
	}
}
/* END TAGS */

/* PAGINATION */
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #690000;
    border-color: #690000;
}
.layout-blog ul.pagination {
    list-style-type: none;
}
.pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    border-color: #690000;
    background-color: #690000;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #690000;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-link:hover {
    z-index: 2;
    color: #ffffff !important;
    text-decoration: none;
    background-color: #690000;
    border-color: #690000;
}
/* END PAGINATION */

/* BOTTOM */
#sp-bottom {
	padding: 0;
	line-height: inherit;
}
#sp-bottom .sp-module .tagspopular ul > li,
#sp-bottom .sp-module .sppb-link-list-wrap ul > li {
	display: inline-block;
	margin-bottom: 0 !important;
}
#sp-bottom .sp-module ul > li {
	margin-bottom: 15px;
}
#sp-bottom .sp-module {
	margin-bottom: 0;
}
#sp-bottom1 p {
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 8px;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #9c9c9c;
}
#sp-bottom .sp-module .tagspopular ul > li > a {
	font-size: 1.5rem;
	font-weight: normal;
	margin: 6px 6px 0 0;
	display: inline-block !important;
	padding: 4px 12px;
	color: #727272;
	border: 1px solid #2e2e2e;
	text-decoration: none;
	transition: all 0.3s ease;
}
#sp-bottom .sp-module .tagspopular ul > li > a:hover {
	color: #f51e46;
	border: 1px solid #f51e46;
}
#sp-bottom .sp-module ul.latestnews > li {
	padding-bottom: 2px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(241, 241, 241,0.1);
	min-height: 80px;
}
#sp-bottom .media {
    display: flex;
    align-items: flex-start;
}
#sp-bottom .media-left {
    width: 85px;
}

#sp-bottom .sp-module ul.latestnews > li:last-child {
	padding-bottom: 0;
	margin-bottom: 0 !important;
	border-bottom: 0px solid #f1f1f1;
}
#sp-bottom a {
    color: #9c9c9c;
    font-size: 1.5rem;
    text-transform: none;
}
#sp-bottom .latestnews img {
    width: 70px;
    height: 70px;
    margin: 0px 20px 0px 0px;
    border: solid 1px #a9a9a9;
}
#sp-footer {
	font-size: 1.6rem;
	color: #9c9c9c;
	margin: 0;
	padding: 30px 0;
	text-align: center;
}

#sp-footer .container-inner {
	padding: 0;
	border-top: 0px solid rgba(255, 255, 255, .1);
}
/* END BOTTOM */

/* OFFLINE PAGE */
html.offline body {
    background: #c8bb86;
}
html.offline {
    width: 100%;
    height: 100%;
    min-height: 100%;
}
html.offline body {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: 50% 40%;
}
.offline-wrapper {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
html.offline .login-wrapper {
    display: inline-block;
    width: 300px;
    align-items: center;
}
html.offline .login-form {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
}
html.offline .form-input {
    width: 100%;
    margin-bottom: 5px;
}
.offline-label label {
    display: none;
}
html.offline .input-group-text {
    padding: 4px 11px !important;
}
html.offline .login-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
html.offline .form-control {
	font-size: 1.6rem;
}
html.offline .form-control, .form-control:focus {
    width: 1%;
}
html.offline .login-form input[type="submit"],
html.offline .login-form button[type="submit"] {
    width: 100%;
	font-size: 1.6rem;
    padding: 8px 40px;
    margin-top: 15px;
}
html.offline .sppb-btn {
    background-color: #690000;
    color: #FFFFFF;
}
html.offline .sppb-btn:hover {
    background-color: #101010;
    color: #FFFFFF;
}
/* END OFFLINE PAGE */