@import url('./reset.css');

:root{
	/* top bar */
	--top-bar-height: max(5vh, 2rem);
	--top-bar-height: max(5dvh, 2rem);

	/* main header */
	--main-header-height: max(10vh, 5rem);
	--main-header-height: max(10dvh, 5rem);

	/* sizes */
	--size-tin: 1rem;
	--size-sml: 2rem;
	--size-mid: 3rem;
	--size-big: 8rem;
	--size-lrg: 16rem;
	--size-con: max(7.5vw, 5rem);

	/* colors */
	--color-text-main: #1E1E1E;
}

/* general */
*{
	box-sizing: border-box;
}

html{
	font-size: 3pt;
}

body{
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	font-size: 4rem;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: var(--color-text-main);
	display: flex;
	flex-flow: column nowrap;
}

body.main-header-nav-active{
	overflow: hidden;
}

.main-button,
a.main-button,
a.main-button:link,
a.main-button:visited{
	padding: var(--size-mid);
	text-decoration: none;
	background: #4169E1;
	color: #FFFFFF;
	font-size: 3.5rem;
	font-weight: 600;
	border-radius: 8px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: var(--size-sml);
	cursor: pointer;
	transition: all .2s;
}

button.main-button{
	font-family: inherit;
	border: none;
}

.main-button img{
	height: 18px;
}

.main-button:hover{
	scale: 1.05;
}

.hover-underline{
	position: relative;
}

.hover-underline::before{
	content: '';
	position: absolute;
	top: calc(100% + var(--size-tin));
	left: 0;
	height: 3px;
	width: 10%;
	background: #4169E1;
	transition: width .2s;
}

.hover-underline:hover::before{
	width: 100%;
}

.page-content{
	flex: 1;
}

ul.form-messages{
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-tin);
}

ul.form-messages li{
	padding: var(--size-sml);
	background: rgba(100, 100, 200, 0.1);
	border: 1px solid rgba(100, 100, 200, 0.5);
	border-radius: 5px;
	font-weight: 500;
	line-height: 1.4;
}

ul.form-messages li.negative{
	background: rgba(200, 100, 100, 0.1);
	border-color: rgba(200, 100, 100, 0.5);
}

/* top bar */
.top-bar{
	padding: 0 var(--size-con);
	height: var(--top-bar-height);
	background: #4169E1;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
}

.top-bar-link,
a.top-bar-link:link,
a.top-bar-link:visited{
	position: relative;
	padding: 0 2.5vw;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: 600;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
	
.top-bar-link::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: skew(-15deg);
	z-index: -1;
}

.top-bar-link:not(:last-child)::before{
	border-right: 1px solid #FFFFFF;
}

.top-bar-link:hover::before{
	background: rgba(255, 255, 255, 0.25);
}

/* main header */
.main-header{
	position: relative;
	padding: var(--size-mid) var(--size-con);
	height: var(--main-header-height);
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: var(--size-mid);
	align-items: center;
	border-bottom: 1px solid #E3DBDB;
	background: #FFFFFF;
	z-index: 1;
}

.main-header-logo img{
	width: 100%;
}

.main-header-nav{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	column-gap: var(--size-big);
	row-gap: var(--size-mid);
}

.main-header-nav-link,
.main-header-nav-link a:link,
.main-header-nav-link a:visited,
a.main-header-nav-link,
a.main-header-nav-link:link,
a.main-header-nav-link:visited{
	text-decoration: none;
	color: var(--color-text-main);
	font-weight: 600;
	text-wrap: nowrap;
	transition: color .2s;
}

.main-header-nav-link a:hover,
a.main-header-nav-link:hover,
.main-header-nav-link.active a,
a.main-header-nav-link.active{
	color: #4169E1;
}

.main-header-nav-link.dropdown a{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: var(--size-sml);
}

.main-header-nav-link.dropdown a > img{
	translate: 0 0.125em;
}

