@font-face {
    font-family: 'ttc';
    src: url('../fonts/TTc/TT Commons Medium.eot');
    src: url('../fonts/TTc/TT Commons Medium.eot') format('embedded-opentype'),
        url('../fonts/TTc/TT Commons Medium.woff') format('woff'),
        url('../fonts/TTc/TT Commons Medium.woff2') format('woff2'),
        url('../fonts/TTc/TT Commons Medium.ttf') format('truetype'),
        url('../fonts/TTc/TT Commons Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ttc-light';
    src: url('../fonts/TTc_light/TT Commons Light.eot');
    src: url('../fonts/TTc_light/TT Commons Light.eot') format('embedded-opentype'),
        url('../fonts/TTc_light/TT Commons Light.woff') format('woff'),
        url('../fonts/TTc_light/TT Commons Light.woff2') format('woff2'),
        url('../fonts/TTc_light/TT Commons Light.otf') format('truetype'),
        url('../fonts/TTc_light/TT Commons Light.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'mermaid';
    src: url('../fonts/mermaid/Mermaid1001.eot');
    src: url('../fonts/mermaid/Mermaid1001.eot') format('embedded-opentype'),
        url('../fonts/mermaid/Mermaid1001.woff') format('woff'),
        url('../fonts/mermaid/Mermaid1001.woff2') format('woff2'),
        url('../fonts/mermaid/Mermaid1001.ttf') format('truetype'),
        url('../fonts/mermaid/Mermaid1001.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

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

a {
    display: inline-block;
}

ul {
    list-style: none;
}

p {
    line-height: 120%;
}

body {
    font-size: 20px !important;
    color: #000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'mermaid';
    line-height: 130%;
    font-weight: 500;
}

.demo_box_popup.open h2,
.demo_box_popup.open h3,
.demo_box_popup.open h4,
.demo_box_popup.open h5 {
    font-family: 'Poppins', sans-serif;
}

.main_container {
    max-width: calc(100% - 350px);
    margin: 0 auto;
    padding: 0 15px;
}

.max_container {
    max-width: calc(100% - 250px);
    margin: 0 auto;
    padding: 0 15px;
}

.min_width {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.bt_des {
    padding: 8px 18px;
    background: #FED204;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'ttc-light';
}

.rmc_gradient {
    background: #FED204;
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
}


/* Shadow Radial */
.shadow_radial:hover {
    -webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
    transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
    -webkit-animation: anim-moema-1 0.3s forwards;
    animation: anim-moema-1 0.3s forwards;
}

.shadow_radial {
    position: relative;
}

.shadow_radial:hover::before {
    -webkit-animation: anim-moema-2 0.3s 0.3s forwards;
    animation: anim-moema-2 0.3s 0.3s forwards;
    background: #FED204;
}

.shadow_radial::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    border-radius: 10px;
    z-index: -1;
    opacity: 0.4;
    -webkit-transform: scale3d(0.8, 0.5, 1);
    transform: scale3d(0.8, 0.5, 1);
}

@-webkit-keyframes anim-moema-1 {
    60% {
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
    }

    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes anim-moema-1 {
    60% {
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
    }

    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes anim-moema-2 {
    to {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes anim-moema-2 {
    to {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* SPEECH BUBBLES */

@media (max-width:2000px) {
    .main_container {
        max-width: calc(100% - 330px);
    }

    .max_container {
        max-width: calc(100% - 200px);
    }
}

@media (max-width:1630px) {
    .main_container {
        max-width: calc(100% - 250px);
    }

    .max_container {
        max-width: calc(100% - 150px);
    }
}

@media(max-width: 1400px) {
    .main_container {
        max-width: calc(100% - 150px);
    }

    .max_container {
        max-width: calc(100% - 100px);
    }

    p {
        font-size: 18px;
    }
}

@media (max-width:1300px) {}

@media (max-width:992px) {

    .main_container,
    .max_container {
        max-width: calc(100% - 30px);
    }

}

@media (max-width:768px) {

    .main_container,
    .max_container {
        max-width: 100%;
    }
}

@media (max-width:576px) {}

@media (max-width:380px) {}

@media (max-width:320px) {}