File: /var/www/linde-ai/html/styles/partials/_contact.scss
.contact-page {
padding: 200px 10px 120px;
&__subtitle {
&:not(:last-child) {
margin-bottom: 30px;
}
}
&__form {
opacity: 1;
visibility: visible;
transition: all 0.2s;
}
&__success {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
visibility: hidden;
transition: all 0.2s;
}
&__form-wrapper {
background: var(--color-white);
padding: 30px 30px 0px;
border: 1px solid var(--color-3);
border-radius: 10px;
box-shadow: 0px 0px 20px rgba(0, 37, 63, 0.1);
position: relative;
&:after {
content: asset("icon", "envelop-icon2.svg");
position: absolute;
width: 80px;
height: 80px;
top: -60px;
left: 10%;
background-size: contain;
z-index: -1;
}
&--success {
.contact-page__form {
opacity: 0;
visibility: hidden;
}
.contact-page__success {
opacity: 1;
visibility: visible;
}
}
}
&__form-icon {
position: absolute;
&--top-right {
top: -30px;
right: -35px;
}
&--bottom-left {
bottom: -30px;
left: -20px;
}
&--bottom-right {
bottom: -20px;
right: -25px;
}
&--success {
width: 60px;
height: 60px;
margin-bottom: 20px;
}
}
}