* {
    box-sizing: border-box;
}

:root {
    --main-color: #03a9f4;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

a {
    text-decoration: none;
}

.continer {
    margin: auto;
    padding: 0 20px;
}

@media (max-width:767px) {
    .continer {
        width: 100%;
    }
}

@media (min-width:768px) {
    .continer {
        width: 760px;
    }
}

@media (min-width:992px) {
    .continer {
        width: 950px;
    }
}

@media (min-width:1200px) {
    .continer {
        width: 1150px;
    }
}

.setting-box {
    padding: 20px;
    position: fixed;
    top: 0;
    left: -180px;
    background-color: white;
    width: 180px;
    min-height: 100vh;
    z-index: 9;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, 0.114);
    font-weight: bold;
}

.open {
    left: 0;
}

.setting-box .collect {
    background-color: #eee;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 20px;
}

.setting-box .color {
    font-weight: bold;
    font-size: 19px;
    margin-bottom: -10px;
}

.setting-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.setting-box ul li {
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 12px;
    margin: 2px;
    margin-top: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    border: 2px solid transparent;
}

.setting-box ul li:first-child {
    background-color: #009688;
}

.setting-box ul li:nth-child(2) {
    background-color: #4caf50;
}

.setting-box ul li:nth-child(3) {
    background-color: #03a9f4;
}

.setting-box ul li.on {
    opacity: 1;
    border: 2px solid rgba(0, 0, 0, 0.594);
}

.setting-box ul li:hover {
    opacity: 1;
}

.setting-box .collect .back {
    font-size: 16px;
}

.setting-box .collect .yes,
.setting-box .collect .no {
    background-color: var(--main-color);
    color: white;
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    opacity: .5;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
}

.setting-box .collect .active {
    opacity: 1;
}

.setting-box .collect span:hover {
    opacity: 1;
}

.setting-box .setting {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: -28px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.729);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    border-radius: 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.114);
    -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
}

.setting-box .setting:hover {
    color: var(--main-color);
}

.setting-box .setting i {
    font-size: 18px;
}

.turn {
    animation: turn 2s infinite linear;
    -webkit-animation: turn 2s infinite linear;
}

@keyframes turn {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.collect-2 {
    background-color: #eee;
    padding: 10px;
    text-align: center;
}

.collect-2 span {
    background-color: var(--main-color);
    color: white;
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    opacity: 0.5;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
}

.collect-2 span.on {
    opacity: 1;
}

.bulleets {
    position: fixed;
    display: flex;
    flex-direction: column;
    z-index: 8;
    top: 50%;
    transform: translatey(-50%);
    -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    right: 5px;
}

.bulleets.behiend {
    display: none;
}

.bulleets a {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: solid 2px var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.bulleets a .tolltip {
    position: relative;
    width: 100px;
    background-color: var(--main-color);
    color: white;
    padding: 5px;
    left: -130px;
    top: -14px;
    text-align: center;
    height: fit-content;
    display: none;
    pointer-events: none;
}

.bulleets a .tolltip::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 100%;
    z-index: 6;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent transparent var(--main-color);
}

.bulleets a:hover .tolltip {
    display: block;
}

.reset {
    width: 100%;
    text-align: center;
    background-color: #4a4a4a;
    margin-top: 20px;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    font-weight: bold;
    font-size: 18px;
}

.reset:hover {
    background-color: #222222;
}

.landing {
    background-image: url(../images/l-18.jpg);
    background-size: cover;
    min-height: 100vh;
    position: relative;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.landing .head {
    position: fixed;
    width: 100%;
    z-index: 6;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    top: 0;
    background-color: rgba(56, 65, 73, 0.995) !important;
    padding: 5px 0;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.507);
}

.header {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

@media (max-width:767px) {
    .header {
        z-index: 3;
    }
}

.header .logo {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: bold;
    padding-top: 20px;
}

@media (max-width:767px) {
    .header .logo {
        padding-bottom: 15px;
        font-size: 25px;
    }
}

.header .logo span {
    color: var(--main-color);
}

.header i {
    font-size: 25px;
    position: absolute;
    z-index: 3;
    right: 0px;
    display: inline-block;
    top: 12px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    padding: 10px;
    display: none;
}

@media (max-width:767px) {
    .header i {
        display: inline-block;
    }
}

.header i:hover {
    color: var(--main-color);
}

@media (max-width:767px) {
    .head .continer::before {
        bottom: -20px;
        width: calc(100% - 40px);
    }
}

.header .links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    height: fit-content;
}

@media (max-width:767px) {
    .header .links {
        background-color: rgba(255, 255, 255, 0.947);
        position: absolute;
        width: 100%;
        display: flex !important;
        flex-direction: column;
        top: 80px;
        padding-left: 10px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.1), -1px -1px 5px 2px rgba(0, 0, 0, 0.1);
        transform: translatey(-500px);
        -webkit-transform: translatey(-500px);
        -moz-transform: translatey(-500px);
        -ms-transform: translatey(-500px);
        -o-transform: translatey(-500px);
        opacity: 0;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
}
    .header .links.show {
        transform: translatey(0px);
        -webkit-transform: translatey(0px);
        -moz-transform: translatey(0px);
        -ms-transform: translatey(0px);
        -o-transform: translatey(0px);
        opacity: 1;
}
}