.main-header-nav-link.dropdown > .dropdown{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: var(--size-big) var(--size-con);
	background: rgba(230, 230, 230, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 3px solid #FF7617;
	opacity: 0;
	transition: opacity .3s;
	transition-delay: .5s;
	pointer-events: none;
}

.main-header-nav-link.dropdown:hover > .dropdown,
.main-header-nav-link.dropdown:focus > .dropdown{
	opacity: 1;
	transition: none;
}

.main-header-nav-link.dropdown.dropdown-active > .dropdown{
	pointer-events: all;
}

.services-dropdown ul{
	display: flex;
	flex-flow: row wrap;
	gap: var(--size-mid);
}

.services-dropdown ul li{
	flex: 1 1 250px;
	min-width: 0;
	max-width: calc(50% - (var(--size-mid) / 2));
}

.services-dropdown ul li h3{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.4;
}

.services-dropdown ul li a{
	padding: var(--size-tin);
	background: #FFFFFF;
	border-radius: 5px;
}

.services-dropdown ul li img{
	height: 50px;
	width: 50px;
	object-fit: cover;
	object-position: center;
	border-radius: 5px;
}

.main-header-buttons{
	display: flex;
	flex-flow: row;
	justify-content: flex-end;
}

a.main-header-call-button,
a.main-header-call-button:link,
a.main-header-call-button:visited{
	background: transparent;
	color: #000000;
	border: 1px solid #FF7617;
}

a.main-header-call-button:hover{
	background: #FF7617;
}

a.main-header-call-button:hover > img,
a.main-header-call-button:hover > span{
	filter: invert();
}

.main-header-buttons.mobile{
	display: none;
}

.main-header-nav-toggle{
	position: relative;
	margin: 0;
	padding: 0;
	height: 40px;
	width: 40px;
	background: none;
	border: none;
	cursor: pointer;
}

.main-header-nav-toggle > div{
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	height: 17.5%;
	width: 100%;
	background: #4169E1;
	border-radius: 5px;
	transition: all .2s;
}

.main-header-nav-toggle > div:nth-child(1){ transform: translateY(175%); }
.main-header-nav-toggle > div:nth-child(3){ transform: translateY(-175%); }

body.main-header-nav-active .main-header-nav-toggle > div:nth-child(1){ transform: translateY(0); rotate: 45deg; }
body.main-header-nav-active .main-header-nav-toggle > div:nth-child(2){ opacity: 0; }
body.main-header-nav-active .main-header-nav-toggle > div:nth-child(3){ transform: translateY(0); rotate: -45deg; }

/* main footer */
.main-footer{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}

.main-footer-top{
	padding: var(--size-big);
	translate: 0 50%;
	width: calc(100% - (var(--size-con) * 2));
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	gap: var(--size-lrg);
	background: #4169E1;
	color: #FFFFFF;
	border-radius: 8px;
}

.main-footer-top .contact-text{
	font-size: 4.75rem;
	font-weight: 700;
}

.main-footer-top-buttons{
	display: flex;
	flex-flow: row wrap;
	gap: var(--size-big);
}

.main-footer-top-buttons a,
.main-footer-top-buttons a:link,
.main-footer-top-buttons a:visited{
	color: #FFFFFF;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: var(--size-sml);
}

.main-footer-top-buttons a:hover span{
	text-decoration: underline;
}

.main-footer-bottom{
	padding: calc(var(--size-lrg) + 5%) var(--size-con) var(--size-lrg) var(--size-con);
	display: flex;
	flex-flow: row wrap;
	gap: var(--size-big);
	background: #EAEAEA;
}

.main-footer-bottom-child{
	flex: 1;
	min-width: 280px;
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-big);
}

.main-footer-bottom-child .title{
	font-size: 4.375rem;
	font-weight: 700;
	min-height: 1em;
}

.main-footer-bottom-child .long-text{
	line-height: 1.4;
}

.main-footer-bottom-child ul{
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-mid);
}

.main-footer-bottom-child ul li a,
.main-footer-bottom-child ul li a:link,
.main-footer-bottom-child ul li a:visited{
	font-size: 3.75rem;
	font-weight: 500;
	color: var(--color-text-main);
	text-decoration: none;
	transition: font-weight .1s;
}

.main-footer-bottom-child ul li a:hover{
	font-weight: 700;
}

