/* Table of Contents */
/* ----------------------
1.   General
2.   Navbar
3.   Banner
4.   Accordion Menu
4.1. About
4.2. Resume
4.3. Portfolio
4.4. Services
4.5. Testimonial
4.6. Bolg
4.7. Contact
5.   Footer
 ---------------------- */


/* 1. General Part CSS Start */
/* Google Fonts Poppins*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Common CSS Part Start */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    /* Background Color */
    --bg-primary-color: #ff451b;
    --bg-secondary-color: #ffb324;
    --bg-dark-color: #494b50;
    --bg-dark-gray: #5c5d64;
    --bg-black: #1d1b1b;
    --bg-dark-light-color: #777a7f;

    /* Text Colors */
    --text-primary-color: #ff451b;
    --text-white: #ffffff;
    --text-gray: #a7afbd;
}
body {
    font-family: 'poppins', sans-serif;
    background-color: var(--bg-black);
}
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
/* Common CSS Part End */
/* Custom CSS Part Start */

::-webkit-scrollbar {
    width: 0.25rem;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-primary-color);
}
.main-btn {
    color: var(--text-white);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--bg-primary-color);
    padding: 0.875rem 3.125rem;
    border-radius: 0.625rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.main-btn:hover {
    background-color: var(--bg-secondary-color);
}
h1 {
    font-size: 6.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.6875rem;
    color: var(--text-white);
}
h2 {
    font-size: 2.9375rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
}
h3 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary-color);
}
h5 {
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--text-gray);
}
h6 {
    font-size: .875rem;
    line-height: 1.5;
    color: var(--text-white);
    font-weight: 400;
    opacity: 0.85;
}
p {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 1.875rem 0;
}
span {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}
a {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-white);
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: var(--text-primary-color);
}
.icon_design {
    width: 5.625rem;
    height: 5.625rem;
    background-color: var(--bg-secondary-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 1. General Part CSS End */


/* ===========================
Home Page CSS
=========================== */
/* 2. NavBar CSS Part Start */
.header_wrapper .navbar {
    padding: 0.9375rem 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.header_wrapper .navbar-brand img {
    max-width: 14.375rem;
    height: auto;
}
.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark-color);
    -webkit-box-shadow: 0 0.25rem 0.375rem 0 rgba(12, 0, 46, 0.05);
    box-shadow: 0 0.25rem 0.375rem 0 rgba(12, 0, 46, 0.05);
}
/* 2. NavBar CSS Part End */
/* 3. Banner CSS Part Start */
.banner_wrapper .background-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vh - 4.0625rem);
    background-image: url('../images/top-background.png');
    background-position: center center;
    background-size: cover;
    clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 62%);
    z-index: -1;
}
.banner_wrapper .main-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 6.25rem;
}
.banner_wrapper .social-icon a img {
    width: 3.125rem;
    height: 3.125rem;
    transition: 0.3s ease-in;
}
.banner_wrapper .social-icon a:hover img {
    transform: translateY(-0.3125rem);
}
/* 3. Banner CSS Part End */
/* 4. Accordion Menu CSS Part Start */
.main_menu_wrapper .accordion-item {
    background-color: transparent;
    margin: 0 0 1.5625rem;
    border: none;
}
.main_menu_wrapper .accordion-header .accordion-button {
    margin: 0 0.3125rem;
    background-color: var(--bg-dark-color);
    box-shadow: 1.125rem 1.125rem 3rem rgb(108 99 255 / 10%);
    border-radius: 0.9375rem !important;
    line-height: 8.875rem;
    padding: 0;
    padding-right: 3.125rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.main_menu_wrapper .accordion-header .icon-box {
    width: 8.875rem;
    height: 100%;
    border-radius: 0.9375rem 0 0 0.9375rem;
    background-color: var(--bg-secondary-color);
    text-align: center;
}
.main_menu_wrapper .accordion-header .accordion-button::after {
    position: absolute;
    right: 0;
    width: 8.875rem;
    height: 100%;
    border-radius: 0.9375rem 0 0 0.9375rem;
    background-image: url(../images/up-arrow.svg);
    background-color: var(--bg-secondary-color);
    background-size: 2.7rem;
    background-position: center center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.main_menu_wrapper .accordion-header .accordion-button::not(.collapsed)::after {
    border-radius: 0.9375rem 0 0 0.9375rem;
    background-image: url(../images/down-arrow.svg);
}
.main_menu_wrapper .accordion-header:hover button,
.main_menu_wrapper .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--bg-primary-color);
}
.main_menu_wrapper .accordion-body {
    background-color: var(--bg-dark-color);
    margin-top: 1.5625rem;
    padding: 4.375rem;
    border-radius: 0.9375rem;
}
/* 4. Accordion Menu CSS Part End */
/* 4.1. About CSS Part Start */
.about_wrapper .accordion-body .card_img {
    width: 60%;
    border: 0;
    border-radius: 0.9375rem;
}
.about_wrapper .accordion-body .card_img img {
    border-radius: 0.9375rem;
}
.about_wrapper .accordion-body .card_detail {
    position: absolute;
    top: 3.75rem;
    right: 1.25rem;
    z-index: 1;
    width: 52%;
    background-color: var(--bg-primary-color);
    padding: 1.5625rem 1.8rem;
    border-radius: 0.9375rem;
}
.about_wrapper .accordion-body .card_detail ul li {
    border-bottom: 0.0625rem dashed rgba(255,255,255,0.4);
    padding: 0.3125rem 0;
}
/* 4.1. About CSS Part End */
/* 4.2. Resume CSS Part End */
.resume_wrapper .title h2 {
    padding-left: 2.5rem;
    font-size: 2.5rem;
}
.resume_wrapper .shape {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    border: 0.1875rem solid var(--bg-primary-color);
}
.resume_wrapper .shape::before {
    position: absolute;
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 100%;
    background-color: var(--bg-primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.resume_wrapper .year {
    font-size: 1.25rem;
    color: var(--text-primary-color);
    border: 0.0625rem solid var(--bg-primary-color);
    border-radius: 3.125rem;
    padding: 0.5rem 2.1875rem 0.4375rem;
}
.resume_wrapper .progress {
    height: 1.325rem;
    border-radius: 3.125rem;
    background-color: var(--bg-dark-light-color);
    opacity: 0.8;
    margin-top: 1.5625rem;
}
.resume_wrapper .progress-bar {
    background-color: var(--bg-primary-color);
    position: absolute;
    height: 1.125em;
    top: 3.125em;
    border-radius: 3.125rem;
}
.resume_wrapper .progress span {
    position: absolute;
    right: 0;
    top: .25rem;
    color: var(--text-primary-color);
}
/* 4.2. Resume CSS Part End */
/* 4.3. Portfolio CSS Part Start */
.portfoilo_wrapper .accordion-body .nav-pills .nav-item .nav-link {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.0625rem;
    text-align: center;
}
.portfoilo_wrapper .accordion-body .nav-pills .nav-item .nav-link.active,
.portfoilo_wrapper .accordion-body .show>.nav-link {
    background-color: transparent;
    color: var(--text-primary-color);
}
.portfoilo_wrapper .accordion-body .tab-content .portfolio-img {
    width: 100%;
    min-height: 23.75rem;
    height: 100%;
    position: relative;
    border-radius: 0.9375rem;
    cursor: pointer;
}
.portfoilo_wrapper .accordion-body .tab-content .portfolio-img>img {
    border-radius: 0.9375rem;
    object-fit: cover;
    object-position: center;
}
.portfoilo_wrapper .accordion-body .tab-content .portfolio-img .hidden-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    z-index: 1;
    background-color: rgba(255, 69, 27, 0.72);
    border-radius: 0.625rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    transition: all linear 0.4s;
    overflow: hidden;
}
.portfoilo_wrapper .accordion-body .tab-content .portfolio-img:hover .hidden-text {
    height: 100%;
}
/* 4.3. Portfolio CSS Part End */
/* 4.4. Services CSS Part Start */
.sevices_wrapper .accordion-body .card {
    border-radius: 0.9375rem;
    background-color: var(--bg-dark-gray);
    padding: 3.75rem 2.5rem 3.625rem;
    text-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.sevices_wrapper .accordion-body .card:hover {
    background-color: var(--bg-primary-color);
}
/* 4.4. Services CSS Part End */
/* 4.5. Testimonial CSS Part Start */
.testimonial_wrapper .accordion-body .carousel-indicators {
    bottom: -2.8125rem;
}
.testimonial_wrapper .accordion-body .carousel-indicators[data-bs-target] {
    background-color: var(--bg-secondary-color);
}
.testimonial_wrapper .accordion-body .carousel-item .card {
    padding: 3.125rem 3.125rem 3.125rem 0;
    background-color: var(--bg-dark-gray);
    border-radius: 0 0.5rem 0.5rem 0;
}
.testimonial_wrapper .accordion-body .carousel-item .profile-box {
    padding: 1.875rem;
    background-color: var(--bg-primary-color);
    border-radius: 0.5rem 0 0 0.5rem;
}
.testimonial_wrapper .accordion-body .carousel-item .profile-box img {
    border-radius: 0.625rem 3.125rem;
}
.testimonial_wrapper .accordion-body .carousel-item .card .desc-box {
    padding-left: 2.5rem;
}
/* 4.5. Testimonial CSS Part End */
/* 4.6. Testimonial CSS Part Start */
.blog_wrapper .accordion-body .card {
    background-color: var(--bg-dark-gray);
    border-radius: 0.9375rem;
    overflow: hidden;
}
.blog_wrapper .accordion-body .card img {
    border-radius: 0.9375rem 0.9375rem 0 0;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    cursor: pointer;
}
.blog_wrapper .accordion-body .card img:hover {
    scale: 1.1;
}
.blog_wrapper .accordion-body .card h5 {
    font-weight: 700;
    color: var(--text-primary-color);
}
/* 4.6. Testimonial CSS Part End */
/* 4.7. Contact CSS Part Start */
.contact_wrapper .accordion-body form .form-control:focus {
    box-shadow: none;
}
.contact_wrapper .accordion-body form .form-control {
    width: 100%;
    height: 3.725rem;
    border: 0.0625rem solid rgba(255,255,255,0.15);
    border-radius: 0.625rem;
    background-color: transparent;
    color: var(--text-gray);
}
.contact_wrapper .accordion-body form input::placeholder {
    color: var(--text-gray);
}
.contact_wrapper .accordion-body form textarea::placeholder {
    color: var(--text-gray);
}
.contact_wrapper .accordion-body form textarea.form-control{
    height: 14.375rem;
}
/* 4.7. Contact CSS Part End */
/* Hover Part Start */
.cursor {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 100%;
    border: 0.0625rem solid var(--bg-primary-color);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + .9375rem), -50%);
    z-index: 9;
}
.cursor2 {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 100%;
    background: var(--bg-primary-color);
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, opacity 0.4s;
    z-index: 9;
}
/* Hover Part End */