
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open_sans/normal.woff2') format('woff2');
	font-display: swap;
}
@font-face {
    font-family: 'Open Sans Italic';
    src: url('../fonts/open_sans/italic.woff2') format('woff2');
	font-display: swap;
}
@font-face {
    font-family: 'Hammersmith One';
    src: url('../fonts/hammersmith_one/regular.woff2') format('woff2');
	font-display: swap;
}
@font-face {
    font-family: 'Mr De Haviland';
    src: url('../fonts/mr_de_haviland/regular.woff2') format('woff2');
	font-display: swap;
}
:root {
	--color-black: #000;
	--color-white: #fff;
	--color-text: #333;
	--color-turquoise: #0BD2CD;
	--color-red: #E90550;
	--color-blue: #01AEF0;
	--color-gray-1: #EDEDED;
	--color-gray-2: #F8F8F8;
	--color-gray-3: #EEEEEE;
}
.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.block-editor-iframe__body {
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.73;
	color: var(--color-text);
	font-family: 'Open Sans', sans-serif;
}
a {
	color: var(--color-red);
	transition: 0.2s;
	background-color: transparent;
    text-decoration: none;
}
a:focus, 
a:active {
	outline: none;
}
@media(any-hover: hover){
	a:hover {
		color: var(--color-text);
	}
}
@media (any-hover: hover){
	body::-webkit-scrollbar {
		width: 10px;
	}
	body::-webkit-scrollbar-thumb {
		width: 10px;
		border-radius: 5px;
		background-color: var(--color-turquoise);
	}
	body::-webkit-scrollbar-track {
		background-color: transparent;
	}
}
.ch-wrap {
	width: 1400px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
@media(max-width: 600px){
	.ch-wrap {
		padding: 0 15px;
	}
}
ul, ol {
	padding-left: 20px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Hammersmith One", Sans-serif;
}
h1 {
	margin-top: 30px;
    margin-bottom: 30px;
    font-size: 66px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: -1px;
}
h2 {
	font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
}
h3 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
}
h4 {
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
}
@media(max-width: 1540px){
	h1 {
		font-size: max(35px, 2.92vw);
	}
	h2 {
		font-size: max(35px, 2.92vw);
	}
	h3 {
		font-size: max(27px, 2.07vw);
	}
	h4 {
		font-size: max(23px, 1.75vw);
	}
}
@media(max-width: 1000px){
	h1 {
		font-size: max(30px, 3.5vw);
	}
	h2 {
		font-size: max(30px, 3.5vw);
	}
	h3 {
		font-size: max(25px, 2.7vw);
	}
	h4 {
		font-size: max(20px, 2.3vw);
		margin-bottom: 20px;
	}
}
@media(max-width: 600px){
	h1, .title-h1 {
		font-size: max(25px, 5vw);
		margin-bottom: 20px;
	}
	h2, .title-h2 {
		font-size: max(25px, 5vw);
		margin-bottom: 20px;
	}
	h3, .title-h3 {
		font-size: max(21px, 4.16vw);
	}
	h4, .title-h4 {
		font-size: max(18px, 3.33vw);
		margin-bottom: 15px;
	}
}
@media(max-width: 400px){
	h1, .title-h1 {
		font-size: max(20px, 6.25vw);
		margin-bottom: 15px;
	}
	h2, .title-h2 {
		font-size: max(20px, 6.25vw);
		margin-bottom: 15px;
	}
	h3, .title-h3 {
		font-size: max(19px, 5.25vw);
	}
	h4, .title-h4 {
		font-size: 18px;
		margin-bottom: 10px;
	}
}
.wp-block-separator {
    border: none;
    border-top: 1px solid;
}
.btn {
	overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    padding: 10px 30px;
    cursor: pointer;
    transition: border 0.3s, color 0.3s, background 0.3s;
    text-decoration: none;
    width: max-content;
    height: 60px;
    font-size: 16px;
    max-width: 100%;
	font-weight: 400;
    background: transparent;
	border: 1px solid transparent;
	line-height: normal;
	font-family: 'Open Sans';
}
.btn-secondary {
	border: 1px solid var(--color-turquoise);
	background: var(--color-turquoise);
	color: #fff;
}
.btn-danger {
	border: 1px solid var(--color-red);
	background: var(--color-red);
	color: #fff;
}
.btn-primary {
	border: 1px solid var(--color-blue);
	background: var(--color-blue);
	color: #fff;
}
.btn-secondary-2 {
	border: 2px solid var(--color-turquoise);
	background: var(--color-turquoise);
	color: #fff;
}
.btn-danger-2 {
	border: 2px solid var(--color-red);
	background: var(--color-red);
	color: #fff;
}
.btn-primary-2 {
	border: 2px solid var(--color-blue);
	background: var(--color-blue);
	color: #fff;
}
.btn-light {
	border: 2px solid var(--color-white);
	color: #fff;
}
@media(any-hover: hover){
	.btn-secondary:hover {
		border: 1px solid var(--color-red);
		background: var(--color-red);
		color: #fff;
	}
	.btn-danger:hover {
		border: 1px solid var(--color-turquoise);
		background: var(--color-turquoise);
		color: #fff;
	}
	.btn-primary:hover {
		border: 1px solid var(--color-blue);
		background: var(--color-white);
		color: var(--color-blue);
	}
	.btn-secondary-2:hover {
		border: 2px solid var(--color-text);
		background: transparent;
		color: var(--color-text);
	}
	.btn-danger-2:hover {
		border: 2px solid #fff;
		background: transparent;
		color: #fff;
	}
	.btn-primary-2:hover {
		border: 2px solid var(--color-text);
		background: transparent;
		color: var(--color-text);
	}
	.btn-light:hover {
		color: var(--color-text);
		background: var(--color-white);
	}
}
@media(max-width: 1000px){
	.btn {
		height: 55px;
	}
}
@media(max-width: 600px){
	.btn {
		height: 50px;
		padding: 10px 20px;
	}
}
.color-gray {
	color: #B3B3B3;
}
.color-blue {
	color: #2a9cd5;
}
.sands-p {
	display: block;
	margin-bottom: 15px;
}