/* sections */
/* section: home -> welcome */
.section-home-welcome{
	min-height: 70vh;
	padding: var(--size-lrg) var(--size-con);
	background-image: url('../media/images/section-home-welcome-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.section-home-welcome > article{
	max-width: 60%;
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	gap: var(--size-big);
	color: #FFFFFF;
	text-shadow: rgba(0, 0, 0, 0.25) 2px 0 5px;
}

.section-home-welcome > article .subtitle{
	font-weight: 600;
	text-transform: uppercase;
}

.section-home-welcome > article .title{
	font-size: 8rem;
	font-weight: 800;
}

.section-home-welcome > article .normal-text{
	font-weight: 500;
	line-height: 1.6;
}

/* section: home -> our services */
.section-home-our-services{
	padding: var(--size-lrg) var(--size-con);
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	gap: var(--size-big);
}

.section-home-our-services .subtitle{
	padding: var(--size-sml);
	background: rgba(65, 105, 225, 0.1);
	border-radius: 4px;
	color: #4169E1;
	font-size: 3.5rem;
	font-weight: 600;
	text-transform: uppercase;
}

.section-home-our-services .title{
	font-size: 8rem;
	font-weight: 700;
}

.section-home-our-services ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--size-tin);
}

.section-home-our-services li{
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.section-home-our-services li a,
.section-home-our-services li a:link,
.section-home-our-services li a:visited{
	text-decoration: none;
	color: var(--color-text-main);
}

.section-home-our-services li .section-home-our-services-li-image,
.section-home-our-services li .section-home-our-services-li-image img{
	width: 100%;
}

.section-home-our-services li .section-home-our-services-li-image{
	overflow: hidden;
}

.section-home-our-services li .section-home-our-services-li-image img{
	transition: scale .2s;
}

.section-home-our-services li:hover .section-home-our-services-li-image img{
	scale: 1.05;
}

.section-home-our-services li h3{
	padding: calc(var(--size-big) / 2);
	font-size: 4.5rem;
	font-weight: 700;
	background-image: url(../media/images/icons/arrow-top-right.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - (var(--size-big) / 2)) center;
}

/* section: home -> more services */
.section-home-more-services{
	display: flex;
	flex-flow: column nowrap;
}

.section-home-more-services-top{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background: #F2F2F2;
}

.section-home-more-services-top-image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.section-home-more-services-top article{
	padding: var(--size-big) var(--size-con) var(--size-big) var(--size-big);
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	gap: var(--size-big);
}

.section-home-more-services-top article .title{
	font-size: 12rem;
	font-weight: 500;
	line-height: 1.2;
}

.section-home-more-services-top article .normal-text{
	font-size: 4.5rem;
	font-weight: 500;
	line-height: 1.6;
}

.section-home-more-services-bottom{
	padding: var(--size-big) var(--size-con);
	display: flex;
	flex-flow: row wrap;
	gap: var(--size-big);
}

.section-home-more-services-bottom article{
	flex: 1;
	padding: var(--size-big);
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	gap: var(--size-mid);
	border-radius: 8px;
	background: #F6F6F6;
}

.section-home-more-services-bottom article .title{
	font-size: 8rem;
	font-weight: 600;
}

.section-home-more-services-bottom article .normal-text{
	flex: 1;
	font-weight: 500;
	line-height: 1.6;
}

.section-home-more-services-bottom article > a,
.section-home-more-services-bottom article > a:link,
.section-home-more-services-bottom article > a:visited{
	text-decoration: none;
	color: #4169E1;
	font-weight: 500;
	text-transform: uppercase;
}

/* section: contact */
.section-contact{
	padding: var(--size-lrg) 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.section-contact.contact-page{
	padding: var(--size-lrg) var(--size-con);
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	gap: var(--size-lrg);
	background: #EAEAEA;
}

.contact-page .section-contact-details{
	flex: 1;
}

.contact-page .section-contact-details address{
	display: flex;
	flex-flow: column nowrap;
}

.contact-page .section-contact-address-detail{
	padding: var(--size-mid) 0;
	display: flex;
	flex-flow: row nowrap;
	gap: var(--size-big);
}

.contact-page .section-contact-address-detail:not(:last-child){
	border-bottom: 1px solid #4169E1;
}

.contact-page .section-contact-address-detail-image{
	padding: 0.5em 0;
}

.contact-page .section-contact-address-detail-image img{
	height: 2em;
}

.contact-page .section-contact-address-detail-text{
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-tin);
	font-size: 6rem;
	font-weight: 500;
	line-height: 1.6;
}

.contact-page .section-contact-address-detail-text,
.contact-page .section-contact-address-detail-text a,
.contact-page .section-contact-address-detail-text a:link,
.contact-page .section-contact-address-detail-text a:visited{
	color: var(--color-text-main);
	text-decoration: none;
}

.contact-page .section-contact-address-detail-text a:hover{
	text-decoration: underline;
}

.section-contact-image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.section-contact-form{
	padding: 0 var(--size-lrg) 0 var(--size-con);
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-big);
}

