* {
    outline: none !important;
}
body {
    overflow-x: hidden;
    width: 100vw !important;
    font-family: "Open Sans";
    font-size: 15px;
    color: #58595B;
}
a {
    color: inherit !important;
}
.background {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -2;
}
.overflow {
    overflow: hidden;
}
.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.background.opacity:after {
    content: "";
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,0.4);
}
.panel {
    position: relative;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    padding: 50px;
    z-index: 1;
    background-color: #fff;
}
title {
    display: block;
    font-family: 'Lato-Heavy';
    font-size: 24px;
    color: #414042;
}
text {
    display: block;
    font-family: 'Lato-Light';
    color: #6D6E71;
}
.min-height {
    min-height: calc(100vh - 72px);
}

/*---- Animation ----*/
    @-webkit-keyframes waves1 {
        0%   { left: 0%; }
        100% { left: -100%; }
    }
    @-moz-keyframes waves1 {
        0%   { left: 0%; }
        100% { left: -100%; }
    }
    @-o-keyframes waves1 {
        0%   { left: 0%; }
        100% { left: -100%; }
    }
    @keyframes waves1 {
        0%   { left: 0%; }
        100% { left: -100%; }
    }
    .path {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        animation: dash 5s linear alternate infinite;
    }
    @keyframes dash {
        from {
            stroke-dashoffset: 1000;
        }
        to {
            stroke-dashoffset: 0;
        }
    }
/*---- Animation ----*/

/*---- Input Custom ----*/
    .group {
        position: relative;
        font-family: "Lato-Heavy";
        font-size: 18px;
    }
    .group:not(:last-child) { 
        margin-bottom: 45px; 
    }
    .group input {
        padding: 10px 10px 10px 5px;
        display: block;
        width: 100%;
        border: none;
        border-bottom: 3px solid #6BCCE0;
        color: #6BCCE0;
        padding-bottom: 25px;
    }
    .group input:focus { 
        outline: none; 
    }
    .group label {
        color: #414042; 
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 15px;
        -webkit-transition: 0.2s ease all;
        -moz-transition: 0.2s ease all; 
        transition: 0.2s ease all; 
    }
    .group input:focus, .group input.has-content, .group input[readonly] {
        border-bottom: 3px solid #6BCCE0 !important;
    }
    .group input:focus ~ label, .group input.has-content ~ label, .group input[readonly] ~ label {
        top: -30px;
        color: #414042;
        font-weight: bold;
    }
/*---- Input Custom ----*/

/*---- Applications ----*/
    apps app {
        display: inline-grid;
        width: 140px;
        background-color: #307D90;
        height: 47px;
        padding: 0px 10px;
        margin-top: 5px;
    }
    apps app:not(:last-child) {
        margin-right: 5px;
    }
    apps app img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
/*---- Applications ----*/

/*---- Loader ----*/
    .loader-custom {
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0px;
        left: 0px;
        background-color: #fff;
        z-index: 9999;
    }
    .loader-custom .logo1 {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        max-width: 500px;
        width: 50%;
        z-index: 1;
    }
    .loader-custom .logo1 svg {
        width: 100%;
    }
    .loader-custom .waves1 {
        position: absolute;
        display: block;
        transform: translateY(-50%);
        top: calc(50% + 10px);
        width: 200%;
        -webkit-animation: waves1 5s linear infinite; /* Safari 4+ */
        -moz-animation: waves1 5s linear infinite; /* Fx 5+ */
        -o-animation: waves1 5s linear infinite; /* Opera 12+ */
        animation: waves1 5s linear infinite; /* IE 10+, Fx 29+ */
        z-index: -1;
    }
/*---- Loader ----*/

