/*
Embed fonts families:
-------------------
font-family: "Lato", serif;
font-family: "Ubuntu", serif;

possible weights:
-------------------
"Ubuntu": Light 300 Regular 400 Medium 500 Bold 700 Regular 400 Italic
"Lato": Light 300 Regular 400 Bold 700 Black 900

.ubuntu {
  font-family: "Ubuntu", serif;
  font-style: normal;
}

.lato {
  font-family: "Lato", serif;
  font-style: normal;
}

animation:
-------------------
transition: all 0.5s;

Content:
1. Main styles override
2. Contact form 7 
3. Navbar bootstrap
4. ACF elements
5. Theme styles  
6. Responsive fixes
*/

/* ============================================= */
/* 1. Main styles override                       */
/* ============================================= */

body {
	font-family: "Lato", serif;
 	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

body.admin-bar .navbar.fixed-top {
	margin-top: 32px;
}
html {
	scroll-behavior:smooth;
	font-display: swap
}
strong {
	font-weight: 700;
}
/* Links */
a {
	transition: all 0.5s;
	text-decoration: none;
}
a:focus, a:hover {
	text-decoration: none;
	outline: 0;
}
a:focus {
	outline: 0;
	outline-offset: -2px;
}
button, button:focus, button:active {
	outline: 0;
	box-shadow: 0
}


/* /Links */

/* Image responsive fix */
img {
	width: initial;
	max-width: 100%;
	height: auto;
}
/* /Image responsive fix */



/* Headers */
h1, h2, h3, h4, h5 {
	font-family: "Ubuntu", serif;
  	font-style: normal;
	font-weight: 700;
}
h1 {
	font-size: 36px;
	margin-bottom: 0;
}
h2 {
	font-size: 40px;
	margin-bottom: 20px;
}
h2 strong {
	color:#f07f32;
}
h3 {
	font-size: 22px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
@media only screen and (max-width : 768px) {
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 18px;
	}
	h4 {
		font-size: 17px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}
}

/* /Headers */

/* Bootstrap extra spaces */
.pt-6,
.py-6 {
	padding-top: 5rem !important;
}

.pe-6,
.px-6 {
	padding-right: 5rem !important;
}

.pb-6,
.py-6 {
	padding-bottom: 5rem !important;
}

.ps-6,
.px-6 {
	padding-left: 5rem !important;
}
.mt-6,
.my-6 {
	margin-top: 5rem !important;
}

.mr-6,
.mx-6 {
	margin-right: 5rem !important;
}

.mb-6,
.my-6 {
	margin-bottom: 5rem !important;
}

.ms-6,
.mx-6 {
	margin-left: 5rem !important;
}
.py-6-fixed {
	padding-top: 4rem !important;
	padding-bottom: 7rem !important;
}
@media only screen and (max-width : 768px) {
	.py-6-fixed {
		padding-top: 4rem !important;
		padding-bottom: 7rem !important;
	}
	.pt-6,
	.py-6 {
		padding-top: 4rem !important;
	}

	.pr-6,
	.px-6 {
		padding-right: 4rem !important;
	}

	.pb-6,
	.py-6 {
		padding-bottom: 4rem !important;
	}

	.pl-6,
	.px-6 {
		padding-left: 4rem !important;
	}
	.mt-6,
	.my-6 {
		margin-top: 4rem !important;
	}

	.me-6,
	.mx-6 {
		margin-right: 4rem !important;
	}

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

	.ms-6,
	.mx-6 {
		margin-left: 4rem !important;
	}
}
/* /Bootstrap extra spaces */
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: transparent;
  box-shadow: none;
  outline: 0 none;
}
/* Buttons */
.btn-default {
	background: rgb(136,48,161);
	background: linear-gradient(121deg, rgba(136,48,161,1) 0%, rgba(77,48,161,1) 100%); 
	border-radius: 30px;
	border-top-left-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #fff !important;
	font-family: "Ubuntu", serif;
	padding:15px 30px;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#8830a1;
	border-radius: 30px;
	border-bottom-right-radius: 10px;
	transition: all 0.5s;
}
.btn-orange {
	background: rgb(247,70,61);
	background: linear-gradient(332deg, rgba(247,70,61,1) 0%, rgba(240,127,50,1) 100%); 
	border-radius: 30px;
	border-top-left-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #fff !important;
	font-family: "Ubuntu", serif;
	padding:15px 30px;
	transition: all 0.5s;
}
.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active {
	border-radius: 30px;
	border-bottom-right-radius: 10px;
	transition: all 0.5s;
}
.btn-red {
	background: #f7463d;
	border-radius: 30px;
	border-top-left-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #fff !important;
	font-family: "Ubuntu", serif;
	padding:15px 30px;
	transition: all 0.5s;
}
.btn-red:hover,
.btn-red:focus,
.btn-red:active {
	background-color:#f7463d;
	border-radius: 30px;
	border-bottom-right-radius: 10px;
	transition: all 0.5s;
}
.btn-grey {
	background: #f5f0f6;
	border-radius: 30px;
	border-top-left-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #101010;
	font-family: "Ubuntu", serif;
	padding:10px 30px;
	transition: all 0.5s;
}

