/* Table of Contents */
/*-------------------
1. General
2. Navbar
3. Banner
4. About
5. Services
6. Portfolio
7. Contact
8. Footer
-----------------*/

/* General */
@import url('https://fonts.googleapis.com/css?family=Poppins');
@import url("https://fonts.googleapis.com/css?family=Oswald");

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    /*Background Color */
    --primary-color: #FD4766;
    --secondary-color: #0e1525;
    --bg-dark-blue: #091020;
    --gray-color: #c6c9d8bf;
    --gradient-color: linear-gradient(224deg, var(--primary-color)0,#337DFF 100%);
    --gradient-text: linear-gradient(120deg, #1C99FE 20.69%, #7644FF 50.19%, var(var(--primary-color) 79.69%));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--primary-color)',endColorstr='var(--secondary-color)',GradientType=1);

    /* Text Style*/
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Brush Script MT', cursive;
    --primary-text:#FD4766;
    --text-white:#fff;
    --text-gray: #c6c9d8bf;
}

body{
    font-family: var(--primary-font);
    background-color: var(--secondary-color);
}

a{
    text-decoration: none;
}


/* 1 Custom CSS */
::-webkit-scrollbar{
    width: 6px;
}

::-webkit-scrollbar-track{
    background: var(--bg-dark-blue);
}
::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

section{
    padding: 50px 0;
}

.main-btn{
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    background-color: transparent;
    border: 2px solid var(--gray-color);
    padding: 10px 27px;
    border-radius: 50px;
    display: inline-block;
    transition:all .4s ease-in-out;
    text-decoration: none;
    letter-spacing: 2px;
}

.main-btn:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

h1{
    font-size: 54px;
    font-family: var(--secondary-font);
    line-height: 68px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-white);
}

h1 span{
    color: var(--primary-color);
}

h2{
    font-size: 35px;
    line-height: 1.3;
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 15px;
}

h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 19px;
}


h6{
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    color: var(--text-gray);
    margin-bottom: 20px;
}

p{
    font-size: 16px;
    color: var(--text-gray);
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: 400;
}

.subtitle{
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 18px;
    font-size: 16px;
    margin-bottom: 12px;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

input:hover,
input:focus,
textarea:focus,
textarea:hover,
button{
    outline: none !important;
    box-shadow: none !important;
}

/* 2 Navbar */
.header_wrapper .navbar{
    z-index: 100;
    background: transparent;
    width: 100%;
    height: 4.375rem;
}
.header_wrapper .navbar-brand img{
    width: 50%;
}
.header_wrapper .nav-item{
    margin: 0 10px;
}

.header_wrapper .nav-item .nav-link{
    display: inline-block;
    position: relative;
    width: 100%;
    margin-left: 2px;
    font-size: 16px;
}
.header_wrapper .nav-item .nav-link::after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    transition: 0.3s;
}
.header_wrapper .nav-item .nav-link.active::after,
.header_wrapper .nav-item .nav-link:hover::after{
    width: 100%;
}

.header_wrapper .navbar .nav-link:hover,
.header_wrapper .navbar .nav-link.active{
    color: #fff7f7;
}
.header-scrolled{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark-blue) !important;
    -webkit-box-shadow: 0 4px 6px 0 rgba(12,0,46,0.5);
    box-shadow: 0 4px 6px 0 rgba(255, 255, 255, 0.1);
}

