File: /var/www/linde-elearning/styles/styles.css
body {
font-family: var(--font-stack);
background-color: var(--color-3);
margin: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: 100vh;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
color: inherit;
}
main {
padding-top: 110px;
}
:root {
--color-1: #002c49;
--color-1-rgb: 0, 44, 73;
--color-2: #005691;
--color-2-rgb: 0, 86, 145;
--color-3: #e3ecf2;
--color-3-rgb: 227, 236, 242;
--color-4: #f3f3f3;
--color-4-rgb: 243, 243, 243;
--color-5: #ecf1f6;
--color-5-rgb: 236, 241, 246;
--color-6: #76abcd;
--color-6-rgb: 118, 171, 205;
--color-white: #ffffff;
--color-white-rgb: 255, 255, 255;
--color-black: #35393a;
--color-black-rgb: 53, 57, 58;
--color-error: #d70000;
--color-error-rgb: 215, 0, 0;
--font-stack: "Roboto", Sans-Serif;
}
h1, .text-h1 {
font-size: 54px;
font-weight: 400;
line-height: calc(65/54);
color: var(--color-white);
}
h2, .text-h2 {
font-size: 40px;
font-weight: 400;
line-height: calc(48/40);
color: var(--color-2);
}
h3, .text-h3 {
font-size: 20px;
font-weight: 400;
line-height: calc(25/20);
color: var(--color-white);
}
h4, .text-h4 {
font-size: 13px;
font-weight: 700;
line-height: calc(25/13);
color: var(--color-black);
}
p, .text-p {
font-size: 27px;
font-weight: 300;
line-height: calc(35/27);
color: var(--color-white);
}
.btn {
color: var(--color-white);
background-color: var(--color-2);
border-radius: 100px;
border: 2px solid var(--color-2);
padding: 10px 25px;
font-weight: 500;
font-size: 18px;
}
.btn:hover {
color: var(--color-white);
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.course-card {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.course-card__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
overflow: hidden;
border-radius: 5px;
-webkit-transition: 0.2s ease-in-out all;
transition: 0.2s ease-in-out all;
background-color: var(--color-5);
height: 100%;
}
.course-card__link:hover {
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
outline: 0;
background-color: var(--color-4);
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.course-card__header {
text-align: center;
padding: 35px 20px 15px 20px;
}
.course-card__subtitle {
opacity: 0.6;
margin-bottom: 10px;
}
.course-card__title {
margin-bottom: 15px;
color: var(--color-2);
}
.course-card__image {
position: relative;
overflow: hidden;
margin-top: auto;
}
.course-card__image img {
width: 100%;
}
.course-card__image-overlay {
position: absolute;
padding: 10px 20px;
border-radius: 5px;
background-color: var(--color-2);
bottom: 10px;
left: 10px;
font-size: 16px;
font-weight: 700;
line-height: calc(25 / 16);
}
.card-margin {
margin-bottom: 35px;
}
.cookie {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: var(--color-white);
z-index: 200;
padding: 15px 0;
}
.cookie h2 {
font-size: 16px;
line-height: 1.5;
font-weight: 600;
margin-bottom: 10px;
text-align: left;
text-transform: none;
}
.cookie p {
font-size: 14px;
line-height: 1.5;
color: var(--color-1);
font-weight: 400;
margin-bottom: 15px;
}
.cookie a {
color: #4cbcea;
}
.cookie .btn-col {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.cookie .inline-buttons {
margin-top: auto;
}
.cookie .inline-buttons .btn-cookie {
padding: 15px 40px;
border: none;
border-radius: 10px;
font-weight: 400;
font-size: 18px;
line-height: 1;
text-decoration: none;
color: var(--color-2);
cursor: pointer;
text-align: center;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out;
position: relative;
}
.cookie .inline-buttons .btn-cookie:focus, .cookie .inline-buttons .btn-cookie:active {
outline: none;
}
.cookie .inline-buttons .btn-cookie--gradient-small {
font-size: 16px;
background: -webkit-gradient(linear, left top, right top, from(#005691), color-stop(100%, #00a0e1), to(#4cbcea));
background: linear-gradient(90deg, #005691 0%, #00a0e1 100%, #4cbcea 100%);
padding: 10px 25px;
color: var(--color-white);
-webkit-box-shadow: none;
box-shadow: none;
}
.cookie .inline-buttons .btn-cookie--gradient-small:hover {
-webkit-box-shadow: 0px 0px 10px rgba(23, 189, 241, 0.5);
box-shadow: 0px 0px 10px rgba(23, 189, 241, 0.5);
}
.cookie .inline-buttons .btn-cookie:last-of-type {
margin-right: 0;
}
.cookie .inline-buttons .btn-cookie--hollow {
padding: 12px 25px;
background: transparent;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='Gradient' x1='0' x2='100' y1='0' y2='0' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23005691' offset='0'/%3E%3Cstop stop-color='%234CBCEA' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' width='100%25' height='100%25' style='height:calc(100%25 - 0px);width:calc(100%25 - 0px)' rx='10' ry='10' stroke-width='4px' fill='transparent' stroke='url(%23Gradient)'/%3E%3C/svg%3E");
}
.cookie .inline-buttons .btn-cookie--hollow:before {
content: "";
opacity: 0;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
border-radius: 10px;
background-image: -webkit-gradient(linear, left top, right top, from(#005691), color-stop(100%, #00a0e1), to(#4cbcea));
background-image: linear-gradient(90deg, #005691 0%, #00a0e1 100%, #4cbcea 100%);
-webkit-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out;
}
.cookie .inline-buttons .btn-cookie--hollow:hover:before {
opacity: 1;
}
.cookie .inline-buttons .btn-cookie--hollow.small {
font-size: 16px;
padding: 10px 25px;
}
.cookie .inline-buttons .btn-cookie--hollow.small:hover {
-webkit-box-shadow: 0px 0px 10px rgba(23, 189, 241, 0.5);
box-shadow: 0px 0px 10px rgba(23, 189, 241, 0.5);
}
.cookie .inline-buttons .btn-cookie--hollow.small:hover:before {
opacity: 0;
}
.form {
max-width: 740px;
margin: auto;
background-color: var(--color-white);
padding: 50px;
border-radius: 10px;
position: relative;
}
.form__title {
text-align: center;
font-size: 30px;
line-height: calc(48 / 30);
margin: 0 auto 10px auto;
max-width: 500px;
}
.form__subtitle {
text-align: center;
margin-bottom: 45px;
font-size: 18px;
}
.form__wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
width: 100%;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.form__group {
width: 100%;
position: relative;
margin-bottom: 30px;
padding-right: 20px;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
}
.form__group:nth-child(2n) {
padding-right: 0;
}
.form__group label {
display: block;
color: #00a0e1;
margin-bottom: 5px;
font-size: 14px;
font-weight: 400;
text-align: left;
}
.form__group input,
.form__group select {
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
background: #d9e6ef;
padding: 10px 15px;
font-size: 16px;
line-height: calc(24 / 16);
color: var(--color-2);
width: 100%;
border: 1px solid transparent;
height: 45px;
border-radius: 5px;
}
.form__group input:focus,
.form__group select:focus {
border: 1px solid #4cbcea;
outline: none;
}
.form__group-checkbox {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.form__group-checkbox label {
cursor: pointer;
font-size: 16px;
color: var(--color-2);
padding-left: 10px;
}
.form__group-checkbox label a {
color: #4cbcea;
}
.form__group-checkbox input {
width: auto;
cursor: pointer;
height: 15px;
}
.form__group textarea {
border-radius: 5px;
width: 100%;
background: #d9e6ef;
padding: 10px 15px;
border: 1px solid transparent;
font-size: 16px;
line-height: calc(25 / 16);
color: var(--color-2);
max-height: 135px;
}
.form__group #status option:first-of-type,
.form__group #country option:first-of-type {
display: none;
}
.form .btn-form {
border: none;
color: #f3f3f3;
cursor: pointer;
border-radius: 10px;
text-align: center;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center;
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
line-height: 1;
font-weight: 400;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
padding: 15px 40px;
position: relative;
text-decoration: none;
font-size: 18px;
}
.form .btn-form--gradient {
background: -webkit-gradient(linear, left top, right top, from(#005691), color-stop(100%, #00a0e1), color-stop(0, #4cbcea));
background: linear-gradient(90deg, #005691, #00a0e1 100%, #4cbcea 0);
color: #f3f3f3;
-webkit-box-shadow: none;
box-shadow: none;
}
.form .full-width {
width: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
padding-right: 0;
}
.footer {
background-color: var(--color-1);
margin-top: auto;
padding-top: 35px;
padding-bottom: 20px;
}
.footer__wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.footer__links {
list-style: none;
padding: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
@media screen and (max-width: 425px) {
.footer__links {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
}
.footer__link {
margin-right: 30px;
opacity: 0.8;
font-size: 14px;
color: var(--color-4);
}
.footer__copyright {
font-size: 16px;
font-weight: 400;
line-height: calc(25 / 16);
color: var(--color-4);
opacity: 0.8;
}
.header {
background-color: var(--color-1);
padding: 25px 0;
position: fixed;
width: 100%;
z-index: 10;
}
.header__logo {
max-height: 60px;
}
.modal {
display: none;
position: fixed;
width: 100%;
height: 100%;
z-index: 3000;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: 50px 15px;
background: rgba(0, 29, 49, 0.7);
}
.modal--visible {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.modal-close {
position: absolute;
right: 50px;
cursor: pointer;
}
.linear-background {
position: relative;
}
.linear-background::before {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background-color: var(--color-3);
-webkit-clip-path: ellipse(60% 75% at 50% 120%);
clip-path: ellipse(60% 75% at 50% 120%);
}
.linear-background::after {
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(255, 255, 255, 0)), color-stop(90%, rgba(0, 86, 145, 0.1)), color-stop(110%, rgba(0, 86, 145, 0.2)));
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgba(0, 86, 145, 0.1) 90%, rgba(0, 86, 145, 0.2) 110%);
content: "";
z-index: -1;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: lowercase;
}
.text-capitalize::first-letter {
text-transform: capitalize;
}
.text-left {
text-align: left !important;
}
.text-center {
text-align: center !important;
}
.text-right {
text-align: right !important;
}
.course__cover {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 145px 0;
}
.course__cover--plant-safety {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 29, 49, 0.64)), to(rgba(0, 29, 49, 0.64))), url("../assets/images/courses/course-cover-plant-safety.jpg");
background-image: linear-gradient(rgba(0, 29, 49, 0.64), rgba(0, 29, 49, 0.64)), url("../assets/images/courses/course-cover-plant-safety.jpg");
}
.course__cover--heat-exchanger-design {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 29, 49, 0.64)), to(rgba(0, 29, 49, 0.64))), url("../assets/images/courses/course-heat-exchanger-design.jpg");
background-image: linear-gradient(rgba(0, 29, 49, 0.64), rgba(0, 29, 49, 0.64)), url("../assets/images/courses/course-heat-exchanger-design.jpg");
}
.course__cover--economics-of-industrial-plants {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 29, 49, 0.64)), to(rgba(0, 29, 49, 0.64))), url("../assets/images/courses/course-economics-of-industrial-plants.jpg");
background-image: linear-gradient(rgba(0, 29, 49, 0.64), rgba(0, 29, 49, 0.64)), url("../assets/images/courses/course-economics-of-industrial-plants.jpg");
}
.course__cover--process-safety-engineering {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 29, 49, 0.64)), to(rgba(0, 29, 49, 0.64))), url("../assets/images/courses/course-process-safety-engineering.jpg");
background-image: linear-gradient(rgba(0, 29, 49, 0.64), rgba(0, 29, 49, 0.64)), url("../assets/images/courses/course-process-safety-engineering.jpg");
}
.course__cover--production-engineering {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 29, 49, 0.64)), to(rgba(0, 29, 49, 0.64))), url("../assets/images/courses/course-production-engineering.jpg");
background-image: linear-gradient(rgba(0, 29, 49, 0.64), rgba(0, 29, 49, 0.64)), url("../assets/images/courses/course-production-engineering.jpg");
}
.course__cover--process-engineering {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 29, 49, 0.64)), to(rgba(0, 29, 49, 0.64))), url("../assets/images/courses/course-process-engineering.jpg");
background-image: linear-gradient(rgba(0, 29, 49, 0.64), rgba(0, 29, 49, 0.64)), url("../assets/images/courses/course-process-engineering.jpg");
}
.course__title {
max-width: 560px;
margin: auto;
}
.course__text {
margin-top: 30px;
margin-bottom: 20px;
font-family: Roboto;
font-size: 18px;
line-height: calc(22 / 18);
font-weight: 300;
color: var(--color-4);
}
.course__introduction {
padding: 75px 0;
}
.course__introduction-about {
max-width: 800px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin: auto;
}
.course__introduction-headline {
margin-bottom: 45px;
}
.course__introduction-text {
color: var(--color-2);
font-family: Calibri, sans-serif;
line-height: calc(40 / 27);
padding-bottom: 80px;
}
.course__introduction-title {
font-size: 18px;
line-height: calc(25 / 18);
font-weight: 400;
color: var(--color-2);
margin-bottom: 20px;
}
.course__introduction-subtitle {
font-weight: 400;
color: var(--color-2);
font-family: Calibri, sans-serif;
}
@media screen and (max-width: 768px) {
.course__introduction-subtitle {
margin-bottom: 100px;
}
}
.course__introduction-prerequisites {
margin-top: 130px;
padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
.course__introduction-prerequisites {
margin-top: 50px;
}
}
.course__corriculum {
margin-bottom: 45px;
}
.course__corriculum-headline {
margin-bottom: 45px;
}
.course__corriculum-items {
max-width: 800px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin: auto;
}
.course__corriculum-dropdown {
padding: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
background-color: rgba(118, 171, 205, 0.1);
border-radius: 5px;
margin-bottom: 5px;
}
.course__corriculum-dropdown--active {
background-color: rgba(var(--color-6-rgb), 0.3);
}
.course__corriculum-dropdown .dropdown {
margin-left: 45px;
overflow: hidden;
-webkit-transition: 0.2s all ease;
transition: 0.2s all ease;
height: 0;
}
.course__corriculum-dropdown .dropdown__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 25px;
}
.course__corriculum-dropdown .dropdown__item:first-child {
margin-top: 40px;
}
.course__corriculum-dropdown .dropdown__text {
font-size: 18px;
line-height: calc(18 / 18);
color: var(--color-black);
margin-bottom: 0;
margin-left: 20px;
text-align: left;
}
.course__corriculum-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
text-align: left;
}
.course__corriculum-number {
font-size: 18px;
line-height: calc(18 / 18);
font-weight: 400;
font-family: Roboto;
}
.course__corriculum-title {
font-weight: 400;
font-size: 24px;
line-height: calc(29 / 24);
font-family: Roboto;
margin: 0;
padding-left: 40px;
color: var(--color-black);
}
.course__corriculum-arrow {
margin-left: auto;
position: relative;
}
.course__corriculum-arrow::after, .course__corriculum-arrow::before {
-webkit-transition: all 0.25s ease;
transition: all 0.25s ease;
position: absolute;
bottom: -5px;
width: 3px;
height: 9px;
background-color: #76abcd;
content: "";
}
.course__corriculum-arrow::after {
-webkit-transform: translate(-2px, 0) rotate(-45deg);
transform: translate(-2px, 0) rotate(-45deg);
}
.course__corriculum-arrow::before {
-webkit-transform: translate(2px, 0) rotate(45deg);
transform: translate(2px, 0) rotate(45deg);
}
.course__corriculum-arrow--active::after {
-webkit-transform: translate(-2px, 0) rotate(45deg);
transform: translate(-2px, 0) rotate(45deg);
}
.course__corriculum-arrow--active::before {
-webkit-transform: translate(2px, 0) rotate(-45deg);
transform: translate(2px, 0) rotate(-45deg);
}
.course__value {
margin-top: 70px;
}
.course__value-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 35px;
}
.course__value-heading {
color: var(--color-2);
font-family: Calibri, sans-serif;
font-weight: 300;
}
.course__value-icon {
fill: var(--color-6);
}
.course__value-text {
padding-left: 10px;
font-family: Roboto;
font-size: 18px;
font-weight: 400;
line-height: calc(25 / 18);
color: var(--color-black);
margin: 0;
}
.course__items {
margin-top: 145px;
padding-bottom: 80px;
overflow: hidden;
}
.course__items-wrap {
margin-top: 45px;
padding-top: 80px;
padding-bottom: 60px;
position: relative;
}
.course__items-item {
margin-bottom: 35px;
}
.course__items-icon {
height: 50px;
margin-bottom: 15px;
}
.course__items-text {
max-width: 250px;
margin: auto;
color: var(--color-2);
}
@media screen and (max-width: 768px) {
.course__items-text {
max-width: 220px;
margin: auto;
}
}
.course__items-arrow-top {
position: absolute;
top: 0;
left: calc(50% - 315px);
}
@media screen and (max-width: 768px) {
.course__items-arrow-top {
-webkit-transform: scaleY(-1) rotateZ(-95deg);
transform: scaleY(-1) rotateZ(-95deg);
left: -5%;
top: 20%;
height: 110px;
}
}
.course__items-arrow-bottom {
position: absolute;
bottom: 0;
left: calc(50% + 115px);
}
@media screen and (max-width: 768px) {
.course__items-arrow-bottom {
-webkit-transform: scaleY(-1) rotateZ(-90deg);
transform: scaleY(-1) rotateZ(-90deg);
left: 65%;
bottom: 25%;
height: 110px;
}
}
.course__certificate {
padding: 70px 0;
}
.course__certificate-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
padding-right: 90px;
}
.course__certificate-title {
margin-bottom: 45px;
}
.course__certificate-text {
font-family: Calibri, sans-serif;
color: var(--color-2);
line-height: calc(40 / 27);
}
.course__certificate-image {
width: 100%;
border-radius: 5px;
}
.cookie-policy {
padding-top: 70px;
padding-bottom: 60px;
}
.cookie-policy__title {
color: var(--color-2);
margin: 20px 0;
font-size: 24px;
font-weight: 600;
line-height: calc(31 / 24);
}
.cookie-policy__subtitle {
margin-bottom: 20px;
color: var(--color-2);
font-size: 16px;
font-weight: 700;
line-height: calc(24 / 16);
}
.cookie-policy p {
color: var(--color-1);
font-size: 16px;
line-height: calc(24 / 16);
font-weight: 400;
margin-bottom: 20px;
}
.cookie-policy p a {
color: #4cbcea;
}
.cookie-policy__wrap table {
width: 100%;
}
.cookie-policy__wrap table,
.cookie-policy__wrap td {
border: 1px solid #00569138;
padding: 10px;
font-size: 16px;
line-height: calc(19 / 16);
color: #005691;
}
.cookie-policy__wrap td {
min-width: 160px;
}
.cookie-policy__table {
overflow-x: auto;
width: 100%;
}
.home__cover {
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 29, 49, 0.83)), to(rgba(0, 29, 49, 0.83))), url("../assets/images/cover-home.png");
background: linear-gradient(rgba(0, 29, 49, 0.83), rgba(0, 29, 49, 0.83)), url("../assets/images/cover-home.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 135px 0;
}
.home__cover-wrap {
max-width: 565px;
}
@media screen and (max-width: 768px) {
.home__cover-wrap {
max-width: 100%;
}
.home__cover h1 {
font-size: 43px;
}
}
.home__text {
font-family: Calibri, sans-serif;
}
.home__courses {
padding-top: 70px;
padding-bottom: 70px;
}
.home__courses-title {
margin-bottom: 70px;
text-align: center;
}
.home__goals {
padding-top: 70px;
padding-bottom: 75px;
font-size: 20px;
line-height: calc(24 / 20);
}
.home__goals-wrap {
padding: 75px 0;
margin: 60px 0;
position: relative;
}
.home__goals-title {
margin: 0 20px 50px 50px;
color: var(--color-2);
}
@media screen and (max-width: 768px) {
.home__goals-title {
max-width: 220px;
margin: auto;
}
}
.home__goals-icon {
height: 50px;
margin-bottom: 15px;
}
.home__goals-arrow-top {
position: absolute;
top: 0;
left: calc(50% - 315px);
}
@media screen and (max-width: 768px) {
.home__goals-arrow-top {
-webkit-transform: scaleY(-1) rotateZ(-95deg);
transform: scaleY(-1) rotateZ(-95deg);
left: 0;
top: 22%;
height: 110px;
}
}
.home__goals-arrow-bottom {
position: absolute;
bottom: 0;
left: calc(50% + 115px);
}
@media screen and (max-width: 768px) {
.home__goals-arrow-bottom {
-webkit-transform: scaleY(-1) rotateZ(-90deg);
transform: scaleY(-1) rotateZ(-90deg);
left: 66%;
bottom: 22%;
height: 110px;
}
}
.home__certificate {
margin-bottom: 70px;
}
.home__certificate-about {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
font-family: Calibri, sans-serif;
}
.home__certificate-title {
margin-bottom: 40px;
}
.home__certificate-text {
color: var(--color-2);
line-height: calc(40 / 27);
}
.home__certificate-image img {
width: 100%;
}
.legal-notice {
padding-top: 70px;
padding-bottom: 60px;
}
.legal-notice__title {
margin-bottom: 45px;
}
.legal-notice__wrap {
max-width: 800px;
margin: auto;
}
.legal-notice__content {
margin-bottom: 20px;
}
.legal-notice__content p {
margin: 0;
color: var(--color-1);
font-size: 18px;
line-height: calc(25 / 18);
font-weight: 400;
}
.sign-up {
padding-top: 100px;
}
.sign-up__wrap {
margin: auto;
max-width: 550px;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.sign-up__wrap img {
max-width: 150px;
width: 100%;
}
.sign-up__title {
margin-top: 50px;
margin-bottom: 10px;
color: var(--color-2);
font-size: 24px;
line-height: calc(36 / 24);
font-weight: bold;
}
.sign-up__subtitle {
font-size: 18px;
line-height: calc(27 / 18);
font-weight: normal;
}
.sign-up__subtitle a {
color: #4cbcea;
}
.terms-conditions {
padding-top: 70px;
padding-bottom: 60px;
}
.terms-conditions__title {
margin-bottom: 20px;
}
.terms-conditions__subtitle {
margin: 20px 0;
color: var(--color-2);
}
.terms-conditions__wrap h3, .terms-conditions__section h3 {
font-size: 18px;
font-weight: 700;
line-height: calc(27 / 18);
margin-bottom: 10px;
color: var(--color-2);
}
.terms-conditions__wrap p, .terms-conditions__section p {
font-size: 16px;
color: var(--color-2);
}
.terms-conditions__wrap ul,
.terms-conditions__wrap li, .terms-conditions__section ul,
.terms-conditions__section li {
color: var(--color-2);
}
.privacy-policy {
padding-top: 70px;
padding-bottom: 60px;
}
.privacy-policy__title {
color: var(--color-2);
margin: 20px 0;
font-size: 24px;
font-weight: 600;
line-height: calc(31 / 24);
}
.privacy-policy__subtitle {
color: var(--color-2);
margin-bottom: 10px;
font-size: 18px;
font-weight: 400;
line-height: calc(27 / 18);
}
.privacy-policy__wrap p {
color: var(--color-1);
font-size: 16px;
line-height: calc(24 / 16);
font-weight: 400;
margin-bottom: 20px;
}
.privacy-policy__wrap p a {
color: #007ab9;
}
.privacy-policy__wrap ul,
.privacy-policy__wrap li {
color: var(--color-1);
}
.privacy-policy__wrap ul a,
.privacy-policy__wrap li a {
color: #007ab9;
}
.privacy-policy__details {
margin-bottom: 20px;
}
.privacy-policy__details p {
margin: 0;
padding: 0;
}
/*# sourceMappingURL=styles.css.map */