/** FOORMS **/
.ch-form .field {
    width: 100%;
	position: relative;
}
.ch-form .field > .title {
	font-size: 15px;
	width: 100%;
	line-height: normal;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 10px;
    font-weight: 600;
	padding-left: 15px;
}
.ch-form .field > .desc {
    padding-left: 15px;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}
.ch-form .field-text input{
	font-size: 16px;
	padding: 0 20px;
	height: 60px;
	width: 100%;
	font-weight: 600;
	background-color: #FFFFFF;
    color: #646464;
    font-size: 14px;
    border: 1px solid #262A33;
	font-family: 'Open Sans';
}
.ch-form .field-text.muted input {
    border: 1px solid #F6F6F6;
	background: #F6F6F6;
}
.ch-form .field-text input:focus {
    border: 1px solid #006BB0;
	outline: none;
}
.ch-form .field-textarea textarea {
    display: block;
    font-size: 16px;
	padding: 15px 20px;
    height: 100px;
    width: 100%;
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
	font-family: 'Open Sans';
	border: 1px solid #262A33;
}
.ch-form .field-textarea.muted textarea {
    border: 1px solid #F6F6F6;
	background: #F6F6F6;
}
.ch-form .field-textarea .limit {
	position: absolute;
    right: 0;
	bottom: -5px;
	transform: translateY(100%);
	font-size: 12px;
	color: #777;
}
.ch-form .field-textarea textarea:focus {
    border: 1px solid #006BB0;
	outline: none;
}
.ch-form .field.error input,
.ch-form .field.error textarea.error,
.ch-form .field.error input:focus,
.ch-form .field.error textarea:focus {
    border: 1px solid #EF7979;
}
.ch-form .field .err {
    position: absolute;
    right: 30px;
    z-index: 1;
    bottom: -4px;
    height: max-content;
    border-radius: 19px;
    padding: 4px 10px;
    max-width: 100%;
    color: #ff4242;
    font-size: 10px;
    background: #ffffff;
    width: max-content;
    line-height: normal;
    font-weight: 600;
    box-shadow: 0px 0px 20px 0px #00000020;
    letter-spacing: 0.3px;
}

.ch-form .field input::placeholder,
.ch-form .field textarea::placeholder {
	transition: 0.3s;
	color: #93A3AF;
}
.ch-form .policy {
	font-size: 14px;
}
.ch-form .policy a {
    color: #000;
    text-decoration: underline;
}
@media(any-hover: hover){
	.ch-form .policy a:hover {
		text-decoration: none;
	}
	.ch-form .field input:focus::placeholder,
	.ch-form .field textarea:focus::placeholder {
		color: transparent;
	}
	.ch-form .field textarea::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.ch-form .field textarea::-webkit-scrollbar-thumb {
		width: 10px;
		border-radius: 10px;
		background-color: #ddd;
	}
	.ch-form .field textarea::-webkit-scrollbar-track {
		background-color: transparent;
	}
}
@media(max-width: 1000px){
	.ch-form .field-text input{
		height: 55px;
	}
}
@media(max-width: 600px){
	.ch-form .field-text input{
		height: 50px;
	}
}
@media(max-width: 400px){
	.ch-form .policy {
		font-size: 12px;
	}
}
/** FOORMS (END) **/

.yoast-breadcrumbs {
    padding: 19px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.73em;
    letter-spacing: 0px;
	text-align: right;
	background: var(--color-gray-3);
}
.yoast-breadcrumbs > span  {
    display: flex;
	flex-wrap: wrap;
    justify-content: end;
	gap: 10px;
	max-width: 1305px;
	margin: 0 auto;
}
.yoast-breadcrumbs a {
	text-decoration: none;
	color: #646464;
}
@media(any-hover: hover){
	.yoast-breadcrumbs a:hover {
		color: var(--color-red);
	}
}
@media(max-width: 600px){
	.yoast-breadcrumbs {
		font-size: 12px;
		font-size: 14px;
		padding: 15px 15px;
	}
}