/* ======================== General Css ========================*/
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html 
{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body
{
    font-family: "Poppins", sans-serif;
}
::selection {
    background: #20c997;
    color: #fff;
    text-shadow: none;
}
ul,a
{
    text-decoration: none;
    list-style-type: none;
}
.container
{
    width: 80%;
    margin: auto;
}
.section
{
    padding: 4.5rem 0;
}
.section-heading
{
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
.section-heading h2
{
    color:#dee3e4;
    opacity: 0.4;
    font-size: 8.25rem;
    line-height: 1.3;
    text-transform: uppercase;
}
.section-heading p
{
    position: absolute;
    align-self: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    color: rgb(33, 37, 41);
}
.section-heading p span::before
{
    content:"";
    position:absolute;
    top: 100%;
    left: 50%;
    width:80px;
    background-color: #20c997;
    height: 3px;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
}
/* ======================== Start  Navbar ========================*/
header
{
    background-color: #000;
    position: fixed;
    width: 100%;
    height: 70px;
    z-index: 999999;
}
nav
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    height: 100%;
}
nav ul
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
}
nav li 
{
    padding:0px 0.85em;
    transition: all 0.5s ease;
}
nav li a
{
    color:rgba(250, 250, 250, 0.9);
}
nav li:hover a
{
    color:#20c997;
}
nav li:first-child a
{
    color:#20c997
}
.menu-mobile
{
    display: none;
}
.menu-mobile i
{
    font-size: 22px;
    color: #fff;
    float: right;
}
.menu-mobile ul li
{
    background-color: #333;
    width: 100%;
    text-align: center;
}
/* ======================== End  Navbar ========================*/

