/* Table of Contents
----------------------------------

0- Global CSS
1- Heading CSS
2- Button CSS
3- Header Area CSS
4- Home Area CSS
5- About Area CSS
6- Qualification Area CSS 
7- Services Area CSS
8- Portfolio Area CSS
9- Testimonials Area CSS
10- Blog Area CSS
11- Contact Area CSS
12- Footer Area CSS
13- Scroll-Top Area CSS

*/


/*--------------------- 0- Global CSS (Start) ---------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
:root {
    --purple: #BC8CF2;
    --black: #000000;
    --white: #F7F5F2;
    --grey: #DFDFDE;
}

* {
    font-family: 'Roboto', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    /*outline: 2px solid red;*/
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

*::selection {
    color: #fff;
    background-color: #B89068;
}

html {
    font-size: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    background-color: #000;
}

section {
    padding: 2rem 5%;
}

::-webkit-scrollbar {
    width: 0.8rem;
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background-color: #B89068;
}

::-webkit-scrollbar-track {
    background-color: #000;
}

.swiper-pagination-bullet {
    height: 1rem;
    width: 1rem;
    border-radius: 50rem;
    background-color: rgb(128, 128, 128);
}

.swiper-pagination-bullet-active {
    width: 3rem;
    background: #B89068;
}


/*--------------------- 0- Global CSS (End) ---------------------*/


/*--------------------- 1- Heading CSS (Start) ---------------------*/

.heading {
    margin-bottom: 2rem;
}

.heading h2 {
    text-align: center;
    padding-bottom: 2rem;
    color: #B89068;
    font-size: 3rem;
}

.heading h2 span {
    position: relative;
    z-index: 0;
    color: #fff;
}

.heading h2 span::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    z-index: -1;
    background: #B89068;
    height: 0.2rem;
    width: 80%;
    margin-left: 10%;
}


/*--------------------- 1- Heading CSS (End) ---------------------*/


/*--------------------- 2- Button CSS (Start) ---------------------*/

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    color: #B89068;
    font-size: 0.99em;
    background-color: transparent;
    border: 0.2rem solid #B89068;
}

.btn i {
    /*padding-left: 1rem;*/
}

.btn:hover {
    color: #fff;
    background-color: #B89068;
    cursor: pointer;
}


/*--------------------- 2- Button CSS (End) ---------------------*/


/*--------------------- 3- Header Area CSS (Start) ---------------------*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    z-index: 999;
    height: 60px;
}

header.sticky {
    border-bottom: 0.1rem solid rgb(128, 128, 128);
    background: rgba(0, 0, 0, 0.8);
    height: 60px;
}

header .logo h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #B89068;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

header .navbar a {
    color: #696767;
    font-size: 1.5rem;
    margin-left: 1rem;
}

header .navbar a:hover,
header .navbar a.active {
    color: #f7dda4;
}

header #menu-btn {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    display: none;
}

header .fa-times {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

header #menu-btn:hover {
    color: #B89068;
}


/*--------------------- 3- Header Area CSS (End) ---------------------*/


/*--------------------- 4- Home Area CSS (Start) ---------------------*/

.home {
    padding: 0 5%;
    background-color: #000;
    min-height: 100vh;
}

.home .box-container {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem;
}

.home .image {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
}

.home .image img {
    height: 40rem;
    width: 40rem;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    object-fit: cover;
}

.home .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 7rem;
}

.home .content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #B89068;
}

.home .content h1 {
    font-size: 2rem;
    color: #fff;
    padding: 1rem 0;
    text-transform: none;
}

.home .content h1 span {
    color: #B89068;
}

.home .content p {
    font-size: 1.7rem;
    font-weight: 400;
    color: #fff;
    padding-bottom: 2rem;
    line-height: 1.5;
}


/*--------------------- 4- Home Area CSS (End) ---------------------*/


/*--------------------- 5- About Area CSS (Start) ---------------------*/

.about .box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.about .image {
    width: 32rem;
    text-align: center;
}

.about .image img {
    width: 100%;
}

.about .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
    flex: 1 1 55rem;
}

.about .content h2 {
    font-size: 2rem;
    color: #fff;
    padding-bottom: 1rem;
}

.about .content>p {
    font-size: 1.3rem;
    color: rgb(128, 128, 128);
    line-height: 1.6;
    padding-bottom: 1rem;
}

.about .content .about-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.about .content .about-info .info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
    flex: 1 1 15rem;
}

.about .content .about-info .info h4 {
    font-size: 1.3rem;
    color: #fff;
    padding-bottom: 1rem;
}

.about .content .about-info .info span {
    font-size: 1.3rem;
    font-weight: 400;
    color: grey;
}

.about .content .about-info .info .btn {
    margin-top: 1rem;
}

.counting {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
    flex: 1 1 35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.counting .box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 18rem;
    flex: 1 1 18rem;
    text-align: center;
    background-color: #222;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.counting .box .count {
    font-size: 2rem;
    color: #B89068;
    padding-bottom: 0.5rem;
}

.counting .box .count2 {
    font-size: 2rem;
    color: #B89068;
    padding-bottom: 0.5rem;
}

.counting .box h2 {
    font-size: 1.6rem;
    color: #fff;
}

.skill-container {
    padding: 2rem 0;
}

