* {
    box-sizing: border-box;
}

/* ----- GLOBAL STYLES ----- */

.first-section-heading {
    padding: 4rem 0 6rem 0;
    background-image: url('../assets/images/homepage/we-inovate-you-bg.png');
    background-repeat: no-repeat;
    background-position-x: 85%;
    background-size: contain;
}

.cursor {
    cursor: pointer;
}

.opacity-1 {
    opacity: 1 !important;
}

.w-80 {
    width: 80% !important;
}

.h-80 {
    height: 80% !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.hash::before {
    content: '#';
    color: #6DD400;
}

.white-link {
    color: #fff;
    position: relative;
    display: inline-block;
}

.white-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.white-link:hover {
    color: #fff;
    text-decoration: none;
}

.black-link {
    color: #000;
    position: relative;
    display: inline-block;
}

.black-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.black-link:hover {
    color: #000;
    text-decoration: none;
}

/* --- COLOR --- */

.color-primary-black {
    color: #000;
}

.color-primary-white {
    color: #fff;
}

.color-primary-green {
    color: #6DD400;
}

.color-secondary-green {
    color: #35D900;
}

.color-primary-dark-grey {
    color: #222;
}

.color-secondary-mid-grey {
    color: #444;
}

.color-secondary-hell-grey {
    color: #555;
}

.color-secondary-blue-grey {
    color: #EFF3F6;
}

.color-secondary-dark-blue {
    color: #343562;
}

/* --- BG COLOR --- */

.color-primary-black-bg {
    background-color: #000;
}

.color-primary-white-bg {
    background-color: #fff;
}

.color-primary-green-bg {
    background-color: #6DD400;
}

.color-secondary-green-bg {
    background-color: #35D900;
}

.color-primary-dark-grey-bg {
    background-color: #222;
}

.color-secondary-mid-grey-bg {
    background-color: #444;
}

.color-secondary-hell-grey-bg {
    background-color: #555;
}

.color-secondary-blue-grey-bg {
    background-color: #EFF3F6;
}

.color-secondary-dark-blue-bg {
    background-color: #343562;
}

/* --- FONTS --- */

/* NOT FREE FOR COMERCIAL USE */

@font-face {
    font-family: Gilroy-Medium;
    src: url(../assets/fonts/Gilroy-Medium.ttf);
}

@font-face {
    font-family: Gilroy-Bold;
    src: url(../assets/fonts/Gilroy-Bold.ttf);
}

@font-face {
    font-family: AlegreyaSans-Regular;
    src: url(../assets/fonts/AlegreyaSans-Regular.otf);
}

@font-face {
    font-family: AlegreyaSans-Medium;
    src: url(../assets/fonts/AlegreyaSans-Medium.otf);
}

@font-face {
    font-family: AlegreyaSans-Black;
    src: url(../assets/fonts/AlegreyaSans-Black.otf);
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("./fonts/Roboto-Regular.woff2") format("woff2"), url("./fonts/Roboto-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-family: Gilroy-Bold;
    font-size: 90px;
    line-height: 90px;
}

h2 {
    font-family: Gilroy-Bold;
    font-size: 70px;
    line-height: 70px;
}

h3 {
    font-family: Gilroy-Bold;
    font-size: 42px;
}

.sub-headline {
    font-family: Gilroy-Medium;
    font-size: 30px;
}

.content-text-primary {
    font-family: Gilroy-Bold;
    font-size: 24px;
}

.content-text-secondary {
    font-family: AlegreyaSans-Regular;
    font-size: 24px;
}

.nav-link {
    text-transform: uppercase;
    font-family: AlegreyaSans-Medium;
    font-size: 18px;
    cursor: pointer;
}

.nav-link.active {
    font-family: AlegreyaSans-Black;
}

.nav-link.inmenu {
    text-transform: none;
}

.footer-link a {
    font-family: AlegreyaSans-Medium;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
}

.footer-link a:hover {
    color: #FFF;
}

.flex-1 {
    flex: 1;
}

/* Gaussian blur */

.gaussian-blur {
    position: relative;
}

.gaussian-blur::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #F7F8FD;
    z-index: -1;
}

.gb-filter-30::before {
    -webkit-filter: blur(30px);
    filter: blur(30px);
}

.gb-filter-50::before {
    -webkit-filter: blur(50px);
    filter: blur(50px);
}

.awsCertifiedDiv {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 150px;
    height: 150px;
    cursor: pointer;
}

.awsCertifiedDiv img {
    width: 100%;
}

/* Clients sections */

.clients-gray-overlay img {
    filter: grayscale(1);
    transition: .8s filter;
}

.clients-gray-overlay:hover img {
    filter: grayscale(0);
}

/* homepage -> creation-section */

.safari-adjusted-img {
    object-fit: contain;
}

/* custom scroll-bar */

.scroller {
    overflow-y: scroll;
    scrollbar-color: transparent transparent;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    box-shadow: none;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    max-height: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* --- SMALL DESKTOP DEVICES, TABLETS --- */

@media only screen and (max-width: 1200px) {
    .nav-link {
        font-size: 14px;
    }
}

@media only screen and (min-width: 770px) {
    .custom-d-md-none {
        display: none;
    }
    .custom-d-md-inline-block {
        display: inline-block;
    }
}

/* --- SMALL DEVICES, TABLETS --- */

@media only screen and (max-width: 770px) {
    .custom-d-none {
        display: none;
    }
    .custom-d-inline-block {
        display: inline-block;
    }
    .primary-btn {
        width: 315px;
        border-radius: 50px;
        background-color: #3ADA07;
    }
}

/* --- EXTRA SMALL DEVICES, PHONES --- */

@media (max-width: 991px) {
    h3 {
        font-size: 35px;
    }
    .nav-link {
        text-transform: none;
        font-size: 30px;
    }
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
    }
    .navbar-text {
        float: none;
        margin: 15px 0;
    }
    .navbar-collapse.collapse.in {
        display: block!important;
    }
}

@media only screen and (max-width: 768px) {
    .first-section-heading {
        padding: 20rem 0 0 0;
    }
    h1 {
        font-size: 64px;
        line-height: 64px;
    }
    h2 {
        font-size: 56px;
        line-height: 56px;
    }
    h3 {
        font-size: 30px;
    }
    .sub-headline {
        font-size: 24px;
    }
    .content-text-primary {
        font-size: 17px;
    }
    .content-text-secondary {
        font-size: 17px;
    }
    .nav-link {
        font-size: 14px;
    }
    .footer-link {
        font-size: 14px;
    }
    /* --- CONTACT SECTION --- */
    .contact-heading {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 46px;
        line-height: 46px;
    }
    h2 {
        font-size: 46px;
        line-height: 46px;
    }
    h3 {
        font-size: 22px;
    }
    .sub-headline {
        font-size: 20px;
    }
    .content-text-primary {
        font-size: 17px;
    }
    .content-text-secondary {
        font-size: 17px;
    }
    .footer-link {
        font-size: 18px;
    }
    /* --- CONTACT SECTION --- */
    .contact-heading {
        font-size: 30px;
    }
}