html,
body {
    background-color: white;
    overflow-x: hidden;
}

ul {
    list-style-type: none;
    padding: 0;
}

p {
    margin-bottom: 0;
}

/* animation */

.startAnimation {
    -webkit-animation: pulsation2 2s linear backwards;
    -moz-animation: pulsation2 2s linear backwards;
    -ms-animation: pulsation2 2s linear backwards;
    animation: pulsation2 2s linear backwards;
}

.startAnimation2 {
    -webkit-animation: pulsation3 2s linear backwards;
    -moz-animation: pulsation3 2s linear backwards;
    -ms-animation: pulsation3 2s linear backwards;
    animation: pulsation3 2s linear backwards;
}

.startAnimation3:before {
    -webkit-animation: buttondecor 1.5s linear backwards;
    -moz-animation: buttondecor 1.5s linear backwards;
    -ms-animation: buttondecor 1.5s linear backwards;
    animation: buttondecor 1.5s linear backwards;
}

.cloud {
    -webkit-animation: cloud 2.5s linear infinite;
    -moz-animation: cloud 2.5s linear infinite;
    -ms-animation: cloud 2.5s linear infinite;
    animation: cloud 2.5s linear infinite;
}

.cloud_mob {
    text-align: center;
    -webkit-animation: cloud_mob 2.5s linear infinite;
    -moz-animation: cloud_mob 2.5s linear infinite;
    -ms-animation: cloud_mob 2.5s linear infinite;
    animation: cloud_mob 2.5s linear infinite;
}

