:root {
    --maincolor: #1d2030;
    --secondarymaincolor: #24283d;
    --thirdmaincolor: #12131c;
    --primarycolor: #43bbd2;
    --softprimarycolor: #43bbd21f;
    --secondaryprimarycolor: ;
    --fontsize: 16px;
    --paragraphcolor: #adadad;
    --secondaryparagraphcolor: #747474;
    --accentcolor: #ffb400;
    --cardshadow: 11px 10px 38px hsla(0, 0%, 0%, 38%);
    --robotofont: 'Roboto', sans-serif;
    --montserratfont: 'Montserrat', sans-serif;
    --animate-duration: 1.1s;
}

/* scrll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #555555;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

::-webkit-scrollbar-track {
    background: #8e8e8e;
}

@media screen and (min-width: 992px) {
    .animated {
        visibility: hidden;
    }
}

/* animation classes for scrolling */
.lefttoright {
    position: relative;
    -webkit-animation: lefttoright 1s both ease-in-out;
    -moz-animation: lefttoright 1s both ease-in-out;
    animation: lefttoright 1s both ease-in-out;

}

.righttoleft {
    position: relative;
    -webkit-animation: righttoleft 1s both ease-in-out;
    -moz-animation: righttoleft 1s both ease-in-out;
    animation: righttoleft 1s both ease-in-out;
}

.bottomtotop {
    position: relative;
    -webkit-animation: bottomtotop 1s both ease-in-out;
    -moz-animation: bottomtotop 1s both ease-in-out;
    animation: bottomtotop 1s both ease-in-out;
}


body {
    margin: 0px;
    font-family: var(--robotofont);
    color: #fff;
}

* {
    box-sizing: border-box;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
}

a,
span {
    display: inline-block;
    text-decoration: none;
}

.page-wrapper {
    background-color: var(--maincolor);
}

.scrollto-top {
    position: fixed;
    right: 7%;
    bottom: 37px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: transparent;
    border: 1px solid var(--primarycolor);
    text-align: center;
    border-radius: 50%;
    line-height: 40px;
    cursor: pointer;
    z-index: 999;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    display: none;

}

.scrollto-top.show {
    display: block
}

.scrollto-top:hover {
    background: var(--primarycolor)
}

.styled-paragraph {
    color: var(--paragraphcolor);
    line-height: 2;
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.heading {
    position: relative;
    line-height: 48px;
}

.heading .animation-heading {
    width: 74%;
    height: 5px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin: auto;
    bottom: 23px;
}


.heading .animation-heading::after {
    content: "";
    position: absolute;
    left: -50px;
    bottom: 0px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--primarycolor);
    z-index: 9;
    -webkit-animation: styled-heading-animation 4s ease-in-out infinite;
    -moz-animation: styled-heading-animation 4s ease-in-out infinite;
    animation: styled-heading-animation 3.8s ease-in-out infinite;
}

