@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Tilt Neon", sans-serif;
}


:root {
    --blu: #008181;
    --or: #f9ae65;
    --liw: #f8fbfb;
    --w: white;
    --b: black;
}

.common_heading h3 {
    font-size: 30px;
    color: var(--blu);
    position: relative;
    display: flex;
    text-align: center;
    width: max-content;
    margin: auto;
}

.common_heading h3::before {
    content: " ";
    position: absolute;
    bottom: -4px;
    left: 0;
    min-height: 4px;
    width: 100%;
    background-color: var(--or);
    border-radius: 10px;
}

.common_heading h3::after {
    content: " ";
    position: absolute;
    bottom: -4px;
    left: 0;
    min-height: 4px;
    min-width: 5px;
    background-color: var(--blu);
    animation: line linear infinite 3s;
    border-radius: 10px;
}

@keyframes line {
    50% {
        left: 95%;
    }
}

.whatsapp {
    bottom: 80px !important;
}

.f_linkedin,
.whatsapp {
    display: block;
    height: 50px;
    width: 50px;
    position: fixed;
    right: 10px;
    z-index: 999;
    bottom: 140px;
    padding: 10px;
    border: solid 2px var(--w);
    background-color: var(--blu);
    transition: 0.5s;
}

.f_linkedin:hover,
#scrollToTopBtn:hover,
.whatsapp:hover {
    border-top-color: var(--blu);
    border-bottom-color: var(--blu);
    border-right-color: var(--or);
    border-left-color: var(--or);
    background-color: var(--w);
}

.f_linkedin:hover svg,
#scrollToTopBtn:hover svg,
.whatsapp:hover svg {
    fill: var(--or);
}

.f_linkedin svg,
#scrollToTopBtn svg,
.whatsapp svg {
    height: 100%;
    width: 100%;
    transition: 0.5s;
    fill: var(--w);
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    color: var(--pink);
    cursor: pointer;
    z-index: 999;
    height: 50px;
    width: 50px;
    border: solid 2px var(--w);
    background-color: var(--blu);
    transition: 0.5s;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(odd) {
    background-color: var(--blu);
}

.circles li:nth-child(even) {
    background-color: var(--or);
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 100px;
    height: 100px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-2000px) rotate(720deg);
        opacity: 80%;
        border-radius: 50%;
    }

}

div:where(.swal2-icon).swal2-info,
div:where(.swal2-icon),
div:where(.swal2-icon).swal2-success .swal2-success-ring {
    border-color: var(--or) !important;
    color: var(--blu) !important;
}

div:where(.swal2-container) h2:where(.swal2-title),
div:where(.swal2-container) .swal2-html-container {
    color: var(--blu) !important;
}

div:where(.swal2-icon) .swal2-x-mark-line-left,
div:where(.swal2-icon) .swal2-x-mark-line-right,
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip],
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long] {
    background-color: var(--blu) !important;
}

.swal2-confirm {
    padding: 10px 20px;
    font-size: 18px !important;
    margin-top: 20px;
    transition: 0.5s;
    text-decoration: none;
    border: solid 2px transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--blu) !important;
    border-top-color: var(--or) !important;
    border-bottom-color: var(--or) !important;
    border-right-color: var(--blu) !important;
    border-left-color: var(--blu) !important;
    background-color: var(--w) !important;
    display: block !important;
}

body button.swal2-confirm:hover,
body button.swal2-confirm:focus {
    background-color: var(--blu) !important;
    border-color: transparent !important;
    color: var(--w) !important;
}


/*header*/

.navbar-brand {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    color: var(--or) !important;
    transition: 0.5s;
}

.navbar .h_call {
    display: inline-block;
    margin-left: 50px;
}

.navbar .h_call svg {
    height: 30px;
    width: 30px;
}

.navbar-nav li a,
footer li a {
    font-size: 18px;
    color: var(--w);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.navbar-nav li {
    overflow: hidden;
}

.navbar-nav li a::before,
footer li a::before {
    position: absolute;
    content: " ";
    background-color: var(--or);
    min-height: 100%;
    min-width: 2px;
    top: 0;
    left: -5px;
    border-radius: 10px;
    transition: transform 0.5s;
    transform: scaleY(0);
    transform-origin: bottom;
}

.navbar-nav li a:hover::before,
.navbar-nav li a.active::before,
footer li a:hover::before,
footer li a.active::before {
    transform: scaleY(1);
    transform-origin: top;
}

.navbar-nav li a.active,
.navbar-nav li a:hover,
footer li a.active,
footer li a:hover {
    color: var(--or) !important;
}

nav {
    transition: 0.5s;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--blu);
}

