/* Common Code Start */
:root {
    --brand-color: #007a56;
    --dark-color: #000;
    --soft-dark: #0A1D32;
    --light-color: #fff;
    --soft-light: #F8F4F0;
    --transition: 0.5 linear;
    font-size: 10px;
}
.container {
    min-width: 400px;
    max-width: 1140px;
}
.button {
    color: var(--light-color);
    background: var(--brand-color);
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--transition);
}
.button:hover {
    color: var(--brand-color);
    background: var(--light-color);
    border: 2px solid var(--brand-color);
}
/* Common Code End */
/* nav section start */
.navbar {
    width: 100%;
    height: 60px;
}
.navbar-brand i {
    color: var(--brand-color);
    font-size: 3.5rem;
    transition: var(--transition);
}
.navbar-brand span {
    color: var(--dark-color);
    font-size: 3rem;
    font-weight: 700;
    margin-left: 10px;
    /* border-bottom: 2px solid transparent; */
    position: relative;
    transition: var(--transition);
}
.navbar-brand:hover i {
    color: var(--dark-color);
    transform: rotate(-90deg);
}
.navbar-brand:hover span {
    color: var(--brand-color);
    /* border-bottom: 2px solid var(--brand-color); */
}
.navbar-brand span::after {
    content: '';
    width: 0%;
    height: 3px;
    background: transparent;
    transition: .50s;
    position: absolute;
    right: 0px;
    bottom: -5px;
}
.navbar-brand span:hover::after {
    width: 100%;
    background: var(--brand-color);
}
.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 500;
    padding: 4px 10px !important;
    margin: 0px 2px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .dropdown-item:hover {
    color: var(--brand-color);
    background: transparent;
}
.navbar-nav .SignUp {
    color: var(--light-color);
    background: var(--brand-color);
    display: inline-block;
    padding: 6px 20px !important;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--transition);
}
.navbar-nav .SignUp:hover {
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
    background: var(--light-color);
}
.navbar-toggler {
    font-size: 2rem;
}
.dropdown-menu[data-bs-popper] {
    left: -70px;
}
.dropdown-menu {
    width: 150px;
    text-align: right;
    border: none;
}
/* nav section end */
/* header section start */

.header-section .content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: calc(6.5rem + 1.5rem);
}
.header-section .content-area h1 {
    color: var(--dark-color);
    font-size: calc(5rem + 1.5rem);
    font-weight: 700;
    line-height: 1.2;
}
.header-section .content-area p {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 30px 0px;
}
.header-section .poster-area img{
    border-radius: 15px;
}
/* header section end */
/* services section start */
.service-section {
    background: var(--soft-light);
}
.title h2 {
    color: var(--dark-color);
    font-size: calc(3.3rem + 1.5rem);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
.title p {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
.content-area p {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    padding-top: 20px;
    margin: 0px;
}
.content-area h4 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}
.service-section .content-area a {
    margin-left: 4%;
}
/* services section end */
/* about us section start */

.about-us-section .content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: calc(6.5rem + 1.5rem);
}
.about-us-section .content-area h6 {
    color: #4E4E4E;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2;
}
.about-us-section .content-area h2 {
    color: var(--dark-color);
    font-size: calc(3.3rem + 1.5rem);
    font-weight: 700;
    line-height: 1.3;
}
.about-us-section .content-area p {
    color: var(--soft-dark);
    font-size: 1.8rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
    margin: 10px 0px 50px 0px;
}
.about-us-section .poster-area img{
    border-radius: 15px;
}
/* about us section end */