﻿:root {
    --color-white: #FFFFFF;
    --color-ghost: #F2F2F2;
    --color-light: #DCDFE3;
    --color-silver: #A8A8A8; /*grey2 in figma*/
    --color-match: #E6E6E6;
    --color-gray: #63666A;
    --color-carbon: #353535;
    --color-dark: #090909;
    --color-black: #000000;
    --color-brand-1: #3F2A56;
    --color-brand-2: #6E6D8D;
    --color-brand-3: #8C7F99;
    --color-brand-4: #FFFFFF;
    --color-vue-1: #41B883;
    --color-vue-2: #35495E;
    --color-error: #562A2A;
    --color-success: #2D562A;
    --white: #FFFFFF;
    --black: #000000;
    --light-black: #343434;
    --grey: #565555;
    --grey2: #A8A8A8;
    --grey3: #EDEBEC;
    --light-grey2: #F7F5F6;
    --violet: #3F2A56;
    --violet2: #6E6D8D;
    --violet2b: #8C7F99;
    --violet3: #F4F2F7;
}

@font-face {
    font-family: "Effra Medium";
    src: url("../../fonts/Effra_Trial_Md.ttf");
}

@font-face {
    font-family: "Effra Thin";
    src: url("../../fonts/Effra_Trial_Th.ttf");
}

@font-face {
    font-family: "Effra Bold";
    src: url("../../fonts/Effra_Trial_XBdIt.ttf");
}

@font-face {
    font-family: "Effra";
    src: url("../../fonts/Effra_Trial_Rg.ttf");
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
}

::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--violet);
    border-radius: 6px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--violet);
    }

::-webkit-scrollbar-button {
    display: none;
}

html {
    font-family: 'Effra', sans-serif;
    overflow-x: hidden;
    font-size: 10px;
    font-weight: 400;
}

body {
    font-size: 1.4rem;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--white);
    color: var(--gray);
    transition: all 0.2s;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h1 {
    font-size: 4.6rem;
    font-weight: 400;
}

    h1:focus {
        outline: none;
    }

h2 {
    font-size: 3.6rem;
    font-weight: 400;
}

h3 {
    font-size: 2.4rem;
    font-weight: 400;
}

h4 {
    font-size: 2rem;
    font-weight: 400;
}

p {
    font-size: 1.8rem;
    font-weight: 300;
}

small {
    font-size: 1.4rem;
}

button {
    cursor: pointer;
    border: none;
}



fieldset,
button,
input[type="submit"] {
    border: none;
}

.container-wide {
    margin: 0 auto;
    width: 100%;
    max-width: 192rem;
}

.container {
    width: 100%;
    max-width: 134rem;
    margin: 0 auto;
    display: flex;
}

@media (max-width: 1500px) {
    .container {
        padding-right: 5rem;
        padding-left: 5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}

main {
    padding-top: 11.2rem;
    min-height: calc(100vh - 10.369rem + 11.2rem);
}

.overlay {
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
    background-color: transparent;
    overflow: hidden;
}

.overlay > div {
    width: 100%;
    height: 100%;
}

    .overlay:hover {
        background-color: rgba(63, 42, 86, .64);
    }

    .overlay img {
        transition: all .5s;
        z-index: -1;
        width: 100%;
        height: 100% !important;
    }

    .overlay:hover img {
        transform: scale(1.1);
    }


.zoom-in {
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
}

    .zoom-in > div {
        overflow: hidden;
    }

    .zoom-in img {
        transition: all .5s;
    }

    .zoom-in:hover img {
        transform: scale(1.1);
    }


.fullscreen-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1; 
}

