body {
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	color: #000;
	background: #ffffff;
	line-height: 1.2em;
}

* {
	box-sizing: border-box;
}

ul,
li,
span {
	display: block;
	padding: 0;
	margin: 0;
}

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

a {
	text-decoration: none;
}

p {
	margin: 0;
	padding: 0;
}

img {
	display: block;
	object-fit: cover;
}

button {
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
	background: transparent;
}

button:active,
button:focus {
	outline: none;
}

input {
	outline: none;
}

input:active {
	outline: none;
}

:focus {
	outline: none;
}

button::-moz-focus-inner {
	border: 0;
}

.container {
	width: 1140px;
	margin: 0 auto;
	position: relative;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    width: 226px;
    display: block;
}
.btn-orange {
    background: #FFA000;
    transition: all .5s ease;
}
.btn-orange:hover {
    background: #d38909;
    transition: all .5s ease;
}

.btn-violet {
    background: #512DA8;
    transition: all .5s ease;
}
.btn-violet:hover {
    background: #2b0e6e;
    transition: all .5s ease;
}
.displayBlock {
    display: block;
}

.displayInline {
    display: inline;
}
.section-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    color: #000;
    text-align: center;
}
/* first */
.first {
    padding: 200px 0 50px;
    background: url(../img/bg2.png) no-repeat top center;
}
.first-title {
    font-weight: 600;
    font-size: 72px;
    line-height: 84px;
    text-align: center;
    color: #222;
}
.text-violet {
    color: #512DA8;
    display: inline;
}
.text-orange {
    color: #FFA000;
    display: inline;
}

.first-desc {
    font-size: 22px;
    line-height: 34px;
    margin-top: 43px;
    padding: 0 50px;
    text-align: center;
}

.first-btn {
    font-weight: 700;
    text-transform: uppercase;
    width: 235px;
    padding: 20px 0;
    color: #222;
    margin: 80px auto 0;
}
.first-arrowdown {
    width: 40px;
    margin: 210px auto 0;
}

/* second */
.second {
    padding: 150px 0;
}
.advantages {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    margin-top: 100px;
}

.advantage {
    padding: 30px 10px;
    width: 260px;
    height: 400px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .5s ease;
}

.advantage:nth-child(n+1):nth-child(-n+4) {
    margin-bottom: 50px;
}

.advantage:hover {
    box-shadow: 0px 12px 8px rgba(0, 0, 0, 0.25);
    transition: box-shadow .5s ease;
}

.advantage__icon {
    width: 96px;
}

.advantage__title {
    margin-top: 22px;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
}

.advantage__text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    margin-top: 25px;
}

/* third */
.third {
    padding: 100px 0;
}

.tariff-table {
	width: 960px;
	border-collapse: collapse;
    display: block;
    margin: 95px auto 50px;
}

.column__name {
	width: 400px;
}

.column__basic,
.column__pro,
.column__corporate {
	width: 300px;
}
 
th {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    padding: 50px 0;
}

th:first-of-type {
    text-align: left;
}

tr {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    border-bottom: 1px solid #EEEEEE;
    background: #fff;
}

td:first-of-type {
    padding: 15px 90px 15px 0;
}

td:not(:first-of-type) {
    padding: 15px;
}

td:not(:first-of-type) {
	text-align: center;
}

tr td:not(:last-of-type) {
    border-right: 1px solid #EEEEEE;
}

.font-weight-700 {
    font-weight: 700;
}
.demo-btn {
    padding: 14px 0;
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
    color: #fff;
    width: 162px;
    margin: 0 auto;
}

/* fourth */
.fourth {
    padding: 118px 0;
    background: #512DA8;
    color: #fff;
}

.fourth .section-title {
    font-size: 48px;
    line-height: 59px;
    color: #fff;
    font-weight: 700;
}

.fourth__desc {
    margin-top: 25px;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
}

