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

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #2b2b2be7;
}

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

:root {
    --blue-color: #2d3791;
    --green-color: #429326;
    --dark-color: #2b2b2be7;
    --borde-color: rgb(217 217 218);
}

a {
    text-decoration: none;
}

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

.logo {
    width: 150px;
    transition: all .5s ease-in-out;
    position: absolute;
    background: #fff;
    padding: 0 1rem 1rem;
    border-radius: 15px;
    margin-top: -1rem;
}

.menu-gap {
    gap: 1rem;
}

#header-menu {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    transition: all .3s ease-in-out;
}

.navbar-toggler {
    border: 1px solid var(--blue-color);
    height: 30px;
    margin: 1rem 0;
    width: 40px;
    position: relative;
    border-radius: 0;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.navbar-toggler::before,
.navbar-toggler::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 80%;
    background: var(--blue-color);
}

.navbar-toggler::before {
    bottom: 8px ;
}
.navbar-toggler::after {
    top: 8px ;
}

.nav-link {
    color: var(--blue-color);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 100%;
    height: 1px;
    width: 100%;
    background: var(--green-color);
    transform: rotate(40deg);
    transition: all .3s ease-in-out;
}

.nav-link:hover::before {
    left: 0;
    transform: rotate(0);
}

.nav-link:hover {
    color: var(--green-color);
}

.topbanner {
    height: 85vh;
    display: grid;
    place-items: center;
    background: url(../images/banner.webp);
    position: relative;
    background-attachment: fixed;
    color: #fff;
    background-position: center center;
}

.topbanner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #000 60%, #ffffff00);
    border-radius: 0 30px 30px 0;
    opacity: 0.6;
}

/* .topbanner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 50%;
    width: 50%;
    background: #000;
    border-radius: 0 30px 30px 0;
    opacity: 0.5;
} */

.topcaptions {
    /* padding-top: 10rem; */
    position: relative;
}

.topbanner h1 {
    font-size: 2.3rem;
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    /* background: -webkit-linear-gradient(180deg,var(--blue-color), var(--green-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.topbanner h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10px;
    background: var(--blue-color);
}

.topbanner p {
    margin: 2rem 0;
    font-size: 1.2rem;
}

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

.btn-green,
.btn-blue {
    border: 1px solid var(--blue-color);
    padding: 10px 25px;
    background: var(--blue-color);
    color: #fff;
    border-radius: 8px;
}

.btn-blue:hover {
    border: 1px solid var(--blue-color) !important;
    background: #fff !important;
    color: var(--blue-color) !important;
}

.btn-green {
    background: var(--green-color);
    border: 1px solid var(--green-color);
}

.btn-green:hover {
    border: 1px solid var(--green-color) !important;
    background: #fff !important;
    color: var(--green-color) !important;
}

.title {
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}


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

.title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 80px;
    background: var(--blue-color);
}

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

.link {
    color: var(--green-color);
    font-weight: 600;
    position: relative;
    transition: all .5s ease-in-out;
}

.link::after,
.link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--green-color);
    transition: all .5s ease-in-out;
}

.link:hover {
    color: var(--blue-color);
}

.link::after {
    background: var(--blue-color);
    transition: all .5s ease-in-out;
    width: 0;
}

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

.about_img::after,
.about_img::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 45%;
    border-radius: 30px 0 0 30px;
    background: url(../images/about_us.png) no-repeat;
    background-size: contain;
    background-attachment: fixed;
    background-position: center right;
}

.about_img::after {
    background: var(--dark-color);
    opacity: 0.4;
}

.img_box {
    background: var(--blue-color);
    height: 600px;
}

.img_box_body {
    padding-left: 10rem;
}

.product_box {
    border-radius: 10px;
    height: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    color: var(--dark-color);
    border: 1px solid rgb(217 217 218);
    text-align: center;
    overflow: hidden;
    transition: all .5s ease-in-out;
    position: relative;
}

.product_img {
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.product_img img {
    transition: all .5s ease-in-out;
}

.product_box:hover img {
    scale: 1.3;
    transform: rotate(8deg);
}

.product_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background: var(--blue-color);
    transition: all .5s ease-in-out;
    opacity: 0;
    z-index: -1;
}


.product_box:hover::after,
.product_box:hover::before {
    height: 800px;
    width: 800px;
    opacity: 1;
}

.product_box:hover {
    color: #fff;
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
}

.client_logos {
    display: grid;
    gap: 1px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    /* background: rgba(168, 212, 241, 0.37); */
    background: var(--borde-color);
}

.client_logo {
    background: #fff;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client_logo img {
    width: 80%;
    height: 60%;
    object-fit: contain;
    transition: all .3s ease-in-out;
    filter: grayscale(100);
}

.client_logo:hover img {
    filter: grayscale(0);
}

.darkblue_bg {
    background: #0d1f32;
    color: #fff;
    padding: 100px 0;
}

.bg_area_icons {
    background: #fff;
    color: var(--dark-color);
    padding: 1rem 1rem 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    border-radius: 10px;
}

.icons_img {
    background: var(--green-color);
    border-radius: 0 100px 100px 0;
    padding: 1rem 1.5rem 1rem 1rem;
}

.icons_img img {
    width: 70px;
    object-fit: contain;
}

.awards_area::after,
.awards_area::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 45%;
    border-radius: 0 30px 30px 0;
    background: url(../images/awards_bg.jpg) no-repeat;
    background-attachment: fixed;
    background-size: contain;
    background-position: top left;
}

.awards_area::after {
    background: var(--dark-color);
    opacity: 0.4;
}

footer {
    background: #0d1f32;
    color: #fff;
    padding: 50px 0 0 0;
    margin-top: 130px;
}

