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

body {
    margin: 0;
    padding: 0;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Jost', sans-serif;
    color: #2b2b2bce;
    overflow-x: hidden;
}


::selection {
    background: var(--theme-color);
    color: #fff;
}

:root {
    --theme-color: #35BEBE;
    --dark-color: #212529;
    --border-color: rgba(0, 0, 0, 0.2);
    --bg-color: #e7eef2;
}

.bg-theme {
    background: var(--theme-color) !important;
}

a {
    text-decoration: none;
}

.mt-100 {
    margin-top: 100px;
}

.mtb-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav_logo {
    border: 1px solid red;
    position: relative;
}

.nav_logo::after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: -17px;
    height: 300%;
    width: 130%;
    background: #fff;
    border-radius: 0 0 0 15px;
}

.nav_logo::before {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 0;
    height: 300%;
    width: 130%;
    background: #fff;
    border-radius: 0 0 0 15px;
    transform: skew(35deg);
}

.nav_logo img {
    width: 200px;
    position: relative;
    z-index: 1;
}

.nav_btn {
    height: 20px;
    width: 30px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    z-index: 9;
    display: none;
}

.nav_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background: #fff;
}



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
    background: var(--theme-color);
    /* overflow: hidden; */
    border-radius: 0 0 15px 15px;
    z-index: 99;
}

/* nav::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    height: 100%;
    width: 30%;
    background: #fff;
    transform: skewX(45deg);
} */

.navbar_menus {
    list-style: none;
    display: flex;
    gap: 1.3rem;
    padding-left: 0;
    margin: 0;
    position: relative;
}

.nav_link {
    color: #fff;
    padding: 2rem 0.3rem;
    transition: all .3s ease-in-out;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.nav_link::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    height: 80%;
    border-radius: 0 0 10px 10px;
    width: 100%;
    background: #fff;
    z-index: -1;
    transition: all .3s ease-in-out;
    transform: rotateX(-80deg);
    transform-style: preserve-3d;
}

.nav_link:hover::before {
    top: 0;
    transform: rotateX(0);
}

.nav_link:hover {
    color: var(--theme-color);
}

.dropdown_custome {
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.dropdown_custome .dropdown-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown_custome .dropdown-item:hover {
    background: var(--theme-color);
    color: #fff;
}


.top_banner {
    background: url(../img/banner/banner.webp) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 90vh;
    margin-top: -75px;
    display: flex;
    align-items: center;
    position: relative;
}

.top_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -400px;
    height: 100%;
    width: 75%;
    background: rgba(255, 255, 255, 0.75);
    transform: skewX(30deg);
}

.top_content {
    position: relative;
}

.top_content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 2rem;
}

.two_btn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    height: 15px;
    width: 28px;
    background: url(../img/logo_and_icons/right.png) no-repeat;
    background-size: contain;
    transition: all .3s ease-in-out;
    background-position: center right;
    opacity: 0;
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    left: 100%;
    height: 15px;
    width: 28px;
    background: url(../img/logo_and_icons/right.png) no-repeat;
    background-size: contain;
    transition: all .3s ease-in-out;
    background-position: center right;
    opacity: 0;
}

.btn:hover::before {
    right: 4px;
    opacity: 1;
}

.btn:hover::after {
    left: 4px;
    opacity: 1;
}

.btn-theme {
    background: var(--theme-color) !important;
    color: #fff !important;
}

.btn-dark {
    background: var(--dark-color) !important;
    color: #fff !important;
}

.title {
    font-size: 2.3rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.7rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title::before,
.title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 50px;
    background: var(--theme-color);
}

.title_center::before,
.title_center::after {
    left: 50%;
    transform: translateX(-50%);
}

.title::before {
    bottom: 7px;
    width: 70px;
}

.for_icon_area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: #e7eef2;
    z-index: -1;
    border-radius: 0 20px 20px 0;
}

.for_icon_area_right::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background: #e7eef2;
    z-index: -1;
    border-radius: 20px 0 0 20px;
}

.managment_bg {
    padding: 50px 0;
}

.managment_bg::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/management-coaching.webp) no-repeat;
    background-size: contain;
    background-position: right;
    width: 48%;
    background-attachment: fixed;
}

.big_card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 25px;
    height: 100%;
}

.for_icon_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-right: 3rem;
}

.margin_right {
    margin-right: 3rem;
}

.icon_box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 10px;
}

.icon_box span {
    font-size: 1.2rem;

}

.icon_box img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.why_icon_box {
    height: 100%;
    padding: 2rem 0.8rem;
}

.why_icon_box img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.link {
    font-size: 1rem;
    color: var(--theme-color) !important;
    position: relative;
    transition: all .3s ease-in-out;
}

.link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 30px;
    background: var(--theme-color);
    transition: all .3s ease-in-out;
}

.link:hover {
    letter-spacing: 2px;
}

.link:hover::before {
    width: 100%;
}

.middel_bg {
    height: 60vh;
    background: url(../img/middle-section.webp) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.middel_bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--theme-color);
    opacity: 0.1;
}

.service_box .service_img {
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.service_name {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(5px);
    text-align: center;
    padding: 1rem 0.5rem;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.service_box .service_img img {
    transition: all .3s ease-in-out;
}

.service_box:hover .service_img img {
    scale: 1.5;
    transform: rotate(15deg);
}

.service_box:hover .service_name {
    top: 50%;
    transform: translateY(-50%);
}

.testimonial_area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 75%;
    border-radius: 40px;
    background: var(--bg-color);
}

.testimonial {
    background: #fff;
    padding: 5rem 2.5rem 2.5rem;
    border-radius: 10px;
    margin: 50px 15px 10px;
    position: relative;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    background: #fff;
    top: -30px;
    border-radius: 10px;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    transition: all .3s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);


}

