/* app.css */

:root {
/*    --theme-color: #00BBFF;*/
/*    --secondary-color: #3E2AD3;*/
/*    --text-color: #555555;*/
/*    --light-color: #F2FBFF;*/
/*    --dark-color: #00072D;*/
/*    --btn-color: #00BBFF;*/
/*    --btn-hcolor: #00ABEF;*/
    --box-shadow: 0px 0px 12px 0px rgb(0 7 45 / 10%);
/*    --box-shadow-h: 0px 0px 24px 4px rgb(0 7 45 / 10%);*/
    --box-shadow-header: 0px 0px 40px rgb(0 7 45 / 10%);
	--border-radius-big: 10px;
	--border-radius-small: 5px;
	--border-radius-btn: 5px;
	--transition: all .2s ease-in-out;;
}

html body {
	font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #212529;
    font-size: 16px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	color: #00072d;
}

a {
	text-decoration: none;
	transition: var(--transition);
}


/* HEADER */

.tct-header {
	position: fixed;
	top:0;
	width: 100%;
	background-color: transparent;
    background-image: linear-gradient(140deg, #00072D 0%, #00072DF2 80%);
    box-shadow: var(--box-shadow-header);
	padding: 15px 0;
	z-index: 9000;
}

.tct-header .container {
	display: flex;
    align-items: center;
	justify-content: space-between;
}

.tct-header .brand {
	display: block;
	width: 200px;
}

.tct-header .brand img {
	width: 100%;
	height: auto;
}

.tct-header .menu {
	color: #fff;
}
.tct-header .header-menu ul.menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tct-header .header-menu ul.menu>li {
	display: inline-block;
	    margin: 0 10px;
}
.tct-header .header-menu ul.menu>li>a {
	position: relative;
	display: block;
	font-size: 18px;
	color: #fff;
    padding: 15px 15px;
}
.tct-header .header-menu ul.menu>li>a:hover {
	color: #00bbff;
}


/* Dropdown mane */
.tct-header .header-menu ul.menu>li.menu-dropdown {
	position: relative;
}
/*.tct-header .header-menu ul.menu>li.menu-dropdown>a {
	
}*/
.tct-header .header-menu ul.menu>li.menu-dropdown ul.menu-dropdown-options {
	display: none;
	list-style: none;
	position: absolute;
	top: 60px;
    background: #fff;
    width: max-content;
    border-radius: 5px;
	box-shadow: 0 0 50px 0 rgb(32 32 32 / 15%);
    padding: 10px;
    z-index: 2000;
}
.tct-header .header-menu ul.menu>li.menu-dropdown:hover ul.menu-dropdown-options {
	display: block;
}
.tct-header .header-menu ul.menu>li.menu-dropdown ul.menu-dropdown-options:before {
    content: "";
    width: 20px;
    height: 20px;
    left: 30px;
    top: -10px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tct-header .header-menu ul.menu>li.menu-dropdown ul.menu-dropdown-options>li {
	border-bottom: 1px solid #f7faff;
}
.tct-header .header-menu ul.menu>li.menu-dropdown ul.menu-dropdown-options>li:last-of-type {
	border-bottom: none;
}
.tct-header .header-menu ul.menu>li.menu-dropdown ul.menu-dropdown-options>li>a {
	display: block;
	color: #00072d;
	border-radius: var(--border-radius-btn);
	padding: 10px;
}
.tct-header .header-menu ul.menu>li.menu-dropdown ul.menu-dropdown-options>li>a:hover {
	color: #00bbff;
	background: #e7f7fe;
}

.tct-header .side-items {
	display: flex;
    align-items: center;
    font-weight: 300;
}
.tct-header .side-items .side-item {
	color: #fff;
    border-right: 1px solid #e1e1e1;
    padding: 0 20px;
}
.tct-header .side-items .side-item:last-of-type {
	border-right: none;
	padding-right: 0;
}
.tct-header .side-items .side-item a {
	color: #fff;
}
.tct-header .side-items .side-item a:hover {
	color: #00bbff;
}
.tct-header .side-items .side-item .side-icon {
	font-size: 22px;
	color: #00bbff;
    padding-right: 10px;
}

.tct-header .menu-toggler {
	font-size: 28px;
	color: #fff;
	padding: 0 10px;
}


@media (max-width: 991px) {
	.tct-header .brand {
		width: 145px;
	}

	.tct-header .header-menu {
		position: absolute;
		top: 75px;
		left: 0;
        width: 100%;
        height: calc(100vh - 55px);
        transform: translateX(100%);
		background-color: transparent;
    	background-image: linear-gradient(140deg, #00072D 0%, #00072DF2 80%);
    	transition: var(--transition);
    	padding: 20px;
	}

	.tct-header .header-menu.open {
		transform: translateX(0);
	}

	.tct-header .header-menu ul.menu>li {
		display: block;
	}
}

/*@media (min-width: 768px) and (max-width: 991px) {
	.tct-header .brand {
        width: 150px;
	}
}*/

@media (min-width: 992px) and (max-width: 1199px) {
	.tct-header .brand {
        width: 150px;
	}
	.tct-header .header-menu ul.menu>li>a {
	    padding: 15px 10px;
	}
}


/* MAIN */

main {
	margin-top: 90px;
}

@media (max-width: 576px) {
	main {
		margin-top: 74px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	main {
		margin-top: 87px;
	}
}


/* FOOTER */

footer .footer {
	color: #fff;
	background-color: transparent;
    background-image: linear-gradient(140deg, #00072D 0%, #00072DF2 80%);
	padding: 70px 0;
}
footer .footer .title {
	color: #fff;
	font-size: 20px;
}
footer .footer-bar {
	color: #bbc6cf;
	background: #000523;
	padding: 30px 0;
}

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

footer ul.quick-links>li {
	margin-bottom: 10px;
}

footer ul.quick-links>li:last-of-type {
	margin-bottom: 0;
}

footer .affiliates a {
	display: block;
    height: 30px;
    margin-bottom: 30px;
}
footer .affiliates a:last-of-type {
	margin-bottom: 0;
}
footer .affiliates a img {
	height: 100%;
}

footer ul.contact {
	list-style: none;
	padding: 0;
	margin: 0;
}
footer ul.contact li {
    margin-bottom: 15px;
}
footer ul.contact li:last-of-type {
	margin-bottom: 0;
}

a.footer-link, div.footer-link {
	display: flex;
	align-items: center;
	color: #fff;
	transition: all .2s ease-in-out;
}
a.footer-link:hover {
	color: #00bbff;
	padding-left: 10px;
}
a.footer-link .fa, div.footer-link .fa {
	color: #00bbff;
	width: 20px;
	margin-right: 5px;
}


/* SECTIONS */

.section-bg-1 {
	background-color: #E7F7FE;
    background-image: url(/app/assets/images/section-bg-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title-divider {
	/*text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    background-image: url(/app/assets/images/title-divider.png);
	background-position: center;
    background-repeat: no-repeat;*/

	height: 3px;
	width: 80px;
	background: #0bf;
	border-radius: 5px;
	opacity: 0.4;
	margin: 0 auto 0 auto;
}

.heading-title {
	font-family: "Delius", Sans-serif;
/*	font-size: 1.6rem;*/
	font-weight: 500;
	color: #00BBFF;
}

.clearfix:after {
    content: "";
    clear: both;
    display: table;
}


/* BUTTONS */

.btn {
	transition: all .2s ease-in-out;
	border-radius: var(--border-radius-btn);
}

.btn-default {
	color: #fff;
	background: #01b3a7;
	border: 2px solid #01b3a7;
}
.btn-default:hover {
	color: #fff;
	background: #00bbff;
	border: 2px solid #00bbff;
}

.btn-primary {
	color: #fff;
	border: 2px solid #00bbff;
	background: #00bbff;
}
.btn-primary:hover {
	color: #fff;
	background: #00afef;
	border-color: #00afef;
}

.btn-outline-primary {
	color: #049b90;
	border: 2px solid #00bbff;
}
.btn-outline-primary:hover {
	color: #fff;
	border-color: #00afef;
	background: #00afef;
}


.link-arrow {
	font-weight: 500;
    font-size: 16px;
    text-transform: none;
    color: #151515;
}
.link-arrow span {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 3px 10px;
    line-height: 24px;
    width: 25px;
    transition: all .3s ease;
}
.link-arrow span::before {
    height: 2px;
    flex-grow: 1;
    background-color: #151515;
}
.link-arrow span::before, .link-arrow span::after {
    display: inline-block;
    vertical-align: middle;
    content: '';
    transition: inherit;
}
.link-arrow span::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #151515;
}

.link-arrow:hover span {
    width: 40px;
    opacity: 1;
}

.link-arrow.gray {
	color: #049b90;
}
.link-arrow.gray span::before {
    background-color: #049b90;
}
.link-arrow.gray span::after {
    border-color: transparent transparent transparent #049b90;
}


/* Tours Map */

.leaflet-popup-content {
    margin: 10px 10px 10px 10px !important;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    border-radius: 5px !important;
}

.tours-map {
	width: 100%;
	height: 600px;
	background: #ccc;
	border-bottom: 10px solid #00bbff;
}

@media (max-width: 576px) {
	.tours-map {
		height: 350px;
	}
}

.map-tour-info {
	width: 150px;
}
.map-tour-image {
	display: block;
	position: relative;
	min-height: 90px;
	margin-bottom: 5px;
	overflow: hidden;
}
.map-tour-image img {
	display: block;
	width: 100%;
}
.map-tour-info .title {
	font-weight: 600;
	color: #333333;
}
.map-tour-info .title:hover {
	color: #333333;
}


/* Tour Locations Map */
.tour-locations-map {
	width: 100%;
	height: 350px;
	background: #ccc;
}


.map-marker {
	position: absolute;
/*	font-size:11px;*/
	font-weight: 500 !important;
	color: #fff !important;
	padding: 4px 5px !important;
}
.map-marker { /* sale */
	background: #304559 !important;
	border: 1px solid #304559 !important;
}
.map-marker.leaflet-tooltip-top:before {
    bottom: 0;
    margin-bottom: -12px;
    border-top-color: #304559 !important;
}


/* RATING STARS */
.rating-stars {
	font-size: 0.8rem;
}
.rating-stars i {
	color: #e8e8e8;
}
.rating-stars i.active {
  color: #ffcc00;
}


/* Home page Tours */

.home-tours {
/*	background: #f7f7f7;*/
}

.home-tours .home-tour-item {
	position: relative;
	height: 350px;
}

.home-tours .home-tour-item .image {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.home-tours .home-tour-item .image img {
	height: 100%;
	transition: all 0.2s ease-in-out;
	transform: scale(1.1);
}
.home-tours .home-tour-item:hover .image img {
	transform: scale(1.0);
}

.home-tours .home-tour-item .content {
	position: absolute;
    background: #fff;
    bottom: -25px;
    left: 20px;
    right: 20px;
    height: 120px;
    text-align: center;
    border-radius: 5px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.27);
    padding: 20px;
    transition: all 0.2s ease-in-out;
}
.home-tours .home-tour-item:hover .content {
	height: 150px;
}

.home-tours .home-tour-item .content .top {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 80px;
	background: #fff;
}
.home-tours .home-tour-item .content .bottom {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	color: #00bbff;
}
.home-tours .home-tour-item .content .title {
	font-size: 1.2rem;
	line-height: 1.2;
}
.home-tours .home-tour-item .content .title a {
	color: #151515;
}
.home-tours .home-tour-item .content .title a:hover {
	/*color: #00bbff;*/
	color: #01b3a7;
}


@media (max-width: 576px) {
	.home-tours .home-tour-item {
		height: 300px;
		margin-bottom: 80px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.home-tours .home-tour-item .content .title {
		font-size: 1rem;
	}
}


/* TOURS LIST */
.tours-list {

}

.tours-list .tour-list-item {
	position: relative;
    display: flex;
    height: 310px;
    background: #fff;
/*    border: 1px solid #e1e1e1;*/
    border-radius: var(--border-radius-big);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin: 50px 0;
}
.tours-list .tour-list-item .image {
	display: block;
	width: 50%;
    overflow: hidden;
}
.tours-list .tour-list-item .image img {
	height: 100%;
	transition: all .3s ease-in-out;
}
.tours-list .tour-list-item .content {
	width: 50%;
	padding: 50px;
}
.tours-list .tour-list-item .content .title {
	font-size: 23px;
}
.tours-list .tour-list-item .content .description {
	position: relative;
	color: #6e7378;
	height: 70px;
	overflow: hidden;
	margin-bottom: 20px;
}
.tours-list .tour-list-item .content .description .fader {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1.2rem;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.tours-list .tour-list-item .tag {
	position: absolute;
    overflow: hidden;
    text-align: center;
    padding: 8px 20px 6px;
    top: 0;
    right: 0;
	color: #fff;
    line-height: 1;
    letter-spacing: .025em;
    background: transparent;
    z-index: 1;
}

.tours-list .tour-list-item .tag:before {
	position: absolute;
    content: '';
    bottom: 0;
    left: 14px;
    width: 400%;
    height: 100%;
    background: #01b3a7;
    transform: skew(45deg);
    transform-origin: 50% 100%;
    will-change: transform;
    pointer-events: none;
    z-index: -1;
}

.tours-list .tour-list-item .tag .duration {
	font-size: 18px;
	font-weight: 500;
}
.tours-list .tour-list-item .tag .hours {
	font-size: 14px;
}

.tours-list .tour-list-item:hover .image img {
	transform: scale(1.1);
}

@media (max-width: 576px) {
	.tours-list .tour-list-item {
		display: block;
		height: auto;
	}

	.tours-list .tour-list-item .image {
		width: 100%;
	}

	.tours-list .tour-list-item .content {
		width: 100%;
		padding: 30px 20px;
	}

	.tours-list .tour-list-item .content .description .fader {
		display: none;
	}

	.tours-list .tour-list-item .content .link {
		text-align: center;
	}
}



.tour-content h2 {
	font-size: 1.8rem;
	margin-top: 30px;
}


/* Intro */

.intro-image {
	border-radius: var(--border-radius-big);
	box-shadow: var(--box-shadow);
}


/* Reviews */

.reviews {
	position: relative;
}
.reviews .review-item .name {
	font-size: 1.3rem;
	line-height: 1;
}
.reviews .review-item .date {
	font-family: "Delius", Sans-serif;
	color: #00bbff;
}
.reviews .review-item .stars {
	font-size: 0.8rem;
}
.reviews .review-item .content {
	font-style: italic;
	line-height: 1.5;
}

.reviews .owl-carousel {
	width: calc(100% - 70px);
	margin: auto;
}

.reviews .nav-buttons {
    position: absolute;
    top: 29%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reviews .nav-buttons .nav-button {
	font-size: 20px;
	color: #3fccff;
	width: 35px;
	text-align: center;
	cursor: pointer;
	border-radius: var(--border-radius-btn);
	padding: 5px;
	transition: var(--transition);
}
.reviews .nav-buttons .nav-button:hover {
	color: #80ddff;
	background: #00bbff;
}

@media (max-width: 767px) {
		.reviews .owl-carousel {
		width: 100%;
	}
		.reviews .nav-buttons {
		display: none;
	}
}


/* TOUR CAROUSEL */
.carousel-dots .owl-nav button {
	position: absolute;
	top: 50%;
	background-color: #000;
	color: #fff;
	margin: 0;
	transition: all 0.3s ease-in-out;
}
.carousel-dots .owl-nav button.owl-prev {
	left: 0;
}
.carousel-dots .owl-nav button.owl-next {
	right: 0;
}

.carousel-dots .owl-dots {
  text-align: center;
  padding-top: 15px;
}
.carousel-dots .owl-dots button.owl-dot {
	width: 15px;
	height: 10px;
	border-radius: 5px;
	display: inline-block;
	background: #d7d7d7;
	margin: 0 5px;
}
.carousel-dots .owl-dots button.owl-dot.active {
	background-color: #00bbff;
}
.carousel-dots .owl-dots button.owl-dot:hover {
	background-color: #00afef;
}
	.carousel-dots .owl-dots button.owl-dot:focus {
	  outline: none;
}
.carousel-dots .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.carousel-dots span {
    font-size: 70px;    
    position: relative;
    top: -5px;
}
.carousel-dots .owl-nav button:focus {
    outline: none;
}


/* ARTICLES */

.home-articles {
/*	background: #f7f7f7;*/
}

.home-articles .home-article-item {
	position: relative;
	height: 350px;
}

.home-articles .home-article-item .image {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.home-articles .home-article-item .image img {
	height: 100%;
	transition: all 0.2s ease-in-out;
	transform: scale(1.1);
}
.home-articles .home-article-item:hover .image img {
	transform: scale(1.0);
}

.home-articles .home-article-item .content {
	position: absolute;
    background: #fff;
    bottom: -25px;
    left: 20px;
    right: 20px;
    height: 120px;
    text-align: center;
    border-radius: 5px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.27);
    padding: 20px;
    transition: all 0.2s ease-in-out;
}
.home-articles .home-article-item:hover .content {
	height: 150px;
}

.home-articles .home-article-item .content .top {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 80px;
	background: #fff;
}
.home-articles .home-article-item .content .bottom {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	color: #00bbff;
}
.home-articles .home-article-item .content .title {
	font-size: 1.2rem;
	line-height: 1.2;
	color: #151515;
}
.home-articles .home-article-item .content:hover .link-arrow span {
    width: 40px;
}

/*.home-articles .home-article-item .content:hover .title {
	color: #04b4a8;
}*/

@media (max-width: 576px) {
	.home-articles .home-article-item {
		height: 300px;
		margin-bottom: 80px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.home-articles .home-article-item .content .title {
		font-size: 1rem;
	}
}


/* ARTICLES LIST */
.articles-list {

}

.articles-list .list-item {
	position: relative;
    display: flex;
    height: 310px;
    background: #fff;
/*    border: 1px solid #e1e1e1;*/
    border-radius: var(--border-radius-big);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin: 50px 0;
}
.articles-list .list-item .image {
	display: block;
	width: 50%;
    overflow: hidden;
}
.articles-list .list-item .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease-in-out;
}
.articles-list .list-item .content {
	display: flex;
	flex-direction: column;
    justify-content: space-around;
	width: 50%;
	padding: 50px;
}
.articles-list .list-item .content .title {
	font-size: 23px;
}
.articles-list .list-item .content .description {
	position: relative;
	color: #6e7378;
	height: 70px;
	overflow: hidden;
	margin-bottom: 20px;
}
.articles-list .list-item .content .description .fader {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1.2rem;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.articles-list .list-item .tag {
	position: absolute;
    overflow: hidden;
    text-align: center;
    padding: 8px 20px 6px;
    top: 0;
    right: 0;
	color: #fff;
    line-height: 1;
    letter-spacing: .025em;
    background: transparent;
    z-index: 1;
}

.articles-list .list-item .tag:before {
	position: absolute;
    content: '';
    bottom: 0;
    left: 14px;
    width: 400%;
    height: 100%;
    background: #01b3a7;
    transform: skew(45deg);
    transform-origin: 50% 100%;
    will-change: transform;
    pointer-events: none;
    z-index: -1;
}

.articles-list .list-item:hover .image img {
	transform: scale(1.1);
}

@media (max-width: 576px) {
	.articles-list .list-item {
		display: block;
		height: auto;
	}

	.articles-list .list-item .image {
		width: 100%;
		max-height: 250px;
	}

	.articles-list .list-item .content {
		width: 100%;
		padding: 30px 20px;
	}

	.articles-list .list-item .content .title {
		font-size: 20px;
	}

	.articles-list .list-item .content .description {
		font-size: 14px;
		height: unset;
		margin: unset;
	}

	.articles-list .list-item .content .description .fader {
		display: none;
	}

	.articles-list .list-item .content .link {
		text-align: center;
	}
}



/* ARTICLES LIST */
.blog-grid {
	display: grid;
    align-items: stretch;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}

.blog-grid .blog-item {
	position: relative;
    background: #fff;
    border-radius: var(--border-radius-big);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.blog-grid .blog-item .image {
	display: block;
	height: 350px;
    overflow: hidden;
}
.blog-grid .blog-item .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease-in-out;
}
.blog-grid .blog-item .content {
	display: flex;
	flex-direction: column;
    justify-content: space-around;
	padding: 50px;
}
.blog-grid .blog-item .content .title {
	font-size: 23px;
}
.blog-grid .blog-item .content .title a {
	color: inherit;
}
.blog-grid .blog-item .content .title a:hover {
	color: #01b3a7;
}
.blog-grid .blog-item .content .description {
	position: relative;
	color: #6e7378;
	/*height: 70px;*/
	overflow: hidden;
}
.blog-grid .blog-item .content .description .fader {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1.2rem;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.blog-grid .blog-item:hover .image img {
	transform: scale(1.1);
}

@media (max-width: 576px) {
	.blog-grid {
		display: flex;
		flex-direction: column;
	    gap: 40px;
	}

	.blog-grid .blog-item {
		display: block;
		height: auto;
	}

	.blog-grid .blog-item .image {
		width: 100%;
		max-height: 250px;
	}

	.blog-grid .blog-item .content {
		width: 100%;
		padding: 30px 20px;
	}

	.blog-grid .blog-item .content .title {
		font-size: 20px;
	}

	.blog-grid .blog-item .content .description {
		font-size: 14px;
		height: unset;
	}

	.blog-grid .blog-item .content .description .fader {
		display: none;
	}

	.blog-grid .blog-item .content .link {
		text-align: center;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.blog-grid .blog-item .image {
	    height: 220px;
	}
	.blog-grid .blog-item .content {
		padding: 30px 20px;
	}
	.blog-grid .blog-item .content .title {
	    font-size: 18px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.blog-grid .blog-item .content {
		padding: 30px 20px;
	}
}


/* ARTICLE */

.article-content {

}

.article-content .image-left {
	float: left;
    width: calc(50% - 30px);
    margin: 0 30px 30px 0;
}

.article-content .image-right {
	float: right;
    width: calc(50% - 30px);
    margin: 0 0 30px 30px;
}

.article-content .image-title {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    color: #616161;
    margin-top: 5px;
}

.carousel-item-title {
	font-size: 12px;
	text-align: center;
	color: #616161;
	margin-top: 2px;
}

.ql-align-right {
	text-align: end;
}
.ql-align-center {
	text-align: center;
}

blockquote {
    color: #3b3d42;
    border-left: 2px solid #f44336;
    margin: 30px 0 30px 50px;
    padding: 0 0 0 23px;
    line-height: 1.33;
    font-weight: 700;
    font-style: italic;
    text-align: left;
}

blockquote::before {
    color: #607d8b;
    content: "\f10d";
    position: relative;
    font: normal normal normal 24px / 1 "FontAwesome";
    top: -7px;
    left: -3px;
    display: block;
    margin-bottom: -3px;
    font-size: 14px;
    line-height: 30px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


@media (max-width: 576px) {
	blockquote {
		margin: 30px 0 30px 15px;
	}
}


/* PHOTO BOOTH */

.photo-booth {
	display: grid;
    align-items: stretch;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
}

.photo-booth .photo-item {
	position: relative;
    background: #fff;
    border-radius: var(--border-radius-big);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.photo-booth .photo-item .image {
	display: block;
	overflow: hidden;
}

.photo-booth .photo-item .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease-in-out;
}

.photo-booth .photo-item .content {
	font-size: 14px;
	padding: 20px;
}

.photo-booth .photo-item.selected .content {
	background: #3f3f3f;
    color: #fff;
}

.photo-booth .photo-item:hover .image img {
	transform: scale(1.1);
}

@media (max-width: 576px) {
	.photo-booth {
		display: flex;
		flex-direction: column;
	    gap: 40px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.photo-booth {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.photo-booth {
		grid-template-columns: 1fr 1fr;
	}
}


/* CONTACT */

.contact-box {
	box-shadow: none;
	border: 1px solid #e1e1e1;
	border-radius: var(--border-radius-big);
	text-align: center;
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 310px;
    transition: all .3s ease;
}
.contact-box .icon {
	font-size: 60px;
    line-height: 1;
    color: #00bbff;
}

.contact-box .decor-line {
	width: 0;
    height: 2px;
    background: #00bbff;
	transition: all .3s ease;
	margin: 30px auto;
}

.contact-box .content {
	font-size: 1.1rem;
}
.contact-box .content .content-info a {
	color: inherit;
}
.contact-box .content .content-info a:hover {
	color: #00bbff;
}

.contact-box:hover {
	border-color: transparent;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.17);
}
.contact-box:hover .decor-line {
	margin-top: 35px;
    margin-bottom: 35px;
    width: 100px;
}

@media (max-width: 576px) {
	.contact-box {
		margin-bottom: 30px;
	}
}

.get-in-touch {
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}
.get-in-touch .tip {
	border-left: 1px solid #e1e1e1;
	padding-left: 20px;
	margin-left: 20px;
}

@media (max-width: 576px) {
	.get-in-touch {
		display: block;
	}
	.get-in-touch .tip {
		border-top: 1px solid #e1e1e1;
        border-left: none;
        padding: 20px 0 0 0;
        margin: 20px 0 0 0;
	}
}


/* 404 */

.content-404 {
	position: relative;
	padding: 50px 0;
}

.content-404 .code-404 {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 230px;
    font-weight: bold;
    color: rgba(200, 200, 200, 0.3);
    z-index: -1;
}

.content-404 p {
	font-size: 1.2rem;
}

@media (max-width: 576px) {
	.logo-404 {
		max-width: 200px;
        margin: auto;
	}
	.content-404 .code-404 {
		font-size: 165px;
	}
}


.alert {
	border-radius: 0;
}


/* HELPERS */

.tct-control {
	color: #151515;
	background-color: #f7f7f7;
	border: 1px solid #f7f7f7;
	border-radius: 3px;
	padding: 18px 15px;
}

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f7f7f7;
}

.text-primary {
	color: #6e7378 !important;
}

.text-gray {
	color: #a1a1a1;
}

.btn-block {
	display: block;
	width: 100%;
}

.py-7 {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

.pb-6 {
	padding-bottom: 4rem;
}
.pb-7 {
	padding-bottom: 7rem;
}

.mt-6 {
	margin-top: 4rem;
}


/* GENERAL MEDIA QUERIES */

/* Extra small devices */
@media (max-width: 576px) {
    .hidden-xs {
        display: none !important;
    }

    .mb-4-xs {
		margin-bottom: 1.5rem !important;
    }

    .mb-5-xs {
		margin-bottom: 3rem !important;
    }

    .mb-6-xs {
		margin-bottom: 4rem !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 577px) and (max-width: 767px) {
    .hidden-sm {
        display: none !important;
    }
    .mb-4-sm {
		margin-bottom: 1.5rem !important;
    }
    .mb-5-sm {
		margin-bottom: 3rem !important;
    }
    .mb-6-sm {
		margin-bottom: 4rem !important;
    }
}

/* Medium devices (tablets, 768px and up) (col-sm) */
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-md {
        display: none !important;
    }
    .mb-4-md {
		margin-bottom: 1.5rem !important;
    }
    .mb-5-md {
		margin-bottom: 3rem !important;
    }
    .mb-6-md {
		margin-bottom: 4rem !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-lg {
        display: none !important;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hidden-xl {
        display: none !important;
    }

    .col-pad-left {
    	padding-left: 25px;
    }

    .col-pad-right {
    	padding-right: 25px;
    }
}