@media screen and (min-width: 1170px) {
    .styled-paragraph {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

.subtitle {
    color: #d7d7d7;
    text-transform: UPPERCASE;
    font-size: 0.8rem;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1.125rem;
    font-weight: 600;
    font-family: var(--montserratfont);
    width: 77px;
}

@media screen and (min-width: 992px) {
    .subtitle {
        margin-top: 0px;
    }
}

@media screen and (min-width: 1170px) {
    .subtitle {
        position: absolute;
        left: -52px;
        top: 36px;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

.subtitle::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -9px;
    background-color: var(--primarycolor);
    width: 88%;
    height: 2px;
}

/* background-color: #949494; */

@media screen and (min-width: 1170px) {
    .subtitle::after {
        left: -75px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.heading-styled {
    font-size: 1.5625rem;
    text-transform: capitalize;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: bold;
    font-family: var(--montserratfont);
}

@media screen and (min-width:576px) {
    .heading-styled {
        font-size: 1.875rem;
        margin-bottom: 1.125rem;
    }
}

@media screen and (min-width:992px) {
    .heading-styled {
        margin-top: 0px;
        font-size: 2rem;
    }
}

@media screen and (min-width: 1170px) {
    .heading-styled {
        margin-bottom: 0.7rem;
    }
}

/* header section */
.header {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
    position: fixed;
    top: 0px;
}

@media screen and (max-width:992px) {
    .header {
        background-color: var(--secondarymaincolor);
        box-shadow: var(--cardshadow);
    }
}

@media screen and (min-width: 992px) {
    .header {
        background-color: transparent;


    }

    .header.scroll {
        background-color: var(--maincolor);
        box-shadow: var(--cardshadow);
    }
}

.header .hero-name {
    color: #fff;
    font-family: var(--montserratfont);
    font-weight: bold;
    font-size: 1.9rem;
    letter-spacing: 1px;

}

.header .icon-toggle {
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
    width: 50px;
    padding-right: 0.3125rem;
    padding-left: 0.3125rem;
}

.header .icon-toggle .bar {
    display: block;
    margin-top: 4px;
    width: 1.5625rem;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;

}

/* animation for close header menu mobile,tablet,medium screen only */
.header .icon-toggle.close .bar:first-child {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header .icon-toggle.close .bar:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -1px;
}

.header .icon-toggle.close .bar:last-child {
    opacity: 0;
}

.header .menu {
    display: flex;
    z-index: 99;
    margin-left: auto;
}

/*  style applied on header small,tablet,medium screens only */
@media screen and (max-width: 992px) {
    .header .menu {
        background-color: var(--maincolor);
        flex-direction: column;
        position: fixed;
        left: 0px;
        top: 69px;
        width: 100%;
        height: 100vh;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        transition: all 0.6s;
        opacity: 0;
        -webkit-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        transform: scale(1, 0);
        transform-origin: 50% 0%;
        overflow: auto;
    }

    /* open menu header in case user click on icon */
    .header .menu.show {
        transform: scale(1, 1);
        opacity: 1;
    }

    .header .menu .menu-item {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .header .menu .menu-item .menu-link {
        padding: 1rem 2.3rem;
        width: 236px;
        font-weight: 500;
    }


    .header .menu .menu-item .menu-link:hover,
    .header .menu .menu-item.active .menu-link {
        color: #fff;
        font-weight: 600;
    }

    .header .menu .menu-item .menu-link::after {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(120deg, transparent 50%, var(--primarycolor));
        background-size: 225%;
        -webkit-transition: all 0.8s;
        -moz-transition: all 0.8s;
        transition: all 0.8s;
        z-index: -1
    }

    .header .menu .menu-item .menu-link:hover::after,
    .header .menu .menu-item.active .menu-link::after {
        background-position: 100%;
    }
}


@media screen and (min-width: 992px) {
    .header .menu {
        flex-direction: row;
        align-items: center;
    }
}

@media screen and (min-width:992px) {

    .header .menu .menu-item:not(:last-child) {
        margin-right: 1.5rem;
    }
}


.header .menu .menu-item .menu-link {
    color: #dddddd;
    position: relative;
    text-transform: capitalize;
    font-family: var(--montserratfont);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;

}

.header .menu .menu-item.active .menu-link {
    color: var(--primarycolor)
}

/* style links on hove applied on large screen only */
@media screen and (min-width:992px) {
    .header .menu .menu-item .menu-link {
        font-weight: 500;
    }

    .header .menu .menu-item .menu-link::after {
        content: '';
        position: absolute;
        left: 0px;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background-color: var(--primarycolor);
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    .header .menu .menu-item .menu-link:hover::after,
    .header .menu .menu-item.active .menu-link::after {
        opacity: 1;
    }
}


/* banner */
.banner {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 4rem;

}

@media screen and (max-width: 992px) {
    .banner {
        padding-bottom: 7rem;
    }
}

@media screen and (min-width: 992px) {
    .banner {
        height: 100vh;
    }
}

.banner .hero-img {
    max-width: 370px;
    height: 400px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
    padding: 0.5rem;
    box-shadow: var(--cardshadow);
}

@media screen and (min-width: 992px) {
    .banner .hero-img {
        height: calc(100vh - 180px)
    }
}

.banner .hero-img .animate {
    position: absolute;
    background-color: var(--accentcolor);
}

.banner .hero-img .animate:first-child {
    left: -30px;
    top: 0px;
    height: 2px;
    width: 48px;
    animation: movetoptoright 3s infinite linear;
}

.banner .hero-img .animate:nth-child(2) {
    right: 0px;
    top: -48px;
    width: 2px;
    height: 48px;
    animation: moverighttobottom 3s infinite linear;
    animation-delay: 1.5s;
}

.banner .hero-img .animate:nth-child(3) {
    right: -48px;
    bottom: 0px;
    width: 48px;
    height: 2px;
    animation: movebottomtoleft 3s infinite linear;
    animation-delay: 3s
}

.banner .hero-img .animate:nth-child(4) {
    left: 0px;
    bottom: -48px;
    height: 48px;
    width: 2px;
    animation: movebottomtotop 3s infinite linear;
    animation-delay: 4.5s
}


.banner .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .hero-img .image-overlay {
    position: relative;
    height: 100%;
}

.banner .hero-img .image-overlay::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);

}

.banner .hero-intro {
    display: flex;
    flex-direction: column;
}

.banner .hero-intro .welcome {
    text-transform: capitalize;
    word-spacing: 1px;
    font-size: 1.25rem;
    font-family: var(--montserratfont);
    color: #edebeb;
    font-weight: 500;
    margin-bottom: 0px;
}

.banner .hero-intro .title {
    font-size: 2.2rem;
    text-transform: capitalize;
    position: relative;
    margin-top: 1.25rem;
    margin-bottom: 0px;
    font-weight: bold;
    font-family: var(--montserratfont);
}

.banner .hero-intro .small-description {
    font-family: var(--montserratfont);
    font-weight: 500;
    font-size: 1.3rem;
    color: #dfdfdf;
}

@media screen and (min-width:768px) {
    .banner .hero-intro .title {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 1170px) {
    .banner .hero-intro .title {
        font-size: 3.2rem;
    }
}

.banner .hero-intro .title .name {
    color: var(--primarycolor);
    font-weight: bold;
}

.banner .hero-intro .title .job-title {
    color: #fff;
}

.banner .hero-intro .more {
    margin-top: 1.3rem;
}

.banner .hero-intro .more .btn-more {
    color: #fff;
    text-transform: capitalize;
    border-radius: 2.187rem;
    padding-left: 2.8rem;
    padding-right: 4.5rem;
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--primarycolor);
    background-color: transparent;
    font-family: var(--montserratfont);
}

.banner .hero-intro .more .btn-more .chevron-icon {
    text-align: center;
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 2rem;
    background-color: var(--primarycolor);
    width: 3.5rem;
    height: 100%;
    z-index: 99;
    line-height: 56px;
    font-size: 18px;
    border: 1px solid var(--primarycolor)
}

.banner .hero-intro .more .btn-more::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 0px;
    background-color: var(--primarycolor);
    right: 0px;
    top: 0px;
    z-index: -1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s
}

.banner .hero-intro .more .btn-more:hover::after {
    width: 100%
}

.banner .scoll-to {
    display: none;
}

/* display on large screen onyly */
@media screen and (min-width:1170px) {
    .banner .scoll-to {
        display: block;
        position: absolute;
        right: 5%;
        bottom: 35%;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        transform: rotate(90deg);
        color: var(--paragraphcolor);
        font-family: var(--montserratfont);
        cursor: pointer;
    }

    .banner .scoll-to:hover {
        -webkit-animation: scroll-to-movement 0.8s linear alternate infinite;
        -moz-animation: scroll-to-movement 0.8s linear alternate infinite;
        animation: scroll-to-movement 0.8s linear alternate infinite;
    }

    .banner .scoll-to::after {
        content: '';
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateX(-50%);
        transform: translateY(-50%);
        width: 36px;
        height: 2px;
        left: 107%;
        background: var(--paragraphcolor);
    }
}

/* about */
.about {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--secondarymaincolor);

}

@media screen and (min-width: 768px) {
    .about {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (min-width: 1170px) {
    .about {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .about .subtitle {
        left: -37px;
    }
}

.about .image {
    background-image: url(../img/about.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    height: 100%;
    position: relative;

}

.about .image::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: var(--cardshadow)
}

.about .description-wrapper {
    position: relative;
}

@media screen and (min-width: 1170px) {
    .about .description-wrapper {
        padding-left: 20px;
    }
}

.about .description-wrapper .about-more-info {
    margin-top: 1.6rem;
    border: 1px solid var(--primarycolor);
    padding: 1.5rem 1.3rem 0px;
    border-radius: 5px;
}

.about .description-wrapper .about-more-info .list .list-item {
    margin-bottom: 1rem;
    font-family: var(--montserratfont);
    font-weight: 500;
    font-size: 0.9375rem;

}

.about .description-wrapper .about-more-info .list .list-item .title {
    color: #b9b9b9
}

.about .description-wrapper .about-more-info .list .list-item .value {
    color: #fff;
}

.about .contact {
    margin-top: 2.2rem
}

.about .contact .btn {
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #ccc;
    padding: 1rem 0.5rem;
    width: 140px;
    margin-right: 1rem;
    position: relative;
    isolation: isolate;
    border-radius: 0px;
    border: 1px solid var(--primarycolor);
    font-weight: 600;
    font-size: 0.9125rem;
    font-family: var(--montserratfont);
}

@media screen and (min-width: 576px) {
    .about .contact .btn {
        width: 180px;
        padding: 0.9rem 1.6rem;
    }
}

.about .contact .btn:hover,
.about .contact .btn:focus {
    box-shadow: unset;
}


.about .contact .btn-hire {
    border: transparent;
    color: #000;
    background-color: var(--accentcolor);
    position: relative;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


.about .contact .btn-hire:hover {
    background-color: transparent;
    color: var(--accentcolor);
    border: 1px solid var(--accentcolor)
}

.about .contact .btn-hire:hover::after {
    height: 100%;
}

.about .contact .btn-download::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(120deg, transparent 50%, var(--primarycolor) 50%);
    background-size: 222%;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;

}

.about .contact .btn-download:hover::after {
    background-position: 100%;
}

/* skills */
.skills {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media screen and (min-width: 768px) {
    .skills {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (min-width: 992px) {
    .skills {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media screen and (min-width: 1170px) {
    .skills {
        padding-top: 8.125rem;
        padding-bottom: 8.125rem;
    }
}

.skills .custom-collapse {
    opacity: 0;
    display: none;

}

.skills .custom-collapse.active {
    display: block;
    z-index: 1;
    -webkit-animation: fadeToggle 1s;
    -moz-animation: fadeToggle 1s;
    animation: fadeToggle 1s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards
}

.skills .description-wrapper {
    position: relative;
}

.skills .toggle-switch {
    padding: 0.3rem 0.7rem;
    background-color: var(--secondarymaincolor);
    border-radius: 2.187rem;
    width: 210px;
    box-shadow: var(--cardshadow);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.skills .skills-wrapper {
    position: relative;
}


@media screen and (max-width: 992px) {
    .skills .toggle-switch {
        margin: 2rem auto;
    }
}

.skills .toggle-switch .btn-toggle {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 0.5rem 1.6rem;
    border-radius: 2.187rem;
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
}

.skills .toggle-switch .btn-toggle.active {
    background-color: var(--primarycolor);

}

.skills .skills-tools-list {
    margin: 2rem auto;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .skills .skills-tools-list {
        width: 600px;
    }
}

@media screen and (min-width: 992px) {
    .skills .skills-tools-list {
        width: 100%;
        justify-content: flex-start;
        margin: 0px;
    }
}

@media screen and (min-width: 1170px) {
    .skills .skills-tools-list {
        margin-top: 0px;
    }
}

.skills .skills-tools-list .item {
    width: 90px;
    background-color: var(--secondarymaincolor);
    margin: 0.7rem 0.5625rem;
    box-shadow: var(--cardshadow);
    text-align: center;
    border-radius: 0.5625rem;
    padding: 0.875rem 0.5rem;
    cursor: pointer;
    position: relative;
}

.skills .skills-tools-list .item .text-tooltip {
    position: absolute;
    top: -54px;
    left: 0px;
    text-align: center;
    width: 87px;
    background: var(--primarycolor);
    padding: 5px 0px;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: bold;
    display: none;


}

.skills .skills-tools-list .item:hover .text-tooltip {
    -webkit-animation: fadeToggle 0.7s;
    -moz-animation: fadeToggle 0.7s;
    animation: fadeToggle 0.7s;
    animation-delay: 0.1s;
    animation-fill-mode: backwards;
    display: block;
}

.skills .skills-tools-list .item .text-tooltip::after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    bottom: -7px;
    background-color: var(--primarycolor);
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
}

/* end skills */

/* my services */
.services {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--secondarymaincolor);

}

@media screen and (min-width: 768px) {
    .services {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (min-width: 1170px) {
    .services {
        padding-top: 8.125rem;
        padding-bottom: 8.125rem;
    }
}

.services .services-title {
    margin-bottom: 2rem;
    position: relative;
}

.services .box {
    padding: 2rem 2.2rem;
    box-shadow: var(--cardshadow);
    margin-bottom: 1.6rem;
    border-radius: 5px;
    cursor: pointer;

}

.services .box .animate {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.services .box:hover .animate {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
}

.services .box .icon-wrapper {
    margin-bottom: 1.5rem;
}

.services .box .icon-wrapper .icon {
    color: var(--primarycolor);
    font-size: 3rem;
}

.services .box .box-title {
    font-size: 1.2rem;
    color: #eee;
    font-weight: bold;
}

@media screen and (min-width: 992px) {
    .services .box .box-title {
        font-size: 1.4375rem;
    }
}

.services .box .box-description {
    margin-top: 0.7rem;
}

/* end my services */
/* education && experience */
.education-experience {
    padding-top: 3rem;
    padding-bottom: 3rem;
}


@media screen and (min-width:768px) {
    .education-experience {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (min-width:1170px) {
    .education-experience {
        padding-top: 8.125rem;
        padding-bottom: 8.125rem;
    }
}

.education-experience .edu-title {
    margin-bottom: 3.9rem;
    position: relative;
}

@media screen and (min-width: 992px) {
    .education-experience .edu-title::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.education-experience .experience-line {
    position: relative;
    isolation: isolate
}

@media screen and (min-width: 992px) {
    .education-experience .experience-line::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 0px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 1px;
        height: 100%;
        background-color: #4a4545a6;
        z-index: -1;
    }

}

.education-experience .edu-exp-info {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
    font-weight: 600;
    margin-top: 0.6125rem;
}

.education-experience .row:nth-child(even) .edu-exp-info {
    text-align: right;
}

.education-experience .edu-exp-info .icon-wrapper {
    background-color: #43bbd285;
    width: 39px;
    height: 38px;
    text-align: center;
    border-radius: 50%;
    line-height: 40px;
    font-size: 1.1rem;
    margin-bottom: 5px;
    box-shadow: var(--cardshadow);
    display: inline-block;
}

.education-experience .date-desktop {
    font-family: var(--montserratfont);
    font-size: 0.875rem;
    margin-top: 10px;
    color: #adadad;
}

.education-experience .university {
    font-family: var(--montserratfont);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 5px;
}

.education-experience .box-experience {
    margin-bottom: 3rem;
    border: 1px solid var(--softprimarycolor);
    padding: 1.4rem 1rem;
    border-radius: 5px;
    position: relative;
    box-shadow: var(--cardshadow);
}

@media screen and (min-width:992px) {
    .education-experience .box-experience {
        padding-top: 1.4rem;
        padding-bottom: 1.4rem;
    }

    .education-experience .row:nth-child(even) .box-experience {
        margin-left: 5%;
    }

    .education-experience .box-experience {
        width: 95%;
    }
}

@media screen and (min-width:1170px) {
    .education-experience .box-experience {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* only on mobile and tablet */
.education-experience .box-experience::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -7px;
    background-color: var(--maincolor);
    width: 14px;
    height: 14px;
    border-width: 1px;
    border-color: var(--softprimarycolor) var(--softprimarycolor) transparent transparent;
    border-style: solid;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
}


/* large screen */
@media screen and (min-width:992px) {
    .education-experience .box-experience::after {
        position: absolute;
        left: auto;
        right: -14px;
        top: 12px;
    }

    .education-experience .row:nth-child(odd) .box-experience::after {
        left: auto;
        right: -14px;
        -webkit-transform: translateX(-50%) rotate(45deg);
        -moz-transform: translateX(-50%) rotate(45deg);
        transform: translateX(-50%) rotate(45deg);
    }

    .education-experience .row:nth-child(even) .box-experience::after {
        right: auto;
        left: 0px;
        -webkit-transform: translateX(-50%) rotate(45deg);
        -moz-transform: translateX(-50%) rotate(45deg);
        transform: translateX(-50%) rotate(231deg);
    }
}

/* mobile and tablet screen only */
@media screen and (max-width: 992px) {
    .education-experience .box-experience .circle-shape {
        position: absolute;
        left: 50%;
        top: -50px;
        width: 1px;
        height: 39px;
        background-color: #ffffff14;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .education-experience .row:first-child .box-experience .circle-shape {
        height: 25px;
        top: -32px;
    }

    .education-experience .box-experience .circle-shape::before {
        content: '';
        position: absolute;
        top: 50%;
        background-color: #3a3a3a;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        left: -8px;
        z-index: 1;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);

    }

    .education-experience .row:first-child .box-experience .circle-shape::before {
        top: 0%;
    }

    .education-experience .box-experience .circle-shape::after {
        content: '';
        position: absolute;
        top: 50%;
        background-color: var(--primarycolor);
        width: 7px;
        height: 7px;
        border-radius: 50%;
        left: 0px;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .education-experience .row:first-child .box-experience .circle-shape::after {
        top: 0%;
    }
}

/* large screen */
@media screen and (min-width: 992px) {
    .education-experience .circle-shape-desktop {
        position: absolute;
        top: 12px;
        left: 50%;
        width: 20px;
        height: 20px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .education-experience .circle-shape-desktop::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 50%;
        background-color: #3a3a3a;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        z-index: 6;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);

    }

    .education-experience .circle-shape-desktop::after {
        content: '';
        position: absolute;
        top: 40%;
        background-color: var(--primarycolor);
        width: 7px;
        height: 7px;
        border-radius: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 7;
    }
}

.education-experience .box-experience .date {
    color: var(--primarycolor);
    font-weight: 600;
    background-color: var(--maincolor);
    width: 115px;
    padding: 0.2rem;
    border-radius: 5px;
    font-size: 0.875rem;
    text-align: center;
    font-family: var(--montserratfont);
    text-transform: capitalize;
    box-shadow: var(--cardshadow);
}

.education-experience .box-experience .title {
    text-transform: capitalize;
    font-size: 1.3rem;
    margin-top: 0.75rem;
    font-weight: bold;
    font-family: var(--montserratfont);
    line-height: 30px;
}

@media screen and (min-width: 576px) {
    .education-experience .box-experience .title {
        font-size: 1.4rem;
        line-height: auto;
    }
}

/* end experience */

/*  portfolio */

.portfolio {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--secondarymaincolor);
}


@media screen and (min-width:768px) {
    .portfolio {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (min-width:1170px) {
    .portfolio {
        padding-top: 8.125rem;
        padding-bottom: 8.125rem;
    }
}

.portfolio .popup-show-project {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 72%);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: none;
}

.portfolio .popup-show-project.show {
    display: flex;
}

.portfolio .popup-show-project .buttons-control {
    position: absolute;
    top: 3%;
    z-index: 99;
    width: 91%;
    max-width: 1214px;
    display: flex;
    justify-content: flex-end;
}

.portfolio .popup-show-project .buttons-control .button-close,
.portfolio .popup-show-project .buttons-control .button-pause {
    color: #fff;
    border: none;
    outline: none;
    background: transparent;
    border: 1px solid #565656;
    border-radius: 3px;
    padding: 3px 13px;
    margin-right: 6px;
    color: #adadad;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.portfolio .popup-show-project .buttons-control .button-close:hover,
.portfolio .popup-show-project .buttons-control .button-close:focus,
.portfolio .popup-show-project .buttons-control .button-pause:hover,
.portfolio .popup-show-project .buttons-control .button-pause:focus {
    box-shadow: unset;
    color: #fff;
}

.portfolio .popup-show-project .buttons-control .button-close,
.portfolio .popup-show-project .buttons-control .button-pause {
    font-size: 0.9rem;
    cursor: pointer;
}

.portfolio .popup-show-project .content-project {
    width: 93%;
    max-width: 1200px;
    height: 80%;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    padding: 5px;
    border: 4px solid #458692;
    border-radius: 8px;
}

.portfolio .popup-show-project .content-project.overflow {
    overflow: auto
}

.portfolio .popup-show-project .content-project img {
    position: absolute;
    left: 0px;
    top: 0px;
}

.portfolio .portfolio-title {
    margin-bottom: 2rem;
    position: relative;
}


.portfolio .content {
    overflow: hidden;
    position: relative;
    max-height: 348px;
    margin-bottom: 1.6rem;
    border-radius: 4px;
    box-shadow: var(--cardshadow);
}

.portfolio .content::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4)
}


.portfolio .content .img-project {
    height: 335px;
    width: 100%;
    background-repeat: no-repeat;
    position: relative;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
    cursor: pointer;
}

.portfolio .content:hover .img-project {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    filter: blur(1px)
}

.portfolio .content .overlay {
    position: absolute;
    left: 0px;
    top: -335px;
    height: 100%;
    width: 100%;
    background-color: #0000009e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.portfolio .content:hover .overlay {
    -webkit-transition: all 0.5s 0.2s;
    -moz-transition: all 0.5s 0.2s;
    transition: all 0.5s 0.2s;
    top: 0px;
}

.portfolio .content .overlay .project-name {
    font-weight: bold;
    font-family: var(--montserratfont);
    font-size: 1.3rem;
    color: var(--primarycolor);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 0%;
    overflow: hidden;
    white-space: pre;
    text-align: center;
    text-shadow: 0px 0px 5px #34a2b7a3;
}

.portfolio .content:hover .project-name {
    -webkit-transition: all 2.3s 0.7s;
    -moz-transition: all 2.3s 0.7s;
    transition: all 2.3s 0.7s;
    width: 100%;
}

.portfolio .content .overlay .button-wrapper {
    opacity: 0;
}

.portfolio .content:hover .button-wrapper {
    -webkit-transition: all 0.5s 0.9s;
    -moz-transition: all 0.5s 0.9s;
    transition: all 0.5s 0.9s;
    opacity: 1;
    position: relative;
}

.portfolio .content .overlay .button-wrapper .project-details {
    background: transparent;
    outline: none;
    color: #909090;
    border: none;
    font-size: 1.1rem;
    border: 1px solid #4a4a4a;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    line-height: 38px;
    border-radius: 5px;
    margin-left: 0.5rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 1.25rem;

}

.portfolio .content .overlay .button-wrapper .project-details.disable {
    cursor: not-allowed;
    background-color: #cfcfcf2b;
}

.portfolio .content .overlay .button-wrapper .project-details:not(.disable):hover {
    color: #fff;
}

/* end portfolio */

/* contact me */

.contact-me {
    padding-top: 3rem;
    padding-bottom: 3rem;
}


@media screen and (min-width:768px) {
    .contact-me {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (min-width:1170px) {
    .contact-me {
        padding-top: 8.125rem;
        padding-bottom: 8.125rem;
    }
}

.contact-me .contact-title {
    margin-bottom: 2rem;
    position: relative;
}

.contact-me .get-in-touch-title {
    font-size: 1.8rem;
    margin-top: 0.625rem;
}

.contact-me .description {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.contact-me .box {
    margin-top: 0.1325rem;
}

.contact-me .box .icon {
    font-size: 1.5rem;
    margin-right: 1.25rem;
    color: #d7d7d7;
}

.contact-me .box .info-title {
    font-family: var(--montserratfont);
    font-size: 1.1rem;
}

.contact-me .box .description-info {
    color: var(--paragraphcolor);
    font-size: 0.9375rem;
}

.contact-me .box .phone {
    margin-bottom: 5px;
    color: var(--paragraphcolor)
}

.contact-me .box .phone.firsrt {
    margin-bottom: 0.4375rem;
}

.contact-me .box .phone.second {
    margin-bottom: 0.9375rem
}

.contact-me .social-wrapper {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

@media screen and (min-width:992px) {
    .contact-me .social-wrapper {
        margin-bottom: 0px;
    }
}


.contact-me .social-wrapper .social-link {
    color: #fff;
    width: 49px;
    height: 48px;
    font-size: 1.3rem;
    background-color: #181b28;
    margin-right: 4px;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    isolation: isolate
}

.contact-me .social-wrapper .social-link::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 0px;
    width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1
}

.contact-me .social-wrapper .social-link.linkedin::after {
    background-color: #0e76a8
}

.contact-me .social-wrapper .social-link.linkedin:hover::after {
    height: 100%;
}

.contact-me .social-wrapper .social-link.github::after {
    background-color: #333
}

.contact-me .social-wrapper .social-link.github:hover::after {
    height: 100%;
}

.contact-me .social-wrapper .social-link.facebook::after {
    background-color: #4267B2
}

.contact-me .social-wrapper .social-link.facebook:hover::after {
    height: 100%;
}

.contact-me .social-wrapper .social-link.twitter::after {
    background-color: #1DA1F2
}

.contact-me .social-wrapper .social-link.twitter:hover::after {
    height: 100%;
}

.contact-me .social-wrapper .social-link.instagram::after {
    background-color: #FD1D1D
}

.contact-me .social-wrapper .social-link.instagram:hover::after {
    height: 100%;
}

.contact-me .form-message {
    padding: 2.4rem 1.3rem;
    box-shadow: var(--cardshadow);
    border-radius: 10px;
    max-width: 550px;
    margin: auto;
    height: 100%;
}

@media screen and (min-width:768px) {
    .contact-me .form-message {
        padding: 2.4rem 1.9rem;
    }
}


.contact-me .form-message .input-wrapper {
    position: relative;
    isolation: isolate;
    margin-bottom: 2.4rem;
}

.contact-me .form-message .input-wrapper .form-label {
    position: absolute;
    font-size: 0.8rem;
    color: #7c7b7b;
    left: 10px;
    top: 10px;
    font-weight: 500;
    font-family: var(--montserratfont);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
}

.contact-me .form-message .input-wrapper .form-control {
    background-color: transparent;
    border: 1px solid #434343;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    color: #fff;
    font-weight: 400;
    font-size: 0.9rem;
}

.contact-me .form-message .input-wrapper .form-control::placeholder {
    color: transparent;
}

.contact-me .form-message .input-wrapper .form-control:hover+.form-label,
.contact-me .form-message .input-wrapper .form-control:focus+.form-label,
.contact-me .form-message .input-wrapper .form-control:not(:placeholder-shown)+.form-label {
    top: -27px;
    left: 0px;
    font-size: 0.9rem;
    color: #cacaca;
}

.contact-me .form-message .input-wrapper .form-control.text-area {
    height: 130px;
    resize: none;
}

.contact-me .form-message .input-wrapper .form-control:hover,
.contact-me .form-message .input-wrapper .form-control:focus,
.contact-me .form-message .input-wrapper .form-control:active {
    box-shadow: unset;
    border: 1px solid var(--primarycolor)
}

.contact-me .form-message .btn-submit {
    padding: 0.7rem 2rem;
    background: #2a6571;
    outline: none;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.contact-me .form-message .btn-submit:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #2a6571
}

.contact-me .form-message .error-container {
    position: fixed;
    top: 55%;
    right: 6%;
}

.contact-me .form-message .error-container .message {
    background-color: #bd0a0a;
    color: #fff;
    padding: 0.9rem 1rem;
    margin-bottom: 10px;
    border-radius: 5px;
    width: 270px;
}

.contact-me .form-message .error-border {
    border: 1px solid #bd0a0a
}

/* end contact me */

/* footer section */
.footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--secondarymaincolor);
    text-align: center;
}

.footer .description {
    margin: 0px;
    font-family: var(--montserratfont);
    font-weight: 600;
}

.footer .description .hero-name {
    color: var(--primarycolor);
}

.footer .icon {
    color: #da1414;
    margin-right: 5px;
}

/* animation */
/* will used with scroll down text in banner section */
@keyframes scroll-to-movement {
    0% {
        bottom: 35%;
    }

    100% {
        bottom: 30%
    }
}

/* image animation */
@keyframes movetoptoright {
    0% {
        left: -48px;

    }

    100% {
        left: 200%;
    }
}

@keyframes moverighttobottom {
    0% {
        top: -48px;
    }

    100% {
        top: 200%;
    }
}

@keyframes movebottomtoleft {
    0% {
        right: -48px;
    }

    100% {
        right: 200%;
    }
}

@keyframes movebottomtotop {
    0% {
        bottom: -48px;
    }

    100% {
        bottom: 200%;
    }
}

/* will used with section heading */
@keyframes styled-heading-animation {
    0% {
        left: -27px;
    }

    100% {
        left: 120%;
    }
}

@keyframes bubble {
    0% {
        opacity: 1;
        transform: scale(1, 1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1, 1.3);
    }
}

@keyframes fadeToggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* animation for element on scrolling */
@keyframes lefttoright {
    0% {
        opacity: 0;
        left: -80px
    }

    50% {
        opacity: 0.5;
    }

    100% {
        left: 0px
    }
}

@keyframes righttoleft {
    0% {
        opacity: 0;
        right: -80px;
    }

    50% {
        opacity: 0.5
    }

    100% {
        right: 0px
    }
}

@keyframes bottomtotop {
    0% {
        opacity: 0;
        bottom: -80px;
    }

    50% {
        opacity: 0.5
    }

    100% {
        bottom: 0px
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}