
:root {
    --color-primary : #2A5CBF;
    --color-orange-600: #EA8208;
    --color-orange-50:#FCD6AB;

    --color-secundary: #1E82F7;
    --color-secundary-900: #054086;
    
    
    --color-neutro-50: #F1EFED;
    --color-neutro-500: #DAD5CF;
    --color-neutro-600: #B5AB9F;
    --color-neutro-900: #302B25;
}

h1, h2, h3, h4, h5, h6 {
    font-style: normal;
    font-weight: inherit;
}


.hide-mobile {
    display: none;
}
.hide-desktop {
    display: none;
}


html {
    font-size: 100%;
    box-sizing: border-box;
    font-family: "Open Sans", Verdana;
    color: #1F271B;
}
*{
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    background-image: linear-gradient(#2A5CBF 0, #FFFFFF 25%);
    color:var(--color-neutro-900);
    
}

a {
    color: black;
}

/* BTN MOBILE*/
.btn_hamburger {
    display: none;
}


.label_btn {
    display: block;
    cursor: pointer;
    width: 25vw;
    height: 25vw;
    max-width: 150px;
    max-height: 150px;
}

path {
    fill: none;
    stroke: grey;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    --length: 24;
    --offset: -38;
    stroke-dasharray: var(--length) var(--total-length);
    stroke-dashoffset: var(--offset);
    transition: all .8s cubic-bezier(.645, .045, .355, 1);
}

circle {
    fill: #fff3;
    opacity: 0;
}

.cross input:checked+svg .line--1,
.cross input:checked+svg .line--3 {
    --length: 22.627416998;
}

.cross input:checked+svg .line--2 {
    --length: 0;
}

.back input:checked+svg .line--1,
.back input:checked+svg .line--3 {
    --length: 8.602325267;
}

.menu--1 .line--1,
.menu--1 .line--3 {
    --total-length: 126.64183044433594;
}

.menu--1 .line--2 {
    --total-length: 70;
}

.menu--1 input:checked+svg .line--1,
.menu--1 input:checked+svg .line--3 {
    --offset: -94.1149185097;
}

.menu--1 input:checked+svg .line--2 {
    --offset: -50;
}

/*header*/

header {
    background-color: var(--color-orange-50);
    box-shadow: var(--color-neutro-900) 0px 2px 10px;
    width: 100%;
    max-width: 1440px;
    margin-bottom: 20px;
}


.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu_items {
    display: none;
}

.menu_items a {
    position: relative;
    line-height: 24px;
    text-decoration: none;
    padding: 10px;
    margin: 0 5px;
}

.menu .menu_items a:before,
.menu .menu_items a:after {
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
}

.menu .menu_items a::before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #0883a4;
    transform: scaleX(0);
}

.menu .menu_items a:hover::before {
    transform: scaleX(1);
}

.section { 
    width: 100%;
}

.container {
    background-image: url('../images/bg-mobile.svg');
    background-repeat: no-repeat;
    background-position: top right;
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    height: 100vh;
}

/*
 ## HERO SECTION
*/


.hero {
    display: grid;
    justify-items: center;
    padding-bottom: 20px;
}

.hero-logo {
    width: 100%;
    margin: 0 auto;
}
.hero_logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 120px;
    justify-content: center;
    place-items: center;
    gap: 20px;
    > img 
    {
        height: 70px;
    }
    
}


.hero-title {
    margin: 0;
    font-size: 1.656rem;
    line-height: 42px;
    text-align: center;
}

.player {
    width: 100%;
    display: grid;
    justify-items: center; 
    margin-top: 20px;   
}


.player-body {
    position: relative;
    width: 180px;
    height: 180px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
}
.player-button {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    width: 80px;
    height: 80px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.player-button > a {
    width: 70px;
    height: 70px;
    display: grid;
    align-items: center;
    justify-items: center;
    background-color: var(--color-primary);
    border-radius: 50%;
}
.player-button > a > img {
    width: 30px;
    height: 30px;
}
.player-image {
    padding: 0;
    margin: 0;
    z-index: 2;
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url('../images/banner.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.player-bg--inner{
   background-color: var(--color-primary);
   height: 150px;
   width: 150px;
   border-radius: 50%;
   position: absolute;
}
.player-bg{
    width: 180px;
    height: 180px;
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0.25;
}


.social-media {
    background-color: var(--color-primary);
    padding: 15px;
    border-radius: 10px;
    margin: 20px auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 105px;
    max-width: 105px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0 ,0.25);
}


.social-media > a {
    display: block;
    height: 25px;
}


/**
PARTNERS
*/

.partners {
    margin: 0 auto;
}
.partners--title {
    text-align: center;
}

.hiden-mobile {
    display: none;
}

.slider {
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
}

.slider--inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 320px;
    transition: all ease-in 500ms;
}
.slider--item{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (min-width:565px) 
{
    .list_partners{
        display: flex;
        flex-wrap: wrap;
    }
    .partner_item {
        width: 200px;
    }

}

@media (min-width:768px){
    .partner_item {
        width: 180px;
    }
}
@media (min-width:1024px) {
    body
    {
        background: linear-gradient(to left, rgba(42, 92, 191, 0.5) 0px, rgba(255, 255, 255, 1) 50%);
    }
    .container 
    {
        background-image: url('../images/svg/background.svg');
        padding: 20px 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        align-items: center;
    }
    .hero-container
    {
        width: 400px;
    }
    .hero_logos {
        > img {
            height: 150px;
        }
        
    }
    .player {
        width: 500px;
    }

    .btn_hamburger{
        display: none;
    }
    .menu
    {
        justify-content: center;
        margin: 40px 0;        
    }
    .menu_items 
    {
        display: flex;
        padding: 20px;
        gap: 70px;
        text-transform: uppercase;
    }

    .slider {
        max-width: 420px;
    }
    .slider--inner {
        height: 420px;
    }
}