.btn-grey:hover,
.btn-grey:focus,
.btn-grey:active {
	background-color:#772685;
	border-radius: 30px;
	color: #fff;
	border-bottom-right-radius: 10px;
	transition: all 0.5s;
}
.btn-text {
	padding-left: 0;
	font-weight: 600;
}
.btn-default.btn-search {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-top: 16px;
	padding-bottom: 17px;
}
.cn-button.bootstrap {
	background-color: #8830a1 !important;
	text-transform: uppercase !important;
}
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}
/* /Buttons */

section {
	position: relative;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

/* Vertical align */
.vertical-a {
	display: flex;
	justify-content: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
	.vertical-align {
		display: block;
	}
}
.vertical-b {
	align-self: center;
	width: 100%;
}
/* /Vertical align */

/* Placeholder  */
::-webkit-input-placeholder {
	color:#888;
}
:-moz-placeholder {
	color:#888;
}
::-moz-placeholder {
	color:#888;
}
:-ms-input-placeholder {
	color:#888;
}
/* /Placeholder  */

/* Selection  */
::selection {
	background: #8830a1; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #8830a1; /* Gecko Browsers */
	color:#fff;
}
/* /Selection */

/* Box links (often used)  */
.box-link {
	position:absolute;
	height:100%;
	width:100%;
	left:0px;
	top:0px;
}
/* /Box links (often used)  */

.bg-test {
	background-color: rgba(255,0,0,0.5);
}

.dark, .dark p, .dark a, .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6, .dark ul li {
	color: #fff;
}

/* ============================================= */
/* 2. Contact form 7                             */
/* ============================================= */
.wpcf7 input[type="text"],
.wpcf7 input[type="date"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7-select,
.wpcf7 textarea {
	background-color: #fff;
	color: #101010;
	border-radius: 10px;
	border:1px solid #fff;
	padding: 13px 30px;
	font-size: 15px;
	width: 100% !important;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #fff;
	color: #303338;
	box-shadow: none;
	outline: 0 none;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}

.wpcf7-list-item-label {
	color:#fff; 
	font-size: 14px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#fff; 
	font-weight: 500;
}

.wpcf7-form-control.wpcf7-acceptance label {
    display: flex;
    line-height: 1.2;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    margin-right: 5px;
    align-self: start;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-submit {
	background: rgb(136,48,161);
	background: linear-gradient(121deg, rgba(136,48,161,1) 0%, rgba(77,48,161,1) 100%); 
	border-radius: 30px;
	border-top-left-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #fff !important;
	font-family: "Ubuntu", serif;
	padding:15px 30px;
	transition: all 0.5s;
	border:0;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	background-color:#8830a1;
	border-radius: 30px;
	border-bottom-right-radius: 10px;
	transition: all 0.5s;
}
.wpcf7-not-valid-tip {
	color:#fff6f5;
	font-weight: 700;
	font-size: 14px;
}
.wpcf7-response-output {
	border-radius: 15px;
	color:#fff;
}
.wpcf7-submit:disabled {
	opacity:0.7;
}
/* Placeholder  */
::-webkit-input-placeholder {
 color:#101010;
 opacity: 0.7;
}
:-moz-placeholder {
 color:#101010;
 opacity: 0.7;
}
::-moz-placeholder {
 color:#101010;
 opacity: 0.7;
}
:-ms-input-placeholder {
 color:#101010;
 opacity: 0.7;
}
:active::-webkit-input-placeholder,
:focus::-webkit-input-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-ms-input-placeholder,
:focus::-ms-input-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
/* /Placeholder  */

/* ============================================= */
/* 3. Navbar (bootstrap)                         */
/* ============================================= */
.navbar {
	font-family: "Lato", serif;
	padding-top: 0;
	padding-bottom: 0;
	background-color: transparent;
	transition: all 0.5s;
}
.navbar.sticky {
	transition: all 0.5s;
	padding-top: 5px !important;
	padding-bottom: 5px !important;
	background-color: #fff;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	-webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.10);
	box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.10);
}
@media only screen and (max-width : 768px) {
	.navbar.sticky {
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.5s;
	width: 231px; 
}
.navbar.sticky .navbar-brand img {
	width: 150px; 
}
.navbar-nav .nav-link {
	color: #101010;
	font-size: 16px;
	font-weight: 600;
	padding:12px 25px !important;
	border-radius: 30px;
	border-top-left-radius: 10px;
}
.navbar-nav > li:last-of-type a {
	background: rgb(136,48,161);
	background: linear-gradient(121deg, rgba(136,48,161,1) 0%, rgba(77,48,161,1) 100%); 
	border-radius: 30px;
	border-top-left-radius: 10px;
	color:#fff !important;
	margin-left: 15px !important;
	transition: all 0.5s;
}
.navbar-nav > li:last-of-type:hover a {
	border-radius: 30px;
	border-bottom-right-radius: 10px;
	color:#fff !important;
	margin-left: 15px !important;
	transition: all 0.5s;
}
@media only screen and (max-width : 1350px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 12px;
		padding-right: 12px; 
	}
}
@media only screen and (max-width : 1040px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px; 
	}
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.show {
	background: rgb(247,70,61);
	background: linear-gradient(332deg, rgba(247,70,61,1) 0%, rgba(240,127,50,1) 100%);
	color:#fff;
}
.navbar-nav .current-menu-item .active > .nav-link,
.navbar-nav .current-menu-item .nav-link.active {
	color: #8830a1;
}
.navbar-nav .current-menu-item:hover .active > .nav-link,
.navbar-nav .current-menu-item:hover .nav-link.active {
	background: rgb(247,70,61);
	background: linear-gradient(332deg, rgba(247,70,61,1) 0%, rgba(240,127,50,1) 100%);
	color:#fff;
	transition: all 0.5s;
}
.navbar-toggler {
	border-radius: 10px;
	transition: all 0.5s;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: #4d30a1;
	height: 2px;
	width: 24px;
	margin-top: 6px;
	margin-bottom: 6px;
	position: relative;
	left: 0;
	opacity: 1;
	transition: all 0.35s ease-out;
	transform-origin: center left;
}
.navbar-toggler span:nth-child(1) {
	transform: translate(0%, 0%) rotate(0deg);
}
 
.navbar-toggler span:nth-child(2) {
	opacity: 1;
}
 
.navbar-toggler span:nth-child(3) {
	transform: translate(0%, 0%) rotate(0deg);
}
.navbar-toggler span:nth-child(1) {
	margin-top: 0.3em;
}
 
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	transform: translate(15%, -33%) rotate(45deg);
}
 
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	transform: translate(15%, 33%) rotate(-45deg);
}

