


/***************************
          DEFAULT
****************************/


figure {
    padding: 0;
    margin: 0;
}

figure img {
    width: 100%;
    height: 100%;
}

div,
section,
button,
a,
article,
header,
figure {
    position: relative;
}




p {
    line-height: 1.9em;
}

figure img {
    width: 100%;
}

.title,
.sub_title {
    line-height: 1.4;
}

.flex,
.fixed_flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
}

.flex_content {
    width: 100%;
}

.grid {
    display: grid;
}

.t_center {
    text-align: center;
}

.padding_1x {
    padding: 1rem;
}

.padding_2x {
    padding: 2rem;
}

.padding_3x {
    padding: 3rem;
}

.padding_4x {
    padding: 4rem;
}


.tag {
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}


.close {
    position: absolute;
    top: 0.5rem;
    right: 0.3rem !important;
    color: var(--dark) !important;
}



@media (max-width:920px) {

    .padding_1x,
    .padding_2x,
    .padding_3x,
    .padding_4x {
        padding: 1rem;
    }

}

@media (max-width:620px) {
    .flex {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-direction: column;
    }

}


:root {
    --primary-color_dark: #0d4108;
    --primary-color_lite: #94ef94;
    --secondary: #181f27;
}


/***************************
         DEFAULT
****************************/



fieldset {
    margin: 0;
    border: 0;
}

.title,
.sub_title {
    color: var(--secondary);
}


.tag {
    text-transform: uppercase;
}


/***************************
          MAIN
****************************/

/*DIVISION_1*/
.division_1 ul 
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0;
}

.division_1 ul li {
    margin: 1rem;
    border-radius: 10px;
    background-color: var(--white);
    -webkit-box-shadow: inset 0px 0px 0px 3px rgba(1, 1, 1, 0.1);
    -moz-box-shadow: inset 0px 0px 0px 3px rgba(1, 1, 1, 0.1);
    box-shadow: inset 0px 0px 0px 3px rgba(1, 1, 1, 0.1);
    position: relative;
    overflow: hidden;
}

.division_1 ul li:before,
.division_1 ul li:after {
    content: "";
    position: absolute;
    width: 20%;
    height: 30%;
    transition: 0.5s;
}

.division_1 ul li:hover:before,
.division_1 ul li:hover:after {
    width: 100%;
    height: 100%;
}

.division_1 ul li:before {
    left: 0;
    top: 0;
    border-top: 3px solid #2e279d ;
    border-left: 3px solid #2e279d;
}

.division_1 ul li:after {
    right: 0;
    bottom: 0;
    border-bottom: 3px solid #2e279d;
    border-right: 3px solid #2e279d;
}

.division_1 ul li iconify-icon {
    padding: 1rem;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 10px;
}

.division_1 ul li p {
    font-weight: 400;
}


@media (device-width:1024px)
{
    .division_3 {
        padding: 1rem 1rem;
    }
}


@media (max-width:767px)
{
    .division_1 ul 
    {
        grid-template-columns: 1fr;
        padding: 0;
    }

}


@media (max-width:620px) {
    .division_1 ul {
        padding: 0 !important;
    }

    .division_1 ul li {
        margin: 0.5rem 0;
    }
}


/*DIVISION_2*/

.division_2 .content {
    align-items: center;
}

.division_2 li {
    position: relative;
    font-weight: 400;
    color: var(--gray);
}

.division_2 li:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 80%;
    right: 0;
    height: 1px;
    background-color: rgba(1, 1, 1, 0.1);
}

.division_2 .small {
    font-size: 1.6em;
}

.division_2 li:before {
    counter-increment: list;
    content: "0" counter(list);
    position: absolute;
    font-size: 1.2em;
    top: -1rem;
    left: -1rem;
    opacity: 0.15;
}

.division_2 figure {
    position: relative;
    pointer-events: none;
}

.division_2 figure:before {
    content: "";
    width: 60%;
    height: 90%;
    position: absolute;
    right: 10%;
    border-radius: 30px;
    border-right: 2px dotted var(--primary-color);
    border-top: 2px dotted var(--primary-color);
    z-index: -1;
}

@media (max-width:1280px) {
    .division_2 .small {
        font-size: 1.3em;
    }
}

