a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus {
    border: none;
    outline: none;
    text-shadow: none;
    text-decoration: none;
}

.transition {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.animate__animated {
    -webkit-animation-duration: 0.85s;
    animation-duration: 0.85s;
}

.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

body {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: left;
    overflow-x: hidden;
}

body .container {
    padding: 0;
}


/* ====================================================================================================== */


/* Header */


/* ====================================================================================================== */

header {
    position: absolute;
    z-index: 999;
    top: 50px;
    left: 0;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: left;
}

header.fixed {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    padding: 20px 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -moz-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -ms-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -o-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
}

header .text {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: left;
}

header .logo img.mobile {
    display: none;
}

header.fixed .logo img.dark {
    display: inline-block;
}

header.fixed .logo img.dark.mobile,
header.fixed .logo img.white {
    display: none;
}

header .mobile-navigation {
    display: none;
}

header .menu {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 40px 0 0;
    padding: 0;
}

header .menu ul {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

header .menu ul li {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 50px 0 0;
    padding: 0;
}

header .menu ul li:last-child {
    margin: 0;
}

header .menu ul li a {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #ffffff;
}

header .menu ul li.dropdown:hover a,
header .menu ul li a:hover {
    color: #292373;
}

header.fixed .menu ul li a {
    color: #292373;
}

header.fixed .menu ul li.dropdown:hover a,
header.fixed .menu ul li a:hover {
    color: #048cf5;
}

header .menu ul li.dropdown {}

header .menu ul li.dropdown .dropdown {
    position: absolute;
    z-index: 9;
    right: 0;
    top: 54px;
    display: none;
    width: auto;
    min-width: 150px;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -moz-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -ms-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -o-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
}

header .menu ul li.dropdown:hover .dropdown,
header .menu ul li.dropdown.active .dropdown {
    display: inline-block;
}

header .menu ul li.dropdown .dropdown:after {
    position: absolute;
    z-index: 9;
    right: 25px;
    top: -5px;
    display: inline-block;
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
}

header .menu ul li.dropdown .dropdown ul {}

header .menu ul li.dropdown .dropdown ul li {
    width: 100%;
    margin: 0;
}

header .menu ul li.dropdown .dropdown ul li:last-child {
    border-top: 1px solid #daeefe;
}

header .menu ul li.dropdown .dropdown ul li a {
    width: 100%;
    height: 38px;
    line-height: 38px;
    padding: 0 20px;
    margin: 8px 0;
    white-space: nowrap;
    color: #048cf5;
}

header .menu ul li.dropdown .dropdown ul li a:hover {
    color: #fff;
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #d7b5da, #a3a5fd);
    background-image: -o-linear-gradient(right, #d7b5da, #a3a5fd);
    background-image: -moz-linear-gradient(right, #d7b5da, #a3a5fd);
    background-image: linear-gradient(to right, #d7b5da, #a3a5fd);
}

header .menu ul li.dropdown a img.blue,
header .menu ul li.dropdown:hover a img.white,
header .menu ul li.dropdown a img.dark {
    display: none;
}

header .menu ul li.dropdown:hover a img.dark,
header.fixed .menu ul li.dropdown a img.dark {
    display: inline-block;
}

header.fixed .menu ul li.dropdown a img.white {
    display: none;
}

header.fixed .menu ul li.dropdown:hover a img.dark,
header.fixed .menu ul li.dropdown a:hover img.dark,
header .menu ul li.dropdown a:hover img.white {
    display: none;
}

header.fixed .menu ul li.dropdown:hover a img.blue,
header.fixed .menu ul li.dropdown a:hover img.blue,
header .menu ul li.dropdown a:hover img.dark {
    display: inline-block;
}

header .social {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 40px 0 0;
    padding: 0;
}

header .social ul {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

header .social ul li {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 20px 0 0;
    padding: 0;
}

header .social ul li:last-child {
    margin: 0;
}

header .social ul li a {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

header .social ul li a img.mobile {
    display: none;
}

header .social ul li a:hover {}

header .get-started {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: 54px;
    margin: 0;
    padding: 0 45px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #048cf5;
    text-align: center;
    background-color: #ffffff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

header .get-started:hover {
    background-color: #0261ab;
    -webkit-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    color: #ffffff;
}


/* ====================================================================================================== */


/* MAIN */


/* ====================================================================================================== */

main {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}


/* Section Hero */

.hero {
    position: relative;
    float: left;
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 0 0 180px;
    padding: 215px 0 0;
    background-image: url(../img/hero/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .container-fluid {
    position: relative;
}

.hero .swiper-container {
    position: relative;
    float: left;
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.hero .swiper-container .swiper-slide {
    position: relative;
    float: left;
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero .swiper-container .swiper-slide .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero .swiper-container .swiper-slide .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 60px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 66px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

.hero .swiper-container .swiper-slide .details span {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 40px;
    padding: 0;
    font-size: 60px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 66px;
    letter-spacing: -0.1px;
    color: #048cf5;
    text-align: left;
}

.hero .swiper-container .swiper-slide .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 50px;
    padding: 0;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 34px;
    color: #586b7e;
    text-align: left;
}

.hero .swiper-container .swiper-slide .details a {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: 54px;
    margin: 0;
    padding: 0 45px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #ffffff;
    text-align: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #d7b5da);
    background-image: -o-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: -moz-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: linear-gradient(to right, #a3a5fd, #d7b5da);
    -webkit-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
}

.hero .swiper-container .swiper-slide .details a:hover {
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #5473c8);
    background-image: -o-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: -moz-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: linear-gradient(to right, #a3a5fd, #5473c8);
    -webkit-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
}

.hero .swiper-pagination {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 100px;
    float: left;
    display: inline-block;
    width: 9px;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.hero .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    float: left;
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 0 6px;
    padding: 0;
    border: 2px solid #5f8cc9;
    background-color: transparent;
    opacity: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.hero .swiper-pagination .swiper-pagination-bullet:hover,
.hero .swiper-pagination .swiper-pagination-bullet:focus {
    border-color: #5f8cc9;
    outline: none;
}

.hero .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-bottom: 0;
}

.hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 2px solid #55bcdc;
    background-color: #55bcdc;
    height: 18px;
}

.hero .title {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 120px 0 80px;
    padding: 0 0 55px;
    font-size: 26px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.1px;
    color: #048cf5;
    text-align: center;
}

.hero .title:after {
    content: "";
    position: absolute;
    z-index: 9;
    left: 50%;
    bottom: 0;
    display: inline-block;
    float: left;
    width: 86px;
    height: 5px;
    margin: 0 -43px;
    padding: 0;
    background-color: #0a8bfc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.hero .image {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero .image img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.hero .box {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 40px;
    -webkit-border-radius: 10px 20px 10px 80px;
    -moz-border-radius: 10px 20px 10px 80px;
    -ms-border-radius: 10px 20px 10px 80px;
    -o-border-radius: 10px 20px 10px 80px;
    border-radius: 10px 20px 10px 80px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -moz-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -ms-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -o-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
}

.hero .box img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 0 50px;
    padding: 0;
}

.hero .box h3 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0 0 40px;
    font-size: 26px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 28px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

.hero .box h3:after {
    content: "";
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    display: inline-block;
    float: left;
    width: 86px;
    height: 5px;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.hero .box.dark-blue h3:after {
    background-color: #0a8bfc;
}

.hero .box.blue h3:after {
    background-color: #55bcdc;
}

.hero .box.red h3:after {
    background-color: #d7b5da;
}

.hero .box p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 32px;
    color: #586b7e;
    text-align: left;
}


/* ---------------------------------------------------------------- */


/* Section About Us */

.about-us {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 180px;
    padding: 0;
    background-image: url(../img/about-us/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-us .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.about-us .details img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 0 100px;
    padding: 0;
}

.about-us .details .subtitle {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 45px;
    padding: 0;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    color: #a3a5fd;
    text-align: center;
    text-transform: uppercase;
}

.about-us .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 40px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 52px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: center;
}

.about-us .details h1 span {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    color: #048cf5;
    text-align: center;
}

.about-us .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 32px;
    color: #586b7e;
    text-align: center;
}


/* ---------------------------------------------------------------- */


/* Section Features */

.features {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-image: url(../img/features/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.features .feature {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 150px;
    padding: 0;
}

.features .feature .image {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.features .feature:nth-child(2n) .image {
    -ms-flex-align: end;
    align-items: flex-end;
}

.features .feature .col-md-5 .image {
    margin-left: 80px;
}

.features .feature .image img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.features .feature .details h2 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 30px 0 0;
    font-size: 32px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

.features .feature .details h2:before {
    content: "";
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    display: inline-block;
    float: left;
    width: 86px;
    height: 5px;
    margin: 0;
    padding: 0;
    background-color: #0a8bfc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.features .feature .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 25px;
    padding: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 26px;
    color: #586b7e;
    text-align: left;
}

.features .feature .details p span {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #0a8bfc;
}


/* ---------------------------------------------------------------- */


/* Section Percentages */

.percentages {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 225px 0 160px;
    background-image: url(../img/percentages/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.percentages .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.percentages .details img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 0 100px;
    padding: 0;
}

.percentages .details .subtitle {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 40px;
    padding: 0;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    color: #a3a5fd;
    text-align: left;
    text-transform: uppercase;
}

.percentages .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 40px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 52px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

.percentages .details h1 span {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    color: #048cf5;
    text-align: left;
}

.percentages .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 32px;
    color: #586b7e;
    text-align: left;
}

.percentages .details a {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: 54px;
    margin: 0;
    padding: 0 45px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #ffffff;
    text-align: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #d7b5da);
    background-image: -o-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: -moz-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: linear-gradient(to right, #a3a5fd, #d7b5da);
    -webkit-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
}

.percentages .details a:hover {
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #5473c8);
    background-image: -o-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: -moz-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: linear-gradient(to right, #a3a5fd, #5473c8);
    -webkit-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
}

.percentages .box {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 35px 25px 50px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -moz-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -ms-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -o-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
}

.percentages .box h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 10px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

.percentages .box h4 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 30px;
    padding: 0 0 30px;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 18px;
    color: #292373;
    text-align: left;
    text-transform: uppercase;
}

.percentages .box h4:after {
    content: "";
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    display: inline-block;
    float: left;
    width: 86px;
    height: 5px;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.percentages .box.dark-blue {
    margin-bottom: 30px;
}

.percentages .box.dark-blue h4 {
    color: #0a8bfc;
}

.percentages .box.dark-blue h4:after {
    background-color: #0a8bfc;
}

.percentages .box.red {
    margin-top: -160px;
    margin-bottom: 30px;
}

.percentages .box.red h4 {
    color: #f6cbdc;
}

.percentages .box.red h4:after {
    background-color: #f6cbdc;
}

.percentages .box.violet h4 {
    color: #a7a9fd;
}

.percentages .box.violet h4:after {
    background-color: #a7a9fd;
}

.percentages .box.blue h4 {
    color: #65c2df;
}

.percentages .box.blue h4:after {
    background-color: #65c2df;
}

.percentages .box p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 22px;
    color: #586b7e;
    text-align: left;
}


/* ---------------------------------------------------------------- */


/* Section Description */

.description {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 135px 0 0;
    background-image: url(../img/description/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.description .image {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 100px;
    padding: 0;
}

.description .col-md-12:last-child .image {
    margin-bottom: 0;
}

.description .image img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.description .icons {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 45px;
    padding: 0;
}

.description .icons img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.description h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 55px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 52px;
    letter-spacing: -0.1px;
    color: #ffffff;
    text-align: center;
}

.description p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 180px;
    padding: 0;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 34px;
    color: #ffffff;
    text-align: left;
}


/* ---------------------------------------------------------------- */


/* Section Register */

.register {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 90px 0 120px;
    background-image: url(../img/register/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.register .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.register .details .subtitle {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 45px;
    padding: 0;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    color: #a3a5fd;
    text-align: center;
    text-transform: uppercase;
}

.register .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 30px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 52px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: center;
}

.register .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 26px;
    color: #586b7e;
    text-align: center;
}

.register .details a {
    position: relative;
    display: inline-block;
    width: auto;
    height: 54px;
    margin: 0 0 50px;
    padding: 0 45px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #ffffff;
    text-align: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #d7b5da);
    background-image: -o-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: -moz-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: linear-gradient(to right, #a3a5fd, #d7b5da);
    -webkit-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
}

.register .details a:hover {
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #5473c8);
    background-image: -o-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: -moz-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: linear-gradient(to right, #a3a5fd, #5473c8);
    -webkit-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
}


/* ---------------------------------------------------------------- */


/* Section Newsletter */

.newsletter {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 80px 0 100px;
    background-image: url(../img/newsletter/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.newsletter .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.newsletter .details .subtitle {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    color: #a3a5fd;
    text-align: left;
    text-transform: uppercase;
}

.newsletter .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 40px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 52px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

.newsletter .details h1 span {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    color: #048cf5;
    text-align: left;
}

.newsletter .details form {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
}

.newsletter .details form input {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    min-width: 360px;
    height: auto;
    margin: 0 20px 0 0;
    padding: 0 35px;
    color: #586b7e;
    border: none;
    background-color: #ffffff;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 54px;
    text-align: left;
    text-shadow: none;
    box-shadow: none;
    outline: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

.newsletter .details form input:focus {
    -webkit-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
}

.newsletter .details form button {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: 54px;
    margin: 0;
    padding: 0 45px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #ffffff;
    text-align: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #d7b5da);
    background-image: -o-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: -moz-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: linear-gradient(to right, #a3a5fd, #d7b5da);
    -webkit-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
}

.newsletter .details form button:hover {
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #5473c8);
    background-image: -o-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: -moz-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: linear-gradient(to right, #a3a5fd, #5473c8);
    -webkit-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
}

.newsletter .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 26px;
    color: #586b7e;
    text-align: left;
}

.newsletter .details .success {
    margin-top: 10px;
    color: #048cf5;
}

.newsletter .image {
    display: none;
}


/* ------------------------------------------------------------ */


/* FOOTER */


/* ------------------------------------------------------------ */

footer {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 120px 0 0;
    background-image: url(../img/footer-background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

footer img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}


/* Footer - Logo */

footer .logo {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 45px;
    padding: 0;
}

footer .logo img {
    max-width: 100%;
}


/* Footer - Contact */

footer .contact {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 45px;
    padding: 0;
}

footer .contact ul {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

footer .contact ul li {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 34px;
    letter-spacing: -0.1px;
    color: #3d96f5;
}

footer .contact ul li a {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #586b7e;
    text-align: left;
}

footer .contact ul li a:hover {
    color: #292373;
}


/* Footer - Social */

footer .social {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 0 125px;
    padding: 0;
}

footer .social ul {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

footer .social ul li {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 20px 0 0;
    padding: 0;
}

footer .social ul li:last-child {
    margin: 0;
}

footer .social ul li a {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}


/* Footer - Parteners */

footer .parteners {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

footer .parteners a {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    padding: 0;
}

footer .parteners a:last-child {
    margin-bottom: 0;
}


/* Footer - Links */

footer .links {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

footer .links h3 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 42px;
    padding: 22px 0 0;
    font-size: 22px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
    text-transform: uppercase;
}

footer .links ul {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

footer .links ul li {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

footer .links ul li a {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.1px;
    color: #586b7e;
    text-align: left;
}

footer .links ul li a:hover {
    color: #292373;
}


/* Footer - All Rights */

footer .all-rights {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 80px;
    color: #586b7e;
    text-align: center;
    border-top: 1px solid #e8e8e8;
    background-color: #ffffff;
}

footer .all-rights a {
    position: relative;
    display: inline-block;
    width: auto;
    height: 80px;
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #048cf5;
}


/* ------------------------------------------------------------ */


/* Pages */


/* ------------------------------------------------------------ */


/* --- Our Values */

main>.our-values {
    position: relative;
    float: left;
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-image: url(../img/hero/background-our-values.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
}


/* --- Our Values -> Section Hero */

main>.our-values .hero {
    margin: 0 0 100px;
    background-image: none;
}

main>.our-values .hero .col-md-6:first-child {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

main>.our-values .hero .image {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

main>.our-values .hero .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

main>.our-values .hero .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 55px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 55px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

main>.our-values .hero .details span {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #048cf5;
}

main>.our-values .hero .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 34px;
    color: #586b7e;
    text-align: left;
}

main>.our-values .hero .box-2 {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 1028px;
    height: auto;
    min-height: 344px;
    margin: 130px auto 0;
    padding: 0;
    background-image: url(../img/hero/background-our-values-box.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

main>.our-values .hero .box-2 h3 {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
    font-size: 28px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 32px;
    letter-spacing: -0.1px;
    color: #ffffff;
    text-align: left;
}

main>.our-values .hero .box-2 p {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 36px;
    color: #ffffff;
    text-align: center;
}

main>.our-values .hero .box-2 p span {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-weight: bold;
}


/* --- Our Values -> Section Features */

main>.our-values .features {
    margin: 0;
    padding-bottom: 125px;
    background-image: none;
    text-align: center;
}

main>.our-values .features .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

main>.our-values .features .details .subtitle {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    color: #a3a5fd;
    text-align: center;
    text-transform: uppercase;
}

main>.our-values .features .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 30px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 52px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: center;
}

main>.our-values .features .details h1 span {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #048cf5;
}

main>.our-values .features .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 85px;
    padding: 0;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 32px;
    color: #586b7e;
    text-align: center;
}

main>.our-values .feature {
    margin-bottom: 80px;
}

main>.our-values .feature .image {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    float: left;
    width: 100%;
    height: auto;
    min-height: 210px;
    margin: 0 0 55px;
    padding: 0;
    text-align: center;
}

main>.our-values .feature .image img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

main>.our-values .feature h2 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
    font-size: 32px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: center;
}

main>.our-values .feature p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 26px;
    color: #586b7e;
    text-align: center;
}

main>.our-values .features a {
    position: relative;
    display: inline-block;
    width: auto;
    height: 54px;
    margin: 0;
    padding: 0 45px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #ffffff;
    text-align: center;
    background-color: #048cf5;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

main>.our-values .features a:hover {
    background-color: #0261ab;
    -webkit-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
}


/* ------------------------------------------------------------ */


/* --- Use cases */

main>.use-cases {
    position: relative;
    float: left;
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-image: url(../img/hero/background-use-cases.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
}


/* --- Use cases -> Section Hero */

main>.use-cases .hero {
    margin: 0 0 550px;
    background-image: none;
}

main>.use-cases .hero .image {
    -ms-flex-align: start;
    align-items: flex-start;
}

main>.use-cases .hero .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

main>.use-cases .hero .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 44px;
    padding: 0;
    font-size: 60px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 66px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

main>.use-cases .hero .details span {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #048cf5;
}

main>.use-cases .hero .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 34px;
    color: #586b7e;
    text-align: left;
}

main>.use-cases .hero .details p:last-child {
    margin-bottom: 0;
}


/* --- Use cases -> Section Features */

main>.use-cases .features {
    margin-top: -280px;
    padding-top: 180px;
    background-image: url(../img/features/background-use-cases.png);
}

main>.use-cases .features .feature .image {
    -ms-flex-align: end;
    align-items: flex-end;
}

main>.use-cases .features .feature:nth-child(2n) .image {
    -ms-flex-align: start;
    align-items: flex-start;
}

main>.use-cases .features .feature .col-md-5 .image {
    margin-left: 100px;
}


/* --- Use cases -> Section Customer */

main>.use-cases .customer {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 115px 0 130px;
    background-image: url(../img/customer/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

main>.use-cases .customer .details {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

main>.use-cases .customer .details .subtitle {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

main>.use-cases .customer .details h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0;
    font-size: 44px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 52px;
    letter-spacing: -0.1px;
    color: #ffffff;
    text-align: center;
}

main>.use-cases .customer .details p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 60px;
    padding: 0;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 32px;
    color: #ffffff;
    text-align: center;
}

main>.use-cases .customer .details h3 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 25px;
    padding: 0;
    font-size: 28px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.1px;
    color: #ffffff;
    text-align: center;
}

main>.use-cases .customer .details a {
    position: relative;
    display: inline-block;
    width: auto;
    height: 54px;
    margin: 0;
    padding: 0 45px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #ffffff;
    text-align: center;
    background-color: #048cf5;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

main>.use-cases .customer .details a:hover {
    background-color: #0261ab;
    -webkit-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
    box-shadow: 0 10px 30px 0 rgba(2, 97, 171, 0.55);
}


/* --- Use cases -> Section Register */

main>.use-cases .register {
    padding: 105px 0 165px;
    background-image: url(../img/register/background-use-cases.png);
    background-size: auto;
}

main>.use-cases .register .details p {
    margin-bottom: 100px;
}

main>.use-cases .register .box {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 40px;
    -webkit-border-radius: 10px 20px 10px 80px;
    -moz-border-radius: 10px 20px 10px 80px;
    -ms-border-radius: 10px 20px 10px 80px;
    -o-border-radius: 10px 20px 10px 80px;
    border-radius: 10px 20px 10px 80px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -moz-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -ms-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -o-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
}

main>.use-cases .register .box img {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 0 50px;
    padding: 0;
}

main>.use-cases .register .box h3 {
    position: relative;
    diplay: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 0 0 40px;
    font-size: 26px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 28px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

main>.use-cases .register .box h3:after {
    content: "";
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    display: inline-block;
    float: left;
    width: 86px;
    height: 5px;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

main>.use-cases .register .box.dark-blue h3:after {
    background-color: #0a8bfc;
}

main>.use-cases .register .box.blue h3:after {
    background-color: #55bcdc;
}

main>.use-cases .register .box.red h3:after {
    background-color: #d7b5da;
}

main>.use-cases .register .box p {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 32px;
    color: #586b7e;
    text-align: left;
}


/* ------------------------------------------------------------ */


/* --- Contact */

main>.contact {
    position: relative;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    min-height: 100vh;
    height: auto;
    margin: 0;
    padding: 0;
    background-image: url(../img/contact/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}


/* --- Contact -> Section Header */

header.contact {
    width: 60%;
    left: auto;
    right: 0;
    padding: 0 45px;
}

header.contact .container {
    width: 80%;
    margin: 0 10%;
}

header.contact .logo {
    margin: -15px 0;
}

header.contact .menu ul li a {
    color: #ffffff;
}


/* --- Contact -> Section Contact Form */

main>.contact .contact-form {
    position: relative;
    display: inline-block;
    float: right;
    width: 100%;
    max-width: 660px;
    height: auto;
    margin: 0 -50px 0 0;
    padding: 60px;
    -webkit-border-radius: 10px 20px 10px 80px;
    -moz-border-radius: 10px 20px 10px 80px;
    -ms-border-radius: 10px 20px 10px 80px;
    -o-border-radius: 10px 20px 10px 80px;
    border-radius: 10px 20px 10px 80px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -moz-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -ms-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    -o-box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
    box-shadow: 0 10px 30px 0 rgba(84, 115, 200, 0.08);
}

main>.contact .contact-form form {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

main>.contact .contact-form form .contact-success.active {
    display: inline-block;
    visibility: visible;
    opacity: 1;
}

main>.contact .contact-form form h1 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 45px;
    padding: 0;
    font-size: 32px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

main>.contact .contact-form form h1 span {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #048cf5;
}

main>.contact .contact-form form .field {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    padding: 0;
}

main>.contact .contact-form form .field:nth-of-type(1) {
    margin-right: 20px;
}

main>.contact .contact-form form .field:nth-of-type(1),
main>.contact .contact-form form .field:nth-of-type(2) {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
}

main>.contact .contact-form form .field label {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 0 5px 34px;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #292373;
    text-align: left;
}

main>.contact .contact-form form .field input {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 35px;
    color: #586b7e;
    border: 2px solid #e6e6e6;
    background-color: #ffffff;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 50px;
    text-align: left;
    text-shadow: none;
    box-shadow: none;
    outline: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

main>.contact .contact-form form .field textarea {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    min-height: 105px;
    height: 105px;
    max-height: 105px;
    margin: 0;
    padding: 15px 35px;
    color: #586b7e;
    border: 2px solid #e6e6e6;
    background-color: #ffffff;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    text-shadow: none;
    box-shadow: none;
    outline: none;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    -ms-border-radius: 26px;
    -o-border-radius: 26px;
    border-radius: 26px;
}

main>.contact .contact-form form .field input:focus,
main>.contact .contact-form form .field textarea:focus {
    border-color: #048cf5;
}

main>.contact .contact-form form button {
    position: relative;
    display: inline-block;
    float: right;
    width: auto;
    height: 54px;
    margin: 0;
    padding: 0 45px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 54px;
    color: #ffffff;
    text-align: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #d7b5da);
    background-image: -o-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: -moz-linear-gradient(right, #a3a5fd, #d7b5da);
    background-image: linear-gradient(to right, #a3a5fd, #d7b5da);
    -webkit-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
    box-shadow: 0 10px 30px 0 rgba(215, 181, 218, 0.55);
}

main>.contact .contact-form form button:hover {
    background-color: #a3a5fd;
    background-image: -webkit-linear-gradient(left, #a3a5fd, #5473c8);
    background-image: -o-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: -moz-linear-gradient(right, #a3a5fd, #5473c8);
    background-image: linear-gradient(to right, #a3a5fd, #5473c8);
    -webkit-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -moz-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -ms-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    -o-box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
    box-shadow: 0 10px 30px 0 rgba(163, 165, 253, 0.55);
}

main>.contact .contact-form form .contact-success {
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 15px;
    display: none;
    opacity: 0;
    visibility: hidden;
    float: right;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #048cf5;
    text-align: center;
}


/* --- Contact -> Section About */

main>.contact .about {
    position: relative;
    display: inline-block;
    float: left;
    width: 80%;
    height: 100%;
    margin: 115px 10% 0;
    padding: 0;
}

main>.contact .about .details {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

main>.contact .about .details h3 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 45px;
    padding: 0 0 0 100px;
    font-size: 26px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: -0.1px;
    color: #ffffff;
    text-align: left;
}

main>.contact .about .details .info {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 70px;
    padding: 0 0 0 100px;
}

main>.contact .about .details .info ul {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

main>.contact .about .details .info ul li {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    float: left;
    width: 100%;
    height: auto;
    min-height: 60px;
    margin: 0 0 20px;
    padding: 0 0 0 82.5px;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
}

main>.contact .about .details .info ul li:last-child {
    margin-bottom: 0;
}

main>.contact .about .details .info ul li img {
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    display: inline-block;
    float: left;
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 18px;
    background-color: rgba(255, 255, 255, 0.13);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

main>.contact .about .details h2 {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    padding: 65px 0 0 100px;
    font-size: 26px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: -0.1px;
    color: #ffffff;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

main>.contact .about .details .contact {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 45px;
    padding: 0 0 0 100px;
}

main>.contact .about .details .contact ul {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

main>.contact .about .details .contact ul li {
    position: relative;
    display: inline-block;
    float: left;
    width: auto;
    height: auto;
    margin: 0 85px 0 0;
    padding: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    line-height: 34px;
    color: #ffffff;
}

main>.contact .about .details .contact ul li:last-child {
    margin-right: 0;
}

main>.contact .about .details .contact ul li a {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #ffffff;
}