/* Color declaration */
:root {
    --primary: #219AFE;
    --secondary: #3E68DC;
    --accent: #FF734C;
    --black: #231F1F;
    --white: #ffffff;
    --grey: #525252;

    --font-1: 'Roboto', sans-serif;
    --font-2: 'Nunito', sans-serif;
}

/* Font Declaration */
.font-48px {
    color: var(--black);
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 700;
    font-size: 3.0519rem;
    text-transform: none;
}

.font-39px{
    color: var(--black);
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 500;
    font-size: 2.4413rem;
    text-transform: none;
}

.font-31px{
    color: var(--black);
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 500;
    font-size: 1.9531rem;
}

.font-25px{
    color: var(--black);
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 400;
    font-size: 1.5625rem;
}

.font-20px{
    color: var(--black);
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem;
}

.font-16px {
    color: var(--black);
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 165%;
}

.font-14px {
    color: var(--black);
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
}

.font-13px {
    color: var(--black);
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 700;
    font-size: 0.8rem;
}


/* text color declaration */
.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-accent {
    color: var(--accent);
}

.color-white {
    color: var(--white);
}

.color-black {
    color: var(--black);
}

.color-grey {
    color: var(--grey);
}


/* Button Declaration */
.button-layout {
    background-color: var(--black);
    border-radius: 5px;
    color: var(--white);
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 8px 24px;
    letter-spacing: normal;
    text-transform: none;
    transition: .2s ease;
}

.button-layout:hover,
.button-layout.footer-button:hover {
    filter: brightness(.7);
}

/* Utils */
html,
body {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar-scrolled {
    background-color: var(--black) !important ;
}
/* End Navbar */

/* Header */
.header-bg {
    background-color: var(--black);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
}

.header-carousel {
    position: absolute !important;
    top: -60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 41vw !important;
    height: 100vh !important;
}

.header-carousel-image {
    width: 41vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.header-carousel .slick-prev {
    z-index: 1000;
    left: 10px;
}

.header-carousel .slick-next {
    z-index: 1000;
    right: 10px
}

.header-carousel .slick-next:before,
.header-carousel .slick-prev:before {
    color: var(--white);
}

.page-header {
    padding-top: 13rem;
}

.header-button {
    background-color: var(--white);
    color: var(--black);
}
/* End Header */


/* Content 1 */
#content1 {
    margin-top: 64px;
}

.c1-overlay-container {
    width: 100%;
    height: auto;
    position: relative;
    border: 3px solid var(--black);
    border-radius: 4px;
    overflow: hidden;
    transition: .5s ease;
}

.c1-overlay-img {
    width: 100%;
    height: 327px;
    display: block;
    object-fit: cover;
}

.c1-overlay-content {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    transition: .5s ease;
    background: rgba(29, 29, 29, 0.5);
}

.c1-item-container:hover .c1-overlay-content {
    background: rgba(29, 29, 29, 0.9);
}

.c1-overlay-description {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 37%;
    padding: 16px;
    transition: .5s ease;
}

.c1-overlay-container:hover .c1-overlay-description {
    height: 100%;
}

.c1-item-container {
    margin-bottom: 48px;
}

.c1-item-container:nth-last-of-type(-n+4) {
    margin-bottom: 24px;
}

.c1-overlay-button {
    background-color: var(--white);
    color: var(--black);
    font-size: 14px;
    padding: 8px;
    border: 1px solid var(--white);
    font-weight: 400;
}

/* Content 2 */
#content2 {
    margin-top: 64px;
}

.c2-vector-top {
    position: absolute;
    left: 0;
}

.c2-vector-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Content 3 */
#content3 {
    background: #F8F8F8;
    margin-top: 64px;
    padding: 64px 0;
}

.content3-carousel .slick-next:before,
.content3-carousel .slick-prev:before {
    color: var(--black);
}

.c3-item-description {
    height: 112px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.c3-item-profile {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--black);
    border-radius: 50%;
}

.c3-carousel-item:nth-child(odd) .c3-item-container {
    padding-right: 48px;
    border-right: 1px solid var(--black);
    margin-right: 24px;
}

.c3-carousel-item:nth-child(even) .c3-item-container {
    padding-left: 48px;
    border-left: 1px solid var(--black);
    margin-left: 24px;
}

.c3-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: .4s ease;
    opacity: .3;
}

.c3-arrow:hover {
    opacity: 1;
}


.c3-arrow.prev {
    left: -2%;
}

.c3-arrow.next {
    right: -2%;
}
/* End Content 3 */