.testimonial:hover .reviewer {
    box-shadow: none;
}

.reviewer .img {
    height: 60px;
    width: 60px;
    overflow: hidden;
    object-fit: contain;
    border-radius: 5px;
}

.reviewer .name span {
    font-size: 1rem;
    color: var(--theme-color);
}

.reviewer .name {
    font-size: 0.875em;
}

.need_contact {
    background: var(--bg-color);
    border-radius: 40px 40px 0 0;
    padding: 3rem 1rem;
}

.footer {
    background: var(--dark-color);
    padding: 80px 0;
    color: #fff;
}

.footer_about {
    margin-right: 4rem;
}

.fotter_title {
    color: var(--theme-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
}

.fotter_title::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 50px;
    background: var(--theme-color);
}

.footer_menu {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 2;
}

.footer_link {
    color: #fff !important;
    position: relative;
}

.footer_link::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    height: 2px;
    width: 10px;
    background: var(--theme-color);
    transition: all .3s ease-in-out;
    opacity: 0;
}

.footer_link:hover::before{
    left: -13px;
    opacity: 1;
}

.copyright {
    background: var(--bg-color);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 20px 20px;
    margin-bottom: 1rem;
}

.copyright p,
.copyright a {
    color: var(--dark-color);
    margin: 0;
}

.second_banner {
    background: url(../img/otherpage_banner.webp) no-repeat;
    background-size: cover;
    margin-top: -80px;
    height: 450px;
    background-position: bottom left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.second_banner_content {
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.second_banner_content::after,
.second_banner_content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 100px;
    background: #fff;
}

.second_banner_content::after {
    height: 10px;
    width: 30px;
    border-radius: 50px;
    bottom: -3.5px;
}

.back_menu {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
}

.second_banner_content h2 {
    font-size: 3rem
}

.second_banner_content a {
    color: #fff;
}

.address_area {
    /* border: 1px solid var(--border-color); */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 2rem;
    position: relative;
}


.with_icon {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.with_icon i {
    font-size: 2rem;
    color: var(--theme-color);
}

.social_medias {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icons {
    height: 40px;
    width: 40px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    border-radius: 5px;
    background: var(--theme-color);
    color: #fff;
    border: 1px solid var(--theme-color);
    transition: all .3s ease-in-out;
}

.icons:hover {
    color: var(--theme-color);
    background: #fff;
}

.con_form {
    /* border: 1px solid var(--border-color); */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 3rem;
    position: relative;
}

.address_area::after,
.address_area::before,
.con_form::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--theme-color);
}

.address_area::after {
    top: 0;
}


.form-control {
    border: none;
    border-radius: 0;
    /* border-bottom: 1px solid var(--theme-color); */
    background: rgba(205, 225, 243, 0.226);
    padding: 1rem 1rem 1rem 3rem;
}

.form-control:focus {
    box-shadow: none;
}

.form-control:hover {
    background: rgba(205, 225, 243, 0.226);
}

.form_icon {
    position: absolute;
    top: 13px;
    left: 23px;
    font-size: 1.3rem;
    color: var(--theme-color);
}

.mv_box {
    border: 1px solid var(--border-color);
    padding: 2rem;
    height: 100%;
    position: relative;
    color: #fff;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.mv_box b {
    color: var(--theme-color);
}

.mv_box .title {
    color: #fff;
}

.mv_img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    transition: all .3s ease-in-out;
}

.mv_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.mv_box:hover .mv_img {
    scale: 1.5;
    transform: rotate(5deg);
}

.team_box {
    background: #fff;
    text-align: center;
    border-radius: 15px;
    /* overflow: hidden; */
    border: 1px solid #fff;
    padding-bottom: 1rem;
    transition: all .3s ease-in-out;
    margin: 0 10px 20px 10px;
    position: relative;
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
}

.team_box::before {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    height: 15px;
    width: 80%;
    background: var(--theme-color);
    border-radius: 0 0 10px 10px;
    transition: all .5s ease-in-out;
}

.team_img {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.team_img img {
    transition: all .3s ease-in-out;
}

.team_name {
    background: var(--theme-color);
    color: #fff;
    width: 90%;
    margin: auto;
    border-radius: 10px;
    margin-top: -45px;
    padding: 1rem;
    position: relative;
    transition: all .3s ease-in-out;
}

.team_name span {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.team_social_media {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 0 0;
    transition: all .3s ease-in-out;
    color: var(--dark-color);
}

.team_box:hover::before,
.team_box:hover .team_name {
    background: var(--dark-color);
}

.team_box:hover img {
    scale: 1.3;
}

.team_social_icon {
    font-size: 1.5rem;
    transition: all .3s ease-in-out;
    color: var(--dark-color);
}

.team_box:hover .team_social_icon {
    color: var(--theme-color);
}

.t-head-theme {
    background: var(--theme-color);
    color: #fff;
}

.product_box {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    /* background: rgba(216, 232, 243, 0.336); */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    height: 100%;
    position: relative;
    transition: all .3s ease-in-out;
}

.product_box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid var(--theme-color);
    border-radius: 20px;
    transition: all .3s ease-in-out;
    z-index: -1;
}

.product_box_hover:hover .product_box{
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
    transform: translateY(-5px);
}

.product_logo {
    height: 50px;
    margin-bottom: 1rem;
}

.product_logo img {
    height: 50px;
    width: 100%;
    object-fit: contain;
}