.navbar .contact a.nav-link {
	background: #00465e;
	/*background: linear-gradient(0deg, rgba(33,37,41,1) 0%, rgba(0,62,83,1) 100%);*/
}
.search-activator {
	cursor: pointer;
}

.search-activator a.nav-link {
	text-indent: -9999px;
	background-image: url(../img/icon-main-menu-search.png);
	background-repeat: no-repeat;
	background-position: center;
}

.dropdown-menu {
	margin-top: -2px;
	padding:15px 30px;
	background: rgb(240,127,50);
	background: linear-gradient(135deg, rgba(240,127,50,1) 0%, rgba(247,70,61,1) 100%); 
	border:0px;
	text-transform: lowercase;
	border-radius: 20px;
	border-top-left-radius: 10px;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
}
.dropdown-menu[data-bs-popper] {
	margin-top: -1px;
	border-top:1px solid transparent;
}
.dropdown-menu li a.dropdown-item {
	font-size: 16px;
	font-weight: 600;
	line-height: 35px;
	padding:0;
	color: #fff;
	transition: all 0.5s;
}


.dropdown-menu li a.dropdown-item:hover {
	color:#fff;
	transition: all 0.3s;
}
.dropdown-menu li a.dropdown-item:hover,
.dropdown-menu li a.dropdown-item:focus,
.dropdown-menu li a.dropdown-item:active {
	background-color: transparent;
	transition: all 0.3s;
	border-left-color: #8830a1;
}
.dropdown-item.active {
	background-color: transparent;
	color:#8830a1 !important;
}


/* Search window */
#search-container {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.9);
	top:0px;
	left:0px;
	max-height: 100vh;
	z-index: 999999999;
}
#search-container .d-flex {
	height: 100%;
}
#search-close {
	position: absolute;
	right: 40px;
	top:25px;
	background-image: url(../img/search-close.png);
	background-repeat: no-repeat;
	background-color: transparent;
	height: 41px;
	width: 41px;
	z-index: 100000;
	cursor: pointer;
}
#search-close span {
	position: absolute;
	right: 50px;
	top:10px;
	width: 100px;
	text-align: right;
	color: #fff
}
#search-container .vertical-align {
	height: 100%;
}

.search-btn {
	background-image: url(../img/icon-search.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.search-input {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	line-height: 59px;
	height: 59px;
	padding-left: 25px;
}
/* /Search window */

/* Open on hover for desktops only */
ul.nav li.dropdown:hover > ul.dropdown-menu {
	display: block;    
}
@media (min-width: 979px) {
	ul.nav li.dropdown:hover > ul.dropdown-menu {
		display: block;
	}
}
/* /Open on hover for desktops only */


/* ============================================= */
/* 4. ACF elements                               */
/* ============================================= */
.embed-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 
.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.acf-map {
	width: 100%;
	height: 475px;
	margin-bottom: 0px;
}
/* fixes potential theme css conflict */
.acf-map img {
	max-width: inherit !important;
}
.gm-style iframe + div { border:none!important; }

/* ============================================= */
/* 5. Theme styles                               */
/* ============================================= */

/* Tiny Slider Banner */
.banner-slider-container .height-keeper {
	left: 12px;
	top: 0;
	width: 100%;
	min-height: 80vh;
	overflow:hidden;
	padding-bottom: 50px;
}
.slider-container .slider-controls {
	margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;   
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;    
    justify-content: space-between;
}
.banner-slider-container .slider-controls {
	left: 30px;
    right: 30px;
    z-index: 40;
}
.banner-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 18px;
	width: 40px;
	background-image: url(../img/arrows.png);
	cursor: pointer;
}

.arrow.arrow-right {
	background-position: 40px 0;
}
.tns-nav {
	position: absolute;
	left: 50%;
	bottom: -50px;
	transform: translateX(-50%);
}
.tns-nav button {
	background-color: #cfcfcf;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
.tns-nav button.tns-nav-active {
	background-color: #8830a1;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
/* /Tiny Slider Banner */

#banner {
	background-image: url(../img/bg-slider.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#about-us .container-fluid {
	margin-top:-150px;
	background: rgb(247,70,61);
	background: linear-gradient(332deg, rgba(247,70,61,1) 0%, rgba(240,127,50,1) 100%); 
	border-top-left-radius: 150px;
	border-bottom-right-radius: 350px;
}
@media only screen and (max-width : 768px) {
	#about-us .container-fluid {
		margin-top:-100px; 
		border-top-left-radius: 50px;
		border-bottom-right-radius: 100px;
	}
}
body:not(.home) #about-us .container-fluid {
	margin-top:unset;
}
#banner h2 strong {
	color:#fe9249;
}
@media only screen and (max-width : 1150px) {
	#banner h2 {
		font-size: 32px;
	}
}
.links-color a {
	color:#8830a1;
}
#about-us .team {
	background-image: url(../img/bg-aboutus-right.webp);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