.header .links li {
    display: inline-block;
    height: fit-content;
}

@media (max-width:767px) {
    .header .links li {
        width: 100%;
    }
}

.header .links li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
    padding: 25px 12.5px 25px 12.5px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

/* @media (max-width:991px) {
    .header .links li a {
        font-size: 18px;
        padding: 21px 10px 20px 10px;
    }
} */

@media (max-width:767px) {
    .header .links li a {
        color: black;
        width: 100%;
        user-select: none;
    }
}

@media (max-width:767px) {
    .header .links li:not(:last-of-type) a {
        border-bottom: 1px solid rgb(0 0 0 / 28%);
    }
}

.header .links li a:hover {
    color: var(--main-color);
}

.header .links li a.on,
.text h1 span {
    color: var(--main-color);
    font-weight: bold;
}

.header .login {
    width: 100px;
    height: 50px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 20px;
    background-color: var(--main-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width:767px) {
    .header .login {
        position: absolute;
        left: 150px;
        font-size: 18px;
        width: 80px;
        height: 30px;
        top: 50%;
        transform: translatey(-50%);
        -webkit-transform: translatey(-50%);
        -moz-transform: translatey(-50%);
        -ms-transform: translatey(-50%);
        -o-transform: translatey(-50%);
        margin-top: 2px;
        height: 30px;
    }
}

.header .login::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
}

.over-login {
    position: relative;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.935);
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.over-login .box {
    background-color: white;
    width: 400px;
    height: fit-content;
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.12), -2px -2px 5px 2px rgba(0, 0, 0, 0.12);
    margin: auto;
    border-top: var(--main-color) solid 2px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.over-login .box h3 {
    text-align: center;
    font-size: 30px;
    margin: 50px 0 50px;
}

.over-login .box form {
    position: relative;
}

.over-login .box form div {
    color: var(--main-color);
    margin: 10px 0 15px 20px;
    font-size: 20px;
}

.over-login .box form input {
    display: inline-block;
    margin: 0 0 20px 20px;
    width: calc(100% - 40px);
    height: 40px;
    padding-left: 15px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    position: relative;
}

