html {
    scroll-behavior: smooth;
}

body {
    background-image: linear-gradient(90deg, #460037, #d700a7);
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: white;
}

.contact {
    font-weight: bolder;
    border-bottom: white solid 3px;
    font-size: 20px;
}

@media (max-width: 1000px) {
    .contact {
        font-size: 18px;
    }
}

.lang span {
    font-size: 25px;
    color: #160029;
}

.lang-icon {
    color: #d700a7;
}

.text {
    font-size: 18px;
    padding: 30px 0;
    line-height: 50px;
    text-align: justify;
}

@media (max-width: 1000px) {
    .text {
        font-size: 16px;
        padding: 0 30px;
        line-height: 35px;
        text-align: start;
    }
}

.col {
    color: white;
}

.serv-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 1000px) {
    .serv-row {
        flex-direction: column;
    }
}

@media (max-width: 1000px) {
    .re {
        flex-direction: column-reverse;
    }
}

.serv-img {
    width: 540px;
    height: 500px;
    margin: 30px 0;
}

@media (max-width: 1000px) {
    .serv-img {
        width: 350px;
        height: 350px;
    }
}

.services {
    font-size: 50px;
    font-weight: 600;
    color: white;
    margin: 145px 0 50px;
}

@media (max-width: 1000px) {
    .services {
        margin: 545px 0 50px;
    }
}

.services::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: #eee;
    bottom: -250px;
    width: 120px;
}

.services::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #eee;
    bottom: -257px;
    background-color: #d700a7;
}

@media (max-width: 1000px) {
    .services::before {
        bottom: -700px;
    }

    .services::after {
        bottom: -707px;
    }
}

.lable {
    font-size: 50px;
    font-weight: bold;
    color: white;
}

@media (max-width: 1000px) {
    .lable {
        font-size: 35px;
    }
}

.logo-row {
    background-color: #eee;
    margin-top: 50px;
    padding: 5px 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1000px) {
    .logo-row {
        display: none;
    }
}

.logo {
    height: 45px;
}

.links a {
    color: #160029;
    font-size: 18px;
    transition: 0.3s ease;
}

.links a:hover {
    color: #d700a7;
    font-weight: bold;
    letter-spacing: 1px;
}

@media (max-width: 1100px) {
    .links {
        display: none;
    }
}

.container {
    padding: 50px 0;
}

i {
    font-size: 20px;
    color: white;
}

.landing {
    height: calc(100vh - 70px);
    width: 100%;
}

.landing-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1000px) {
    .landing-row {
        flex-direction: column;
    }
}

.landing-img {
    width: 500px;
    margin: 0 60px 0 0;
}

@media (max-width: 1000px) {
    .landing-img {
        width: 100%;

    }
}

.landing-text {
    font-size: 18px;
    line-height: 40px;
    text-align: justify;
}

@media (max-width: 1000px) {
    .landing-text {
        padding: 0 30px;
        font-size: 16px;
        line-height: 35px;
        text-align: start;
    }
}

.bold {
    font-weight: bold;
}

.mob-logo {
    background-color: #eee;
    padding: 5px 10px;
    margin-top: 30px;
    display: none;
}

@media (max-width: 1000px) {
    .mob-logo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

}

.mob-logo img {
    height: 35px;
}

button {
    color: white;
    background-color: #d700a7;
    font-weight: bold;
    border-radius: 20px;
    border: none;
    padding: 7px 35px;
}

.new-line {
    display: none;
}

@media (max-width: 1000px) {
    .new-line {
        display: block;
    }
}

.card {
    border-radius: 15px;
    margin: 45px 15px 0;
    padding: 15px;
}

@media (max-width: 1000px) {
    .techs {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.tech {
    font-size: 70px;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .tech {
        font-size: 40px;
    }
}

.fa-html5 {
    color: #e34c26;
}

.fa-css3-alt {
    color: #264de4;
}

.fa-js {
    color: #f0db4f;
    background-color: #323330;
    border-radius: 5px;
}

.fa-database {
    color: #00758F;
}

.fa-python {
    color: #4584b6;
}

.fa-bootstrap {
    color: #563d7c;
}

.fa-wordpress {
    color: #00749C;
}

.more {
    display: inline;
    color: #d700a7;
    font-weight: 500;
}

.br {
    display: none;
}

@media (max-width: 1000px) {
    .br {
        display: block;
    }
}

.footer {
    background-color: #160029;
    color: white;
    padding: 0 10px;
}

.footer .mail {
    font-size: 20px;
    font-weight: 600;
}

.footer .brand {
    color: #d700a7;
    font-weight: 600;
}