header h2 strong {
	color:#8830a1;
}
.team .team--pos-1 {
	margin-left: 15%;
}
@media only screen and (min-width : 1410px) and (max-width : 1630px){
	.team .team--pos-1 {
		margin-left: 0%;
	}
}
.team .team--pos-2 {
	margin-left: 0;
}
.team .team--pos-3 {
	margin-left: 15%;
}

.team .team--pos .team--pos-img {
	width: 310px;
	height: 250px;
	z-index: 10;
}
.team .team--pos .team--pos-img .team--pos-img-content {
	position: absolute;
	background-color: #dadada;
	border-radius: 50%;
	width: 250px;
	height:250px;
	background-size: cover;
	background-position: center;
}
.team--pos .team--pos-img .team--pos-img-shadow {
	position: absolute;
	top:10px;
	left: -5px;
	background-color: #7e31a1;
	border-radius: 50%;
	width: 250px;
	height:250px;
}
.team--pos-2 .team--pos-img .team--pos-img-shadow {
	position: absolute;
	top:-10px;
	left: -5px;
	background-color: #f7463d;
}
.team--pos-3 .team--pos-img .team--pos-img-shadow {
	position: absolute;
	top:unset;
	bottom:-5px;
	left:10px;
	background-color: #1863b9;
}
.team--pos-desc {
	background-color: #fff;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	padding:20px 20px 20px 0;
	max-width: 200px;
}
.team--pos-desc::before {
	content:"";
	position: absolute;
	left: -150px;
	width: 150px;
	height:100%;
	background-color: #fff;
	top:0;
	z-index: 0;
}
.team--pos-desc h3,
.team--pos-desc p {
	color:#101010;
}
.team--pos-desc p {
	margin-bottom: 0;
}


@media only screen and (max-width : 768px) {
	.team .team--pos-1 {
		margin-left: 0;
	}
	.team .team--pos-2 {
		margin-left: 0;
	}
	.team .team--pos-3 {
		margin-left: 0;
	}
	.team--pos-desc {
		padding: 20px;
		z-index: 100;
		border-radius: 10px;
	}
	.team--pos-desc p {
		font-size: 14px;
		line-height: 16px;
	}
	.team--pos-desc::before {
		display: none;
	}
}

