html {
	scroll-behavior: smooth;
}
body.hidden {
    overflow: hidden;
}
body {
	background: #EDECEC;
}
.page {
	overflow: hidden;
	position: relative;
}
.header {
	position: relative;
	z-index: 1;
}
.title {
	font-family: 'Forum', cursive;
	font-size: 32px;
	line-height: 35px;
	color: #141414;
}
.title.big {
	font-size: 92px;
	line-height: 102px;
}
.title.small {
	font-size: 24px;
	line-height: 28px;
}
.big-link {
	font-size: 172px;
	line-height: 190px;
	color: #FF3805;
}
.title .red {
	color: #FF3805;
}
.desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 26px;
	color: #141414;
}
.desc.blue {
	color: #564BF9;
}
.mob {
	display: none;
}
button,
a {
	border: 0;
	outline: 0;
	cursor: pointer;
	transition: .3s;
}
a:hover  {
	opacity: .7;
}
.section {
	padding: 120px 16px;
}
.section.white {
	background-image: linear-gradient(to right, #FFFFFF, #EDECEC);
}
.wrapper {
	max-width: 1200px;
	margin: 0 auto;
}


/* header */
.header {
	padding: 0 16px;
}
.header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 32px;
}
.header .nav {
	display: flex;
}
.header .nav__item {
	margin-left: 44px;
}
.logo .img {
	width: 182px;
}

/* hero section */
.hero-section {
	padding-top: 205px;
	padding-bottom: 245px;
}
.hero-section .line + .line {
	margin-top: 30px;
}
.hero-section .line {
	padding-left: 140px;
}
.hero-section .line:nth-child(2) {
	padding-left: 0;
}
.hero-section .wrapper {
	position: relative;
}
.hero-section .img {
	width: 240px;
	position: absolute;
	right: 18px;
	top: -50px;
	transition: 1s ease;
}
.hero-section .img:hover {
	transform: rotate(-20deg);
}

/* services */
.title + .desc {
	margin-top: 44px;
}
.services-slider {
	margin-top: 270px;
}
.services-section .slick-slide {
	width: 287px;
}
.services-section .slick-slide + .slick-slide {
	margin-left: 16px;
}
.services-section .slick-list {
	overflow: visible;
}
.services-section .item .title {
	margin-top: 56px;
}
.services-section .desc {
	margin-top: 18px;
}
.services-section .item .img {
	width: 100%;
}
.services-section .desc {
	max-width: 700px;
}
.text-section .num {
	display: inline-block;
	width: 130px;
    vertical-align: top;
}
.text-section .num + span {
	display: inline-block;
    width: calc(100% - 140px);
    vertical-align: top;
}
.text-section .title + .desc {
	padding-left: 140px;
}
.text-section .list {
	padding-left: 140px;
	font-size: 0;
}
.text-section .list .item {
	margin-top: 26px;
	width: 50%;
	display: inline-block;
	vertical-align: top;
	padding-left: 28px;
	position: relative;
}
.text-section .list .item::before {
	content: '';
	content: '';
	width: 8px;
	height: 8px;
	top: 9px;
	left: 0;
	position: absolute;
	background: #FF3805;
	border-radius: 100%;
}


/* third section */
.third-section {
	padding-bottom: 0;
}

/* about section */
.about-section .accordion {
	margin-top: 20px;
}
.accordion-header {
	padding: 40px 80px 40px 0;
	border-bottom: 2px solid #9F9F9F;
	position: relative;
	cursor: pointer;
	transition: .3s;
}
.accordion-header:hover {
	color: #9F9F9F;
	border-color: #FF3805;
}
.accordion-header.active {
	color: #FF3805;
	border-color: #FF3805;
}
.accordion-header::before {
	content: '';
	width: 24px;
	height: 2px;
	position: absolute;
	right: 30px;
	top: 57px;
	background: #9F9F9F;
	transition: .3s;
}
.accordion-header:hover:before {
	background: #FF3805;
	transform: rotate(135deg);
}
.accordion-header.active:before {
	background: #FF3805;
	transform: none;
}
.accordion-header::after {
	content: '';
	height: 24px;
	width: 2px;
	position: absolute;
	right: 41px;
	top: 46px;
	background: #9F9F9F;
	transition: .3s;
}
.accordion-header.active:after {
	opacity: 0;
}
.accordion-header:hover:after {
	background: #FF3805;
	transform: rotate(135deg);
}
.accordion-content {
	padding-left: 100px;
	padding-bottom: 40px;
}

/* legal services section */
.legal-services-section .title {
	margin-top: 60px;
}
/* about */
.accordion .accordion-content {
	display: none;
}

/* fourth section */
.fourth-section {
	padding-bottom: 0;
}
.big-link  {
	display: table;
	margin: 160px auto 0;
	transition: .5s;
	transform: translateY(55px);
}
.big-link:hover {
	opacity: 1;
	transform: translateY(0);
}

/* footer */
.footer {
	background: #141414;
	position: relative;
	padding: 112px 16px 20px;
}
.footer .wrapper {
	display: flex;
}
.footer .desc {
	color: #FFFFFF;
}
.footer .logo + .desc {
	margin-top: 32px;
}
.footer .desc.small {
	font-size: 14px;
	line-height: 18px;
	margin-top: 150px;
}
.footer .desc.gray {
	color: #8E8E8E;
}
.footer .column:first-child {
	flex: 3;
	padding-top: 0;
}
.footer .column {
	flex: 2;
	padding-top: 36px;
}
.footer .desc.blue {
	color: #564BF9;
	text-decoration: underline;
	margin-top: 12px;
	display: table;
}
.footer .nav__item {
	margin-bottom: 12px;
}


