html,
body {
    height: 100%;
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

button {
    cursor: pointer;
}

/*Header*/

header {
    padding-top: 29px;
    padding-bottom: 20px;
    position: absolute;
    top: 0;
    z-index: 99;
    width: 100%;
}

.main-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-logo-header {
    display: none;
}

.main-logo img {
    max-width: 140px;
}

.sidenav {
    display: none;
}

.sidenav button {
    font-family: 'OpenSans-Light', sans-serif;
    font-size: 16px;
    padding: 2px 17px;
    border: 3px solid #1180ae;
    border-radius: 5px;
    background: #1180ae;
    border-radius: 5px;
    outline: none;
    color: #ffffff;
}

#open-nav-button {
    display: none;
}

.desktop-nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1920px;
}

.nav-top-menu {
    width: 100%;
}

.nav-logo-holder {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.nav-logo-holder a img {
    width: 100%;
    height: auto;
}

.nav-links ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
}

.nav-links ul li {
    list-style: none;
}

.nav-links ul li button {
    font-family: 'OpenSans-Light', sans-serif;
    font-size: 16px;
    padding: 2px 17px;
    color: #ffffff;
    border: 3px solid #1180ae;
    border-radius: 5px;
    background: #1180ae;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.nav-links ul li a {
    font-family: 'OpenSans-Light', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.scrolling-nav {
    position: fixed;
    background: #ffffff;
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.scrolling-nav .nav-top-menu .nav-links ul {
    align-items: center;
    margin: 0;
}

.scrolling-nav .nav-top-menu .nav-links ul li a {
    color: #000000;
}

.scrolling-nav .nav-top-menu .nav-links ul .nav-logo-holder a img {
    width: 60%;
}

.scrolling-nav .nav-top-menu .nav-links ul li button {
    color: #ffffff;
    border: 3px solid #1180ae;
    border-radius: 5px;
    background: #1180ae;
}

.mouse-slider {
    margin-top: 42px;
    width: 31px;
    height: 50px;
    position: relative;
}

.mouse-round {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.mouse-dot {
    position: absolute;
    top: -25px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: mousedotmove 1.5s infinite;
    -moz-animation: mousedotmove 1.5s infinite;
    -o-animation: mousedotmove 1.5s infinite;
    animation: mousedotmove 1.5s infinite;
}

@-webkit-keyframes mousedotmove {
    from {
        top: -25px;
        opacity: 1;
    }
    to {
        top: 20px;
        opacity: 0.5;
    }
}

@-moz-keyframes mousedotmove {
    from {
        top: -25px;
        opacity: 1;
    }
    to {
        top: 20px;
        opacity: 0.5;
    }
}

@-o-keyframes mousedotmove {
    from {
        top: -25px;
        opacity: 1;
    }
    to {
        top: 20px;
        opacity: 0.5;
    }
}

@keyframes mousedotmove {
    from {
        top: -25px;
        opacity: 1;
    }
    to {
        top: 20px;
        opacity: 0.5;
    }
}

/*Footer*/

footer {
    background: #008edb;
    height: 100px;
}

.desktop-footer-waves {
    position: absolute;
    right: 0;
    padding-right: 165px;
}

footer .container-fluid .row {
    justify-content: space-between;
}

.footer-text {
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-text p {
    font-family: 'Cervo-Medium', sans-serif;
    font-size: 25px;
    color: #ffffff;
    margin: 0;
    padding-left: 63px;
    font-style: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: center;
    z-index: 50;
}

.social-icons {
    display: flex;
    flex-direction: row;
    height: 100px;
    width: 200px;
    position: absolute;
    right: 0;
}

.mobile-social-icons {
    display: none;
}

.fb-icon-holder {
    background: #fcb239;
    width: 100px;
    height: 100%;
    position: relative;
}

.insta-icon-holder {
    background: #ff111a;
    width: 100px;
    height: 100%;
    position: relative;
}

.fb-icon-holder img,
.insta-icon-holder img {
    max-width: 45px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.social-links {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 99;
}

.social-links a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background: #1180ae;
    padding: 10px;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
}

.social-links img {
    max-width: 35px;
    width: 100%;
}

/* .modal-backdrop,
.modal-backdrop.fade.in {
    opacity: 0.1!important;
} */

.success-modal-content {
    border: none!important;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.success-modal-body {
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin: 0!important;
    background: #f8af39!important;
}

.success-modal-body p {
    font-size: 16px!important;
    color: #ffffff;
    font-family: 'OpenSans-Bold', sans-serif!important;
    padding: 8px 0;
}

.success-modal-dialog {
    max-width: 600px!important;
    top: 90%;
}

.main-modal-content {
    background: transparent!important;
    border: none!important;
}

.main-modal-body {
    background: transparent!important;
}

.main-modal-dialog {
    max-width: 700px;
    background: #10a0e4;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 3px;
    top: 85%;
}

#mainForm {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

#mainForm input {
    height: unset!important;
    padding: 5px 20px;
    outline: none;
    max-width: 200px!important;
    width: 100%!important;
    margin-bottom: 15px!important;
}

.submit_appform {
    background-color: #fcb239!important;
    border: 1px solid #fcb239!important;
    color: #ffffff!important;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .mouse-slider {
        margin-top: 20px;
    }
    .play-button-holder img {
        max-width: 45%;
    }
}

@media only screen and (max-width: 780px) {
    /*Side mobile navigation*/
    .sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        overflow-x: hidden;
        transition: 0.1s;
        background: rgb(117, 123, 126);
    }
    #open-nav-button {
        display: flex;
        width: 40px;
        height: 40px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 10px;
        z-index: 999;
    }
    #open-nav-button img {
        width: 30px;
        height: auto;
    }
    .closebtn {
        position: absolute;
        top: -30px;
        right: 5px;
        font-size: 60px !important;
        color: #ffffff;
        text-decoration: none;
    }
    #mobileNav a {
        font-family: 'Roboto Condensed', sans-serif;
        color: #ffffff;
        margin-bottom: 10px;
        margin-top: 10px;
        text-decoration: none;
    }
    .desktop-nav-menu {
        display: none;
    }
    .mobile-logo-header {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }
    .play-button-holder img {
        max-width: 45%;
    }
    .main-modal-dialog {
        max-width: 240px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media only screen and (max-width: 768px) {
    .nav-links ul li a {
        font-size: 18px;
    }
    .nav-contacts ul li a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 700px) {
    .footer-text p {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    footer .container-fluid .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .footer-text {
        justify-content: center;
    }
    .social-icons {
        position: relative;
        margin-right: auto;
        margin-left: auto;
    }
    .footer-right-side {
        background: #008edb;
    }
    .mobile-social-icons {
        display: flex;
    }
    .footer-right-side {
        display: none;
    }
    .desktop-footer-waves {
        display: none;
    }
    footer {
        height: auto;
    }
    .play-button-holder img {
        max-width: 35%;
    }

    .success-modal-dialog {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 320px) {
    .play-button-holder img {
        max-width: 30%;
    }
}