/* 3 Banner */
.banner_wrapper{
    background: linear-gradient(-256deg, rgba(117, 21, 129, 0.4) , rgba(230, 16, 45, 0.52));
    width: 100%;
    min-height: 650px;
    margin: 0 auto;
    padding-top: 8%;
    box-shadow: 4px 2px 4px 2px rgb(168, 168, 168);
}
.banner_wrapper img{
    max-height: 430px;
    border: 5px solid #000;
    border-radius: 100%;
    z-index: 99;
    background-position: cover;
    background-attachment: fixed;
    aspect-ratio: 1/1;
}
.banner_wrapper  img::before,
.banner_wrapper img::after{
    content: '';
    left: 0;
    right: 0;
    -webkit-box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
    box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
    transition: all 0.3s ease-in-out .1s;
}
.banner_wrapper img:hover{
    background-color: #fff;
    border-color: rgb(168, 168, 168);
    -webkit-transition: all 2000ms linear 0s;
    transition: all 2000ms linear 0s;
    opacity: 0.9;
}
.banner_wrapper h1{
    color: #c6c9d8bf;

}
/* 4 About */
.about_wrapper{
    width: 100%;
    margin: 0;
    -webkit-box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
    box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
}
.about_wrapper hr{
    color: #fff;
    margin: 0 auto;
}
.about_wrapper .writting_section h2{
    text-align: left;
    color: #f87272;
}
.about_wrapper .writting_section h2 span{
    color: #fde8de;
    font-size: 38px;
}
.about_wrapper .writting_section p{
    font-size: 15px;
    color: #706b6b;
    font-weight: 500;
    text-align: justify;
}
.about_wrapper .progress-section{
    padding-bottom: 10px;
}
.about_wrapper .progress-section .progress p{
    color: #dfb8b8;
    font-weight: 500;
}



/* 5 Services */
.services_wrapper{
    background: var(--bg-dark-blue);
    width: 100%;
    -webkit-box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
    box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
}
.services_wrapper .card_wrapper .card{
    background-color: var(--bg-dark-blue);
    border: 1px solid var(--text-gray);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 1px 2px 4px 1px rgb(168, 168, 168);
}
.services_wrapper .card_wrapper .card:hover{
    transform: translateY(10px);
    transition: transform 200ms linear;
}
.services_wrapper .card_wrapper .card a{
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-gray);
    border-radius: 100%;
    margin: 0 auto ;
    padding-top: 8px;
}
.services_wrapper .card_wrapper .card a:hover{
    background-color: #d4c8c8;
    border-color: #FD4766;
    transition: all 0.3s linear;
}
.services_wrapper .card_wrapper .card h3{
    color: #dfb8b8;
    margin-top: 8px;
}
.services_wrapper .card_wrapper .card p{
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 400;
}


/* Table */
.table_wrapper{
    width: 100%;
    -webkit-box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
    box-shadow: 0px 0px 1px px rgb(168, 168, 168);
}
.mytable{
    padding: 20px;
}
.mytable .mytable_table{
    text-align: center;
    color: var(--text-gray);
    box-sizing: border-box;
    border: 1px solid var(--text-gray);
}
.mytable .mytable_table tbody tr{
    color: #b38e8e;
}


/* 7 Contact  */
.contact_wrapper{
    width: 100%;
    -webkit-box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
    box-shadow: 4px 1px 4px 1px rgb(168, 168, 168);
    margin-bottom: 0;
}
.contact_wrapper .details{
    display: inline-block;
}
.contact_wrapper .details h2{
    color: var(--text-white);
}
.contact_wrapper .details label{
    color: var(--text-gray);
}
.contact_wrapper .details a{
    color: #dfb8b8;
    text-decoration: none;
    outline: none;
    font-weight: bold;
    font-size: 17px;
}
.contact_wrapper .form .form-control{
    background: transparent;
    border-color: var(--text-gray);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    color: #d4c8c8;
}
.contact_wrapper .form .form-control:hover{
    border-color: var(--primary-color);
}
.contact_wrapper .contact_img{
    display: inline-block;
}
/* 8 Footer */
.footer_wrapper{
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000;
}
.footer_wrapper .navbar-brand img{
    margin-top: 25px;
    width: 35%;
}
.footer_wrapper .social-content{
    width: 25%;
    margin-top: 25px;
}
.footer_wrapper .social-content a{
    width: 35px;
    height: 35px;
    line-height: 32px;
    font-size: 14px;
    display: inline-block;
    border: 2px solid var(--text-gray);
    color: var(--text-gray);
    text-align: center;
    border-radius: 100%;
}
.footer_wrapper .social-content a:hover{
    background-color: var(--text-gray);
    border-color: #140404;
    transform: translateY(-10px);
    transition: transform 200ms linear;
}
.footer_wrapper .copyright p{
    font-size: 13px;
    margin-top: 25px;
}
.footer_wrapper .copyright p span{
    color: var(--primary-text);
}