/* ======================== Start Home Section ========================*/
#home
{
    height: 100vh;
    width: 100%;
    background-image: url(../images/slider/intro-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 0px;
}
#home .overlay
{
    height: 100%;
    background-color:rgba(17, 20, 24,.8);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color:#fff;
    position: relative;
}
#home .overlay p
{
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 500;
    Line-height: 50.4px;
    margin-bottom: 1rem;
}
#home .overlay h2
{
    font-size: 64px;
    font-weight: 600;
    Line-height: 83.2px;
    margin-bottom: 1rem;
}
#home .overlay h4
{
    font-size: 21px;
    font-weight: 400;
    Line-height: 37.8px;
    color:rgb(222, 227, 228);
    margin-bottom: 1.5rem;
}
#home .overlay .hire-me
{
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 24px;
    font-weight: 500;
    margin-top: 8px;
    border:2px solid #20c997;
    color: #20c997;
    background-color: transparent;
    padding: 0.8rem 2.6rem;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
#home .overlay .hire-me:hover
{
    background-color: #20c997;
    color: #fff;
}

.scroll-down
{
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    justify-self: center;
    position: absolute;
    width: 32px;
    height: 32px;
    top: 90%;
    animation: scrollDown 1.5s infinite;
    -webkit-animation: scrollDown 1.5s infinite;
}
.scroll-down a i
{
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    border-radius:50%;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    -o-border-radius:50%;
}
@keyframes scrollDown
{
    0%
    { 
        top: 90%;
        opacity: 0;
    }

    100%
    {
        top: 95%;
        opacity: 1;
    }
}
/* ======================== End Home Section ========================*/

/* ======================== Start About Section ========================*/
.about-content
{
    display: flex;
}
.about-content .box1
{
    width: 66.666667%;
    margin-top: 3rem;
    padding:0 .75rem;
}
.about-content .box1 h2
{
    font-size: 28px;
    font-weight: 600;
    Line-height: 33.6px;
    color: rgb(37, 43, 51);
    margin-bottom: 1rem;
}
.about-content .box1 h2 span
{
    color: #20c997;
}
.about-content .box1 p
{
    Line-height: 28.8px;
    color: rgb(76, 77, 77);
    margin-bottom: 1rem;
}
.about-content .box2
{
    width: 33.333333%;
    margin-top: 3rem;
    padding:0 .75rem;
}
.about-content .box2 ul
{
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.about-content .box2 ul li
{
    border-bottom: 1px solid #eaeaea;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 24px;
    color: rgb(76, 77, 77);
}
.about-content .box2 ul li span
{
    font-weight: bold;
    margin-right: 0.5rem;
}
.about-content .box2 ul li:last-child
{
    border: none;
}
.about-content .box2 ul li a
{
    color: #20c997;
    transition: all 0.5s ease;
}
.about-content .box2 ul li a:hover
{
    color: rgb(27, 170, 128);
}
.about-content .box2 .about-btn
{
    padding-left: 1.5rem;
}
.about-content .box2 .about-btn a
{
    background-color: #20c997;
    border-color: #20c997;
    color: #fff;
    padding: 0.8rem 2.6rem;
    font-weight: 500;
    border-width: 2px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
.about-content .box2 .about-btn a:hover
{
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    background-color:rgb(27, 170, 128);
}
.about-counter
{
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
}
.about-counter-box:last-child 
{
    border: none;
}
.about-counter-box
{
    padding: 20px 12px;
    text-align: center;
    width: 25%;
    border-right: 1px dotted #e0dede;
}
.about-counter-box h4
{
    font-size: 48px;
    font-weight: 500;
    Line-height: 62.4px;
    color: rgb(108, 117, 125)
}
.about-counter-box p
{
    Line-height: 28.8px;
    color: rgb(76, 77, 77)
}
/* ======================== End About Section ========================*/

/* ======================== Start Services Section ========================*/
#services
{
    background-color: #F8F9FA;
}
.services-content
{
    display: flex;
    flex-wrap: wrap;
    margin: 0 55px;
}
.services-content-box
{
    width: 50%;
    padding: 0 12px;
    margin-top: 3rem;
    display: flex;
}
.services-content-box .icon
{
    background-color: #fff;
    width: 70px;
    height: 70px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    align-items: center;
}
.services-content-box .icon i
{
    background-color: #fff;
    color: #20c997;
    font-size: 30px;
    Line-height: 30px;
    font-weight: 900;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
}
.services-content-box .desc
{
    padding-left: 20px;
}
.services-content-box .desc h3
{
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: rgb(37, 43, 51);
}
.services-content-box .desc p
{
    line-height: 28.8px;
    color: rgb(76, 77, 77);
}
/* ======================== End Services Section ========================*/

/* ======================== Start Resume Section ========================*/
.resume-content
{
    display: flex;
}
.resume-content-box
{
    padding: 0 1.5rem;
}
.resume-content-box h2
{
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    color: rgb(37, 43, 51);
    margin-bottom: 24px;
}
.resume-caption
{
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.resume-caption .caption-date
{
    font-size: 14px;
    Line-height: 14px;
    background-color: #20c997;
    display: inline-block;
    padding: 0.35em 0.65em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}
.resume-caption .caption-header
{
    font-size: 21px;
    font-weight: 500;
    line-height: 25.2px;
    color: rgb(37, 43, 51);
    margin-bottom: .5rem;
}
.resume-caption .caption-university
{
    color: rgb(220, 53, 69);
    margin-bottom: 1rem;
}
.resume-caption .caption-desc
{
    Line-height: 28.8px;
    color:rgb(76, 77, 77);
}
.resume-skills-header h2
{
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    color: rgb(37, 43, 51);
    margin: 1.5rem 0 1.5rem 1.5rem;
}
.resume-skills
{
    display: flex;
    flex-wrap: wrap;
}
.resume-skills-box
{
    width: 50%;
    padding: 0 1.5rem;
}
.skills-caption
{
    display: flex;
    justify-content: space-between;
    margin-bottom: .5rem;
}
.progress
{
    display: flex;
    height: .5rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}
.progress-bar
{
    background-color: #20c997;
}
.progress .w-65
{
    width: 65%;
}
.progress .w-95
{
    width: 95%;
}
.progress .w-80
{
    width: 80%;
}
.progress .w-70
{
    width: 70%;
}
.progress .w-60
{
    width: 60%;
}
.progress .w-99
{
    width: 99%;
}
.resume-btn
{
    margin-top: 3rem;
    text-align: center;
    
}
.resume-btn a
{
    padding: 0.8rem 2.6rem;
    font-weight: 500;
    border: 2px solid #6c757d;
    border-radius: 50rem;
    color: #6c757d;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
}
.resume-btn a:hover
{
    color: #fff;
    background-color: #6c757d;
}
/* ======================== End Resume Section ========================*/

/* ======================== Start portfolio Section ========================*/
#portfolio
{
    background-color: #F8F9FA;
}
#portfolio ul
{
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
#portfolio li a
{
    padding: 0.6rem 1rem;
    color: #7b8084;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
#portfolio li:first-child a
{
    color: #20c997;
    border-bottom: 2px solid #20c997;
}
#portfolio li a:hover
{
    color: #20c997;
}

.portfolio-section
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.portfolio-group
{
    width: 33.3333%;
}
.portfolio-box
{
    padding: 0 .75rem;
    margin-top: 1.5rem;
    overflow: hidden;
}
.portfolio-box img
{
    width: 100%;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.overlay-box
{
    display: flex;
    position: relative;
    overflow: hidden;
}
.portfolio-overlay
{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: .25rem;
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
}
.overlay-caption h5
{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.overlay-caption span
{
    color: #dee3e4;
}
.portfolio-box:hover .portfolio-overlay
{
    opacity: 1;
    visibility: visible;
}
.portfolio-box:hover img
{
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
/* ======================== End portfolio Section ========================*/

/* ======================== Start testimonial Section ========================*/
.testimonial-content
{
    display: flex;
    flex-wrap: nowrap;
}
.testimonial-box
{
    width: 50%;
    padding: 3rem;
    margin:1.25rem 0.78125rem;
    background-color: #F8F9FA;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
}
.testimonial-box .testimonial-desc
{
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 28.8px;
    color: rgb(33, 37, 41);
}
.testimonial-box span
{
    color: #ffc107;
}
.testimonial-box-caption
{
    display: flex;
    margin-bottom: 1.5rem;
}
.testimonial-box-caption img
{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.testimonial-box-caption p
{
    margin-left: 1rem;
}
.testimonial-box-caption p strong
{
    display: block;
    font-weight: 600;
    line-height: 28.8px;
    color: rgb(33, 37, 41);
}
.testimonial-box-caption p span
{
    display: block;
    font-weight: 500;
    line-height: 28.8px;
    color: rgb(108, 117, 125);
}
.testimonial-dots
{
    margin-top: 0.1610rem;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 0.625rem;
}
.testimonial-dots button
{
    border: none;
    background-color: transparent;

}
.testimonial-dots button span
{
    position: relative;
    width: 20px;
    height: 20px;
    margin: 5px 3px;
    border: 1px solid transparent;
    display: block;
    transition: all .2s ease;
    border-radius: 30px;
    margin: 5px 3px;
}
.testimonial-dots button:hover span
{
    border-color: #20c997;
    -webkit-box-shadow: 0px 0px 5px rgb(0 0 0 / 5%);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 5%);
    cursor: pointer;
}
.testimonial-dots button:hover span::after
{
    background-color: #20c997;
    cursor: pointer;
}
.testimonial-dots button span::after
{
    transition: all .5s ease;
    width: 10px;
    height: 10px;
    content: "";
    left: 50%;
    top: 50%;
    position: absolute;
    border-radius: 100%;
    background-color: rgba(0,0,0,.2);
    margin-left: -5px;
    margin-top: -5px;
}
/* ======================== End testimonial Section ========================*/

/* ======================== Start Contact Section ========================*/
#contact
{
    background-color: #F8F9FA;
}
.contact-box
{
    display: flex;
    margin-top: 3rem;
}
.contact-content
{
    width: 25%;
    padding: 0 0.75rem;
}
.contact-content h2
{
    margin-bottom: 1rem;
    color: #252b33;
    font-size: 21px;
    font-weight: 500;
    line-height: 25.2px;
}
.contact-content p
{
    line-height: 28px;
    color: rgb(76, 77, 77);
    margin-bottom: 1.5rem;
}
.contact-content .mb-1
{
    margin-bottom: 0.25rem!important;
}
.contact-content p i
{
    color: #20c997;
    font-size: 18px;
    line-height: 18px;
    margin-right: 0.5rem;
}
.contact-form
{
    width: 75%;
}
.contact-form h2
{
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
    color: #252b33;
}
.contact-form form
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-input
{
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: nowrap;
}
.form-input input
{
    border: 1px solid #dae1e3;
    font-size: 16px;
    color: #656565;
    outline: none;
}
textarea:focus
{
    border-color:  #20c997;
    box-shadow: 0px 0px 2px #20c997;}
input:focus
{
    border-color:  #20c997;
    box-shadow: 0px 0px 2px #20c997;
}
.form-input input:first-child
{
    margin-right: 0.75rem;
}
.form-input input:last-child
{
    margin-left: 0.75rem;
}
input::placeholder
{
    color:#B1B4B6;
}
textarea::placeholder
{
    color:#B1B4B6;
}

.contact-form form textarea
{
    margin-top: 1.5rem;
    min-height: calc(1.5em + (0.75rem + 2px));
    font-size: 16px;
    color: rgb(33, 37, 41);
    padding: 0.81rem 0.96rem;
    font-family: inherit;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    border: 1px solid #dae1e3;
    outline: none;
}
.form-control
{
    width: 50%;
    font-size: 16px;
    color: #656565;
    padding: 0.81rem 0.96rem;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
}
.contact-form form textarea
{
    width: 100%;
}
.contact-form form button
{
    margin: auto;
    background-color: #20c997;
    font-size: 16px;
    font-weight: 700;
    padding: 0.8rem 2.6rem;
    font-weight: 500;
    color: #fff;
    border: none;
    padding: 0.8rem 2.6rem;
    font-weight: 500;
    border-width: 2px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    -webkit-box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    margin-top: 1.5rem;
    cursor: pointer;
}
.contact-form form button:hover
{
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    background-color: #1baa80;
    cursor: pointer;
}
/* ======================== End Contact Section ========================*/

/* ======================== Start Footer Section ========================*/
#footer
{
    padding:4.125rem 0;
}
#footer .container 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-box p a
{
    color: #20c997;
    transition: all 0.5s ease;
}
.footer-box p a:hover
{
    color: #1baa80;
}
.footer-box ul
{
    display: flex;
}
.footer-box li a
{
    line-height: 12px;
    color: #252b33;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.footer-box li:hover a
{
    color: #20c997;
}
.footer-box li:first-child
{
    padding: 0.5rem 1rem 0.5rem 0;
    position: relative;
}
.footer-box li:first-child::after
{
    height: 14px;
    width: 1px;
    content: ' ';
    background-color: rgba(0, 0, 0, 0.2);
    display: block;
    position: absolute;
    top: 50%;
    left: 100%;
    transform:translatey(-50%) ;
    -webkit-transform:translatey(-50%) ;
    -moz-transform:translatey(-50%) ;
    -ms-transform:translatey(-50%) ;
    -o-transform:translatey(-50%) ;
}
.footer-box li:last-child
{
    padding: 0.5rem 0 0.5rem 1rem;
}
/* ======================== End Footer Section ========================*/

/* ======================== back-to-top ========================*/
#back-to-top
{
    position: fixed;
    background-color: rgba(0, 0, 0, 0.2);
    height: 36px;
    width: 36px;
    bottom: 8px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
}
#back-to-top a
{
    color: #fff;
}
#back-to-top:hover
{
    background-color: #20c997;
}



/* ======================== Setting-btn ========================*/
#setting-btn
{
    position: fixed;
    background-color:#555;
    height: 40px;
    width: 40px;
    top: 35%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    border-radius: 4px 0px 0px 4px;
    cursor: pointer;
}
#setting-btn button
{
    border: none;
    background-color: transparent;
}
#setting-btn button i
{
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}