/* contact page */
.contact-page .hero-section {
	padding-bottom: 90px;
}
.contact-page .hero-section .line {
	padding-left: 0;
}
.contact-page .hero-section .img {
	width: 380px;
	right: 120px;
	top: 60px;
}
.contact-page .hero-section .desc {
	max-width: 290px;
}
.contact-page .hero-section .title + .desc {
	margin-top: 86px;
}
.contact-page .hero-section .row {
	margin-top: 30px;
	display: flex;
}
.contact-page .hero-section .row .desc + .desc {
	margin-left: 16px;
}
.contact-page .hero-section .desc.gray {
	color: #8E8E8E;
}
.contact-page .hero-section .desc.blue {
	text-decoration: underline;
}

.request-section {
	padding-bottom: 30px;
}
.request-section .desc + .desc {
	margin-top: 60px;
	max-width: 590px;
}
.form-section {
	padding-bottom: 0;
}
.form {
	margin-top: 100px;
	font-size: 0;
}
.form .input {
	width: calc(50% - 8px);
	margin-bottom: 28px;
	line-height: 22px;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 26px;
	padding: 16px;
	color: #141414;
	border: 0;
	background: linear-gradient(#EDECEC00, #fff);
	border-bottom: 2px solid #E1E1E1;
	outline: 0;
}
.form .input::placeholder {
	color: #9F9F9F;
}
.form .input:nth-child(odd) {
	margin-right: 8px;
}
.form .input:nth-child(even) {
	margin-left: 8px;
}

.form textarea.input {
	resize: none;
	min-height: 140px;
	width: 100%;
	margin-right: 0;
}
.form .button {
	display: table;
	margin: 28px 0 0 auto;
	padding-right: 65px;
	position: relative;
	background: transparent;
	border: 0;
	padding-left: 0;
}
.form .button::before {
	content: '';
	width: 4px;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: -10px;
	transition: .3s;
	background: #FF3805;
}
.form .button:hover::before {
	width: calc(100% - 35px);
}

.form .button::after {
	content: '';
	width: 24px;
	height: 24px;
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url('../assets/send.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: .3s;
}
.form .button:hover::after {
	background-image: url('../assets/send-hover.svg');
}
.contact-page .wrapper {
	max-width: 990px;
}
.header .wrapper {
	max-width: 1200px;
}

@media screen and (max-width: 1200px) {
	.hero-section .line {
		padding-left: 0;
	}
	.hero-section .img {
		display: none;
	}
	.hero-section {
		padding: 48px 16px 48px;
	}
	.hero-section .line + .line {
		margin-top: 0;
	}
	.section {
		padding: 48px 16px;
	}
	.services-slider {
		margin-top: 32px;
	}
	.services-section .item .title {
		margin-top: 16px;
	}
	.accordion-content {
		padding-left: 0;
	}
	.big-link {
		margin-top: 48px;
	}
  }

  @media screen and (max-width: 768px) {
	.header .wrapper {
		display: block;
		text-align: center;
	}
	.header .nav__item {
		margin: 0 0 16px;
		width: 50%;
	}
	.header .nav {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 16px;
		font-size: 0;
	}
	.title {
		font-size: 24px;
		line-height: 32px;
	}
	.title.big {
		font-size: 56px;
		line-height: 64px;
	}
	.text-section .num {
		width: 50px;
	}
	.text-section .num + span {
		width: calc(100% - 65px);
	}
	.text-section .title + .desc {
		padding-left: 0;
	}
	.text-section .list {
		padding-left: 0;
	}
	.accordion-header {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.accordion-header::before {
		top: 34px;
	}
	.accordion-header::after {
		top: 23px;
	}
	.big-link {
		font-size: 72px;
		line-height: 82px;
		transform: none;
	}
	.footer .wrapper {
		display: block;
	}
	.footer {
		padding: 48px 16px;
	}
	.footer .desc.small {
		margin-top: 24px;
	}
	.form {
		margin-top: 32px;
	}
	.form .button::before {
		width: calc(100% - 35px);
	}
  }
#overlay {
	font-family: 'Open Sans', sans-serif;
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
#overlay .pop {
    background: #fff;
    max-width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 50px 50px 50px;
    border-radius: 6px;
    display: none;
}
#overlay .pop .close {
    position: absolute;
    right: 25px;
    top: 20px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer;
}
#overlay .pop .close:hover {
    opacity: 1;
}
#overlay .pop .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}
#overlay .pop .close:before {
    transform: rotate(45deg);
}
#overlay .pop .close:after {
    transform: rotate(-45deg);
}
#overlay .pop .message {
    text-align: center;
    font-size: 18px;
}
.section.privacy {
    font-family: 'Open Sans', sans-serif;
}
.section.privacy h1 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 10px;
}
.last-updated {
    font-style: italic;
    margin-bottom: 35px;
}
.section.privacy p {
    margin-bottom: 20px;
    line-height: 26px;
}
.section.privacy b {
    font-weight: bold;
}
.section.privacy p:last-child {
    margin-bottom: 0px;
}