.accordions-readmore-wrapper .read-more-btn .accordion-hide {
	display:inline
}
.accordions-readmore-wrapper .read-more-btn:not(.collapsed) .accordion-show {
	display:none
}
.accordions-readmore-wrapper .read-more-btn.collapsed .accordion-hide {
	display:none
}
.accordions-readmore-wrapper .accordion-read-more {
	position: relative;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-item,
#gallery .accordion-item,
.accordion-premises .accordion-item {
 background-color: transparent;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-body,
#gallery .accordion-read-more .accordion-body,
.accordion-premises .accordion-body {
 padding-left: 0;
 padding-right: 0;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn {
	background-color: transparent;
	padding:0;
	position: relative;
	border:0;
}
/*.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::before {
	content:"";
	position: absolute;
	left: -5px;
	top:-100px;
	height: 100px;
	width: calc(100% + 10px);
	background: rgb(233,233,233);
	background: linear-gradient(0deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
}*/
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn:not(.collapsed)::before {
	display: none;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::after {
	display: none;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button {
	color:#000 !important;
	padding:0;
	font-size: 18px;
	font-weight: 400;
	position: relative;
	display: inline-block;
	box-shadow: none !important;
    border-color: rgba(0,0,0,.125) !important;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span {
	position: relative;
}
body.home .accordions-readmore-wrapper .accordion-read-more .accordion-button span a {
	color:#fff;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-show::after{
	content:"";
	position: absolute;
	right: -25px;
	top: 5px;
	width: 23px;
	height: 12px;
	background-image: url(../img/chevron-down.svg);
	background-repeat: no-repeat;
	transition: all 0.5s;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover{
	color:#846419;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-hide::after {
	content:"";
	position: absolute;
	right: -25px;
	top: 5px;
	width: 23px;
	height: 12px;
	background-image: url(../img/chevron-up.svg);
	background-repeat: no-repeat;
	transition: all 0.5s;
}
body.home .accordions-readmore-wrapper .accordion-body {
	color:#fff;
}
.features .col {
	position: relative;
}
.features .col:after {
	content: "";
	position: absolute;
	right: 0;
	top:0;
	height: 100%;
	width: 2px;
	background: rgb(106,50,161);
	background: linear-gradient(0deg, rgba(106,50,161,0) 0%, rgba(106,50,161,1) 15%, rgba(106,50,161,1) 85%, rgba(106,50,161,0) 100%); 

}
@media only screen and (max-width : 768px) {
	.features .col:after {
		display: none;
	}
}
.feature-value {
	font-family: "Ubuntu", serif;
	font-size: 36px;
	font-weight: 700;
	color:#6a32a1;
	line-height: 40px;
}
.feature-legend {
	font-family: "Ubuntu", serif;
	font-size: 18px;
	font-weight: 600;
}
.image-title-box--img-pict {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	z-index: 50;
	background-color:#dadada;
	position: relative;
}
.image-title-box--img-shadow {
	position: absolute;
	top:0;
	left:50%;
	transform: translateX(-50%);
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background-color: green;
}
.image-title-box--img-shadow {
	margin-left:5px;
	margin-top:5px;
}
.image-title-box--img-pict {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.image-title-box:hover .image-title-box--img::after {
	content:"";
	position: absolute;
	top:0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	width: 250px;
	height: 250px;
	-webkit-box-shadow: 0px 0px 100px -30px rgba(119, 38, 133, 0.7);
	-moz-box-shadow: 0px 0px 100px -30px rgba(119, 38, 133, 0.7);
	box-shadow: 0px 0px 100px -30px rgba(119, 38, 133, 0.7);
	transition: all 0.5s;
}

.image-title-box--title a {
	color:#101010;
}
.image-title-box:hover .image-title-box--title a {
	color:#772685;
}
.bg-orange {
	background: rgb(247,70,61);
	background: linear-gradient(332deg, rgba(247,70,61,1) 0%, rgba(240,127,50,1) 100%); 
}
.bg-orange-reversed {
	background: rgb(247,70,61);
	background: linear-gradient(180deg, rgba(247,70,61,1) 0%, rgba(240,127,50,1) 100%); 
}
.bg-violet {
	background: rgb(201,12,255);
	background: linear-gradient(125deg, rgba(201,12,255,1) 0%, rgba(163,114,237,1) 100%); 
}
.bg-violet-reversed {
	background: rgb(201,12,255);
	background: linear-gradient(250deg, rgba(201,12,255,1) 0%, rgba(163,114,237,1) 100%); 
}
.bg-violet header h2 strong {
	color:#f07f32;
}
.service-icon {
	background-color: #fff;
	width: 100px;
	height: 100px;
	border-radius: 50%;
}
.service-title h3 {
	font-size: 18px;
}
.bg-services {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url(../img/bg-services-right.webp);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: bottom 20% right;
}
@media only screen and (max-width : 768px) {
	.bg-services {

		background-size: auto ;
		background-position: bottom 20% right -80px;
	}
}
.circle-img {
	position: absolute;
}
.circle-img-01 {
	top:-60px;
	left:50%;
	transform: translateX(-50%);
}
.circle-img-02 {
	top:20%;
	transform: translateY(-50%);
	left:65%;
	transform: translateX(-50%);
}
.circle-img-03 {
	bottom:-60px;
	left:30%;
	transform: translateX(-50%);
}
@media only screen and (max-width : 768px) {
	.circle-img {
		position: relative;
	}
	.circle-img-01 {
		top:unset;
		left:unset;
		transform: unset;
	}
	.circle-img-02 {
		top:unset;
		transform: unset;
		left:0;
		transform: unset;
	}
	.circle-img-03 {
		bottom:unset;
		left:0;
		transform: unset;
	}
}
#services,
#benefits {
	border-top-left-radius: 200px;
	border-bottom-left-radius: 320px;
	border-bottom-right-radius: 200px;
}
@media only screen and (max-width : 768px) {
	#services,
	#benefits {
		border-top-left-radius: 50px;
		border-bottom-left-radius: 100px;
		border-bottom-right-radius: 50px;
	}
}
.owners-legend {
	font-size: 14px;
}
#goals {
	border-radius: 200px;
	border-top-left-radius: 0;
	border-bottom-right-radius: 320px;
}
@media only screen and (max-width : 768px) {
	#goals {
		border-radius: 70px;
		border-top-left-radius: 0;
		border-bottom-right-radius: 100px;
	}
}
.goals--filters ul {
	padding:0;
}
.goals--filters ul li {
	display: inline-block;
	cursor: pointer;
}
.goals--filters ul li ul li input {
	display: none;
}
.goals--filters .searchandfilter li[data-sf-field-input-type="radio"] label {
	padding-left: 0;
	cursor: pointer;
	padding:10px 20px;
	font-size: 15px;
	font-weight: 600;
}
.goals--filters ul li ul li.sf-option-active {
	background-color: #f07f32;
	border-radius: 30px;
	border-top-left-radius: 10px;
	color: #fff !important;
}
.bg-blue {
	background-color: #742dc1;
}
.goal-pos {
	border-radius: 30px;
	padding-right:80px !important;
}
@media only screen and (max-width : 768px) {
	.goal-pos {
		border-radius: 30px;
		padding:25px !important;
	}
}
.goal-pos:hover {
	background-image: url(../img/bg-shield.webp);
	background-repeat: no-repeat;
	background-position: right 15px top 15px;
}
.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {
    filter: invert(100%);
}
.testimonial-box,
.modal-body.modal-testimonial {
	padding-left: 80px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-image: url(../img/bg-testimonial-box.webp);
	background-repeat: no-repeat;
	background-position: left 25px top 40px;
}
.modal-body.modal-testimonial {
	padding-left: 100px;
	background-image: url(../img/bg-testimonial-box.webp);
	background-repeat: no-repeat;
	background-position: left 50px top 20px;
}
@media only screen and (max-width : 768px) {
	.testimonial-box,
	.modal-body.modal-testimonial  {
		padding-left: 50px;
		background-position: left 0px top 20px;
	}
	.modal-body.modal-testimonial  {
		padding-left: 50px;
		background-position: left 10px top 20px;
	}
}
.carousel-control-prev,
.carousel-control-next {
  width: unset;
}
.testimonial-box.has-full-desc {
	cursor: pointer;
}
.testimonial-author,
.testimonial-company {
	color:#f1823d;
	font-size: 16px;
	font-weight: 700;
}
.testimonial-company {
	font-size: 14px;
}
.stars {
	display: inline-block;
	background-image: url(../img/stars.webp);
	width: 142px;
	height: 16px;
}
.stars.stars-four {
	width: 120px;
}
.stars.stars-tree {
	width: 90px;
}
.stars.stars-two {
	width: 60px;
}
.stars.stars-one {
	width: 25px;
}
.modal-body a {
	color:#101010;
}
.modal-body .download {
	font-weight: 600;
}
h3.modal-title {
	font-size: 24px;
}
.testimonial-box:hover {
	background-color: #fff;
	border-radius: 30px 10px 30px 30px;
	transition: all 0.5s;
}
footer .bg-footer {
	background: rgb(136,48,161);
	background: linear-gradient(121deg, rgba(136,48,161,1) 0%, rgba(77,48,161,1) 100%); 
}
footer .copyrights,
footer .copyrights p,
footer .copyrights a {
	color:#101010;
	font-size: 14px;
}
footer .copyrights ul {
	padding: 0;
	margin: 0;
}
footer .copyrights ul li {
	list-style-type: none;
	display: inline-block;
	margin-left: 10px;
}

.footer-menus ul {
	padding: 0;
	margin: 0;
}
.footer-menus ul li {
	list-style-type: none;
}
.footer-menus ul li a {
	font-weight: 600;
	line-height: 30px;
}
.footer-menus ul li a:hover {
	color:#f1823d;
}
.footer-company-info {
	font-size:20px;
	font-family: "Ubuntu", serif;
	font-weight: 700;
}
footer .footer-bg-elements {
	position: absolute;
	right:15%;
	top:20px;
	width: 264px;
	height: 290px;
	background-image: url(../img/bg-footer.webp);
	background-repeat: no-repeat;
	background-size: cover;
}
.breadcrumbs {
	background-image: url(../img/bg-breadcrumbs.webp);
	background-repeat: no-repeat;
	height: 25px;
	padding-left: 35px;
}
.breadcrumbs a {
	font-weight: 700;
}
#title::before {
	content:"";
	position: absolute;
	background-image: url(../img/bg-title.webp);
	width: 174px;
	height: 128px;
	right: 0px;
	top:-128px;
}
body {
	background-image: url(../img/bg-body.webp);
	background-position: top center;
	background-repeat: repeat-y;
	background-size: cover;
}
#title {
	margin-top: 130px;
	border-bottom-right-radius: 50px;
}
@media only screen and (max-width : 1199px) { 
	#title {
		margin-top: 70px;
	}
}
.team--box {
	background-color: #fff;
	border-top-left-radius: 50px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 50px;
}
.team--box-img {
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
}

.team--box-img-content {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	position: relative;
}
.team--box-desc {
	padding-top:150px;
}
.team--box h3 {
	font-size: 30px;
}
.team--box-desc h3 a {
	color:#101010;
}
.team--box .team--box-img .team--box-img-shadow {
	position: absolute;
	top:10px;
	left: -5px;
	background-color: #7e31a1;
	border-radius: 50%;
	width: 250px;
	height:250px;
}
.team--box-2 .team--box-img .team--box-img-shadow {
	position: absolute;
	top:-10px;
	left: -5px;
	background-color: #f7463d;
}
.team--box-3 .team--box-img .team--box-img-shadow {
	position: absolute;
	top:unset;
	bottom:-5px;
	left:10px;
	background-color: #1863b9;
}
@media only screen and (max-width : 767px) { 
	.team--box-img {
		position: relative;
		transform: unset;
		left:unset;
		top:-20px;
	}
	.team--box-img-shadow,
	.team--box .team--box-img .team--box-img-shadow {
		top:8px;
		left: calc(50% + 5px);
		transform: translateX(-50%);
	}
	.team--box-desc {
		padding-top:30px;
	}
}
.contact-form {
	border-radius: 50px;
}
.contact-team-image {
	background-size: cover;
	height: 100%;
	border-radius: 50px;
	background-position: center;
}
.search-box {
	z-index: 100;
	transition: all 0.5s;
}
.search-box:hover {
	background-color: #fff;
	border-radius:50px;
	transition: all 0.5s;
}
.search-box:hover h3 {
	color: #8830a1;
}
.search-box-gfx:hover::before {
	content:"";
	position:absolute;
	background-image: url(../img/bg-search-box.webp);
	background-repeat: no-repeat;
	width: 87px;
	height: 96px;
	left: -40px;
	top:-20px;
	transition: all 0.5s;
}
.news-box {
	border-radius: 30px;
}
.news-box img {
	border-radius: 30px;
	border-top-right-radius: 10px;
	transition: all 0.5s;
}
.news-box:hover  {
	background-color: #fff;
}
.dark .news-box:hover  {
	background-color: transparent;
}
.news-box:hover img {
	border-radius: 30px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	transition: all 0.5s;
}
.dark .news-box:hover img {
	border-radius: 30px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 10px;
	transition: all 0.5s;
}
.dark .btn-text {
	color:#fff;
}
.news-date {
	color:#f1823d;
	font-weight: 600;
}
.dark .news-date {
	color:#8830a1;
	font-weight: 600;
}
.page-numbers {
	height: 36px;
	width: 36px;
	font-weight: 700;
	color:#101010;
	background-color: #fff;
	border-radius: 18px;
	display: inline-block;
	line-height: 36px;
	text-align: center;
}
.page-numbers.current {
	background-color: #f7463d;
	color:#fff;
}
.bg-search-form {
	background-image: url(../img/bg-search-form.webp);
	background-repeat: no-repeat;
	background-position: top center;
}
.featured-img img {
	border-radius: 50px;
}
.gallery img {
	border-radius: 30px;
}
#posts-carousel {
	border-top-left-radius: 200px;
}
@media only screen and (max-width : 991px) { 
	#posts-carousel {
		border-top-left-radius: 50px;
	}
}
.cta-wrapper {
	font-family: "Ubuntu", serif;
	border-radius: 40px;
	border-top-right-radius: 10px;
}
.cta-wrapper:hover {
	font-family: "Ubuntu", serif;
	border-radius: 40px;
	border-bottom-left-radius: 10px;
}
.cta-wrapper::before {
	content:"";
	position:absolute;
	background-image: url(../img/bg-cta.webp);
	background-repeat: no-repeat;
	width: 91px;
	height: 92px;
	right: -40px;
	top:-30px;
	z-index: -1;
}
.cta-first-line {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 5px;
}

