/* Table Of Contents */
/* -----------------------
1. General
2. Navbar
3. Banner
4. Accordian Menu
 4.1  Portfolio
 4.2 Contact
5. Footer
 ---------------------- */

/* 1 General */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{
    /* Background Color */
    --primary-color:  #bf7b28;
    /* --primary-color: #ff451b; */
    --secondary-color: #ffb324;
    --dark-color: #494b58;
    --bg-dark-gray: #5c5d64;
    --bg-black: #1d1b1b;
    --dark-light-color: #777a7f;

    /* Text Color */
    --primary-text: #bf7b28;
    --text-white: #fff;
    --text-gray: #a7afbd;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-black);
    /* background: linear-gradient(to right, #0f0c29, #302b63, #24243e); */
}
input[type=number]::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
::-webkit-scrollbar{
    width: 0.25rem;
}
::-webkit-scrollbar-track{
    background: var(--bg-dark-gray);
}
::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}
.main-btn{
    color: var(--text-white);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--primary-color);
    padding: .875rem 3.125rem;
    border-radius: .625rem;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.main-btn:hover{
    background-color: var(--secondary-color);
    color: var(--text-white);
}
h1{
    font-size: 6.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.687rem;
    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(--primary-text);
}
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: .85;
}
p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    margin: 1.3rem 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(--primary-color);
}
.icon-design{
    width: 5.625rem;
    height: 5.625rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

 /* 2 Navbar */
 .header_wrapper .navbar{
    padding:0.9375rem 0;
    -webkit-transition:all .2s linear;
    -moz-transition:all .2s linear;
    -ms-transition:all .2s linear;
    -o-transition:all .2s linear;
    transition:all .2s linear;
}
.header_wrapper .navbar-brand img{
    max-width: 14.375rem;
    height: auto;
}
.header_wrapper .social-icon a img{
    width: 2rem;
    height: 2rem;
    transition: 0.3s ease-in;
}
.header_wrapper .social-icon a:hover img{
    transform: translateY(-0.1325rem);
}
.header-scrolled{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    -webkit-box-shadow: 0 0.25rem 0.375rem 0  rgba(12,0,46,.05);
    box-shadow: 0 0.25rem 0.375rem 0  rgba(12,0,46,.05);
}

  /* 3 Banner */
  .banner_wrapper .background_shape{
    position:absolute;
    top:0;
    height:calc(100vh - 4.0625rem);
    left:0;
    right:0;
    /* background-image:url('../images/top-background.jpg'); */
    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;
}

   /* 4 Accoridan Menu */
.main_menu_wrapper .accordion-item{
    background-color: transparent;
    margin: 0 0 1.5625rem;
}
.main_menu_wrapper .accordion-header .accordion-button{
    margin: 0 .3125rem;
    background-color: var(--dark-color);
    box-shadow: 1.125rem 1.125rem 3rem rgb(108 99 255 / 10%);
    border-radius: .9375rem !important;
    line-height: 8.875rem;
    padding: 0;
    padding-right: 3.125rem;
    -webkit-transition: all.3s ease;
    -moz-transition: all.3s ease;
    -ms-transition: all.3s ease;
    -o-transition: all.3s ease;
    transition: all.3s ease;
}
.main_menu_wrapper .accordion-header .icon-box{
    width:8.875rem;
    height:100%;
    border-radius: .9375rem 0 0 .9375rem;
    background-color:var(--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 .9375rem 0;
    background-image:url('../images/up-arrow.svg');
    background-color:var(--secondary-color);
    background-size: 2.7rem;
    background-position: center center;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
    transition:all .3s ease;
}
.main_menu_wrapper .accordion-header .accordion-button:not(.collapsed)::after{
    border-radius: .9375rem 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(--primary-color);
}
.main_menu_wrapper .accordion-body{
    background-color:var(--dark-color);
    margin-top:1.5625rem;
    padding:4.375rem;
    border-radius: .9375rem;
}

   /* 4.1 About */
   .about_wrapper .accordion-body .card_img{
    width:60%;
    border:0;
    border-radius: .9375rem;
}
.about_wrapper .accordion-body .card_img img{ 
    border-radius: .9375rem;
}
.about_wrapper .card_detail{
    position:absolute;
    top:3.75rem;
    right:1.25rem;
    z-index:1;
    width:47%;
    background-color:var(--primary-color);
    padding:1.5625rem 1.8rem;
    border-radius: .9375rem;
}
.about_wrapper .card_detail ul li{
    border-bottom:.0625rem dashed rgba(255,255,255,.3);
    padding:.625rem 0;
} 
   /* 4.4  Portfolio */
.gallery_wrapper .nav-link{
    color:var(--text-white);
    font-weight: 600;
    font-size:1.125rem;
    letter-spacing:.0625rem;
    text-align: center;
}
.gallery_wrapper .nav-link.active,
.gallery_wrapper .show>.nav-link{
    background-color:transparent;
    color:var(--primary-color);
}
.gallery_wrapper .portfolio-img{
    width:100%;
    min-height: 23.75rem;
    height:100%;
    position:relative;
    border-radius: .9375rem;
    cursor:pointer;
} 
.gallery_wrapper .portfolio-img>img{
    border-radius: .9375rem;
    object-fit: cover;
    object-position:center;
}
.gallery_wrapper .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,.72);
    border-radius: .625rem;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-transition:all 0.3s linear;
    -moz-transition:all 0.3s linear;
    -ms-transition:all 0.3s linear;
    -o-transition:all 0.3s linear;
    transition:all 0.3s linear;
    overflow:hidden;
    
}
.gallery_wrapper .portfolio-img:hover .hidden-text{
    height:100%;
}
 
   /* 4.5 Contact */
.contact_wrapper form .form-control:focus{
    box-shadow:none;
}
.contact_wrapper form .form-control{
    width:100%;
    height:3.75rem; 
    border-radius: .625rem !important;
    background-color:transparent;
    color:var(--text-gray);
    border:.0625rem solid rgb(255 255 255 / 15%) !important;
}
.contact_wrapper form input::placeholder,
.contact_wrapper form .textarea::placeholder{
    color:var(--text-gray);
}
.contact_wrapper form .textarea.form-control{
    height:14.375rem;
}

/* Hover Design */
.cursor{
    width:1.875rem;
    height:1.875rem;
    border-radius:100%;
    border:.0625rem solid var(--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:.5rem;
    height:.5rem;
    border-radius:100%; 
    background-color:var(--primary-color); 
    position:fixed;
    pointer-events: none;
    left:0;
    top:0; 
    transform:translate(-50%,-50%);
    transition:width .3s, height .3s, opacity .3s;
    z-index:9;
} 