.contact-page .section-contact-form{
	flex: 1;
	min-width: 280px;
	padding: var(--size-big);
	background: #FFFFFF;
	border-radius: 16px;
}


.section-contact-form .title{
	font-size: 12rem;
	font-weight: 700;	
	text-transform: uppercase;
	color: #4169E1;
}

.section-contact-form .normal-text{
	font-weight: 500;
}

.section-contact-form form{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--size-big);
}

.section-contact-form form .full-row{
	grid-column: span 2;
}

.section-contact-form-input{
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-sml);
}

.section-contact-form-input input[type="text"],
.section-contact-form-input input[type="email"],
.section-contact-form-input textarea{
	font: inherit;
	padding: var(--size-sml) 0;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all .2s;
}

.section-contact-form-input textarea{
	min-height: 100px;
	max-height: 200px;
	resize: vertical;
}

.section-contact-form-input input[type="text"]:focus,
.section-contact-form-input input[type="email"]:focus,
.section-contact-form-input textarea:focus{
	outline: none;
	border-width: 2px;
	border-color: #4169E1;
}

.section-contact-form-input.service-checkbox{
	display: flex;
	flex-flow: row nowrap;
	gap: var(--size-tin);
	align-items: flex-start;
}

/* section: about us -> intro */
.section-about-us-intro{
	position: relative;
	padding: var(--size-lrg) var(--size-con) 450px var(--size-con);
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	z-index: 0;
	background: url('../media/images/section-about-us-intro.svg');
	background-position: center bottom;
	background-repeat: no-repeat;
}

.section-about-us-intro > article{
	padding: var(--size-mid);
	max-width: max(300px, 80%);
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	gap: var(--size-big);
	text-align: center;
	background: #FFFFFF;
	border-radius: 200px;
}

.section-about-us-intro > article .title{
	font-size: 9rem;
	font-weight: 800;
	line-height: 2;
}

.section-about-us-intro > article .normal-text{
	font-weight: 500;
	line-height: 1.8;
}

/* section: about us -> features */
.section-about-us-features{
	padding: var(--size-lrg) var(--size-con);
	min-width: 270px;
	display: flex;
	flex-flow: row wrap;
	gap: var(--size-lrg);
}

.section-about-us-features > *{
	flex: 1;
}

.section-about-us-features .left{
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-big);
}

.section-about-us-features .left .subtitle{
	font-size: 5rem;
	font-weight: 500;
	color: #4169E1;
}

.section-about-us-features .left .title{
	font-size: 8.66rem;
	font-weight: 500;
	line-height: 1.4;
}

.section-about-us-features .right{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--size-big);
}

.section-about-us-features-item{
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	gap: var(--size-mid);
}

.section-about-us-features-item > img{
	height: 75px;
}

.section-about-us-features-item .title{
	font-size: 5rem;
	font-weight: 600;
}

.section-about-us-features-item .normal-text{
	font-weight: 500;
	line-height: 1.6;
}

/* section: services -> hero */
.section-services-hero{
	padding: var(--size-lrg) var(--size-con);
	background-color: #4169E1;
	background-image: url('../media/images/section-services-hero.png');
	background-position: top right;
	background-size: auto 100%;
	background-repeat: no-repeat;
}