.pricelist-container h4.big-font {
	font-size: 37px;
 }
 .pricelist-container .price-tag {
	background-color: #f27135;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	padding: 5px 10px;
	margin-left: 10px;
	display: inline-block;
 }
 .pricelist-container .price-position {
	margin-top: 5px;
	padding-top:5px;
	padding-bottom: 5px;
 }
 .pricelist-container .price-position:hover {
	background-color: rgba(255,255,255,0.3); 
	border-radius: 15px;
 }
 .pricelist-container .price-header-subgroup {
	font-size: 18px;
 }
 .sidebar-prices {
	border-radius: 10px 40px 50px 80px;
	font-weight: 700;
	overflow: hidden;
 }
 @media only screen and (max-width : 991px) { 
	.sidebar-prices {
		border-radius: 10px 10px 50px 50px;
 }}
 .sidebar-prices .bg-sidebar {
	position: absolute;
	left: -15px;
	top: -15px;
	width: 178px;
	height: 197px;
	background-image: url(../img/bg-sidebar-prices.webp);
	background-repeat: no-repeat;
 }
 .sidebar-prices ul  {
	padding-left: 20px;
	margin-bottom: 0;
 }
 .sidebar-prices ul li {
	list-style-type: none;
	padding: 0;
 }
 .sidebar-prices ul li a {
	line-height: 30px;
 }
