/* ------------- Typography -------------- */
@font-face {
    font-family: 'RobotoBold';
    src: url('../fonts/Roboto-Bold.eot');
    src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/Roboto-Bold.woff') format('woff'),
    url('../fonts/Roboto-Bold.ttf') format('truetype'),
    url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RobotoLight';
    src: url('../fonts/Roboto-Light.eot');
    src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Light.woff2') format('woff2'),
    url('../fonts/Roboto-Light.woff') format('woff'),
    url('../fonts/Roboto-Light.ttf') format('truetype'),
    url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RobotoMedium';
    src: url('../fonts/Roboto-Medium.eot');
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/Roboto-Medium.woff') format('woff'),
    url('../fonts/Roboto-Medium.ttf') format('truetype'),
    url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto-Regular.ttf') format('truetype'),
    url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ---------reset----------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: inherit;
}

ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}

a {
    text-decoration: none;
    color: #666;
}

ul, ol {
    margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

h1, h2, h3, h4, h5 {
    margin: 0;
}

p {
    margin: 0;
}

form,
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}


/* ------------- normalize -------------- */
html,
body {
    height: 100%;
}

a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}


img {
    max-width: 100%;
    height: auto;
}

.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {
    padding: 0 30px !important;
}

.entry-content,
.post, .page {
    margin: 0;
}

.elementor-widget-text-editor {
    color: #494949 !important;
}

body {
    font: 18px/1.3 'Roboto', Arial, Helvetica, sans-serif;
    color: #494949;
}

.container {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 30px;
}

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-content {
    flex: 1 0 auto;
}

.site-footer {
    flex: 0 0 auto;
}

/*header*/
.site-header {
    padding: 15px 0;
}
.menu-menu-1-container{
	position:relative;
}
.site-header-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    display: flex;
    align-items: center;
    width: 180px;
    height: 28px;
}
#primary-menu{
	display:flex;
}

#primary-menu li:first-child{
	margin-left:auto;
}
.main-navigation li{
    float: none;
    width: auto;
	padding-left:20px;
}

.nav-menu a {
    font-size: 20px;
	letter-spacing: .1em;
    transition: .2s all;
    color: #828282;
    font-family: 'Roboto';
}

a:visited {
    color: #828282;
}

.nav-menu li.current-menu-item a {
    color: #494949;
    position: relative;
}

.nav-menu li.current-menu-item a::after {
    content: '';
    display: inherit;
    width: 100%;
    height: 2px;
    background: #2387AA;
}

.nav-menu a:hover {
    color: #2387AA;
}
/*== Mobile nav mebu and burger menu ==*/
@media(max-width: 599px){
	#primary-menu{
		position: absolute;
		background: white;
		border: 1px solid #2387AA;
		border-radius: 5px;
		z-index:10;
		right:0;
		top: 17px;
		transition: .3s ease;
		opacity: 0;
		visibility: hidden;
		display: block;
		padding: 15px;
		width: max-content;
		min-width: 130px;
		transform: translateY(20%);
	}
	#primary-menu[aria-expanded="true"]{
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	.main-navigation li{
		padding-left:0;
	}
	.main-navigation li + li a{
		padding-top: 10px;
	}
	
	/*== Burger menu button ==*/
	.menu-toggle{
		margin-left: auto;
		display: block;
		font-size: 0;
		width: 30px;
		height: 30px;
		background: transparent;
		border: none;
		position: relative;
		cursor: pointer;
	}
	.menu-toggle:before,
	.menu-toggle:after{
		position: absolute;
		content: '';
		background: #2387AA;
		width: 30px;
		height: 2px;
		transition: all.3s ease;
		left: 0;
	}
	.menu-toggle:before{
		top: 10px;
	}
	.menu-toggle:after{
		bottom:10px;
	}
	.menu-toggle[aria-expanded="true"]:before{
			transform: rotate(45deg);
			top: 14px;
	}
	.menu-toggle[aria-expanded="true"]:after{
		transform: rotate(-45deg);
		bottom:13px;
	}
}
/*footer*/
.site-footer {
    padding: 42px 0 30px;
    border-top: 1px solid #E6E6E6;
}
.site-footer-holder .top {
    display: flex;
    margin-bottom: 36px;
}

.copyright {
    text-align: center;
    color: #828282;
}

.copyright a {
    color: #2387AA;
    text-decoration: underline;
    font-family: 'RobotoMedium';
    transition: .2s all;
}

.copyright a:hover {
    opacity: .7;
}

.footer-nav {
    display: flex;
	justify-content: center;
    margin: 0 auto;
}

.footer-nav li {
    margin-left: 90px;
}

.footer-nav a {
    display: block;
    padding-left: 40px;
    min-height: 30px;
    font-family: 'RobotoMedium';
    color: #828282;
}

.footer-nav a > span {
    font-family: 'Roboto';
}

.footer-nav a:hover {
    color: #2387AA;
}

.nav-location a {
    background: url("/wp-content/uploads/2019/06/location.png") top left no-repeat;
    background-size: 20px 28px;
}

