@import url('https://use.typekit.net/ipq0tul.css');

html {
    font-family: "acumin-pro", sans-serif;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #000000;
    background-color: #FFFFFF;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    height: 100%;
}

/* Resets */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}

a:hover,
a:active,
a:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    margin-bottom: 2rem;
    line-height: 1.15;
}

p {
    margin: 0;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-size: 2rem;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

a {
    line-height: inherit;
    font-size: inherit;
    color: inherit;
}

ul {
    margin: 0;
}

ul li {
    line-height: 1.5;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

ul li:last-child {
    margin-bottom: 0;
}


/* Components */

.container {
    width: 100%;
    max-width: 120rem;
    padding: 0 4rem;
    margin: 0 auto;
}

.container--fluid {
    max-width: 100%;
    padding: 0;
}

.container--no_padding {
    padding: 0;
}

@media only screen and (max-width: 1023px) {
    .container {
        padding: 0 4rem;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        padding: 0 2.5rem;
    }
}

.no_margin_bottom {
    margin-bottom: 0;
}

header {
    padding: 1.5rem 0;
}


.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__left img {
    display: block;
    height: 5rem;
    width: auto;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .header__left img {
        height: 3rem;
    }
}

.header__right p {
    margin: 0.25rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .header__right {
        display: none;
    }
}

.header__right p img {
    width: 2rem;
    display: inline-block;
}

.header__right p a {
    text-decoration: none;
    color: #009DE1;
    margin-left: 0.5rem;
}

.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
}

.hero__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
	padding-top: 2rem
}

@media only screen and (max-width: 767px) {
    .hero__wrapper {
        flex-direction: column;
        gap: 3rem
    }
}


.hero__left {
    width: 60%;
	padding-top: 10rem;
}

@media only screen and (max-width: 767px) {
    .hero__left {
        width: 100%;
        text-align: center;
		padding-top: 0;
    }
}

.hero__left h1 {
    font-size: 5rem;
    font-weight: 100;
    color: #FFFFFF;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .hero__left h1 {
        font-size: 2.5rem;
    }
}

.hero__right {
    width: 40%;
    background-color: #FFFFFF;
    padding: 2rem 2rem 0rem 2rem;
    border-radius: 1rem;
    box-shadow: 0px 0px 50px rgba(49, 0, 91, 0.2);
    max-width: 40rem;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .hero__right {
        width: 100%;
		max-width: 100%;
    }
}

.hero__right p {
    font-weight: 100;
    font-size: 1.6rem;
    line-height: 1.25;
}

.hero__right p strong {
    font-weight: 700;
    font-size: 2rem;
}

.info {
    padding: 7rem 0;
}

.info__wrapper {
    display: flex;
    gap: 5rem;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .info__wrapper {
        flex-direction: column;
    }
}

.info__left {
    width: 60%;
}

@media only screen and (max-width: 767px) {
    .info__left {
        width: 100%;
    }
}

.info__left h2 {
    font-size: 3rem;
}

.info__left h2 span {
    color: #3A9BDC;
}

.info__left p {
    color: #9C9C9C;
}

.info__left p span {
    color: #000000;
    font-weight: 500;
}

.info__right {
    width: 40%;
    max-width: 40rem;
    text-align: center;
    border-left: solid 1px #CCC;
    padding: 0 0 0 4rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .info__right {
        width: 100%;
        border-left: none;
        padding: 0;
    }
}

.info__right p {
    width: calc(50% - 1.5rem);
    padding: 1rem;
    border: solid 1px #CCC;
    margin-bottom: 0;
    aspect-ratio: 1/0.75;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}



.info__right p.active {
    border: 0;
    background-color: #C2E4F4;
    box-shadow: 0px 0px 50px rgba(49, 0, 91, 0.2);
    transform: translateY(-5%);
}

.info__right:hover p {
    border: solid 1px #CCC;
    background-color: #FFFFFF;
    box-shadow: unset;
    transform: translateY(0);
}

.info__right p:hover {
    border: 0;
    background-color: #C2E4F4;
    box-shadow: 0px 0px 50px rgba(49, 0, 91, 0.2);
    transform: translateY(-5%);
}

.stats {
    padding: 7rem 0;
    background-color: #F7F7F7;
}

.stats__wrapper {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .stats__wrapper {
        flex-direction: column;
    }
}

.stats__detail {
    width: 20%;
    text-align: center;
    border-left: solid 1px #3A9BDC;
    padding: 2rem 0;
}

@media only screen and (max-width: 767px) {
    .stats__detail {
        width: 100%;
        border-left: none;
        border-top: solid 1px #3A9BDC;
    }
}

.stats__detail:first-child {
    border-left: none;
}

@media only screen and (max-width: 767px) {
    .stats__detail:first-child {
        border-top: none;
    }
}

.stats__detail h2 {
    font-size: 3rem;
    color: #3A9BDC;
    margin-bottom: 0;
}

.solutions {
    padding: 7rem 0;
    background-color: #C2E4F4;
}

.solutions__wrapper h2 {
    font-size: 3rem;
    margin-bottom: 6rem;
    text-align: center;
}

.solutions__detail__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .solutions__detail__wrapper {
        gap: 2rem
    }
}

.solutions__detail {
    width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .solutions__detail {
        width: calc(50% - 1rem);
    }
}

.solutions__detail img {
    width: 100%;
    display: block;
    max-width: 10rem;
}

@media only screen and (max-width: 767px) {
    .solutions__detail img {
        max-width: 6rem;
    }
}