.content:not(.accordion-show) a {
	color:#f7463d;
	
}
body:not(.home) .accordion-show a,
body:not(.home) .accordion-hide a {
	font-weight: 700;
	color:#101010;
}
body:not(.home) .accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-show::after{
	background-image: url(../img/chevron-down-dark.svg);
}

.accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-hide::after {
	background-image: url(../img/chevron-up-dark.svg);
}
.tree-imgs--pos {
	position:absolute;
}
.tree-imgs--pos img {
	max-width: 80%;
	max-height: 80%;
}
.tree-imgs-01 {
	left: 0%;
}
.tree-imgs-02 {
	top:0;
	left: 15%;
}
.tree-imgs-03 {
	right: 0;
	top:40%;
}
.tree-imgs-service .tree-imgs-01 {
	left: unset;
	right: 0px;
}
.tree-imgs-service .tree-imgs-02 {
	top:100px;
	left: 15%;
}
.tree-imgs-service .tree-imgs-03 {
	right: unset;
	left: 10%;
	top:80%;
}
@media only screen and (max-width : 991px) { 
	.tree-imgs--pos {
		position:relative;
	}
	.tree-imgs-01 {
		left: 0%;
	}
	.tree-imgs-02 {
		top:0;
		left: 15%;
	}
	.tree-imgs-03 {
		right: 0;
		top:0;
	}
	.tree-imgs-service .tree-imgs-01 {
		left: unset;
		right: 0px;
	}
	.tree-imgs-service .tree-imgs-02 {
		top:unset;
		left: 15%;
	}
	.tree-imgs-service .tree-imgs-03 {
		right: unset;
		left: unset;
		top:unset;
	}
	
}
.extra-desc-columns h3 {
	font-size: 32px;
	margin-bottom: 20px;
}
.extra-desc-columns h3 strong {
	font-size: 32px;
	color:#772685;
}
#benefits {
	overflow: hidden;
}
#benefits h3 {
	color:#fff;
	font-size: 32px;
}
#benefits h3 a {
	color:#fff;
}
#benefits h3 a strong,
#benefits h3 strong {
	color:#772685 !important	;
}
.bg-benefits {
	position: absolute;
	right: 0;
	top: -20px;
	background-image: url(../img/bg-benefits.webp);
	background-repeat: no-repeat;
	background-position: top center;
	width: 299px;
	height: 328px;
}
#benefits .image-title-box--img-shadow {
	position: absolute;
	top:0;
	left:50%;
	margin-left: -5px;
	transform: translateX(-50%);
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background-color: #8830a1;
}
.image-title-box--img-icon {
	position: absolute;
	left: calc(50% + 60px);
	top:160px;
	z-index: 100;
	background-color: #fff;
	width: 100px;
	height: 100px;
	border-radius: 50px;
}
.service-pos:hover .service-icon {
	background-color: #8830a1;

	position: relative;
}
.service-pos:hover::before {
	content:"";
	width: 68px;
	height: 74px;
	position: absolute;
	background-image: url(../img/bg-service-icon.webp);
	background-repeat: no-repeat;
	right: 20px;
	top: -20px;
	z-index: 0;
}
.service-pos:hover .service-icon lord-icon {
	filter: brightness(0) invert(100%) ;
}
#description-extra h2 strong {
	color: #8830a1;
}
.team-content {
	border-radius: 200px 0px 200px 320px;
	overflow: hidden;
}
@media only screen and (max-width : 991px) { 
	.team-content {
		border-radius: 50px 0px 50px 80px;
		overflow: hidden;
	}
}
.team-content a {
	color:#fff !important;
}
.team-content a:hover {
	color:#8830a1 !important;
}
.team-content a.btn-grey {
	color: #101010 !important;
}
.team-content a.btn-grey:hover {
	color: #fff !important;
}
.bg-team-content {
	position: absolute;
	background-image: url(../img/bg-team-content.webp);
	background-repeat: no-repeat;
	background-position: top left;
	width: 299px;
	height: 328px;
}
.bg-team-content-2 {
	position: absolute;
	background-image: url(../img/bg-team-content-2.webp);
	background-repeat: no-repeat;
	background-position: top left 15%;
	width: 100%;
	height: 100%;
}
.team-content h2 strong {
	color:#8830a1
}
.team-content .accordion-show a,
.team-content .accordion-hide a {
	font-weight: 700;
	color:#fff !important;
}
.team-content .accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-show::after{
	background-image: url(../img/chevron-down.svg) !important;
}