.section-services-hero article{
	max-width: max(65%, 280px);
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	gap: var(--size-big);
}

.section-services-hero article > .title,
.section-services-hero article > .normal-text{
	color: #FFFFFF;
	text-shadow: rgba(0, 0, 0, 0.25) 2px 0 5px;
}

.section-services-hero article > .title{
	font-size: 16rem;
	font-weight: 700;
	line-height: 1.2;
}

.section-services-hero article > .normal-text{
	font-size: 4.5rem;
	font-weight: 500;
	line-height: 1.4;
}

.section-services-hero article a.main-button,
.section-services-hero article a.main-button:link,
.section-services-hero article a.main-button:visited{
	background: #FFFFFF;
	color: #000000;
}

/* section: services -> services list */
.section-services-list{
	padding: var(--size-lrg) var(--size-con);
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	gap: var(--size-lrg);
}

.section-services-list > .title{
	font-size: 8rem;
	font-weight: 700;
	text-transform: uppercase;
}

.section-services-list ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--size-big);
}

.section-services-list-item-title a,
.section-services-list-item-normal-text{
	padding: var(--size-mid) 0;
	display: block;
}

.section-services-list-item-title{
	background-image: url('../media/images/icons/theme-blue-chevron-right.svg');
	background-position: center right var(--size-sml);
	background-size: auto 0.75em;
	background-repeat: no-repeat;
	border-bottom: 2px solid rgba(0, 0, 0, 0.075);
}

.section-services-list-item-title a,
.section-services-list-item-title a:link,
.section-services-list-item-title a:visited{
	font-size: 5rem;
	font-weight: 700;
	color: #4169E1;
	text-decoration: none;
	transition: all .2s;
}

.section-services-list-item-title a:hover{
	padding-left: var(--size-sml);
	background: rgba(0, 0, 0, 0.075);
}

.section-services-list-item-normal-text{
	font-weight: 500;
	line-height: 1.4;
}

/* section: services -> testimonials */
.section-services-testimonials{
	padding: var(--size-lrg) var(--size-con);
	background: url('../media/images/section-services-testimonials-bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 50vh;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.section-services-testimonials-slider-container{
	width: 50%;
	min-width: 270px;
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-big);
	align-items: center;
}

.section-services-testimonials-slider{
	padding: var(--size-big);
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-big);
}

.section-services-testimonials-slider-stars{
	font-size: 6rem;
	color: #FFB425;
}

.section-services-testimonials-slider-text{
	line-height: 1.4;
}

.section-services-testimonials-slider-author{
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-sml);
}

.section-services-testimonials-slider-author-name{
	font-size: 6rem;
	font-weight: 600;
}

.section-services-testimonials-slider-author-title{
	font-weight: 500;
	color: #4169E1;
	text-transform: uppercase;
}

.section-services-testimonials-slider-bullets{
	display: flex;
	flex-flow: row nowrap;
	gap: var(--size-sml);
}

.section-services-testimonials-slider-bullets button{
	position: relative;
	height: 15px;
	width: 15px;
	border: none;
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
}

.section-services-testimonials-slider-bullets button::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	height: 50%;
	width: 50%;
	border-radius: 50%;
	background: #FF7617;
}

.section-services-testimonials-slider-bullets button:hover,
.section-services-testimonials-slider-bullets button.active{
	border: 1px solid #FF7617;
}

.section-services-testimonials-slider-bullets button.active{
	pointer-events: none;
}

/* section: service -> service-main */
.section-service-main{
	padding: var(--size-lrg) var(--size-con);
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-lrg);
}

.section-service-main-top{
	display: flex;
	flex-flow: row wrap;
	gap: var(--size-lrg);
	align-items: center;
}

.section-service-main-top article{
	min-width: 280px;
	flex: 2;
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-big);
	align-items: flex-start;	
}

.section-service-main-top-service-title{
	font-size: 8rem;
	font-weight: 800;
	line-height: 1.2;
}

.section-service-main-top-service-normal-text{
	font-weight: 500;
	line-height: 1.4;
}

.section-service-main-top-service-image{
	flex: 1;
}

.section-service-main-top-service-image img{
	min-width: 270px;
	width: 100%;
}