@keyframes cloud {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes cloud_mob {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes buttondecor {
    0% {
        left: -75px;
    }

    100% {
        left: 250px;
    }
}

@keyframes pulsation {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulsation2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulsation3 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulsation_mob {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(2);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* animation */

/*sections*/
header {
    padding-top: 50px;
    padding-bottom: 25px;
    background: #e6e6e6;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main_bg {
    position: absolute;
    bottom: 0;
}
section {
    padding-top: 75px;
    position: relative;
}
footer {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../img/footer_bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}
/*sections*/

/*heading & texts */
.descriptor {
    font-family: 'Montserrat', arial;
    font-weight: 500;
    font-size: 0.9rem;
}
h1 {
    font-family: 'Proxima Nova Rg';
    font-weight: normal;
    font-size: 2.5rem;

}
h1 span {
    font-family: 'Proxima Nova Rg';
    font-weight: bold;
    color: #4281c0;
}
p.sub_h1 {
    font-family: 'Montserrat', arial;
    font-size: 1.3rem;
    margin: 40px 0;
}

footer h2 {
    text-align: center;
    font-family: 'Montserrat', arial;
    font-weight: 400;
    font-size: 2.2rem;
}
footer h2 span {
    font-family: 'Montserrat', arial;
    font-weight: 900;
    color: #3674b7;
    font-size: 2rem;
}
footer h3 {
    text-align: center;
    font-family: Georgia;
    font-style: italic;
    font-size: 1.8rem;
}
footer h4 {
    text-align: left;
    font-family: 'Gilroy';
    font-weight: 900;
    font-size: 2rem;
}
footer h4 span {
    color: #3674b7;
}
label {
    font-family: 'Montserrat', arial;
    font-weight: 400;
    color: #383431;
    font-size: 1.1rem;
}
h2.second_heading {
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-bottom: 45px;
}
h2.second_heading i {
    font-family: Georgia;
    font-style: italic;
}
h2.second_heading span {
    font-family: Georgia;
    font-style: italic;
    font-weight: bold;
    font-size: 4rem;
    line-height: 0px;
    position: relative;
    top: 14px;
    color: #3674b7;

}
/*heading & texts */


.wrapper_logo {
    display: flex;
    align-items: center;
}

.wrapper_logo > .logo {
    margin-right: 15px;
}

.headers {
    margin-top: 100px;
}

ul.head_bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

ul.head_bullets li > div {
    font-family: Georgia;
    font-style: italic;
    font-size: 1.1rem;
    margin-left: 30px;
    margin-right: 60px;
}

ul.head_bullets li > div span {
    color: #3674b7;
}

ul.head_bullets li:nth-child(1) {
    background: url(../img/time.png);
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    width: 285px;
    border-radius: 7px;
    height: 155px;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    z-index: 3;
}

ul.head_bullets li:nth-child(2) {
    background: url(../img/grad.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border-radius: 7px;
    width: 265px;
    height: 165px;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    z-index: 2;
    position: absolute;
    top: 150px;
}

ul.head_bullets li:nth-child(3) {
    background: url(../img/geo.png);
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 7px;
    width: 265px;
    height: 178px;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    z-index: 1;
    position: absolute;
    top: 290px;
}

.card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card {
    border: none;
    border-radius: 15px;
    -webkit-box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.10);
    transition: all .5s;
}

div.card:hover {
    transform: scale(1.05);
}

.card-title {
    padding-top: 25px;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 2rem;
}

.card-text {
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 1.1rem;
    padding: 25px 20px;
}

/* PARALLAX */
div.wrapper_airplane1 {
    position: absolute;
    left: -30px;
}
div.wrapper_airplane2 {
    position: absolute;
    bottom: 100px;
    right: 15px;
}
div.wrapper_pin2 {
    position: absolute;
    left: -30px;
    top: 450px;
}
div.wrapper_pin1 {
    position: absolute;
    top: 250px;
    right: 15px;
}
/* PARALLAX */

.advantage {
    position: absolute;
}

.advantage p {
    font-family: Georgia;
    font-style: italic;
    font-size: 1rem;
    color: #292929;
}

.advantage p span {
    color: #3674b7;
}

.advantage img {
    transition: all 1.5s linear;
    z-index: 10;
}

.advantage img:hover {
    transform: scale(1.3);
}

/* buttons */
.button {
    background: rgb(36, 99, 171);
    background: linear-gradient(0deg, rgba(36, 99, 171, 1) 0%, rgba(85, 147, 206, 1) 100%);
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    overflow: hidden;
    border-radius: 25px;
    font-family: 'Montserrat', arial;
    font-weight: 400;
}

.button:hover {
    text-decoration: none;
    color: white;
}

.button_decoration {
    position: relative;
    overflow: hidden;
}

.button_decoration:before {
    content: "";
    opacity: 0.5;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
    height: 50px;
    width: 50px;
    left: -75px;
    position: absolute;
    top: -8px;
    transform: skewX(-45deg);
    overflow: hidden;

}

.button_card {
    background: rgb(36, 99, 171);
    background: linear-gradient(0deg, rgba(36, 99, 171, 1) 0%, rgba(85, 147, 206, 1) 100%);
    max-width: 250px;
    display: block;
    text-align: center;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    border-radius: 25px;
    font-family: 'Montserrat', arial;
    font-weight: 400;
}

.button_card:hover {
    text-decoration: none;
    color: white;
}

.figure_btn img {
    z-index: 3;
}


.figure_btn::after {
    content: '';
    position: absolute;
    border: 1px solid #fff;
    height: 40px;
    width: 40px;
    left: 108px;
    bottom: 0px;
    border-radius: 50%;
    animation: pulsation 1.5s linear infinite;
    z-index: -2;
}

.figure_btn::before {
    content: '';
    position: absolute;
    border: 1px solid #fff;
    height: 40px;
    width: 40px;
    left: 108px;
    bottom: 0px;
    border-radius: 50%;
    animation: pulsation 1.5s linear infinite;
    animation-delay: 0.5s;
    z-index: -2;
}

.figure_btn_mob::after {
    content: '';
    position: absolute;
    border: 1px solid #fff;
    height: 20px;
    width: 20px;
    left: 70px;
    bottom: 4px;
    border-radius: 50%;
    animation: pulsation_mob 1.5s linear infinite;
    z-index: -2;
}

.figure_btn_mob::before {
    content: '';
    position: absolute;
    border: 1px solid #fff;
    height: 20px;
    width: 20px;
    left: 70px;
    bottom: 4px;
    border-radius: 50%;
    animation: pulsation_mob 1.5s linear infinite;
    animation-delay: 0.5s;
    z-index: -2;
}

.figure_btn_tab::after {
    content: '';
    position: absolute;
    border: 1px solid #fff;
    height: 30px;
    width: 30px;
    left: 150px;
    bottom: 12px;
    border-radius: 50%;
    animation: pulsation_mob 1.5s linear infinite;
    z-index: -2;
}

.figure_btn_tab::before {
    content: '';
    position: absolute;
    border: 1px solid #fff;
    height: 30px;
    width: 30px;
    left: 150px;
    bottom: 12px;
    border-radius: 50%;
    animation: pulsation_mob 1.5s linear infinite;
    animation-delay: 0.5s;
    z-index: -2;
}

div.figure_btn,
div.figure_btn_mob,
div.figure_btn_tab {
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 3;
}

p.figure_btn_title {
    color: white;
    position: absolute;
    text-align: center;
    font-family: 'Montserrat', arial;
    font-weight: 400;
    font-size: 1.2rem;
    top: 32px;
    left: 25%;
}

button.submit-btn {
    width: 100%;
    border-radius: 35px;
    background: rgb(36, 99, 171);
    background: linear-gradient(0deg, rgba(36, 99, 171, 1) 0%, rgba(85, 147, 206, 1) 100%);
    width: 100%;
    text-align: left;
    font-size: 14px;
    padding-left: 35px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: white;
    border-radius: 25px;
    font-family: 'Montserrat', arial;
    font-weight: 400;
    box-shadow: none !important;
    border: 0 !important;
}

button.submit-btn:hover {
    color: white;
}

.registration {
    position: relative;
    width: 100%;
}

a.registration_btn {
    width: 100%;
    border-radius: 35px;
    background: rgb(36, 99, 171);
    background: linear-gradient(0deg, rgba(36, 99, 171, 1) 0%, rgba(85, 147, 206, 1) 100%);
    display: block;
    text-decoration: none;
    text-align: left;
    font-size: 14px;
    padding-left: 35px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: white;
    border-radius: 25px;
    font-family: 'Montserrat', arial;
    font-weight: 400;
    box-shadow: none !important;
    border: 0 !important;
}

a.registration_btn:hover {
    text-decoration: none;
    text-decoration: none;
    color: white;
}

img.stamp {
    height: 150px;
    position: absolute;
    right: -90px;
    bottom: -60px;
}

/* buttons */

input {
    text-align: left;
    font-family: 'Gilroy' !important;
    font-weight: 900 !important;
    font-size: 2rem !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: 0px !important;
    border-bottom: 1px solid #0000ff !important;
}

.macbook {
    z-index: 1;
}