.team-content .accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-hide::after {
	background-image: url(../img/chevron-up.svg) !important;
}
@media only screen and (max-width : 991px) { 
	.tree-imgs {
		overflow: hidden;
	}
}
.team-content .tree-imgs-01 {
	left: 0;
	top:-15px;
}
.team-content .tree-imgs-02 {
	left: 20%;
	top:300px;
}
.team-content .tree-imgs-03 {
	left: 40%;
	top:450px;
}
@media only screen and (max-width : 991px) { 
	.tree-imgs--pos {
		position:relative;
	}

	.team-content .tree-imgs-01 {
		left: unset;
		right: 0px;
	}
	.team-content .tree-imgs-02 {
		top:unset;
		left: 15%;
	}
	.team-content .tree-imgs-03 {
		right: unset;
		left: unset;
		top:unset;
	}
	
}
blockquote {
	padding-left: 50px;
	background-image: url(../img/bg-blockquote.webp);
	background-repeat: no-repeat;
	background-position: top left;
	font-weight: 700;
	margin:30px auto;
}
.team-feature-wrapper .icon-wrapper{
	background-color: #fff;
	width: 66px;
	height: 66px;
	border-radius: 33px;
	min-width: 66px;
}
/* ============================================= */
/* 6. Responsive fixes                           */
/* ============================================= */

@media only screen and (max-width : 1199px) {
	.fixed-top.navbar-light .navbar-nav .nav-link {
		padding-top:8px;
		padding-bottom:8px;
	}
	.navbar-nav .nav-link {
		padding-top:10px;
		padding-bottom:10px;
	}
	.navbar {
		padding-top:8px !important;
		padding-bottom:8px !important;
		background-color: #fff;
	}
	.navbar-brand img {
		width: 150px; 
		height: auto;
	}
	
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) { 

	.fixed-top.navbar-light .navbar-nav .nav-link {
		padding-top:8px;
		padding-bottom:8px;
	}
	.navbar-nav .nav-link {
		padding-top:10px;
		padding-bottom:10px;
	}
	.navbar {
		padding-top:8px !important;
		padding-bottom:8px !important;
	}
	.navbar-brand img {
		width: 150px; 
		height: auto;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	/* WP image float fix */
	figure.alignleft, img.alignleft, figure.alignright, img.alignright {
		float:none;
	}
	/* /WP image float fix */

} 

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
}


/* Height */
@media only screen and (max-height : 730px) {
}