* {
	box-sizing: border-box;
	--red-color: #FF4040;
	--black-color: #273444;
    --yellow-color: #ffdd00;
    --brown-color: #453C1B;
}

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

a {
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* title */

.title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
}

::selection {
	background-color: var(--brown-color);
	color: #FFFFFF;
}

html,
body {
	height: 100%;
	font-size: 10px;
	font-family: 'Inter', sans-serif;
	color: var(--black-color);
}

.main {
	flex: 1 1 auto;
}

/* buttons */

.button-type-2,
.button-type-1 {
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    transition: .3s;
    background-color: var(--brown-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-type-1:hover {
    background: transparent;
    color: #273444;
}

.button-type-1:hover span {
    color: var(--black-color);
    font-size: 15px;
}

.button-type-2 span,
.button-type-1 span{
    color: white;
    font-size: 14px;
    font-weight: 300;
    transition: .3s;
}

.button-type-2 {
    background-color: transparent;
}

.button-type-2:hover {
    background: var(--brown-color);
}

.button-type-2 span {
    color: var(--black-color);
    font-size: 15px;
}

.button-type-2:hover span {
    color: #FFFFFF;
    font-size: 14px;
}


/* popup and price list*/


.price-list-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.price-list-button {
    height: 50px;
    border-radius: 20px;
}

.price-list-button:not(:last-child) {
    margin: 2rem 0;
}

#thanks,
#price-list,
#popup {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 320;
    transition: .3s;
    visibility: hidden;
    overflow: scroll;
    opacity: 0;
}

#thanks.thanks-active,
#price-list.price-active,
#popup.popup-active {
    visibility: visible;
    transition: .3s;
    opacity: 1;

}

.thanks-active .thanks-container,
.price-active .price-list-container,
.popup-active .popup-container {
    transform: translate(-50%, -50%) !important;
    transition: .3s;
}

.thanks-container,
.price-list-container,
.popup-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -80%);
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    width: 370px;
    transition: .3s;
}

.thanks-title {
    font-size: 20px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.thanks-description {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 2rem;
}

.thanks-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#thanks-button {
    width: 200px;
    height: 40px;
    border-radius: 30px;
}


#price-list-close,
#popup-close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

#price-list-close::before,
#price-list-close::after,
#popup-close::before,
#popup-close::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--red-color);
    top: 50%;
}

#price-list-close::before,
#popup-close::before {
    transform: rotate(-45deg);
}

#price-list-close::after,
#popup-close::after {
    transform: rotate(45deg);  
}

.popup-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.popup-description {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;
}

.popup-form-group {
    position: relative;
    margin: 4rem 0;
}

.popup-form-input {
    position: relative;
    z-index: 1;
    width: 100%;
	padding-bottom: 10px;
	padding-left: 40px;
	border: none;
	border-bottom: 2px solid #C5CCD3;
	background-color: transparent;
	outline: none;
	transition: 0.3s;
	font-size: 16px;
	line-height: 19px;
	color: var(--black-color);
	font-weight: 300;
	transition: 0.3s;
}

.popup-form-input:focus {
	border-bottom: 2px solid var(--yellow-color);
}

.popup-form-input:focus~.popup-label,
.popup-form-input:not(:placeholder-shown)~.popup-label {
	top: -20px;
	font-size: 12px;
	left: 0;
}

.popup-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    left: -5px;
    top: -10px;
}

.popup-icon-user {
    background: url(../img/user.svg) center no-repeat;
}

.popup-icon-phone {
    background: url(../img/phone-form.svg) center no-repeat;
}

.popup-icon-email {
    background: url(../img/email-form.svg) center no-repeat;
}

.popup-icon-text {
    background: url(../img/text-form.svg) center no-repeat;
    background-size: 18px;
}

.popup-label {
    position: absolute;
	top: 0px;
	left: 40px;
	z-index: 0;
	font-size: 16px;
	line-height: 19px;
	color: #666E78;
	font-weight: 300;
	transition: 0.3s;
}

.popup-form-submit{
    width: 100%;
    height: 50px;
    border-radius: 20px;
    outline: none;
    border: none;    
}

.popup-form-checkbox {
    margin-top: 1.5rem;
}

.checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.checkbox+label {
	display: inline-flex;
	user-select: none;
}

.checkbox+label::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid var(--red-color);
	border-radius: 0.25em;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
}

.checkbox:checked+label::before {
	border-color: var(--yellow-color);
	background-color: #FFFFFF;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.label-checkbox {
	font-size: 11px;
	line-height: 13px;
	color: #273444;
	cursor: pointer;
}

.label-checkbox a {
	margin-left: 4px;
	text-decoration: underline;
	color: var(--brown-color);
}

/* container */

.container {
	width: 1200px;
	margin: auto;
}

