body {
	font-family: "latoregular";
	font-size: 16px;
	line-height: 1.5;
	color: #242424
}

a {
	color: #1155CC;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

a:hover,
a:focus,
a:active {
	color: #1c4598;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

ul {
	margin: 0;
	padding: 0
}

h2,
h3,
h4 {
	font-family: "latoblack";
}

h1 {
	font-family: "latobold";
	font-size: 40px;
	line-height: 1.175;
	margin-bottom: 25px;
}

h2 {
	font-size: 30px;
	margin-bottom: 30px;
	line-height: 1.233;
}

h3 {
	font-size: 25px;
	margin-bottom: 20px;
}

h4 {
	font-size: 20px;
	margin-bottom: 20px;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0
}

.btn {
	background: var(--theme-color);
	font-family: "latobold";
	color: #fff;
	border-radius: 8px;
	line-height: 1.5;
	padding: 10px 13px;
	display: inline-block;
}

.btn:hover,
.btn:active,
.btn:focus {
	background: var(--theme-color-darker);
	color: #fff;
}

/*** BREADCRUMBS ***/
.block-breadcrumbs {
    padding-top: 20px;
}
#breadcrumbs {
	margin-bottom: 40px;
}
#breadcrumbs > div {
	display: inline-block;
	font-size: 14px;
	color: #63788F;
}

#breadcrumbs > span {
	display: inline-block;
	margin: 0 10px;
	color: #63788F;
}

#breadcrumbs > div:last-of-type a {
	color: #63788F;
}

/*** IMAGE ***/

/* img:not([src]):not([srcset]) {
    visibility: hidden;
} */

.img-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
}

.img-wrap.squares {
    padding: 7px;
}

.img-wrap.squares:before,
.img-wrap.squares:after {
    content: '';
    display: block;
    border-radius: 16px;
    position: absolute;
}

.img-wrap.squares:before {
    background-color: var(--theme-color-darker);
    top: 0;
    right: 0;
    height: 60%;
    width: 60%;
}

.img-wrap.squares:after     {
    background-color: #696969;
    bottom: 0;
    left: 0;
    height: 25%;
    width: 25%;
}


/*** CERTIFY LOGOS ***/
.certifies {
	display: flex;
	gap: 20px;
}

/*** FOOTER ***/
.footer {
	width: 100%;
	background-color: #242424;
	/* text-align: center; */
	padding: 35px 0 30px;
	color: #FFFFFF;
}
.footer .footer-title {
    /* text-align: left; */
    font-family: latobold;
    color: var(--theme-color);
}
.footer .footer-nav {
	list-style: none;
    /* text-align: left; */
}

.footer .footer-nav li {
	margin: 0 0 20px 0;
}

.footer .footer-nav li:last-child {
    margin: 0;
}

.footer a {
	color: #fff
}
.footer-social span {
    display: inline-block;
    margin-right: 10px;
}
.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #fff;
    line-height: 35px;
    text-align: center;
    font-size: 17px;
}

.footer-social span:last-of-type {
    margin-right: 0;
}

.footer .copyright {
    text-align: center;
	font-size: 15px;
	margin-top: 35px
}

/*** FAQ PAGE TABS ***/
.faq-tabs {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #cacaca;
    background: #fff;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear
}

.faq-tabs+h2 {
    margin-top: 50px
}

.faq-tabs .faq-title {
    font-family: latoregular;
    position: relative;
    padding-right: 25px
}

.faq-tabs .faq-title span {
    overflow: hidden;
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: auto;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.faq-tabs .faq-title span:after,
.faq-tabs .faq-title span:before {
    content: '';
    background: #000;
    display: block;
    width: 3px;
    height: 10px;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.faq-tabs .faq-title span:before {
    position: absolute;
    top: 5px;
    bottom: auto;
    left: 9px;
    right: auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.faq-tabs .faq-title span:after {
    position: absolute;
    top: 5px;
    bottom: auto;
    left: 4px;
    right: auto;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.faq-tabs div.faq-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear
}

.faq-tabs div div {
    margin-top: 15px
}

.faq-tabs:hover {
    border-color: var(--theme-color);
    background: #fff9f2
}

.faq-tabs.opened {
    border-color: var(--theme-color);
    background: #fff9f2
}

.faq-tabs.opened .faq-title span:before {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 3px;
    right: auto;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg)
}

.faq-tabs.opened .faq-title span:after {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 8px;
    right: auto;
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    transform: rotate(-40deg)
}

.faq-tabs.opened div.faq-content {
    max-height: 200px;
    height: auto
}

/*** thank you ***/
.page-id-387 .site-content {
    min-height: 641px;
}

@media (min-width: 1400px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1140px;
	}
}

@media (max-width: 991px) {
	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 25px;
	}
}

@media (max-width: 767px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	h3 {
		font-size: 20px;
	}
	
	h4 {
		font-size: 18px;
	}

	#breadcrumbs {
		margin-bottom: 30px;
	}

    .footer-title:not(.first) {
        margin-top: 30px;
    }

    .copyright {
        text-align: left;
    }
	
}