/*---- Index Page ----*/
    .index-page first-row {
        position: relative;
        display: block;
        height: 100vh;
        width: 100%;
    }
    .index-page first-row .svg {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        max-width: 500px;
        width: 80%;
    }
    .index-page first-row .svg svg {
        display: block;
        position: relative;
        width: 100%;
        overflow: visible;
    }
    .index-page second-row {
        display: block;
        position: relative;
        margin-top: 50px;
        margin-bottom: 150px;
        overflow: visible;
    }
    .index-page second-row .svg {
        position: absolute;
        display: block;
        width: 200%;
        height: 100%;
        z-index: -1;
        -webkit-animation: waves1 20s linear infinite; /* Safari 4+ */
        -moz-animation: waves1 20s linear infinite; /* Fx 5+ */
        -o-animation: waves1 20s linear infinite; /* Opera 12+ */
        animation: waves1 20s linear infinite; /* IE 10+, Fx 29+ */
    }
    .index-page second-row .svg svg {
        position: absolute;
        left: 0%;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }
    .index-page second-row title {
        margin-bottom: 60px;
        font-size: 30px;
    }
    .index-page second-row .panel title, .index-page second-row .panel text {
        width: 80%;
    }
    .index-page third-row {
        position: relative;
        display: block;
        text-align: center;
        margin-bottom: 150px;
    }
    .index-page third-row title {
        margin-bottom: 15px;
        margin-top: 25px;
    }
    .index-page fourth-row {
        position: relative;
        display: block;
        margin-bottom: 150px;
        padding: 60px;
    }
    .index-page fourth-row .background {
        width: auto;
        height: auto;
    }
    .index-page fourth-row .background img {
        object-fit: none;
        width: auto;
    }
    .index-page fourth-row .background.a img {
        position: relative;
        top: 50%;
        height: auto;
    }
    .index-page fourth-row title {
        font-size: 30px;
        color: #307D90;
        width: fit-content;
        border-bottom: 4px solid #307D90;
        margin-bottom: 10px;
    }
    .index-page fourth-row text {
        margin-bottom: 20px;
    }
    .index-page fourth-row .slick2 .slick-slide {
        height: 262px !important;
        padding: 15px !important;
    }
    .index-page fourth-row .slick2 .slick-slide > div {
        height: 232px;
    }
    .index-page fourth-row .slick2 .slick-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .index-page fourth-row .background.slick-b img {
        object-fit: contain;
    }
    .index-page fourth-row .background.slick-b {
        width: 200px;
        height: 310px;
        left: 24%;
        top: -10px;
        z-index: 5;
    }
    .index-page fivth-row {
        display: block;
        position: relative;
        margin-bottom: 150px;
    }
    .index-page fivth-row head-d {
        display: block;
        position: relative;
        padding-left: 25px;
        padding-top: 15px;
        padding-bottom: 15px;
        border-left: 3px solid #6BCCE0;
    }
    .index-page fivth-row head-d:after {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        height: 3px;
        width: 250px;
        background-color: #6BCCE0;
    }
    .index-page fivth-row head-d:before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 0px;
        height: 3px;
        width: 100px;
        background-color: #6BCCE0;
    }
    .index-page fivth-row title {
        font-size: 45px;
        text-transform: uppercase;
        font-family: "Lato-Bold";
    }
    .index-page fivth-row title2 {
        color: #6BCCE0;
        font-size: 25px;
        font-family: "Lato-Regular";
    }
    .index-page fivth-row form {
        width: 100%;
    }
    .index-page fivth-row .group:nth-child(2) {
        width: 90%;
        left: 10%;
    }
    .index-page fivth-row .groups {
        margin-top: 70px;
        margin-bottom: 40px;
    }
    .index-page fivth-row .svg {
        display: inline-block;
        width: 35px;
        height: auto;
    }
    .index-page fivth-row .text {
        display: inline-block;
        font-family: "Montserrat-Bold";
        color: #307D90;
        width: 125px;
    }
    .index-page fivth-row .value {
        display: inline-block;
        font-family: "Montserrat-Light";
        color: #6BCCE0 !important;
    }
    .index-page fivth-row .btn {
        font-family: "Lato-Regular";
        color: white;
        background-color: #307D90;
        text-transform: uppercase;
        border: 0px;
        border-radius: 0px;
        font-size: 18px;
        padding: 3px 28px;
        float: right;
    }
/*---- Index Page ----*/

/*---- Privacy Page ----*/
    .privacy-page {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        min-height: calc(100vh - 72px);
        padding: 50px 0px;
    }
    .privacy-page .svg {
        position: relative;
        transform: translateX(-50%);
        left: 50%;
        width: 140px;
    }
    .privacy-page .svg svg {
        display: block;
        position: relative;
        width: 100%;
        overflow: visible;
    }
    .privacy-page title {
        font-family: "Lato-Bold";
        font-size: 40px;
        color: #fff;
        text-align: center;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    .privacy-page content {
        font-family: "Lato-Regular";
        font-size: 15px;
        color: #fff;
    }
/*---- Privacy Page ----*/

/*---- Footer ----*/
    footer {
        background-color: #307D90;
        padding: 25px 0;
        color: #fff !important;
    }
    footer a {
        color: #fff !important;
    }
/*---- Footer ----*/

@media (max-width: 767px) {
    .index-page second-row .svg {
        -webkit-animation: waves1 5s linear infinite; /* Safari 4+ */
        -moz-animation: waves1 5s linear infinite; /* Fx 5+ */
        -o-animation: waves1 5s linear infinite; /* Opera 12+ */
        animation: waves1 5s linear infinite; /* IE 10+, Fx 29+ */
    }
    .index-page fivth-row .group {
        margin-bottom: 50px;
    }
    .panel {
        padding: 25px;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 0px !important;
    }
    .index-page fourth-row .background {
        width: 100%;
        height: 100%;
    }

}

@media (min-width: 1440px) and (max-width: 2559px) {
    .index-page fourth-row .background.slick-b {
        left: 23%;
    }
    .slick-next {
        right: 52% !important;
    }
    .slick-prev {
        left: 27% !important;
    }
}

@media (min-width: 2560px) {
    .index-page fourth-row .background.slick-b {
        left: 23%;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .index-page fourth-row .background.slick-b {
        left: 35.5%;
    }
}
@media (min-width: 1024px) and (max-width: 1199px) {
    .index-page fourth-row .background.slick-b {
        left: 31.5%;
    }
    .slick-next {
        right: 38% !important;
    }
    .slick-prev {
        left: 38% !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .index-page fourth-row .background.slick-b {
        left: 0%;
    }
    .index-page fourth-row .slick2 .slick-slide img {
        width: 96%;
    }
    .slick-prev {
        left: 7% !important;
    }
    .slick-next {
        right: 59% !important;
    }
    .index-page fivth-row title {
        font-size: 40px;
    }
    .index-page fivth-row title2 {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .index-page fourth-row .background.slick-b {
        left: 49%;
        transform: translateX(-50%);
    }
    .index-page fourth-row .slick2 .slick-slide img {
        width: 96%;
    }
    .slick-next {
        right: 15% !important;
    }
    .slick-prev {
        left: 15% !important;
    }
    .index-page fourth-row {
        padding: 15px;
    }
    apps app {
        width: 125px;
    }
    apps {
        display: block;
        margin-bottom: 60px;
    }
    .index-page fivth-row .value {
        margin-bottom: 25px;
    }
    .index-page fivth-row title {
        font-size: 30px;
    }
    .index-page fivth-row title2 {
        font-size: 19px;
    }
    footer {
        text-align: center;
    }
}

@media (max-width: 425px) {
    .index-page fivth-row .btn {
        float: unset;
    }
    .index-page fivth-row .button {
        text-align: center;
    }
}