@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/*.....header.....*/
header {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    justify-content: space-between;
}

nav {
    padding: 30px;
}

.contact_information {
    padding-top: 30px;
    padding-right: 30px;
}

nav>ul>li {
    display: inline-block;
    padding-left: 20px;
}

nav>ul>li>a {
    font-size: 20px;
    color: white;
    text-align: center;
}

nav>ul>li:last-of-type {
    padding-right: 0;
}

nav>ul>li.active>a::before {
    display: block;
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background-color: #ffb531;
    bottom: -8px;
    left: -25px;
    margin-left: 50%;
}

div>ul>li {
    display: inline-block;
}

div>ul>li>a {
    color: black;
    text-align: center;
}

.contact_information ul {
    display: flex;
    align-items: center;
    justify-content: end;
}

.contact_information ul li {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.contact_information ul li a {
    display: inline-block;
    font-weight: 700;
}

.contact_information ul li img {
    display: inline-block;
    margin-right: 15px;
}

a.mobile-nav-link {
    display: none;
}

.mobile-nav {
    display: none;
}


/*.....main section.....*/
main {
    background-color: #222222;
    position: relative;
}

/*.....banner-section.....*/
.banner-section {
    display: block;
    padding-top: 100px;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.banner-section::before {
    display: block;
    position: absolute;
    content: "";
    width: 70%;
    height: 100%;
    background-color: #222222;
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    left: 0;
    top: 0;
}

.banner-section::after {
    display: block;
    position: absolute;
    content: "";
    width: 30%;
    height: 100%;
    background-color: #ffb531;
    background-image: url('../images/background2.png');
    background-repeat: no-repeat;
    background-position: right center;
    right: 0;
    top: 0;
}

.banner-section>section {
    display: block;
}

.banner-section>hgroup {
    position: absolute;
    top: 30%;
    left: 100px;
}

.banner-section>hgroup>h4 {
    font-size: 50px;
    font-weight: lighter;
    color: white;
    margin: 20px;
}

.banner-section>hgroup>h2 {
    font-weight: bold;
    font-size: 80px;
    margin: 10px;
}

.banner-section>hgroup>h1 {
    font-weight: bold;
    font-size: 100px;
    margin: 10px;
}

.banner-section>img {
    position: absolute;
    bottom: 0;
    right: 120px;
    z-index: 8;
}

.social-link {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 9;
}

.social-link a {
    display: block;
    margin: 5px;
}

/*.....about-me-section.....*/
.about-me-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 0;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.about-me-section>div {
    width: 44%;
}

.about-me-section>div>img {
    width: 100%;
    height: auto;
}

.about-me-section article {
    width: 50%;
}

.about-me-section article hgroup h5 {
    font-weight: 200;
    font-size: 25px;
    margin-bottom: 20px;
    color: #ffb531;
}

.about-me-section article hgroup h3 {
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 30px;
    color: white;
}

.about-me-section article p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
    color: white;
}

.about-me-section section h5 {
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 5px;
    color: #ffb531;
}

.about-me-section article h5 {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.about-me-section article .skills {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.about-me-section article .skills img {
    display: inline-block;
    margin-right: 12px;
}

.button-section {
    display: block;
}

a.button-1 {
    display: inline-block;
    padding: 10px 15px;
    background: #ffb531;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    margin-right: 15px;
    box-shadow: 0 0 5px 1px #000;
}

a.button-1 img {
    display: inline-block;
    vertical-align: middle;
}

a.button-2 {
    display: inline-block;
    padding: 10px 15px;
    background: #393939;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    margin-right: 15px;
    box-shadow: 0 0 5px 1px #000;
}

a.button-2 img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}


/*.....service page.....*/
.services-section {
    display: block;
    padding: 150px 0;
    background-image: url('../images/bg_services.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services-section .container {
    display: block;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.services-section .container hgroup {
    display: block;
}

.services-section .container hgroup h5 {
    font-weight: 200;
    font-size: 24px;
    margin-bottom: 20px;
}

.services-section .container hgroup h3 {
    font-weight: 500;
    font-size: 50px;
    line-height: 52px;
    color: white;
}

.services-section .container>section {
    display: grid;
    width: 100%;
    align-self: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 80px;
}

.services-section .container>section>section {
    display: flex;
    align-items: center;
    height: 400px;
    background-color: #2C2C2C;
    border-radius: 30px;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.services-section .container>section>section:hover {
    box-shadow: 0 0 8px 0px #FFB300;
}

.services-section .container>section>section>article {
    display: block;
    padding: 30px;
}

.services-section .container>section>section>article>img {
    display: block;
    margin-bottom: 50px;
}

.services-section .container>section>section>article>h4 {
    font-weight: 500;
    font-size: 25px;
    line-height: 27px;
    color: white;
    margin-bottom: 20px;
}

.services-section .container>section>section>article>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: white;
}

/*.....portfolio page.....*/
.portfolio-section {
    display: block;
    padding: 50px 0 100px 0;
}

.portfolio-section .container {
    display: block;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.portfolio-section .container hgroup {
    display: block;
}

.portfolio-section .container hgroup h5 {
    font-weight: 200;
    font-size: 24px;
    margin-bottom: 20px;
}

.portfolio-section .container hgroup h3 {
    font-weight: 500;
    font-size: 50px;
    line-height: 52px;
    color: white;
}

.portfolio-section .container section {
    display: block;
    margin-top: 50px;
}

.portfolio-section .container section .tab-nav {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #565656;
    padding: 0;
}

.portfolio-section .container section .tab-nav>li {
    display: inline-block;
    padding: 7px 20px;
    border-bottom: 1px solid #565656;
    margin-bottom: -1px;
}

.portfolio-section .container section .tab-nav>li.active {
    border-bottom: 1px solid #ffb531;
}

.portfolio-section .container section .tab-nav li a {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

.portfolio-section .container section .tab-container {
    display: block;
}

.portfolio-section .container section .tab-container .tab-item {
    display: none;
}

.portfolio-section .container section .tab-container .tab-item.active {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}

.portfolio-section .container section .tab-container .tab-item.tab1>a {
    display: inline-block;
    width: 49%;
    margin-bottom: 10px;
}

.portfolio-section .container section .tab-container .tab-item.tab1>a>img {
    width: 100%;
}

.portfolio-section .button-section {
    text-align: center;
    margin-top: 30px;
}

.portfolio-section .container section .tab-container .tab-item.tab1 > a span {
    position: absolute;
    z-index: 10;
    width: 100%;
    left: 0;
    top: 48%;
    text-align: center;
    color: #FF9800;
    opacity: 0;
    font-size: 22px;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.portfolio-section .container section .tab-container .tab-item.tab1 > a:hover span {
    opacity: 1;
}

.portfolio-section .container section .tab-container .tab-item.tab1>a::before {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 66%);
    z-index: 9;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.portfolio-section .container section .tab-container .tab-item.tab1>a:hover::before {
    opacity: 1;
}

.portfolio-section .container section .tab-container .tab-item.tab2 {
    flex-wrap: wrap;
}

.portfolio-section .container section .tab-container .tab-item.tab2 .assignment-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    border: 1px solid #2b2b2b;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px 1px #272727;
}

.portfolio-section .container section .tab-container .tab-item.tab2 .assignment-col h4 {
    width: 100%;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.assignment-inner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.assignment-inner > .ass-col {
    width: 24%;
    background: #1b1b1b;
    margin-bottom: 10px;
    text-align: center;
    padding: 7% 4%;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.assignment-inner > .ass-col:hover {
    box-shadow: 0 0 5px 0px black;
    transform: scale(1.02);
}

.assignment-inner > .ass-col h5 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
}

.assignment-inner > .ass-col span {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 22%;
    color: #FFC107;
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.assignment-inner > .ass-col:hover span {
    transform: translateY(0);
    opacity: 1;
}


/*.....contact us .....*/
.contact-section {
    display: block;
    padding: 100px 0;
    background-color: #1E1E1E;
}

.contact-section .container {
    display: block;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.contact-section .container hgroup {
    display: block;
    margin-bottom: 50px;
}

.contact-section .container hgroup h5 {
    font-weight: 200;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-section .container hgroup h3 {
    font-weight: 500;
    font-size: 50px;
    line-height: 52px;
    color: white;
}

.contact-section .container>section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-section .container>section>form {
    width: 48%;
    border: none;
}

.contact-section .container>section>article {
    width: 48%;
}

.contact-section .container>section>form input {
    display: block;
    width: 100%;
    background: #393939;
    height: 50px;
    border: none;
    border-left: 2px solid red;
    margin-bottom: 20px;
    padding: 0 10px;
    color: #fff;
    font-size: 16px;
}

.contact-section .container>section>form textarea {
    display: block;
    width: 100%;
    background: #393939;
    height: 150px;
    border: none;
    margin-bottom: 20px;
    padding: 10px;
    color: #fff;
    font-size: 16px;
}

.contact-section .container>section>form button {
    display: inline-block;
    padding: 10px;
    width: 200px;
    text-align: center;
    background: #ffb531;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    margin-right: 15px;
    box-shadow: 0 0 5px 1px #000;
}

.contact-section .container>section>article p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 200;
    color: white;
    margin-bottom: 20px;
}

.contact-section .container>section>article .contact-link {
    display: block;
    margin-bottom: 15px;
    justify-content: center;
}

.contact-section .container>section>article .contact-link img {
    display: inline-block;
    margin-right: 15px;
    justify-content: center;
}

.contact-section .container>section>article .contact-link a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

.contact-section .container>section>article .ft-social-links {
    display: block;
    margin-top: 30px;
}

.contact-section .container>section>article .ft-social-links img {
    margin-right: 20px;
}

/*..... Footer .....*/
footer {
    display: block;
    background-color: #ffb531;
    padding: 20px;
    text-align: center;
}


/*..... Education and Experience section  .....*/
.about-me-section.inner-page {
    padding: 100px 0;
}

.education-n-experience-section {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0 0 100px 0;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.education-n-experience-section > section {
    width: 47%;
}

.education-n-experience-section>section>h3 {
    font-weight: 400;
    font-size: 40px;
    color: white;
    margin: 15px 0;
}

.education-n-experience-section>section>section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.education-n-experience-section>section>section>div {
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
    background-color: #282828;
    padding: 15px;
}

.education-n-experience-section>section>section>div>hgroup>h4 {
    font-weight: lighter;
    font-size: 20px;
    color: white;
    margin: 12px 0;
}

.education-n-experience-section>section>section>div>hgroup>h5 {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
    color: white;
}


/*..... Gallery section  .....*/
.gallery-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 100px 0;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.gallery-section>img {
    margin-bottom: 50px;
    width: 100%;
    height: auto;
    max-width: 520px;
}

.gallery-section > div {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gallery-section > div > img {
    width: 100%;
}

/* Inner pages Style */
.banner-section.inner-page {
    min-height: 500px;
    height: auto;
}

.page-title-wrapper {
    display: block;
    width: 100%;
    max-width: 1366px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}

.page-title-wrapper h2 {
    font-weight: bold;
    font-size: 70px;
    margin-bottom: 20px;
}

ul.breadcrumb {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

ul.breadcrumb li {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
}

ul.breadcrumb li a {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
}

ul.breadcrumb li.breadcrumb-separator {
    margin: 0 7px;
}

ul.breadcrumb li.breadcrumb-separator img {
    margin-bottom: -4px;
}

.contact-section.inner-page .container hgroup h3 {
    font-size: 40px;
}

.contact-section.inner-page .container hgroup {
    margin-bottom: 20px;
}

.contact-section.inner-page p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 200;
    color: white;
}

article.contact-card {
    width: 100%;
    text-align: center;
    background: #393939;
    padding: 35px 20px;
}

.contact-section .container>section>article.contact-card .contact-link {
    margin: 15px 0 0 0;
}

/*Loading animation*/
.loader {
    display: flex;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #0d0d0d;
    flex-wrap: wrap;
    z-index: 999;
}

.loader h5 {
    position: absolute;
    width: 100%;
    color: #fff;
    text-align: center;
    top: 62%;
}

.cssload-loader-inner {
    bottom: 0;
    height: 58px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 97px;
}

.cssload-cssload-loader-line-wrap-wrap {
    animation: cssload-spin 2300ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    -o-animation: cssload-spin 2300ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    -ms-animation: cssload-spin 2300ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    -webkit-animation: cssload-spin 2300ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    -moz-animation: cssload-spin 2300ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 49px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    width: 97px;
}
.cssload-loader-line-wrap {
    border: 4px solid transparent;
    border-radius: 100%;
    -o-border-radius: 100%;
    -ms-border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 97px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 97px;
}
.cssload-cssload-loader-line-wrap-wrap:nth-child(1) { animation-delay: -57.5ms;
    -o-animation-delay: -57.5ms;
    -ms-animation-delay: -57.5ms;
    -webkit-animation-delay: -57.5ms;
    -moz-animation-delay: -57.5ms; }
.cssload-cssload-loader-line-wrap-wrap:nth-child(2) { animation-delay: -115ms;
    -o-animation-delay: -115ms;
    -ms-animation-delay: -115ms;
    -webkit-animation-delay: -115ms;
    -moz-animation-delay: -115ms; }
.cssload-cssload-loader-line-wrap-wrap:nth-child(3) { animation-delay: -172.5ms;
    -o-animation-delay: -172.5ms;
    -ms-animation-delay: -172.5ms;
    -webkit-animation-delay: -172.5ms;
    -moz-animation-delay: -172.5ms; }
.cssload-cssload-loader-line-wrap-wrap:nth-child(4) { animation-delay: -230ms;
    -o-animation-delay: -230ms;
    -ms-animation-delay: -230ms;
    -webkit-animation-delay: -230ms;
    -moz-animation-delay: -230ms; }
.cssload-cssload-loader-line-wrap-wrap:nth-child(5) { animation-delay: -287.5ms;
    -o-animation-delay: -287.5ms;
    -ms-animation-delay: -287.5ms;
    -webkit-animation-delay: -287.5ms;
    -moz-animation-delay: -287.5ms; }

.cssload-cssload-loader-line-wrap-wrap:nth-child(1) .cssload-loader-line-wrap {
    border-color: rgb(234,71,71);
    height: 88px;
    width: 88px;
    top: 7px;
}
.cssload-cssload-loader-line-wrap-wrap:nth-child(2) .cssload-loader-line-wrap {
    border-color: rgb(234,234,71);
    height: 74px;
    width: 74px;
    top: 14px;
}
.cssload-cssload-loader-line-wrap-wrap:nth-child(3) .cssload-loader-line-wrap {
    border-color: rgb(71,234,71);
    height: 60px;
    width: 60px;
    top: 20px;
}
.cssload-cssload-loader-line-wrap-wrap:nth-child(4) .cssload-loader-line-wrap {
    border-color: rgb(71,234,234);
    height: 47px;
    width: 47px;
    top: 27px;
}
.cssload-cssload-loader-line-wrap-wrap:nth-child(5) .cssload-loader-line-wrap {
    border-color: rgb(71,71,234);
    height: 33px;
    width: 33px;
    top: 34px;
}

@keyframes cssload-spin {
    0%, 15% {
        transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes cssload-spin {
    0%, 15% {
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes cssload-spin {
    0%, 15% {
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes cssload-spin {
    0%, 15% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes cssload-spin {
    0%, 15% {
        -moz-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Animation */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(50%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(50%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.banner-section>hgroup {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: slideInleft;
    animation-name: slideInleft;
    animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

.banner-section>img {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

.page-title-wrapper>h2 {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

.page-title-wrapper>.breadcrumb-nav {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

/*.inner-page.slideInUp {*/
/*    -webkit-animation-duration: 1.5s;*/
/*    animation-duration: 1.5s;*/
/*    -webkit-animation-name: slideInUp;*/
/*    animation-name: slideInUp;*/
/*    animation-delay: 4s;*/
/*    -webkit-animation-delay: 4s;*/
/*}*/

/* Extra large devices - large desktops */
@media (max-width: 1499.98px) {
    .banner-section::before {
        width: 60%;
    }

    .banner-section::after {
        width: 40%;
    }

    .banner-section>img {
        bottom: -5%;
        right: 40px;
    }

    .banner-section>hgroup>h4 {
        font-size: 35px;
    }

    .banner-section>hgroup>h2 {
        font-size: 60px;
    }

    .banner-section>hgroup>h1 {
        font-size: 80px;
    }

    .about-me-section {
        padding: 150px 40px;
    }

    .services-section {
        padding: 0 40px 50px 40px;
    }

    .portfolio-section {
        padding: 50px 40px 100px 40px;
    }

    .contact-section {
        padding: 80px 40px;
    }

    .page-title-wrapper {
        padding: 0 40px;
    }

    .about-me-section.inner-page {
        padding: 100px 40px;
    }

    .education-n-experience-section {
        padding: 0 40px 80px 40px;
    }

    .education-n-experience-section > section {
        width: 48%;
    }

    .gallery-section {
        padding: 0 40px 80px 40px;
    }


}

/* Large devices - desktops */
@media (max-width: 1199.98px) {
    header>nav {
        display: none;
    }

    a.mobile-nav-link {
        display: block;
        padding: 25px;
    }

    .contact_information ul li:nth-of-type(2) {
        display: none;
    }

    .banner-section>img {
        bottom: -5%;
        right: -170px;
    }

    .mobile-nav.show {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        background: #000000;
        width: 300px;
        justify-content: center;
        align-items: center;
    }

    .mobile-nav ul {
        padding: 0;
        text-align: center;
    }

    .mobile-nav ul li {
        display: block;
        padding: 15px;
    }

    .mobile-nav button {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        border: none;
        padding: 10px;
        width: 40px;
        height: 40px;
    }

    .mobile-nav button img {
        width: 100%;
    }

    .mobile-nav.show::before {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        content: "";
        background: #000;
        left: 0;
        top: 0;
        opacity: 0.9;
    }

    .about-me-section {
        padding: 70px 40px;
        flex-wrap: wrap;
    }

    .gallery-section>img {
        margin-bottom: 40px;
        max-width: 400px;
    }

}


/* Medium devices - tablets */
@media (max-width: 991.98px) {
    .banner-section>img {
        bottom: 0;
        right: -70px;
        width: 600px;
        height: auto;
    }

    .banner-section {
        height: auto;
        min-height: 650px;
    }

    .banner-section>hgroup {
        left: 30px;
    }

    .banner-section>hgroup>h4 {
        font-size: 25px;
    }

    .banner-section>hgroup>h2 {
        font-size: 40px;
    }

    .banner-section>hgroup>h1 {
        font-size: 60px;
    }

    .about-me-section {
        justify-content: center;
    }

    .about-me-section>div {
        width: 70%;
        padding-bottom: 30px;
    }

    .about-me-section article {
        width: 100%;
    }

    .about-me-section article .skills img {
        width: 40px;
        height: auto;
    }

    .services-section .container>section>section>article>h4 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .services-section .container>section>section>article>img {
        width: 50px;
        height: auto;
        margin-bottom: 30px;
    }

    .services-section .container>section>section {
        height: 340px;
    }

    .banner-section.inner-page {
        min-height: 300px;
    }

    .page-title-wrapper h2 {
        font-size: 50px;
    }

    .banner-section.inner-page .social-link {
        bottom: 10px;
        right: 20px;
    }

    .banner-section.inner-page .social-link img {
        width: 32px;
        height: auto;
    }

    .education-n-experience-section {
        flex-wrap: wrap;
    }

    .education-n-experience-section > section {
        width: 100%;
        margin-bottom: 40px;
    }

    .education-n-experience-section>section>h3 {
        font-size: 30px;
        margin: 0;
    }

    .gallery-section > div {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-section .container section .tab-container .tab-item.tab1 > a span {
        font-size: 15px;
    }

    .assignment-inner > .ass-col {
        width: 49%;
        padding: 70px 4%;
    }

}


/* Small devices - landscape phones */
@media (max-width: 767.98px) {
    .banner-section::after {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
    }

    .banner-section::before {
        width: 100%;
        height: 60%;
    }

    .banner-section>img {
        right: -130px;
        width: 550px;
    }

    .social-link a img {
        width: 40px;
        height: 40px;
    }

    .social-link {
        right: auto;
        left: 20px;
    }

    div>ul>li>a {
        color: white;
    }

    .banner-section>hgroup {
        left: 20px;
        top: 15%;
    }

    .contact_information ul li img {
        -webkit-filter: invert(100%);
        filter: invert(100%);
    }

    .about-me-section>div {
        width: 70%;
        padding-bottom: 30px;
    }

    .about-me-section>div {
        display: none;
    }

    .about-me-section article hgroup h3 {
        font-size: 40px;
    ;
    }

    .services-section .container>section {
        display: block;
        margin-top: 40px;
    }

    .services-section .container>section>section {
        height: auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-section .container>section {
        flex-wrap: wrap;
    }

    .contact-section .container>section>form {
        width: 100%;
        margin-bottom: 40px;
    }

    .contact-section .container>section>article {
        width: 100%;
    }

    .contact-section .container>section>article .ft-social-links img {
        width: 40px;
        height: auto;
    }

    .banner-section.inner-page::after {
        display: none;
    }

    .banner-section.inner-page .social-link {
        display: none;
    }

    .banner-section.inner-page {
        border-bottom: 2px solid #2d2d2d;
    }

    .banner-section.inner-page::before {
        height: 100% !important;
    }

    .portfolio-section .container section .tab-container .tab-item.tab1>a {
        width: 100%;
    }

}


/* Extra small devices - portrait phones */
@media (max-width: 575.98px) {
    .banner-section>img {
        right: -100px;
        width: 400px;
    }

    .banner-section>hgroup>h4 {
        font-size: 18px;
        font-weight: 400;
    }

    .banner-section>hgroup>h2 {
        font-size: 28px;
    }

    .banner-section>hgroup>h1 {
        font-size: 50px;
    }

    .button-section>a {
        width: 100%;
        margin: 7px 0;
        text-align: center;
    }

    .portfolio-section .container section .tab-container .tab-item>img {
        width: 100%;
    }

    .assignment-inner > .ass-col {
        width: 100%;
    }

}