.footer_logo {
    width: 150px;
    background: #fff;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #fff;
    margin-bottom: 1rem;
}

.footer_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer_about {
    background: var(--green-color);
    border-radius: 0 0 20px 20px;
    padding: 3rem 2rem 2rem 3rem;
    margin-top: -90px;
    margin-right: 2rem;
    position: relative;
    box-shadow: 25px 0 20px -20px rgba(0, 0, 0, 0.45), -25px 0 20px -20px rgba(0, 0, 0, 0.45);
}

.footer_about::after,
.footer_about::before {
    content: "";
    position: absolute;
    top: 6px;
    right: -14px;
    height: 131px;
    width: 70px;
    background: #2f661c;
    transform: rotate(45deg);
    z-index: -1;
}

.footer_about::after {
    left: -57px;
}

.footer_title {
    font-size: 1.3rem;
    padding-bottom: 0.8rem;
    letter-spacing: 2px;
}

.footer_title::before {
    height: 5px;
}

.footer_link {
    padding-left: 0;
    list-style: none;
}

.footer_link li {
    margin-bottom: 0.5rem;
}

.footer_link a {
    color: #fff;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 0.2rem;
    transition: all .3s ease-in-out;
}

.footer_link a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--green-color);
    transition: all .3s ease-in-out;
}

.footer_link a:hover {
    color: var(--green-color);
}

.footer_link a:hover::before {
    width: 100%;
}

.footer_row {
    display: grid;
    grid-template-columns: 4fr 2fr 3fr 3fr;
}

.copyright_area {
    text-align: center;
    background: var(--green-color);
    border-radius: 30px 30px 0 0;
    padding: 1rem;
    margin-top: 50px;
}

.top_titles {
    padding: 80px 0;
    width: 73%;
    margin: auto;
    position: relative;
    color: #fff;
    background: var(--blue-color);
    overflow: hidden;
    border-radius: 15px;
}

/* .top_titles::before{
    content: "";
    position: absolute;
    top: 50px;
    left: -100px;
    width: 50%;
    height: 20px;
    background: var(--green-color);
    transform: skewX(35deg);
} */

.owner {
    position: absolute;
    bottom: 40px;
    right: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    text-align: left;
}

.owner::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -30px;
    background: var(--green-color);
    height: 100%;
    width: 115%;
    transform: skewX(15deg);
    z-index: -1;
}

.owner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -28px;
    background: var(--green-color);
    height: 100%;
    width: 10px;
    transform: skewX(15deg);
    z-index: -1;
}

.owner span {
    font-size: 1.1rem;
    font-weight: 500;
}

.owner_img {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background: var(--blue-color);
    border: 3px solid var(--green-color);
    outline: 2px solid var(--blue-color);
    overflow: hidden;
}

.testimonial {
    padding: 2rem;
    background: var(--blue-color);
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.12), 0 16px 16px rgba(0, 0, 0, 0.12);
    margin: 50px 10px;
    height: 320px;
}

.testimonial-name {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.testimonial-name::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 50px;
    background: var(--green-color);
}

.testimonial p {
    font-size: 0.9rem;
}

.img_frame {
    border: 1px solid #fff;
    padding: 1rem;
    text-align: right;
}

.img_frame span {
    font-size: 1.4rem;
}

.box {
    border-top: 2px solid var(--blue-color);
    border-bottom: 2px solid var(--blue-color);
    padding: 2rem 0;
    position: relative;
    height: 100%;
}

.box_title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 1rem;
}

.box_icon {
    position: absolute;
    bottom: 1rem;
    right: 0;
    opacity: 0.3;
    width: 100px;
}

.team_box {
    border: 1px solid var(--green-color);
    padding: 1rem;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
}


.team_box::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    height: 400px;
    width: 400px;
    background: var(--green-color);
    z-index: -1;
    transform: rotate(45deg);
    border: 10px solid #fff;
    outline: 10px solid var(--green-color);
}

.team_box::after {
    content: "";
    position: absolute;
    bottom: -65px;
    right: -65px;
    height: 100px;
    width: 100px;
    background: var(--green-color);
    z-index: -1;
    transform: rotate(45deg);
    border: 5px solid #fff;
    outline: 5px solid var(--green-color);
}

.member_name {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
}

.team_img {
    border: 1px solid var(--borde-color);
}

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

.member_name span {
    font-size: 0.9rem;
}

.team_box:hover img {
    scale: 1.1;
}

.team_icons {
    background: var(--blue-color);
    display: flex;
    flex-direction: column;
    width: fit-content;
    padding: 0.2rem;
    color: #fff;
    position: absolute;
    top: -200px;
    right: 16px;
    transition: all .3s ease-in-out;
}

.team_box:hover .team_icons {
    top: 1rem;
}

.team_icons .icon {
    color: #fff;
    height: 30px;
    width: 30px;
    border-bottom: 1px solid #ffffff62;
    display: grid;
    place-items: center;
}

.team_icons .icon:last-child {
    border: none;
}

.Contacct_menu {
    color: var(--dark-color);
    position: relative;
}

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

.Contacct_menu:hover {
    color: var(--green-color);
}

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

.award_box {
    border: 1px solid var(--borde-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.award_box img {
    width: 80%;
    height: 90%;
    object-fit: contain;
}

.demo .award_box {
    margin: 30px 15px;
    box-shadow: -15px -15px 15px rgba(255, 255, 255, 0.2), 15px 15px 15px rgba(0, 0, 0, 0.1), inset -5px -5px 5px rgba(255, 255, 255, 0.2), inset 5px 5px 5px rgba(0, 0, 0, 0.1);
}