.skills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.skill-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
    flex: 1 1 30rem;
    margin-right: 1.5rem;
}

.skill-item .box {
    padding: 1rem 0;
}

.skill-item .box h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .7rem 0;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
}

.skill-item .box .progress-bar {
    width: 100%;
    background: #222;
    overflow: hidden;
    height: 1rem;
    border-radius: 50rem;
}

.skill-item .box .progress-bar span {
    display: block;
    height: 100%;
    background: #B89068;
}

.skill-item.item1 .box:nth-child(1) .progress-bar span {
    width: 85%;
}

.skill-item.item1 .box:nth-child(2) .progress-bar span {
    width: 45%;
}

.skill-item.item2 .box:nth-child(1) .progress-bar span {
    width: 75%;
}

.skill-item.item2 .box:nth-child(2) .progress-bar span {
    width: 75%;
}


/*--------------------- 5- About Area CSS (End) ---------------------*/


/*--------------------- 10- Blog Area CSS (Start) ---------------------*/

.blog-slider {
    position: relative;
    padding-bottom: 4rem;
    overflow: hidden;
}

.blog-item {
    background-color: #222;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.blog-item .image {
    height: 25rem;
    overflow: hidden;
}

.blog-item:hover .image img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.blog-item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-item .content {
    padding: 2rem 1rem;
}

.blog-item .content .intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 0.2rem solid #808080;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.blog-item .content .intro h5 {
    font-size: 1.5rem;
}

.blog-item .content .intro h5 i {
    color: #B89068;
    padding-right: 0.5rem;
}

.blog-item .content .intro h5 span {
    color: #808080;
}

.blog-item .content .main-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.blog-item p {
    padding: 1rem 0;
    font-size: 1.3rem;
    color: #808080;
}

.blog-item .btn {
    margin-top: 1rem;
}


/*--------------------- 10- Blog Area CSS (End) ---------------------*/


/*--------------------- 11- Contact Area CSS (Start) ---------------------*/

.contact .alert {
    font-size: 2rem;
    color: #B89068;
    border-radius: 0.5rem;
    padding-left: 1rem;
}

.contact .box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
}

.contact-info h3 {
    font-size: 3rem;
    color: #ffff;
}

.contact-info>p {
    font-size: 1.3rem;
    color: #808080;
    padding: 0.5rem 0;
}

.contact-info .info-item {
    padding: 1rem 0;
}

.contact-info .info-item .mail,
.contact-info .info-item .linkedin,
.contact-info .info-item .github {
    text-transform: none;
}

.contact-info .info-item h4 {
    font-size: 1.8rem;
    color: #fff;
}

.contact-info .info-item .detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-info .info-item .detail .fas,
.contact-info .info-item .detail .fab {
    border-radius: 50%;
    color: #B89068;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    ;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5rem;
}

.contact-info .info-item .detail p {
    font-size: 1.3rem;
    color: #808080;
    line-height: 1.6;
    padding-left: 1rem;
}

.contact-form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
}

.contact-form .box {
    width: 100%;
    text-transform: none;
    color: #808080;
    font-size: 1.6rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 0.5rem 0;
    background-color: #222;
}

.contact-form .box:focus {
    border-color: #fff;
}

.contact-form .box::placeholder {
    color: #808080;
}

.contact-form textarea {
    height: 15rem;
    resize: none;
}

.contact-form .btn {
    margin-top: 1rem;
}


/*--------------------- 11- Contact Area CSS (End) ---------------------*/


/*--------------------- 12- Footer Area CSS (Start) ---------------------*/

footer {
    background-color: #B89068;
    padding: 2rem 0;
    text-align: center;
}

footer .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem 0;
}

footer .social .fab {
    background-color: #000;
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    color: #808080;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0.5rem;
}

footer .social .fab:hover {
    color: #000;
    background-color: #fff;
}

footer .content p {
    font-size: 1rem;
    color: #fff;
}

footer .content p a {
    font-size: 1rem;
    color: #fff;
    text-decoration: underline;
}

footer .content p span {
    color: #000;
}

.footer2 {
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: #ffffff;
}

.footer span.spacer {
    margin: 0 50px;
}

.footer2 .secondary {
    margin-top: 15px;
    line-height: 0;
}

.footer2 .secondary a {
    font-size: 1rem;
    color: #fff;
    text-decoration: underline;
}


/*--------------------- 12- Footer Area CSS (End) ---------------------*/


/*--------------------- 13- Scroll-Top (Start) ---------------------*/

.scroll-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 3rem;
    font-weight: lighter;
    background: #000;
    color: #fff;
    border: 0.2rem solid #fff;
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scroll-top:hover {
    background: #fff;
    color: #000;
}


/*--------------------- 13- Scroll-Top (End) ---------------------*/

.blog {
    color: #ffffff;
    font-size: 20px;
}

.heading {
    margin-bottom: 2rem;
}

.heading h2 {
    text-align: center;
    padding-bottom: 2rem;
    color: #B89068;
    font-size: 3rem;
}

.heading h2 span {
    position: relative;
    z-index: 0;
    color: #fff;
}

.heading h2 span::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    z-index: -1;
    background: #B89068;
    height: 0.2rem;
    width: 80%;
    margin-left: 10%;
}

.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}