.container:before,
.container:after {
	content: " ";
	display: table;
}

/* header */

#header {
    position: absolute;
    width: 100%;
    top: 0;
    background-color: transparent;
    z-index: 289;
    padding: 30px 0;
    transition: .3s;
}

#header.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: .3s;
} 

.header-burger {
    display: none;
}

.nav,
.navbar {
    display: flex;
    align-items: center;
}

.navbar {
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    width: 300px;
    font-size: 12px;
    align-items: center;
    color: var(--black-color);
    font-weight: 300;
}


.navbar-logo img{
    width: 100px;
    margin-right: 1rem;
}

.nav li span{
    position: relative;
	display: block;
	padding-bottom: 1rem;
    margin-top: 1rem;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 300;
}

.nav li.nav-active span {
	font-weight: 500;
}

.nav li:not(:last-child) {
    margin-right: 2rem;
}


.nav li span::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--red-color);
	visibility: hidden;
	transform: scaleX(0);
	transition: all .3s ease-in-out 0s;
}

.nav li:hover span::before,
.nav li.nav-active span::before {
	transform: scaleX(1);
	visibility: visible;
}

.nav .navbar-contact-row li ,
.nav .navbar-contact-row li span{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
}

.icon-download {
    width: 10px;
    height: 10px;
    background: url(../img/icon-download.svg) center no-repeat;
    background-size: 100%;
    margin-left: 0.5rem;
}

.nav .navbar-contact-row li {
    margin-right: 0;
    margin-bottom: 0 !important;
}

.nav .navbar-contact-row li span{
    font-size: 20px;
}

.nav .navbar-contact-row li span span {
    font-weight: 800;
}

@media only screen and (max-height: 830px) and (max-width: 850px){
    .nav li span {
        font-size: 20px !important;
    }

    .nav li:not(:last-child) {
        margin-bottom: 1rem !important;
    }
}

@media only screen and (max-height: 660px) and (max-width: 850px) {
    .nav {
        justify-content: end !important;
    }
}

@media only screen and (max-height: 600px) and (max-width: 850px) {
    .show-menu {
        position: absolute !important;
        height: 600px !important;
    }
}

.navbar-contact {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    background-color: var(--brown-color);
    color: #FFFFFF; 
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    font-weight: 300;
}

.navbar-contact-row {
    display: none;
}

#navbar-contact {
    position: relative;
    padding-right: 10px;
}

#navbar-contact::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 5px;
    width: 7px;
    height: 7px;
    border: 1px solid #FFFFFF;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.nav-contact {
	position: absolute;
	background: #FFFFFF;
	top: 60px;
	right: 0px;
	visibility: hidden;
	transition: .3s;
	height: 0%;
	width: 300px;
	display: inline-block;
	overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    cursor: default;
}

.nav-contact-active,
.nav-contact:focus,
.nav-contact:hover,
.navbar-contact:hover .nav-contact {
    transition: .3s;
	visibility: visible;
	height: 250px;
}

.nav-contact-list {
    padding: 20px;
}

.nav-contact-list li:not(:last-child) {
    margin-bottom: 2rem;
}

.nav-contact-list li span{
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
    font-size: 14px;
}

.nav-contact-list .nav-contact-text {
    cursor: pointer;
    color: var(--black-color);
    font-weight: 500;
}


/* prev */ 

.prev {
    width: 100%;
    height: 250px;
    background: linear-gradient(107.68deg, var(--yellow-color) 0%, var(--red-color) 297.81%);
}

.prev-container {
    text-align: center;
    padding-top: 130px;
}

.prev-discription a {
    color: var(--black-color);
}

.prev-discription {
    color: var(--black-color);
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 1rem;
}

.prev-title {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: var(--brown-color);
    display: flex;
    justify-content: center;
    letter-spacing: 2px;
}

/* banner */

.banner {
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(107.68deg, var(--yellow-color) 0%, var(--red-color) 297.81%);
}

@media only screen and (max-height: 730px) {
    .banner {
        height: 730px !important;
    }
}

@media only screen and (min-height: 780px) {
    .banner-container {
        margin-top: 200px !important;
    }
}

@media only screen and (min-height: 850px) {
    .banner-container {
        margin-top: 250px !important;
    }

    .banner-advantages {
        margin-top: 10rem !important;
    }
}

@media only screen and (min-height: 950px) {
    .banner {
        height: 950px !important;
    }
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-top: 120px;
}

.banner-title {
    font-size: 55px;
    color: var(--brown-color);
    font-weight: 900;
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 25px;
    line-height: 42px;
    font-weight: 300;
    margin-top: 0;
}

.banner-buttons {
    display: flex;
}

.banner-button {
    width: 220px;
    height: 50px;
    border-radius: 20px;
}

.banner-button:first-child {
    margin-right: 4rem;
}