/* Footer */
.footer-bg {
    background-color: var(--black);
}

.footer-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-logo {
    border: 1px solid var(--white);
    border-radius: 4px;
}

.footer-link-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-link-label {
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-content {
    padding-top: 32px;
    padding-bottom: 8px;
}

.footer-divider {
    margin-top: 32px;
    margin-bottom: 8px;
    border-color: var(--white);
}

@media (min-width: 768px) and (max-width: 997.98px) {

    /* Header */
    .header-bg {
        background: var(--black);
    }

    .page-header {
        padding-top: 9rem;
        padding-bottom: 3rem;
    }

    /* Content 3 */
    .c3-first-testimony {
        padding-right: 0;
        border: 0;
        margin-bottom: 48px;
    }

    .c3-second-testimony {
        padding-left: 0;
        border: 0;
    }
}

@media only screen and (max-width: 767.98px) {

    .font-48px {
        font-size: 32.432px;
    }

    .font-39px {
        font-size: 24px;
    }

    .font-31px {
        font-size: 22px;
    }

    .font-25px {
        font-size: 20px;
    }

    .font-20px {
        font-size: 18px;
    }

    .font-16px {
        font-size: 14px;
    }

    /* Button Declaration */


    /* Utils */


    /* Navbar */


    /* Header */
    .page-header {
        padding-top: 8.5rem;
        padding-bottom: .5rem;
    }

    .header-bg {
        background-position: right;
    }

    .mobile-header-carousel .slick-dots li.slick-active button:before {
        color: var(--white) !important;
    }

    /* Content 1 */
    .c1-item-container {
        margin-bottom: 48px;
    }

    .c1-item-container:nth-last-of-type(-n+4) {
        margin-bottom: 48px;
    }

    .c1-item-container:nth-last-of-type(-n+2) {
        margin-bottom: 24px;
    }

    .c1-overlay-button {
        padding: 4px;
        font-size: 13px !important;
    }

    .c1-overlay-content {
        padding: 8px;
    }

    .c1-overlay-img {
        height: 195px;
    }

    /* Content 2 */
    .c2-mobile-icon {
        width: 75px;
        height: 75px;
    }

    .c2-subtitle {
        font-weight: 700;
    }

    /* Content 3 */
    .c3-first-testimony {
        padding-right: 0;
        border: 0;
        margin-bottom: 48px;
    }

    .c3-second-testimony {
        padding-left: 0;
        border: 0;
    }

    .c3-subtitle {
        font-weight: 700;
    }

    /* Content 4 */


    /* Content 5 */


    /* Content 6 */


    /* Content 7 */

    /* Footer */
    .button-layout.footer-button {
        font-size: 2.027rem !important;
    }

}

@media only screen and (max-width: 991.98px) {

    #layoutDefault,
    #layoutDefault_footer {
        overflow-x: hidden;
    }

    /* Button Declaration */
    .button-layout {
        font-size: 16px;
    }

    /* Utils */


    /* Navbar */
    .navbar {
        background-color: var(--black) !important;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar-logo {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }

    /* Header */
    .header-bg {
        height: auto;
    }

    .mobile-header-carousel-image {
        width: 100%;
        object-fit: cover;
        height: 332px;
    }

    /* Content 1 */
    .c1-overlay-description {
        padding: 8px;
        height: 0;
    }

    .c1-overlay-container {
        border: 0;
    }

    .c1-overlay-content {
        background: 0;
    }

    /* Content 2 */
    .c2-vector-top,
    .c2-vector-bottom {
        width: 15%;
        height: auto;
        object-fit: contain;
    }

    .c2-subtitle {
        font-size: 18px;
    }

    .c2-description {
        font-size: 14px;
    }

    /* Content 3 */
    .c3-carousel-item:nth-child(odd) .c3-item-container,
    .c3-carousel-item:nth-child(even) .c3-item-container {
        padding-right: 0;
        border: 0;
        margin-right: 0;
        padding-left: 0;
        margin-left: 0;
        z-index: 1000;
    }

    .c3-arrow.prev {
        left: 10px;
    }

    .c3-arrow.next {
        right: 10px;
    }



    /* Content 4 */


    /* Content 5 */


    /* Content 6 */


    /* Content 7 */


    /* Footer */
    .footer-img {
        height: 20vh;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {

    /* Button Declaration */


    /* Utils */


    /* Navbar */


    /* Header */


    /* Content 1 */


    /* Content 2 */


    /* Content 3 */


    /* Content 4 */


    /* Content 5 */


    /* Content 6 */


    /* Content 7 */


    /* Footer */

}
