/* 
light green color: 00BABA;

*/
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,500i&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    font-family: 'Ubuntu';
}

section {
    padding: 4rem 0 4rem 0;
}

/* HEADER */

.header__logo {
    width: 60px;;
}

.navbar {
    margin-top: 2rem;
}
.navbar-nav a.nav-item.nav-link{
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}

.navbar-nav a.nav-item.nav-link:hover {
    color: #00BABA;
}

.nav-item {
    margin-right: 2rem;
}

.navbar-light .navbar-toggler {
    border-color: rgb(0, 186, 186);
}

/* HERO */

.hero__image {
    width: 400px;
    height: 20opx;
}



.hero__text {
    font-size: 30px;
    font-weight: 600;
}

.hero__text__next {
    font-size: 30px;
    font-weight: 600;
}

.hero__paragraph {
    font-size: 20px;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        transform: translate(0px);
    }
}

.btn__hero {
    margin-top: 20px;
}

.btn:link,
.btn:visited {
    text-transform: uppercase;
    padding: 02px 30px;
    transition: all .2s;
    position: relative;
}

.btn:hover {
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 10px 20px rgb(0, 0, 0,.2);
}

.btn:active {
    transform: translateX(-1px);
    box-shadow: 0 05px 10px rgb(0, 0, 0,.2);
}

.hero__btn {
    background-color: #00BABA;
    color: #ffffff;
    font-size: 1.5rem;
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0; 
    z-index: -1;
    transition: all .4s;
}

.hero__btn::after {
    background-color: #00BABA;
}

.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animated {
    animation: moveInBottom .5s ease-out .75s;
    animation-fill-mode: backwards;
}
/* .contact-container {
    
} */
.contact-container:hover {
    text-decoration: none!important;
}
.contact-me {
    list-style: none;
    padding-top: 20px;
    font-size: 25px;
}

.contact-link {
    color: #00BABA;
}

.contact-list {
    display:flex;
    padding-bottom: 10px;
}

.contact-text {
    font-size: 18px;
    /* padding: 10px; */
    padding-left: 10px;
    font-weight: 600;
    color: #0f0f0f;
}



/* .hero__btn {
    padding: 0.6rem 2.7rem;
    color: #ffffff;
    font-size: 1.5rem;
    background-color: #00BABA;
    border-radius: 0.6rem;
    border: none;
} */

/* ABOUT */

.section__about {
    background-color: #EFFFFF;
}

.about__right {
    border: 1px solid rgb(250, 241, 241);
    padding: 6px 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}
.about__img {
    width: 350px;
    height: 450px;
    filter: brightness(0.6);
    border-radius: 4px;
    margin-top: 4rem;
}

.about__heading {
    font-size: 30px;
    font-weight: 600;
}
.about__paragraph {
    font-size: 18px;
    text-align: justify;
}

.job-link {
    font-weight: 700;
    color: #00BABA;
}

.s-site {
    font-weight: 700;
    color: #00BABA!important;
}

.s-site:hover {
    cursor: pointer;
    text-decoration: none;
    color: #00BABA;
}

.s-mail {
    font-weight: 700;
    color: #00BABA;
}
.s-mail:hover {
    cursor: pointer;
    text-decoration: none;
    color: #00BABA;
}

/* SERVICE */

.service__skills {
    list-style: none;
    text-align: center; 
}

.skill__text {
    font-size: 18px;
    font-weight: 600;
}

.service__skills__item {
    display: inline-block;
    font-size: 80px;
    margin-left: 30px;
    color: #5f5f5f;
}

.service__skills_img {
    margin-bottom: 25px;
}

/* PROJECT */
.project__heading {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
}

.project-all {
    text-align: center;
}

.project__subheading {
   color: #00BABA;
   font-size: 25px;
   text-align: center;
   margin-top: 60px;
   font-weight: 600;
}

.project-showcase {
    list-style: none;
    width: 100%
}

.project__row {
    text-align: center;
}

.text {
    font-size: 19px;
    font-weight: 800;
}

.middle {
    transition: .6s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }

.dev__image {
    opacity: 1;
    transition: .5s ease;
    /* backface-visibility: hidden; */
    background-color:#000000;
    /* overflow: hidden; */
    margin-right: 10px;
    margin-top: 10px;
}



/* .dev__image {
    opacity: 0.7;
    /* transform: scale(1.15);
    transition: transform 0.5s, opacity 0.5s; */


    .project__dev:hover .dev__image {
        opacity: 0.3;
        /* transform: scale(1.03); */
    }
    
    .project__dev:hover .middle {
        opacity: 1;
    }


/* .project-showcase li {
    display: block;
    float: left;
    width: 25%;
} */



/* .project-photo img {
    opacity: 0.7;
    width: 100%; */
    /* height: 40rem; */
    /* transform: scale(1.15);
    transition: transform 0.5s, opacity 0.5s;
} */

/* .project-photo img:hover {
    opacity: 1;
    transform: scale(1.03);
} */




/* TESTIMONIAL */

.heading__testimonial {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
}

.section-testimonial {
    background-color: #EFFFFF;
}

.testimonial__body {
    text-align: center;
}

blockquote {
    font-size: 20px;
    color: #aca9a9;
    margin-top: 2rem;
}

.testimonial__img {
    width: 80px;
    margin-top: 2rem;
}

.name, .career {
    font-size: 23px;
}

.name {
    font-weight: 600;
}

.career {
    font-weight: 100;
}


/* FOOTER */

footer {
    background-color: #0f0f0f;
}

.footer__all {
    text-align: center;
}

.footer__img {
    width: 80px;
    margin-top: 2rem;
}

.social__list {
    list-style: none;
    margin-top: 2rem;
}

.social__link {
    display: inline-block;
    color: #EFFFFF;
    margin-right: 1.5rem;
    font-size: 25px;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}

.social__link:hover {
    color: #00BABA;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.paragraph-footer {
    text-align: center;
    color: #f3efef;
    word-spacing: 2px;
}