.section-service-main-lists{
	display: flex;
	flex-flow: row wrap;
	gap: var(--size-big);
}

.section-service-main-list-container{
	min-width: 270px;
	padding: var(--size-big);
	display: flex;
	flex-flow: column nowrap;
	gap: var(--size-big);
	align-items: flex-start;
	border: 1px solid #FF7617;
	border-radius: 16px;
}

.section-service-main-list-container > .title{
	font-size: 6rem;
	font-weight: 800;
}

.section-service-main-list-container ul{
	display: flex;
	flex-flow: column wrap;
	gap: var(--size-mid);
}

.section-service-main-list-container ul li a,
.section-service-main-list-container ul li a:link,
.section-service-main-list-container ul li a:visited{
	color: var(--color-text-main);
	text-decoration: none;
	font-weight: 500;
}

.section-service-main-list-container ul li{
	position: relative;
	padding-left: calc(0.5em + var(--size-sml));
}

.section-service-main-list-container ul li::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	height: 0.5em;
	width: 0.5em;
	border-radius: 50%;
	background: #FF7617;
}

.section-service-main-list-container.services{
	flex: 2;
}

.section-service-main-list-container.towns{
	flex: 3;
	border-color: #4169E1;
}

.section-service-main-list-container.towns ul{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(33%, 200px));
}

.section-service-main-list-container.towns ul li a,
.section-service-main-list-container.towns ul li a:link,
.section-service-main-list-container.towns ul li a:visited{
	text-decoration: underline;
}

.section-service-main-list-container.towns ul li::before{
	background: #4169E1;
}

@media only screen and (max-width: 1200px){
	/* sections */
	/* section: home -> our services */
	.section-home-our-services ul{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 900px){
	/* sections */
	/* section: home -> more services */
	.section-home-more-services-top{
		grid-template-columns: 1fr;
	}

	/* sections */
	/* section: home -> contact */
	.section-contact{
		grid-template-columns: 1fr;
	}

	.section-contact-form{
		padding: 0 var(--size-con);
	}

	.section-contact-image{
		display: none;
	}

	/* section: about us -> features */
	.section-about-us-features{
		flex-flow: column nowrap;;
	}

	/* section: services -> services list */
	.section-services-list ul{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: var(--size-big);
	}
}

@media only screen and (max-width: 600px){
	/* main header */
	.main-header{
		display: flex;
		flex-flow: row nowrap;
		gap: var(--size-lrg);
	}

	.main-header-logo{
		flex: 1;
	}

	.main-header-nav{
		position: absolute;
		top: 100%;
		left: 0;
		height: 0;
		width: 100vw;
		width: 100dvw;
		flex-flow: column nowrap;
		justify-content: flex-start;
		background: #FFFFFF;
		gap: 0;
		overflow: hidden;
		pointer-events: none;
		transition: height .2s;
	}

	body.main-header-nav-active .main-header-nav{
		height: calc(100vh - var(--top-bar-height) - var(--main-header-height));
		height: calc(100dvh - var(--top-bar-height) - var(--main-header-height));
		overflow-y: scroll;
		pointer-events: all;
	}

	.main-header-nav a{
		padding: var(--size-mid) var(--size-con);
	}

	.main-header-buttons:not(.mobile){
		display: none;
	}

	.main-header-buttons.mobile{
		display: flex;
	}

	.main-header-nav-link.dropdown > .dropdown{
		position: relative;
		top: unset;
		left: unset;
		padding: 0 var(--size-con);
		background: none;
		opacity: 1;
		pointer-events: all;
		border: 0;
	}

	.main-header-nav-link.dropdown > .dropdown ul li a{
		border: 1px solid rgba(0, 0, 0, 0.1);
	}

	/* sections */
	/* section: home -> welcome */
	.section-home-welcome > article{
		max-width: unset;
	}

	/* section: home -> our services */
	.section-home-our-services ul{
		grid-template-columns: 1fr;
	}

	/* section: services -> services list */
	.section-services-list ul{
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--size-big);
	}

	/* section: services -> testimonials */
	.section-services-testimonials-slider-container{
		width: 100%;
	}
}