:root {
    --primarycolor: #57e964;
    --seconderycolor: #ffff42;
    --thirdcolor: #ffa500;
    --lightcolor: #ffffff;
    --bgcolor-1: #171a1c;
    --bgcolor-2: #22282a;
    --padding: 8%;
}
* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body::-webkit-scrollbar {
    width: 1em;
}
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--primarycolor);
}
body {
    font-family: 'Montserrat', sans-serif;
}
nav {
    background-color: var(--bgcolor-2);
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 8%;
    position: fixed;
    z-index: 1000;
}
nav h1 {
    color: var(--lightcolor);
    font-size: 200%;
}
nav h1 span {
    color: var(--primarycolor);
}
nav div {
    position: relative;
    top: 5px;
    left: 0px;
    height: 100%;
    width: 30px;
}
nav div .icon{
    position: relative;
    width: 30px;
    height: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    top: 25%;
    left: 30%;
}
nav div .icon span {
    width: 100%;
    height: 2px;
    margin-bottom: 1px;
    background-color: var(--lightcolor);
}
nav div .icon span:nth-child(2) {
        width: 50%;
        transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
}
nav div:hover span:nth-child(2) {
    width: 100%;
}
nav div ul {
    position: relative;
    flex-direction: column;
    background-color: var(--bgcolor-1);
    box-shadow: 0px 0px 5px 5px var(--bgcolor-2);
    list-style-type: none;
    width: 200px;
    z-index: -1;
    opacity: 0;
    border-radius: 10px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    left: -160px;
    top: 45%;
}
nav div:hover  ul {
    z-index: 3;
    opacity: 1;
}
nav div ul::after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent var(--primarycolor) transparent;
    position: absolute;
    right: 5px;
    top: -20px;
}
nav div ul li {
    margin-left: 0%;
    padding: 15px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
nav div ul li:hover {
    padding-left: 25px;
}
nav div ul li:hover a {
    color: var(--primarycolor);
}
nav div ul li:not(:last-child) {
    border-bottom: 1px solid black;
}
nav div ul li a {
    text-decoration: none;
    color: white;
    width: 100%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.one {
    background-color: var(--bgcolor-1);
    padding: 5% 8%;
    display: flex;
    justify-content: space-between;
}
@media (min-width:315px) and (max-width:500px) {
    .one {
        padding: 10% 8%;
    }
}
.one div p {
    color: var(--seconderycolor);
    font-size: 120%;
    margin-bottom: 15px;
}
.one div h1 {
    color: white;
    font-size: 220%;
    margin-bottom: 25px;
}
.one div h1 span {
    color: var(--primarycolor);
}
.one div h2 {
    color: white;
    font-size: 150%;
    margin-bottom: 35px;
}
.one div h2 span {
    color: var(--primarycolor);
}
.one div a.cv {
    background-color: var(--primarycolor);
    color: white;
    padding: 8px 18px;
    border: 2px solid var(--primarycolor);
    text-decoration: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 25px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.one div a.cv:hover {
    background-color: var(--bgcolor-1);
}
.one div article a img {
    width: 30px;
    height: 30px;
    margin-top: 45px;
    margin-right: 25px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.one div article a img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.one .image {
    width: 350px;
    height: 350px;
    position: relative;
    top: -25px;
    left: -100px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.one .image:hover {
    left: -250px;
    
}
.one .image img {
    width: 100%;
    height: 100%;
}
@media(max-width:767px) {
    .one .image img,
    .one .image {
        display: none;
    }
}
@media (min-width:767px) and (max-width:1199px) {
    .one .image{
        left: 30px;
    }
    .one .image:hover {
        left: -100px;
        
    }
}
.ser {
    position: relative;
    padding: 5%;
    background-color: var(--bgcolor-2);
}
@media (min-width:315px) and (max-width:500px) {
    .ser {
        padding: 12% 8%;
    }
}
.ser h1 {
    text-align: center;
    color: white;
    font-size: 50px;
    margin-bottom: 30px;
}
.ser h1 span {
    color: var(--primarycolor);
}
.ser .our {
    position: relative;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(215px,1fr));
    gap: 30px;
    width: 90%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);

    margin: auto;
}
.ser .our div {
    position: relative;
    background-color: var(--bgcolor-1);
    text-align: center;
    padding: 15% 13% 8%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: 0.3s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.ser .our div:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.ser .our div i {
    color: var(--primarycolor);
    font-size: 50px;
    margin-bottom: 30px;
}
.ser .our div h3 {
    color: white;
    font-size: 25px;
    margin-bottom: 20px;
}
.ser .our div p {
    color: var(--seconderycolor);
    line-height: 1.6;
    margin-bottom: 60px;
}
.ser .our div a {
    text-decoration: none;
    color: white;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.ser .our div a:hover {
    color: var(--thirdcolor);
}
.ski {
    position: relative;
    padding: 5% 10%;
    background-color: var(--bgcolor-1);
}
@media (min-width:315px) and (max-width:500px) {
    .ski {
        padding: 10% 5%;
    }
}
.ski h1 {
    text-align: center;
    color: white;
    font-size: 55px;
    margin-bottom: 30px;
}
.ski h1 span {
    color: var(--primarycolor);
}
.ski .my {
    display: flex;
    align-items: center;
}
@media (min-width:315px) and (max-width:767px) {
    .ski .my {
        flex-direction: column;
    }
}
.ski .my div.crea {
    flex-basis: 35%;
    margin-right: 60px;
}
@media (min-width:315px) and (max-width:767px) {
    .ski .my div.crea {
        margin-bottom: 30px;
        margin-right: 10px;
    }
}
.ski .my div.crea h3 {
    color: white;
    font-size: 30px; 
    margin-bottom: 14px;
}
.ski .my div.crea p {
    color: var(--seconderycolor);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.ski .my div.crea a {
    background-color: var(--primarycolor);
    color: white;
    padding: 8px 18px;
    border: 2px solid var(--primarycolor);
    text-decoration: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-bottom: 25px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.ski .my div.crea a:hover {
    background-color: var(--bgcolor-1);
}
.ski .my div.lls {
    flex-basis: 70%;
}
@media (min-width:315px) and (max-width:767px) {
    .ski .my div.lls {
        width: 100%;
    }
}
.ski .my div article {
    background-color: var(--bgcolor-2);
    padding: 15px;
    width: 90%;
    margin-bottom: 10px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.ski .my div article:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
@media (min-width:315px) and (max-width:767px) {
    .ski .my div.lls article {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
}



.ski .my div article p {
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
}

.ski .my div article div {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.ski .my div article div::after {
    content: attr(data-progress);
    color: white;
    position: absolute;
    top: -24px;
    right: 0%;
    font-size: 17px;
}
.ski .my div article div span {
    background-color: var(--thirdcolor);
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.pro {
    position: relative;
    padding: 5% 8%;
    background-color: var(--bgcolor-2);
}
@media (min-width:315px) and (max-width:500px) {
    .pro {
        padding: 12% 5%;
    }
}
.pro h1 {
    text-align: center;
    color: white;
    font-size: 55px;
    margin-bottom: 30px;
}
.pro h1 span {
    color: var(--primarycolor);
}
.pro .cts {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 30px;
}
.pro .cts div {
    background-color: var(--bgcolor-1);
    text-align: center;
    height: 300px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding-bottom: 18px;
}
.pro .cts div:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.pro .cts div img {
    width: 100%;
    height: 55%;
    margin-bottom: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.pro .cts div h3 {
    color: var(--primarycolor);
    margin-bottom: 15px;
}
.pro .cts div p {
    color: var(--seconderycolor);
    margin-bottom: 25px;
}
.pro .cts div a {
    background-color: var(--primarycolor);
    color: white;
    padding: 5px 30px;
    border: 2px solid var(--primarycolor);
    text-decoration: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-bottom: 25px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.pro .cts div a:hover {
    background-color: var(--bgcolor-1);
}
.abo {
    position: relative;
    padding: var(--padding);
    background-color: var(--bgcolor-1);
    display: flex;
    align-items: center;
    gap: 20px;
}
@media(min-width:350px) and (max-width:500px) {
    .abo {
        padding: 12% 5%;
    }
}
.abo img {
    width: 250px;
    height: 250px;
    margin-right: 50px;
}
@media(max-width:767px) {
    .abo img {
        display: none;
    }
}
.abo div {
    flex-basis: 70%;
}
@media(max-width:767px) {
    .abo div {
        flex-basis: 100%;
    }
}
.abo div h1 {
    color: white;
    font-size: 55px;
    margin-bottom: 25px;
}
@media(max-width:767px){
    .abo div h1 {
        text-align: center;
    }
}
.abo div h1 span {
    color: var(--primarycolor);
}
.abo div h3 {
    color: white;
    font-size: 25px;
    margin-bottom: 25px;
}
.abo div h3 span {
    color: var(--primarycolor);
}
.abo div p {
    color: var(--seconderycolor);
    line-height: 1.6;
}
.con {
    position: relative;
    padding: 5% 8%;
    background-color: var(--bgcolor-2);
}
@media(min-width:350px) and (max-width:500px) {
    .con {
        padding: 12% 8%;
    }
}
.con h1 {
    color: white;
    font-size: 55px;
    margin-bottom: 30px;
    text-align: center;
}
.con .act {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(210px,1fr));
    gap: 25px;
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-38%);
    -webkit-transform: translateX(-38%);
    -moz-transform: translateX(-38%);
    -ms-transform: translateX(-38%);
    -o-transform: translateX(-38%);
}
@media(max-width:1199px) {
    .con .act {
        position: relative;
        left: 40%;
        transform: translateX(-40%);
        -webkit-transform: translateX(-40%);
        -moz-transform: translateX(-40%);
        -ms-transform: translateX(-40%);
        -o-transform: translateX(-40%);
    }
}
.con .act div {
    padding: 20% 0%;
    height: 260px;
    text-align: center;
    background-color: var(--bgcolor-1);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.con .act div:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
@media(min-width:400px) and (max-width:606px) {
    .con .act div {
        padding: 10% 0%;
    }
}
.con .act div i {
    color: var(--primarycolor);
    font-size: 45px;
    margin-bottom: 30px;
}
.con .act div h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 25px;
}
.con .act div p {
    color: var(--seconderycolor);
    cursor: pointer;
    font-size: 18px;
}
.con .act div a {
    text-decoration: none;
    color: var(--seconderycolor);
}
.con .act div p:hover,
.con .act div a:hover {
    color: var(--thirdcolor);
}
.me {
    position: relative;
    padding: 5% 8%;
    background-color: var(--bgcolor-1);
    display: flex;
    align-items: center;
}
@media(min-width:350px) and (max-width:500px) {
    .me {
        padding: 12% 8%;
    }
}
.me img {
    width: 350px;
    height: 400px;
    position: relative;
    left: 10%;
    top: 20px;
}
@media(max-width:767px) {
    .me img {
        display: none;
    }
}
@media(min-width:767px) and (max-width:991px) {
    .me img {
        left: 5%;
    }
}
.me div {
    flex-basis: 50%;
}
@media(max-width:767px) {
    .me div {
        flex-basis: 100%;
    }
}
.me div h1 {
    color: white;
    font-size: 50px;
    margin-bottom: 25px;
    text-align: center;
}
.me div h1 span {
    color: var(--primarycolor);
}
.me div p {
    color: var(--seconderycolor);
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}
.me div form input,
.me div form textarea {
    background-color: var(--bgcolor-2);
    width: 100%;
    height: 50px; 
    color: white;
    caret-color: var(--primarycolor);
    padding-left: 15px;
    margin-bottom: 15px;
    outline: 0;
    border: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-size: 15px;
}
.me div form textarea {
    height: 200px;
    padding-top: 15px;
    margin-bottom: 20px;
}
.me div form a {
    color: white;
    background-color: var(--primarycolor);
    padding: 10px 15px 10px 25px;
    text-decoration: none;
    border: 2px solid var(--primarycolor);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    transition: 00.3s;
    -webkit-transition: 00.3s;
    -moz-transition: 00.3s;
    -ms-transition: 00.3s;
    -o-transition: 00.3s;
}
.me div form a i {
    margin-left: 10px;
}
.me div form a:hover {
    background-color: var(--bgcolor-1);
}
footer {
    background-color: var(--bgcolor-2);
    padding: 2%;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}
footer span {
    color: var(--primarycolor);
}
@media(min-width:350px) and (max-width:500px) {
    footer {
        font-size: 16px;
        padding: 5%;
        line-height: 1.5;
    }
}
@media(min-width:500px) and (max-width:767px) {
    footer {
        padding: 4%;
    }
}
@media(min-width:767px) and (max-width:1199px) {
    footer {
        padding: 3%;
    }
}