@media (max-width:1020px) {
    .division_2 .small {
        font-size: 1.1em;
    }
}


/*DIVISION_3*/

.division_3 {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    overflow: hidden;
    padding: 2rem 4rem;
}

.division_3:after,
.division_3:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color_dark);
    border-radius: 100px;
    z-index: 1;
    opacity: 0.2;
    transform: rotate(10deg);
}

.division_3:after {
    bottom: -100px;
    right: -5%;
}

.division_3:before {
    top: -100px;
    left: -5%;
}

.division_3 section {
    z-index: 11;
}

.division_3 section .title {
    color: var(--white);
}

.division_3 section:first-child {
    align-items: center;
    justify-content: center;
}

.division_3 figure {
    border: 5px solid var(--white);
    border-radius: 100%;
    position: relative;
}

.division_3 figure img {
    object-position: top;
    object-fit: cover;
    border-radius: 50%;
}

.division_3 section:first-child figure:first-child {
    width: 150px;
    height: 150px;
    border: 10px solid var(--white);
    z-index: 5;
}

.division_3 section:first-child figure:nth-child(2) {
    width: 130px;
    height: 130px;
    left: -1.5rem;
    z-index: 4;
    opacity: 0.95;
    filter: blur(0.6px);
}

.division_3 section:first-child figure:nth-child(3) {
    width: 100px;
    height: 100px;
    z-index: 3;
    left: -3rem;
    opacity: 0.9;
    filter: blur(0.8px);
}

.division_3 section:first-child figure:nth-child(4) {
    width: 80px;
    height: 80px;
    z-index: 2;
    left: -4.5rem;
    opacity: 0.85;
    filter: blur(1px);
}

.division_3 section:first-child figure:nth-child(5) {
    width: 60px;
    height: 60px;
    z-index: 1;
    left: -6rem;
    opacity: 0.8;
    filter: blur(1.5px);
}

.division_3 section:first-child figure:first-child:after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 70%;
    width: 10px;
    height: 50px;
    border-radius: 0 0 10px 10px;
    background-color: var(--white);
    transform: translate(-30%, 0) rotate(-20deg);
}

@media (max-width:920px) {
    .division_3 section:first-child figure:first-child {
        width: 100px;
        height: 100px;
        border: 6px solid var(--white);
    }

    .division_3 section:first-child figure:first-child:after {
        width: 6px;
        height: 30px;
        bottom: -30px;
    }

    .division_3 section:first-child figure:nth-child(2) {
        width: 80px;
        height: 80px;
    }

    .division_3 section:first-child figure:nth-child(3) {
        width: 60px;
        height: 60px;
    }

    .division_3 section:first-child figure:nth-child(4) {
        width: 40px;
        height: 40px;
        left: -4rem;
    }

    .division_3 section:first-child figure:nth-child(5) {
        width: 20px;
        height: 20px;
        left: -4.5rem;
    }

    .division_3 {
        padding: 1rem;
    }

    .division_3:after,
    .division_3:before {
        width: 200px;
        height: 200px;
        border-radius: 50px;
    }
}




/*ZOOM IN*/
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}



/********form********/



.file {
    position: relative;
    display: flex;
    /* justify-content: center; */
    align-items: center;
  }
  
  .file > input[type='file'] {
    display: none
  }
  
  .file > label {
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    outline: 0;
    user-select: none;
    border-color: rgb(216, 216, 216) rgb(209, 209, 209) rgb(186, 186, 186);
    border-style: solid;
    border-radius: 8px;
    border-width: 1px;
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 29%);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .file > label:hover {
    border-color: hsl(0, 0%, 21%);
  }
  
  .file > label:active {
    background-color: hsl(0, 0%, 96%);
  }
  
  .file > label > i {
    padding-right: 5px;
  }
  
  .file--upload > label {
    color: hsl(204, 86%, 53%);
    border-color: hsl(204, 86%, 53%);
  }
  
  .file--upload > label:hover {
    border-color: hsl(204, 86%, 53%);
    background-color: hsl(204, 86%, 96%);
  }
  
  .file--upload > label:active {
    background-color: hsl(204, 86%, 91%);
  }