.fourth-btn {
    margin: 70px auto 0;
    width: 335px;
    font-size: 16px;
    line-height: 19px;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.fourth-btn::before {
    position: absolute;
    content: '';
    background: url('../img/arrow-icon.png') no-repeat;
    width: 46px;
    height: 102px;
    top: -25px;
    left: -62px;
}

/* footer */
.footer {
    padding: 35px 0;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}
.footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__link {
    color: #222;
    border-bottom: 1px solid #fff;
    transition: border-bottom .5s ease;
}
.footer__link:hover {
    border-bottom: 1px solid #222;
    transition: border-bottom .5s ease;
}


/* Responsive */
/* L: 992px - 1199px */
@media (max-width: 1199px) {
	.container {
		max-width: 960px;
	}
    .first-title {
        font-size: 54px;
        line-height: 72px;
    }
    .first-desc {
        font-size: 18px;
        line-height: 28px;
        margin-top: 50px;
    }
    .advantage {
        width: 220px;
        height: 380px;
    }
    .advantage__icon {
        width: 90px;
    }
    .advantage__title {
        font-size: 26px;
        line-height: 36px;
    }
    .advantage__text {
        font-size: 15px;
        line-height: 23px;
    }
    .advantage:nth-child(n+1):nth-child(-n+4) {
        margin-bottom: 40px;
    }
    td:first-of-type {
        padding: 15px 90px 15px 15px;
    }
    th:first-of-type {
        padding-left: 15px;
    }
    .fourth {
        padding: 96px 0;
    }
    .fourth .section-title {
        font-size: 42px;
        line-height: 58px;
    }
    .fourth__desc {
        font-size: 22px;
        line-height: 32px;
    }
    .second {
        padding: 100px 0 80px;
    }
    .third {
        padding: 80px 0 100px;
    }
    .tariff-table {
        margin: 50px auto;
    }
    
}
/* Tablet: 576px - 991px */
@media (max-width: 991px) {
	.container {
		max-width: 540px;
	}
    .first {
        padding: 70px 0 50px;
        background: url(../img/bg2.png) no-repeat top center / cover;
    }
    .first-title {
        font-size: 32px;
        line-height: 44px;
    }
    .first-desc {
        font-size: 16px;
        line-height: 26px;
        margin-top: 40px;
        padding: 0;
    }
    .first-btn {
        width: 210px;
        padding: 16px 0;
        margin: 60px auto 0;
        font-size: 16px;
    }
    .first-arrowdown {
        margin: 140px auto 0;
    }
    .second {
        padding: 50px 0;
    }
    .section-title {
        font-size: 28px;
        line-height: 38px;
    }
    .advantages {
        margin-top: 60px;
    }
    .advantage {
        width: 240px;
        height: 340px;
    }
    .advantage__icon {
        width: 70px;
    }
    .advantage__title {
        font-size: 22px;
        line-height: 30px;
    }
    .advantage__text {
        font-size: 14px;
        line-height: 22px;
        padding: 0 10px;
        margin-top: 20px;
    }
    .advantage:nth-child(n+1):nth-child(-n+6) {
        margin-bottom: 40px;
    }
    .tariff {
        overflow-x: auto;
    }
    .third {
        padding: 50px 0;
    }
    .tariff-table {
        margin: 30px auto;
    }
    th {
        font-size: 18px;
        line-height: 24px;
        padding: 30px 0;
    }
    .fourth {
        padding: 60px 0;
    }
    .fourth .section-title {
        font-size: 32px;
        line-height: 48px;
    }
    .fourth__desc {
        font-size: 18px;
        line-height: 26px;
    }
    .mobile-inline {
        display: inline;
    }
    .footer {
        padding: 30px 0;
        font-size: 14px;
        line-height: 24px;
    }
    
}
/* Phone: 0 (320px) - 575px */
@media (max-width: 575px) {
	.container {
		width: 320px;
		padding: 0 5px;
	}
    .first {
        padding: 40px 0;
    }
    .first-title {
        font-size: 24px;
        line-height: 32px;
    }
    .first-desc {
        font-size: 14px;
        line-height: 22px;
        margin-top: 30px;
    }
    .first-btn {
        width: 200px;
        padding: 14px 0;
        margin: 40px auto 0;
        font-size: 14px;
    }
    .first-arrowdown {
        margin: 70px auto 0;
        width: 25px;
    }
    .first-arrowdown svg {
        width: 25px;
    }
    .section-title {
        font-size: 22px;
        line-height: 28px;
    }
    .advantage {
        min-width: 240px;
        margin-right: 30px;
        margin: 0 30px 20px 0;
    }
    .advantages {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .advantage:nth-child(n+1):nth-child(-n+6) {
        margin-bottom: 0;
    }
    .advantage:first-of-type {
        margin-left: 10px;
    }
    .advantage__title {
        font-size: 20px;
        line-height: 26px;
    }
    tr {
        font-size: 14px;
        line-height: 20px;
    }
    .tariff-table {
        width: 720px;
        margin: 40px auto;
    }
    
    .column__name {
        width:250px;
    }
    
    .column__basic,
    .column__pro,
    .column__corporate {
        width: 173px;
    }
    td:first-of-type {
        padding: 15px 45px 15px 15px;
    }
    .fourth {
        padding: 55px 0;
    }
    .fourth .section-title {
        font-size: 28px;
        line-height: 38px;
    }
    .fourth__desc {
        font-size: 16px;
        line-height: 24px;
    }
    .fourth-btn {
        margin: 60px auto 0;
        width: 270px;
    }
    .fourth-btn::before {
        top: -81px;
        left: 0;
        transform: rotate(80deg);
    }
    .footer .wrap {
        flex-direction: column;
    }
    .footer__link {
        margin-top: 15px;
    }


    



}