.banner-image img{
    width: 450px;
}

.banner-advantages {
    margin-top: 4rem;
}

.banner-advantages-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.banner-advantages-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: 300px;
}

.banner-advantages-item span {
    font-size: 16px;
}

.banner-icon-verif {
    display: block;
    width: 25px;
    flex-shrink: 0;
    height: 25px;
    background: url(../img/verif.svg) center no-repeat;
    background-size: 100%;
    margin-right: 1rem;
}

/* products */

.products {
    padding: 70px 0 0 0;
}

.products-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 50px 0;
}

.products-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 340px;
    height: 300px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: .3s;
    padding: 30px;
    margin-bottom: 3rem;
}

.products-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145.44deg, #F8D964 0%, #FF4040 100%);
    border-radius: 30px;
    opacity: 0;
    transition: .3s;
    transform: scale(0);
    z-index: -1;
}

.products-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.products-item:hover {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
}

.products-item:hover .button-type-1 {
    background: transparent;
    color: #273444;
}

.products-button {
    margin-top: auto;
}

.products-name {
    max-width: 170px;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

.products-button {
    width: 200px;
    height: 50px;
    border-radius: 20px;
}

/* wokr */

.work {
    padding: 100px 0;
}

.work-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.work-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 330px;
    height: 400px;
    padding: 30px ;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.work-circle {
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 35px, 100% !important;
}

.work-icon-human {
    background: url(../img/human.svg) center no-repeat, linear-gradient(136.76deg, #FF4040 -3.28%, #F8D964 100%);
}

.work-icon-people {
    background: url(../img/people.svg) center no-repeat, linear-gradient(136.76deg, #FF4040 -3.28%, #F8D964 100%);
}

.work-icon-cell {
    background: url(../img/cell.svg) center no-repeat, linear-gradient(136.76deg, #FF4040 -3.28%, #F8D964 100%);
}

.work-item::after {
    content: '';
    position: absolute;
    top: 83px;
    width: 5px;
    height: 5px;
    background: #273444;
    transition: .3s;
    background: linear-gradient(136.76deg, #FF4040 -3.28%, #F8D964 100%);
    opacity: 0;
    border-radius: 30px;
    z-index: -1;
}

.work-item:hover::after {
    width: 330px;
    height: 400px;
    top: 0;
    opacity: 1;
}

.work-item:hover .wokr-title,
.work-item:hover .work-description {
    color: #FFFFFF;
}

.work-item:hover .work-icon-cell {
    background: url(../img/cell.svg) center no-repeat, transparent;
}

.work-item:hover .work-icon-people {
    background: url(../img/people.svg) center no-repeat, transparent;
}

.work-item:hover .work-icon-human {
    background: url(../img/human.svg) center no-repeat, transparent;
}

.wokr-title {
    text-align: center;
    font-weight: 900;
    color: var(--black-color);
    font-size: 22px;
    padding: 30px;
    transition: .3s;
}

.work-description {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    transition: .3s;
}

/* contact */

.contact {
    padding: 5rem 0;
}

.contact-list {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 370px;
    padding: 20px;
    margin: 2rem 0;
}

.contact-title {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 2rem;
}

.contact-title span{
    font-size: 20px;
    font-weight: 800;
}

.contact-title span:last-child {
    margin-left: 2rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 100%;
}
.contact-icon-location {
    background: url(../img/location.svg) center no-repeat, linear-gradient(137.7deg, #F8D964 -5.17%, #FF4040 100%);
}

.contact-icon-phone {
    background: url(../img/phone.svg) center no-repeat, linear-gradient(137.7deg, #F8D964 -5.17%, #FF4040 100%);
}

.contact-icon-email {
    background: url(../img/email.svg) center no-repeat, linear-gradient(137.7deg, #F8D964 -5.17%, #FF4040 100%);
}

.contact-subtitle a,
.contact-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--black-color);
}

.contact-map {
    padding: 0 40px;
}

.contact-map iframe{
    border-radius: 30px;
}

/* advantages */


.advantages {
    padding: 100px 0;
}

.advantages-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 80px 0;
}

.advantages-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 320px;
    padding: 10px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    transition: .3s;
    margin-bottom: 4rem !important;
}

.advantages-item:hover {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25); 
}

.advantages-text {
    text-align: center;
    margin-top: 3rem;
    font-size: 16px;
    font-weight: 300;
}

.advantages-text span {
    font-weight: 800;
}

.advantages-button {
    width: 250px;
    height: 50px;
    border-radius: 20px;
    margin: 0 auto;
}

/* consultation */

.consultation {
    padding: 100px 0;
}
.consultation-container {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 50px;
    border-radius: 20px;
}

.consultation-icon {
    position: absolute;
    left: 70px;
    top: 50%;
    /* background: #FFFFFF; */
    transform: translate(0,-50%);
    width: 100px;
}

.consultation-text {
    margin-left: 250px;
    margin-right: 200px;
    font-size: 16px;
    font-weight: 300;
}

.consultation-button {
    flex-shrink: 0;
    width: 250px;
    height: 50px;
    border-radius: 20px;
}

/* how */

.how-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px;
}

.how-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 200px;
    padding: 30px;
    margin-bottom: 3rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
}

.how-number {
    position: relative;
    font-size: 150px;
    font-weight: 300;
    margin-right: 2rem;
    background: linear-gradient(172.28deg, #F8D964 0%, #FF4040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.how-text {
    font-size: 16px;
    font-weight: 300;
}

/* course */

.courses {
    padding-bottom: 100px;
}

.courses-wrapper {
    display: flex;
    margin: 50px auto;
    padding: 30px;
    width: 800px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    transition: .3s;
}

.courses-table {
    width: 100%;
}

.courses-table td {
    font-size: 16px;
    font-weight: 300;
}

.courses-wrapper:hover {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
}

.courses-button {
    border: none;
    background: transparent;
    outline: none;
    text-decoration: underline;
    font-weight: 300;
    cursor: pointer;
}

.courses-button:hover {
    text-decoration: none;
    color: var(--yellow-color);
}

.courses-table td:nth-child(1) {
    width: 60% !important;
}

.courses-table td:nth-child(2) {
    text-align: center;
    font-weight: 400;
}

.courses-table td:last-child {
    text-align: right;
}

.courses-list {
    min-height: 100%;
    z-index: 1;
}

.courses-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
}

.courses-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.courses-item:not(:last-child) {
    margin-bottom: 2rem;
}

.courses-content {
    margin: 10px;
}

.courses-button-1 {
    width: 150px;
    height: 30px;
    border-radius: 10px;
}

.courses-button-2 {
    width: 250px;
    height: 50px;
    margin: 0 auto;
    border-radius: 20px;
}

.courses-description span {
    font-weight: 600;
}

.courses-description {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.courses-programm-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.courses-programm-item:not(:last-child) {
    margin-bottom: 1rem;
}

.courses-programm-item span {
    margin-right: 1rem;
    width: 15px;
    height: 15px;
}

.courses-programm-list {
    padding: 10px 0;
}

/* info */

.info {
    padding: 0 0 100px 0;
}

.info-list {
    margin:0 auto;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    width: 900px;
    margin-top: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.info-title {
    font-size: 23px;
    font-weight: 800;
}

.info-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-description {
    font-size: 14px;
    padding: 20px 0;
}

.info-description span{
    font-weight: 600;
}

.info-row {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.info-row .banner-icon-verif{
    width: 15px;
    height: 15px;
}


/* tabs */


.tabs-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.tabs-item  {
    cursor: pointer;
    height: 100px;
    width: 150px;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-item {
    position: relative;
    background: rgba(0, 0, 0, 0.04);
    display: none;
    padding: 50px;
    border-radius: 20px;
}

.content-item::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 100px;
    top: -100px;
    z-index: -1;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.content-item:nth-child(1)::before {
    left: 125px;
}

.content-item:nth-child(2)::before {
    left: 525px;
}

.content-item:nth-child(3)::before {
    left: 925px;
}


.content-list{ 
    position: relative;
}

.content-item:target {
    display: block;
    animation: name .3s 1 ease-in-out;
}

.content-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 2rem 0 0 0;
}

@keyframes name {
    from {
        opacity: 0;
        transform: scale(0) translate(-50%, -50%);
    }
    to {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

.content-title {
    font-size: 35px;
    font-weight: 800;
    color: var(--brown-color);
}

.content-text {
    font-size: 16px;
    font-weight: 300;
    padding: 2rem 0;
    text-align: justify;
    color: #000000;
}

.content-image {
    width: 800px;
}

.content-text span {
    font-weight: 600;
}

.content-table {
    padding: 20px 0;
}

.content-text strong{
    font-weight: 600;
}

.content-table th {
    background-color: var(--yellow-color);
    color: #000000;
    font-size: 16px;
    padding: 10px;
}

.content-table td {
    font-size: 14px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.content-flex {
    display: flex;
    align-items: center;
}

.tabs-item {
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tabs-item:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.tabs-item span {
    font-weight: 300;
    font-size: 16px;
    color: var(--black-color);
}

.content-element {
    position: relative;
    margin-left: 2rem;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
}

.content-element::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--yellow-color);
    border-radius: 100%;
    left: -10px;
    top: 8px;
    transform: translate(0,-50%);
}




/* footer */

/* .footer {
    height: 100px;
    background: linear-gradient(107.68deg, var(--yellow-color) 0%, var(--red-color) 297.81%);
} */