.over-login .box form input::placeholder {
    font-size: 15px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.over-login .box form input:focus::placeholder {
    opacity: 0;
}

.over-login .box form input:focus {
    outline: none;
}

.over-login .box form span {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 12px;
    color: #333;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    cursor: pointer;
}

.over-login .box form span:hover {
    color: var(--main-color);
}

.over-login .box>div {
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    width: calc(100% - 40px);
    margin: 40px auto 30px;
    text-align: center;
    padding: 15px 0;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    user-select: none;
}

.over-login .box>div i {
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.over-login .box>div:hover i {
    transform: translatex(15px);
    -webkit-transform: translatex(15px);
    -moz-transform: translatex(15px);
    -ms-transform: translatex(15px);
    -o-transform: translatex(15px);
}

.over-login .box>div:hover {
    opacity: .9;
}

.over-login .box>div i {
    display: inline-block;
    margin-left: 20px;
}

.header .login:hover::after {
    left: 0;
}

.header .login span {
    position: relative;
    z-index: 2;
}

.landing .text {
    min-width: 700px;
    color: white;
    text-align: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media (max-width:767px) {
    .landing .text {
        min-width: 100%;
        padding: 0 20px;
    }
}

.landing .text h1 {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 35px;
}


.landing .text p {
    line-height: 1.7;
    font-size: 20px;
}

@media (max-width:767px) {
    .landing .text h1{
        font-size: 30px;
    }
    .landing .text p {
        font-size: 18px;
    }
}

.landing .main-span {
    position: absolute;
    left: 50%;
    width: fit-content;
    bottom: 20px;
    transform: translatex(-50%);
    -webkit-transform: translatex(-50%);
    -moz-transform: translatex(-50%);
    -ms-transform: translatex(-50%);
    -o-transform: translatex(-50%);
    display: flex;
    z-index: 3;
    column-gap: 10px;
}

.landing .main-span span {
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
}

.landing .main-span span.on {
    background-color: var(--main-color);
}

.feture {
    padding: 50px 0;
    transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -moz-transform: translatey(100px);
    -ms-transform: translatey(100px);
    -o-transform: translatey(100px);
    opacity: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.feture .continer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feture h2 {
    text-align: center;
    font-size: 35px;
    color: var(--main-color);
    margin-bottom: 60px;
}
@media (max-width:767px) {
    .feture h2 {
    font-size: 30px
}
}
.feture .continer .box {
    width: 300px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    text-align: center;
}

@media (max-width:675px) {
    .feture .continer .box {
        width: 100%;
    }
}

.feture .continer .box .image img {
    padding: 3px;
    width: 120px;
    height: 120px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: solid 3px #ddd;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.feture .continer .box:hover img {
    border: var(--main-color) solid 3px;
}

.feture .continer .box .text {
    padding: 0 20px;
}

.feture .continer .box .text h3 {
    color: #333;
    position: relative;
    margin-bottom: 30px;
}

.feture .continer .box .text h3:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translatex(-50%);
    -webkit-transform: translatex(-50%);
    -moz-transform: translatex(-50%);
    -ms-transform: translatex(-50%);
    -o-transform: translatex(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--main-color);
}

.feture .continer .box .text h3:after {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translatex(-50%);
    -webkit-transform: translatex(-50%);
    -moz-transform: translatex(-50%);
    -ms-transform: translatex(-50%);
    -o-transform: translatex(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: white;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: solid 2px var(--main-color);
}

.feture .continer .box .text p {
    color: #767676;
    line-height: 1.7;
    font-size: 15px;
}

.skelis {
    margin: 40px 0;
    background-color: #eee;
        transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -moz-transform: translatey(100px);
    -ms-transform: translatey(100px);
    -o-transform: translatey(100px);
    opacity: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.skelis .continer {
    display: flex;
    flex-direction: column;
    padding: 20px 40px 40px;
}

.skelis .continer h2 {
    text-align: center;
    color: var(--main-color);
    font-size: 35px;
    margin-bottom: 40px;
    font-weight: bold
}

.skelis .continer .collect-s {
    display: flex;
    margin-bottom: 20px;
    background-color: #fff;
}

@media (max-width:767px) {
    .skelis .continer h2{
        font-size: 30px;
    }
    .skelis .continer .collect-s {
        flex-direction: column;
        height: 115px;
        padding: 0 20px;
        border-radius: 7px;
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        -ms-border-radius: 7px;
        -o-border-radius: 7px;
    }
}

.skelis .continer .name {
    background-color: white;
    padding: 12px;
    min-width: 120px;
    text-align: center;
    font-weight: bold;
}

.skelis .continer .skill {
    background-color: #fff;
    width: 100%;
    padding: 10px;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media (max-width:767px) {
    .skelis .continer .skill {
        background-color: #eee;
    }
}

.skelis .continer .skill>span {
    position: relative;
    display: inline-block;
    background-color: #eee;
    width: 100%;
    height: 30px;
    z-index: 5;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media (max-width:767px) {
    .skelis .continer .skill>span {
        background-color: #fff;
    }
}

.skelis .continer .skill>span .width {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--main-color);
    transition: 1.5s;
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    -ms-transition: 1.5s;
    -o-transition: 1.5s;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.time-line {
    padding: 30px 0;
        transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -moz-transform: translatey(100px);
    -ms-transform: translatey(100px);
    -o-transform: translatey(100px);
    opacity: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.time-line .continer {
    position: relative;
    padding: 30px;
    height: fit-content;
}

.time-line .continer .year {
    display: block;
    width: fit-content;
    color: white;
    text-align: center;
    margin: 30px auto;
    position: relative;
    z-index: 3;
    padding: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-weight: bold;
}

.time-line .continer .year span{
    background-color: var(--main-color);
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: inline-block;
    margin-bottom: 30px;
    margin-top: 20px;
}

.time-line .continer::after {
    content: "";
    position: absolute;
    width: 3px;
    height: calc(100% - 60px);
    left: 50%;
    margin-left: -1.5px;
    top: 30px;
    background-color: var(--main-color);
}

.time-line .continer .box {
    background-color: #eee;
    padding: 20px;
    width: calc(50% - 30px);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

@media (max-width:767px) {
    .time-line .continer .box {
        width: 100%;
        z-index: 2;
        text-align: center;
    }
}

.time-line .continer .left::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border: var(--main-color) 2px solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 30px;
    background-color: white;
    right: -39px;
    z-index: 3;
}

@media (max-width:767px) {
    .time-line .continer .left::after {
        display: none;
    }
}

.time-line .continer .left::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 100%;
    z-index: 6;
    border-style: solid;
    border-width: 14px;
    border-color: transparent transparent transparent #eee;
}

@media (max-width:767px) {
    .time-line .continer .left::before {
        display: none;
    }
}

.time-line .continer .right {
    margin-left: auto;
}

.time-line .continer .right::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border: var(--main-color) 2px solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 30px;
    background-color: white;
    left: -39px;
    z-index: 3;
}

@media (max-width:767px) {
    .time-line .continer .right::after {
        display: none;
    }
}

.time-line .continer .right::before {
    content: "";
    position: absolute;
    top: 26px;
    z-index: 6;
    border-style: solid;
    border-width: 14px;
    border-color: transparent #eee transparent transparent;
    right: 100%;
}

@media (max-width:767px) {
    .time-line .continer .right::before {
        display: none;
    }
}

.time-line .continer h3 {
    color: var(--main-color);
    font-size: 25px;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 0px;
}

@media (max-width:767px) {
    .time-line .continer h3 {
    text-align: center
}
}

.time-line .continer p {
    line-height: 1.7;
    color: #767676;
}

.gallary {
    padding: 50px 0 100px;
    background-color: #eee;
        transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -moz-transform: translatey(100px);
    -ms-transform: translatey(100px);
    -o-transform: translatey(100px);
    opacity: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.gallary .continer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    justify-content: center;
}



.gallary h2 {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    color: var(--main-color);
    font-size: 35px;
}
@media (max-width:767px) {
    .gallary h2  {
        font-size: 30px;
}
}

.gallary .continer img {
    padding: 2px;
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: dashed 1.7px #979595;
    cursor: pointer;
}

.gallary .continer .box {
    position: relative;
    overflow: hidden;
}

.gallary .continer .box::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 162, 255, 0.3);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    user-select: none;
}

.gallary .continer .box .viwo {
    position: absolute;
    background-color: #fff;
    display: inline-block;
    color: var(--main-color);
    font-weight: bold;
    padding: 10px 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: 0.4s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    opacity: 0;
    cursor: pointer;
    user-select: none;
}

.gallary .continer .box .viwo:hover {
    background-color: #e5e5e5 !important;
}

.gallary .continer .box:hover .viwo {
    opacity: 1;
}

.gallary .continer .box:hover::before {
    left: 0;
}

.overlay-img {
    background-color: rgb(0 0 0 / .8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-continer {
    max-width: 800px;
    max-height: 550px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
}

.image-createn {
    width: 100%;
    max-height: 100%;
    user-select: none;
}

.close {
    background-color: var(--main-color);
    display: inline-block;
    color: white;
    width: 30px;
    width: 30px;
    position: absolute;
    text-align: center;
    right: 20px;
    top: 20px;
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
    cursor: pointer;
    border-radius: 3px;
    line-height: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    user-select: none;
}

.close:hover {
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    background-color: red;
}

.testimonials {
    padding-top: 30px;
    padding-bottom: 70px;
    position: relative;
    transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -moz-transform: translatey(100px);
    -ms-transform: translatey(100px);
    -o-transform: translatey(100px);
    opacity: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: var(--main-color);
}

.testimonials::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background-color: #333;
}

.testimonials h2 {
    position: relative;
    text-align: center;
    color: var(--main-color);
    z-index: 1;
    margin-bottom: 60px;
    font-size: 35px;
}

@media (max-width:767px) {
    .testimonials h2{
        font-size: 30px;
    }
}

.testimonials .continer {
    display: flex;
    position: relative;
    justify-content: center;
    gap: 30px;
    z-index: 3;
    flex-wrap: wrap;
}

.testimonials .continer .box {
    position: relative;
    background-color: white;
    padding: 20px;
    padding-top: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    width: 300px;
    border-bottom: 3px solid #333;
}

@media (max-width:767px) {
    .testimonials .continer .box:first-of-type {
        border-bottom: solid var(--main-color) 3px;
    }
}

.testimonials .continer .box::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    background-color: var(--main-color);
    height: 3px;
    width: 100%;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

@media (max-width:767px) {
    .testimonials .continer .box:last-of-type::before {
        border-bottom: solid #333 3px;
    }
}

.testimonials .continer .box:hover::before {
    left: 0;
}

@media (max-width:684px) {
    .testimonials .continer .box {
        width: 100%;
    }
}

.testimonials .continer .box p {
    color: #767676;
    line-height: 1.7;
}

.testimonials .continer .box img {
    width: 80px;
    height: 70px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 20px;
}

.testimonials .continer .box span:first-of-type {
    position: absolute;
    bottom: 60px;
    color: #3f3f3f;
    font-weight: bold;
}

.testimonials .continer .box span:last-of-type {
    position: absolute;
    bottom: 35px;
    color: #3f3f3f;
}

.projects {
    background-image: url(../images/l-10.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    margin-top: 80px;
    padding: 50px 0;
}

.projects::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.projects .continer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
    position: relative;
    gap: 20px;
}

.projects .continer .box {
    width: 350px;
    background-color: #ffffffe3;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
    overflow: hidden;
}

@media(max-width:767px) {
    .projects .continer .box {
        width: 300px;
    }
}

@media(max-width:670px) {
    .projects .continer .box {
        width: 90%;
    }
}

@media(max-width:640px) {
    .projects .continer .box {
        margin: 0 !important;
    }
}
.projects .continer .box span {
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    margin: 15px 0 10px 0;
}

.projects .continer .box span:first-child {
    display: inline-block;
    position: absolute;
    left: 0px;
    bottom: -10px;
    width: 4px;
    height: 100%;
    background-color: var(--main-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.projects .continer .box i {
    font-size: 55px;
    color: var(--main-color);
    display: block;
    padding: 20px 0 0 0;
}



.projects .continer .box h3 {
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 30px 0;
}

.about {
    margin-top: 50px;
        transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -moz-transform: translatey(100px);
    -ms-transform: translatey(100px);
    -o-transform: translatey(100px);
    opacity: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.about .continer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width:767px) {
    .about .continer {
        justify-content: center;
    }
}

.about .text {
    padding: 20px;
    max-width: 550px;
    margin-top: 30px;
}

@media (max-width:991.9px) {
    .about .text {
        width: 380px;
    }
}

@media (max-width:767px) {
    .about .text {
        text-align: center;
        width: 100% !important;
    }
}

.about .text h2 {
    margin-bottom: 35px;
    padding: 0;
    font-size: 35px;
    position: relative;
    color: var(--main-color);
}
@media (max-width:767px) {
    .about .text h2{
        font-size: 30px;
    }
}

.about .text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    background-color: black;
    width: 50px;
    height: 2px;
}

@media (max-width:767px) {
    .about .text h2::before {
        left: 50%;
        transform: translatex(-50%);
        -webkit-transform: translatex(-50%);
        -moz-transform: translatex(-50%);
        -ms-transform: translatex(-50%);
        -o-transform: translatex(-50%);
        width: 100px;
    }
    .about .text h2::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translatex(-50%);
        -webkit-transform: translatex(-50%);
        -moz-transform: translatex(-50%);
        -ms-transform: translatex(-50%);
        -o-transform: translatex(-50%);
        top: 45px;
        background-color: black;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }
}

.about .text p {
    line-height: 2;
    color: #5c5b5b;
}

.about .image {
    width: fit-content;
    text-align: center;
    margin-right: -30px;
    animation: movee 6s linear infinite;
    -webkit-animation: movee 6s linear infinite;
}

@media (max-width:991.9px) {
    .about .image {
        margin-right: -10px;
    }
}

@keyframes movee {
    0%,
    100% {
        transform: translatey(0px);
        -webkit-transform: translatey(0px);
        -moz-transform: translatey(0px);
        -ms-transform: translatey(0px);
        -o-transform: translatey(0px);
    }
    50% {
        transform: translatey(-40px);
        -webkit-transform: translatey(-40px);
        -moz-transform: translatey(-40px);
        -ms-transform: translatey(-40px);
        -o-transform: translatey(-40px);
    }
}

@media (max-width:991.9px) {
    .about .image {
        animation: movee 10s linear infinite;
        -webkit-animation: movee 10s linear infinite;
    }
    @keyframes movee {
        0%,
        100% {
            transform: translatey(0px);
            -webkit-transform: translatey(0px);
            -moz-transform: translatey(0px);
            -ms-transform: translatey(0px);
            -o-transform: translatey(0px);
        }
        20% {
            transform: translatey(-20px);
            -webkit-transform: translatey(-20px);
            -moz-transform: translatey(-20px);
            -ms-transform: translatey(-20px);
            -o-transform: translatey(-20px);
        }
        60% {
            transform: translatey(40px);
            -webkit-transform: translatey(40px);
            -moz-transform: translatey(40px);
            -ms-transform: translatey(40px);
            -o-transform: translatey(40px);
        }
    }
}

.about .image img {
    width: 390px;
}

@media (max-width:991.9px) {
    .about .image img {
        width: 300px;
    }
}

@media (max-width:767px) {
    .about .image img {
        width: 100%;
    }
}

.contact {
    padding-bottom: 80px;
    padding-top: 60px;
    background-image: url(../images/gray-blank-vector-map-world-260nw-1935178568.webp);
    background-size: cover;
        transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -moz-transform: translatey(100px);
    -ms-transform: translatey(100px);
    -o-transform: translatey(100px);
    opacity: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.contact .continer {
    max-width: 800px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--main-color);
    font-weight: bold;
    font-size: 35px;
}

.contact .continer form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width:767px) {
    .contact h2{
        font-size: 30px;
    }
    .contact .continer form {
        flex-direction: column;
        align-items: center;
    }
}

.contact .continer form .left {
    width: 48%;
}

@media (max-width:767px) {
    .contact .continer form .left {
        width: 80%;
    }
}

@media (max-width:500px) {
    .contact .continer form .left {
        width: 100%;
    }
}

.contact .continer form .right {
    width: 48%;
}

@media (max-width:767px) {
    .contact .continer form .right {
        width: 80%;
    }
}

@media (max-width:500px) {
    .contact .continer form .right {
        width: 100%;
    }
}

.contact .continer form input:not([type="submit"]) {
    width: 100%;
    height: 45px;
    margin-bottom: 15px;
    padding-left: 20px;
    font-size: 15px;
    border: var(--main-color) 2px;
    background-color: #e2f6ffde;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.contact .continer form .left input:not(:last-of-type) {
    margin-bottom: 15px;
}

.contact .continer form textarea {
    width: 100%;
    background-color: #e2f6ffde;
    padding: 20px;
    font-size: 15px;
    border-radius: 5px;
    height: 165px;
    margin-bottom: 15px;
    border: var(--main-color) 2px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.contact .continer form textarea:focus,
.contact .continer form input:not([type="submit"]):focus {
    outline: none;
    caret-color: var(--main-color);
}

.contact .continer form textarea:focus::placeholder,
.contact .continer form input:not([type="submit"]):focus::placeholder {
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.contact .continer form [type="submit"] {
    width: 100%;
    height: 45px;
    background-color: var(--main-color);
    color: white;
    border: none;
    font-weight: bold;
    font-size: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    margin-top: -4px;
}

.contact .continer form [type="submit"]:hover {
    opacity: .8;
}

.footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 20px;
}


.up {
    background-color: var(--main-color);
    color: white;
    padding: 8px 10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    border: 1px solid black;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.up::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    background-color: #333;
}


.section-up{
    transform: translatey(0);
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    opacity: 1;
}