header.fix nav {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

header.fix .navbar-brand {
    font-size: 30px;
}

/*abouut*/

.about_info h1 span {
    color: var(--blu);
}

.about_info h3 {
    color: var(--or);
}

.about {
    padding: 60px 0;
    color: var(--b);
    overflow: hidden;
    background-color: var(--w);
    position: relative;
}

.about h3 {
    margin: 0px 0px 30px;
    display: inline-block;
}

.about img {
    height: 550px;
    max-width: 550px;
    object-fit: cover;
    border-radius: 50%;
}

.about .about_img {
    padding-left: 40px;
}

.about .about_info {
    padding-right: 40px;
}

.about_info a {
    padding: 10px 20px;
    display: inline-block;
    font-size: 18px;
    margin-top: 20px;
    transition: 0.5s;
    text-decoration: none;
    color: var(--w);
    background-color: var(--blu);
    border: solid 2px transparent;
}

.about_info a:hover,
.contact form button:hover {
    color: var(--blu);
    background-color: var(--w);
    border-top-color: var(--or);
    border-bottom-color: var(--or);
    border-right-color: var(--blu);
    border-left-color: var(--blu);
}

/*exprience*/

.exprience {
    padding: 60px 0;
    color: var(--b);
    background-color: var(--liw);
    overflow: hidden;
}

.exprience_info p {
    margin-bottom: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.exprience_info h5 {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.exprience .common_heading {
    margin-bottom: 60px;
}

.exprience_info div {
    padding: 20px;
    margin-top: 40px;
    width: 45%;
    position: relative;
    z-index: 1;
    border: solid 2px;
    border-top-color: var(--blu);
    border-bottom-color: var(--blu);
    border-right-color: var(--or);
    border-left-color: var(--or);
}

.exprience_info div svg {
    height: 25px;
    width: 25px;
    margin-right: 10px;
    min-height: 25px;
    min-width: 25px;
}

.exprience_info h3 {
    color: var(--blu);
    margin: 10px 0;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.exprience .exprience_info {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.exprience .exprience_info::before {
    position: absolute;
    content: " ";
    height: 100%;
    width: 2px;
    background-color: var(--blu);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.exprience_info div::before {
    position: absolute;
    content: " ";
    height: 2px;
    width: 52px;
    background-color: var(--or);
    top: 50%;
    transform: translateY(-50%);
}

.exprience_info div::after {
    position: absolute;
    content: " ";
    height: 15px;
    width: 15px;
    border-radius: 50px;
    background-color: var(--or);
    top: 50%;
    transform: translateY(-50%);
}

.exprience_info div.exprience_info_l::after {
    right: -60px;
}

.exprience_info div.exprience_info_r::after {
    left: -60px;
}

.exprience_info div.exprience_info_l:before {
    right: -53px;
}

.exprience_info div.exprience_info_r:before {
    left: -53px;
}

/*skills*/

.skills {
    padding: 60px 0;
    overflow: hidden;
    background-color: var(--liw);
}

.skills_info svg {
    height: 80px;
    width: 80px;
}

.skills_info {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    margin-top: 60px;
}

.skills_info h4 {
    font-size: 26px;
    color: var(--w);
    line-height: 22px;
    transition: 0.5s;
}

.skills_info .skills_info_inner::before {
    position: absolute;
    content: " ";
    height: 55px;
    width: 2px;
    left: 35px;
    top: -55px;
    background-color: var(--blu);
}

.skills_info .skills_info_box:hover .skills_info_inner {
    border-top-color: var(--blu);
    border-bottom-color: var(--blu);
    border-right-color: var(--or);
    border-left-color: var(--or);
    background-color: var(--w);
}

.skills_info_inner {
    padding: 20px 15px;
    margin: 70px 0 0 0;
    position: relative;
    border: solid 2px transparent;
    background-color: var(--blu);
    transition: 0.5s;
    height: 100%;
}

.skills_info .skills_info_box {
    width: 25%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.skills_info p {
    margin: 20px 0 0;
    transition: 0.5s;
    color: var(--w);
}

.skills_info .skills_info_box:hover p,
.skills_info .skills_info_box:hover h4 {
    color: var(--b);
}

/*projects */

.projects {
    padding: 60px 0;
    background-color: var(--w);
    position: relative;
}

.projects .projects_b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 30px;
    margin-top: 60px;
}

.projects .projects_b .projects_b_i a {
    border: solid 2px;
    border-top-color: var(--blu);
    border-bottom-color: var(--blu);
    border-right-color: var(--or);
    border-left-color: var(--or);
    padding: 20px;
    height: 100%;
    width: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.projects .projects_b .projects_b_i a::before {
    content: " ";
    position: absolute;
    height: 100%;
    width: 0%;
    background-color: #008181b8;
    top: 0;
    right: 0;
    transition: 0.5s;
    z-index: 1;
}

.projects .projects_b .projects_b_i a:hover::before {
    width: 100%;
}

.projects .projects_b .projects_b_i a h3 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translateY(-50%);
    transition: 0.5s;
    z-index: 1;
    background-color: var(--w);
    font-size: 18px;
    padding: 10px 20px;
    color: var(--blu);
}

.projects .projects_b .projects_b_i a:hover h3 {
    left: 50%;
    transform: translate(-50%, -50%);
}

.projects_b_i div {
    overflow: hidden;
}

.projects .projects_b .projects_b_i a:hover img {
    transform: scale(1.1);
}

.projects_b img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.projects .projects_b a {
    display: block;
}

/*contact*/

.contact {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.contact .common_heading {
    margin-bottom: 60px;
}

.contact form {
    padding: 30px;
    border: solid 2px;
    border-top-color: var(--blu);
    border-bottom-color: var(--blu);
    border-right-color: var(--or);
    border-left-color: var(--or);
    background-color: var(--w);
}

.contact form input,
.contact form textarea {
    color: var(--or) !important;
    border: 0;
    border-radius: 0;
    border-bottom: solid 2px var(--blu);
    padding: 0;
}

.contact form textarea {
    height: 50px;
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: var(--or);
    box-shadow: none;
}

.contact form input::placeholder,
.contact form textarea::placeholder {
    color: var(--blu);
}

.contact form button {
    padding: 12px 60px;
    color: var(--w);
    background-color: var(--blu);
    border: solid 2px transparent;
    font-size: 22px;
    margin-top: 50px !important;
    transition: 0.5s;
    display: inline-block;
    width: 100%;
}

.contact_info img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    transition: all 0.5s ease 0s;
}

.contact_info div:nth-child(2) a {
    margin-top: 40px;
}

.contact_info a {
    color: var(--blu);
    text-decoration: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    font-size: 28px;
    transition: 0.5s;
    position: relative;
    border: solid 2px;
    border-top-color: var(--blu);
    border-bottom-color: var(--blu);
    border-right-color: var(--or);
    border-left-color: var(--or);
    background-color: var(--w);
}

.contact_info a:hover {
    background-color: var(--blu);
    color: var(--w);
    border-color: transparent;
}

.contact_info a:hover img {
    filter: brightness(0) invert(1);
}

.contact_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* footer  */

footer {
    padding: 40px 0 30px;
    background: var(--blu);
}

footer .footer_logo {
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    text-decoration: none;
}

footer .copyright a {
    text-decoration: none;
    border-bottom: solid 2px;
}

footer .copyright {
    font-size: 14px;
    margin-top: 40px;
}

footer li a {
    text-transform: uppercase;
    font-size: 16px !important;
}

footer li {
    margin-bottom: 20px;
    color: var(--w);
    overflow: hidden;
    padding-left: 10px;
}

footer li:last-child {
    margin: 0;
}

footer h3 {
    font-weight: 400;
    color: var(--w);
    margin-bottom: 30px;
    font-size: 30px;
}

footer svg {
    height: 70px;
    width: 100px;
    background-color: var(--w);
    padding: 10px;
    margin-top: 20px;
}

.footer-brands {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

footer svg:nth-child(1) {
    margin: 0;
}


@media(max-width:1200px) {

    .exprience_info div.exprience_info_l::after {
        right: -55px;
    }

    .exprience_info div.exprience_info_r::after {
        left: -55px;
    }

    .skills_info .skills_info_box {
        width: 33.33%;
    }

    .contact_info img {
        width: 30px;
        height: 30px;
    }

    .about img {
        height: 450px;
        max-width: 450px;
    }

    .contact_info a {
        padding: 15px 20px;
        font-size: 18px;
    }
}

@media(max-width:1024px) {

    .about .about_img,
    .about .about_info {
        padding: 0;
    }
}

@media(max-width:991.50px) {

    .projects .projects_b .projects_b_i a {
        padding: 10px;
    }

    footer .col-lg-3:nth-child(4) {
        width: 100% !important;
    }

    .footer-brands {
        flex-direction: unset;
        justify-content: space-between;
    }

    footer svg {
        width: 23%;
        margin: 0;
    }

    footer .row {
        row-gap: 60px;
    }

    .exprience_info div::before {
        width: 40px;
    }

    .exprience_info div.exprience_info_r:before {
        left: -40px;
    }

    .exprience_info div.exprience_info_r::after {
        left: -44px;
    }

    .exprience_info div.exprience_info_l:before {
        right: -40px;
    }

    .exprience_info div.exprience_info_l::after {
        right: -44px;
    }

    .skills_info .skills_info_box {
        width: 50%;
    }

    .navbar .navbar-brand {
        order: 1;
    }

    .navbar .navbar-toggler {
        order: 3;
    }

    .navbar .h_call {
        margin-left: auto;
        margin-right: 30px;
        order: 2;
    }

    .navbar .h-mail svg {
        height: 42px;
        width: 42px;
    }
    
     .about .row {
        flex-direction: column-reverse;
    }

    .about img {
        height: 350px;
        max-width:350px;
    }

    .navbar-toggler.menu span:nth-child(2) {
        transform: scale(0);
    }

    .navbar-toggler.menu span:nth-child(1) {
        rotate: 50deg;
        transform: translate(7px, 3px);
    }

    .navbar-toggler.menu span:nth-child(3) {
        rotate: -50deg;
        transform: translate(10px, -7px);
    }

    header.fix nav {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .navbar-toggler {
        border: 0;
        padding: 0;
        height: 24px;
        width: 35px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-toggler span {
        height: 4px;
        width: 100%;
        display: inline-block;
        background-color: var(--w);
        transition: 0.5s;
    }

    .navbar-toggler span:nth-child(1) {
        background-color: var(--or);
    }

    .navbar-toggler span:nth-child(2) {
        background-color: var(--w);
    }

    .navbar-toggler span:nth-child(3) {
        background-color: var(--or);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        width: 80%;
        left: 0;
        height: 100vh;
        z-index: 999;
        display: block !important;
        transform: translateX(-100%);
        transition: 0.2s;
        transform: translateX(-100%);
        background-color: var(--blu);
        border-right: solid 1px var(--w);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-collapse ul li:first-child {
        margin-top: 40px !important;
    }

    .navbar-collapse ul {
        margin: 0 !important;
        align-items: center;
    }

    .navbar-collapse ul li {
        margin: 20px 0;
    }
}

@media(max-width:767.50px) {

    .about_img {
        margin-bottom: 10px;
    }
 

    .projects .projects_b {
        grid-template-columns: repeat(1, 1fr);
    }

    footer h3 {
        margin-bottom: 20px;
    }

    .exprience_info div::after {
        right: auto !important;
        left: -30px !important;
    }

    .exprience_info div::before {
        right: auto !important;
        left: -23px !important;
        width: 22px !important;
    }

    .exprience .exprience_info {
        padding-left: 20px;
    }

    .exprience .exprience_info::before {
        left: 0;
    }

    .exprience_info div {
        width: 100%;
        padding: 13px;
    }

    .skills_info .skills_info_inner::before {
        left: 22px;
    }

    .skills_info svg {
        height: 50px;
        width: 50px;
    } 

    .contact_info a {
        width: 100%;
    }

    .exprience_info p {
        font-size: 13px;
    }

    .exprience .common_heading,
    .contact .common_heading {
        margin-bottom: 40px;
    }

    .skills_info,
    .projects .projects_b,
    .contact form {
        margin-top: 40px !important;
    }

    .about,
    .exprience,
    .contact,
    .skills,
    .projects {
        padding: 50px 0;
    }
}

@media(max-width:575px) {

    footer .row {
        row-gap: 40px;
    }

    footer .col-lg-3:nth-child(2),
    footer .col-lg-3:nth-child(3) {
        width: 50% !important;
    }

    footer .col-lg-3:nth-child(1) {
        width: 100% !important;
    }

    .skills_info .skills_info_box {
        width: 100%;
        padding: 0;
    }

    .skills_info {
        row-gap: 60px;
    }
}

@media(max-width:425px) {
       .about img {
        height: 320px;
        max-width: 320px;
    }
    
}