.nav-phone a {
    background: url("/wp-content/uploads/2019/06/phone.png") top left no-repeat;
    background-size: 28px 28px;
}

.nav-twitter a {
    background: url("/wp-content/uploads/2019/06/twitter.png") top left no-repeat;
    background-size: 24px 19px;
}
@media(max-width: 480px){
	.site-footer-holder .top {
		display: block;
	}
	footer .site-branding a{
		display: block;
		margin: 0 auto 50px;
	}
	.footer-nav li {
    	margin-left: initial;
	}
	.footer-nav li p{
		text-align:center;
	}
}
/*Main page*/
.top-banner {

}
.top-banner h2 {
    color: #2387AA;
    opacity: 0.8;
    font-size: 36px;
    margin-bottom: 40px;
}

.top-banner h1 {
	font-size: clamp(35px, 5vw, 60px);
	text-shadow: 2px 2px black;
    margin-bottom: 40px;
	color: white !important;
}

.top-banner p {
    font-size: clamp(25px, 5vw, 40px);
	text-shadow: 2px 2px black;
	color: white !important;
}


.section-counter .elementor-widget-wrap > div{
    width: 25%;
    margin: 0;
}

.section-counter .elementor-counter-number-suffix {
    padding-left: 12px;
}

.section-counter .elementor-counter-number,
.section-counter .elementor-counter-number-suffix {
    font-size: 48px;
    color: #494949;
}

.section-counter .elementor-counter-title {
    font-family: 'Roboto' !important;
}

.section-heading h2 {
    display: inline-block;
	font-size: clamp(35px, 5vw, 50px);
    color: #494949 !important;
    position: relative;
    padding-bottom: 15px !important;
    margin-bottom: 50px !important;
}

.section-heading h2::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #2387AA;
}

.slick-slide:focus {
    outline: none;
}

.elementor-slick-slider .slick-next,
.elementor-slick-slider .slick-prev {
    border: 2px solid #2387AA !important;
    border-radius: 3px;
    width: 38px !important;
    height: 38px !important;
}

.elementor-slick-slider .slick-next::before,
.elementor-slick-slider .slick-next:active,
.elementor-slick-slider .slick-prev::before,
.elementor-slick-slider .slick-next.slick-disabled:before,
.elementor-slick-slider .slick-prev.slick-disabled:before,
.elementor-slick-slider .slick-prev:active {
    opacity: 1 !important;
}

.slick-arrow:hover {
    background: #2387AA !important;
}


.slick-arrow::before {
    color: #2387AA !important;
}

.slick-arrow:hover::before {
    color: #fff !important;
}

.clients-slider .slick-list.draggable,
.clients-slider .slick-slide {
    height: 82px !important;
}

.clients-slider .slick-slide > figure,
.clients-slider .slick-slide > figure img{
    width: inherit !important;
    height: inherit !important;
}

.clients-slider .slick-slide > figure img {
    object-fit: contain;
}

.elementor-slick-slider .slick-prev {
    left: -40px !important;
}

.elementor-slick-slider .slick-next {
    right: -40px !important;
}

/*products page*/
.section-description .elementor-text-editor {
    max-width: 770px;
    margin: 0 auto;
}

.section-description .elementor-text-editor p,
.section-description .elementor-text-editor ul {
    margin-bottom: 40px;
}

.section-description .elementor-text-editor p:last-child {
    margin-bottom: 0;
}


.products-list article {
    display: flex;
    margin-bottom: 45px;
    background: #eff3f6;
}

.products-list article:last-child {
    margin-bottom: 0;
}

.products-list .post-thumbnail {
    width: 350px;
    height: 235px;
	margin-top: 55px;
}

.products-list .post-description {
    width: calc(100% - 350px);
    padding-left: 40px;
}

.products-list .post-description .entry-title {
    color: #2387AA;
    font-weight: 500;
    margin-bottom: 15px;
}

.contactForm {
	padding: 5em 0;
}
.contactForm .container {
	max-width: 600px;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.contactForm h4 {
	display: inline-block;
	font-size: clamp(25px, 5vw, 36px);
	margin-bottom: 20px;
	position: relative;
    padding-bottom: 12px !important;
}
.contactForm h4:after {
	position: absolute;
    content: '';
    height: 4px;
    width: 100%;
    background: #4C9EBB;
    bottom: 0;
    left: 0;
}
.contactForm form {
	margin-top: 40px;
}
.contactForm form input:not(.wpcf7-submit) {
	border: none;
    border-bottom: 1px solid #C4C4C4;
    color: #B9B9B9;
    border-radius: 0;
    font-size: 18px;    
    background: transparent;
}
.contactForm form span {
	display: block;
    margin-bottom: 40px;
}
.contactForm form .wpcf7-submit {
	background-color: #4C9EBB;
    border: none;
    width: 200px;
    height: 50px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .2s all;
    padding: 0;
}
.contactForm input{
	width: 100%;
}