.solutions__detail p {
    margin-top: 2rem;
}

.industry {
    padding: 7rem 0;
    background-image: url('../images/industry-bg.jpg');
}

.industry__wrapper h2 {
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 6rem;
    text-align: center;
}

.industry__wrapper h2 span {
    color: #3A9BDC;
}

.industry__desktop, .industry__mobile {
    display: block;
    width: 100%;
}


.industry__mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .industry__desktop {
        display: none;
    }
    
    .industry__mobile {
        display: block;
    }
}

.cms {
    padding: 7rem 0;
}

.cms__wrapper {
    display: flex;
    gap: 5rem;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .cms__wrapper {
        flex-direction: column;
    }
}

.cms__left {
    width: 60%;
}

@media only screen and (max-width: 767px) {
    .cms__left {
        width: 100%;
    }
}

.cms__left h2 {
    font-size: 3rem;
}

.cms__left h2 span {
    color: #3A9BDC;
}

.cms__left p {
    color: #000000;
}

.cms__left p span {
    color: #3A9BDC;
    font-weight: 500;
}

.cms__right {
    width: 40%;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0px 0px 50px rgba(49, 0, 91, 0.2);
}

@media only screen and (max-width: 767px) {
    .cms__right {
        width: 100%;
    }
}

.cms__right img {
    width: 100%;
    display: block;
}

.features {
    padding: 7rem 0;
    background-color: #3A9BDC;
}

.features__wrapper h2 {
    font-size: 3rem;
    margin-bottom: 6rem;
    text-align: center;
    color: #FFFFFF;
}

.features__detail__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .features__detail__wrapper {
        gap: 3rem;
    }
}

.features__detail {
    width: 45%;
    text-align: left;
    display: flex;
    flex-direction: row;
    color: #FFFFFF;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .features__detail {
        width: 100%;
    }
}

.features__detail img {
    width: 20%;
    display: block;
    max-width: 10rem;
}

.features__detail p {
    width: 80%;
    padding-left: 3rem;
}


.contact {
    background-image: url('../images/contact-bg.png');
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
}

.contact__wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
}

@media only screen and (max-width: 767px) {
    .contact__wrapper {
        flex-direction: column;
        gap: 3rem
    }
}


.contact__left {
    width: 60%;
}

@media only screen and (max-width: 767px) {
    .contact__left {
        width: 100%;
    }
}

.contact__left h2 {
    font-size: 3rem;
    font-weight: 100;
    color: #FFFFFF;
    margin-bottom: 0;
}

.contact__left h2 strong {
    font-size: 5rem;
}

@media only screen and (max-width: 767px) {
    .contact__left h2 {
        text-align: center;
    }
    
    .contact__left h2 {
        font-size: 2.5rem;
    }
    
    .contact__left h2 strong {
        font-size: 2.5rem;
    }

}

.contact__right {
    width: 40%;
    background-color: #FFFFFF;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0px 0px 50px rgba(49, 0, 91, 0.2);
    max-width: 40rem;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .contact__right {
        width: 100%;
    }
}

.contact__right p {
    font-weight: 100;
    font-size: 1.6rem;
    line-height: 1.25;
}

.contact__right p strong {
    font-weight: 700;
    font-size: 2rem;
}

footer {
    padding: 3rem 0;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

@media only screen and (max-width: 767px) {
    .footer__wrapper {
        flex-direction: column;
    }
}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

@media only screen and (max-width: 767px) {
    .footer__left {
        width: 100%;
    }
}

.footer__left a img{
    width: 100%;
    display: block;
    max-width: 20rem;
}

.footer__right {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .footer__right {
        width: 100%;
        text-align: center;
    }
}

.footer__right p {
    margin: 0.25rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.footer__right p img {
    width: 2rem;
    display: inline-block;
}

.footer__right p a {
    text-decoration: none;
    color: #009DE1;
    margin-left: 0.5rem;
}


.solutions-carousel {
        display: flex;
        justify-content: space-between;
        padding: 2em 2em;
        position:relative;
        text-align:center;
    }

    .solutions-carousel-controls {
        width:100%;
        position: absolute;
        top: 0;
        -webkit-touch-callout: none; 
        -webkit-user-select: none;  
        -khtml-user-select: none;  
        -moz-user-select: none;     
        -ms-user-select: none;  
        user-select: none;
    }
    
    .solutions-carousel-controls-prev {
        position: absolute;
        font-size: 32px;
        text-align: center;
        line-height: 40px;
        height: 40px;
        width: 40px;
        top: 130px;
        left: -40px;
        z-index: 1;
        color: #FFF;
        cursor: pointer;
    }
    
    .solutions-carousel-controls-prev:hover {
        color: #0F0F0F;  
    }
    
    .solutions-carousel-controls-next {
        position: absolute;
        font-size: 32px;
        text-align: center;
        line-height: 40px;
        height: 40px;
        width: 40px;
        top: 130px;
        right: 20px;
        z-index: 1;
        color: #FFF;
        cursor: pointer;
    }
    
    .solutions-carousel-controls-next:hover {
        color: #0F0F0F;  
    }

    .solutions-box {
        width: auto;
        height: auto;
        background: transparent;
        position: relative;
    }

    .solutions-box img {
        width: 100%;
        max-width: 100px;
        margin: 0 auto;
        height: auto;
    }
    
    .solutions-box p {
        padding: 0.8em;
        font-size: 1.7rem;
        color: #FFFFFF;
    }
