/* Start Variables */
:root {
    --main-light-blue: #426197;
    --main-dark-blue: #0b1e40;
    --green-color: #61b53f;
    --w-text: #fff;
    --bg-color: #f3f4f6;
    --mx: 100px;
    --my: 100px;
    --gy: 50px;
    --px: 15px;
    --py: 10px;
    --transition: 0.3s;
    --radius-1: 16px;
    --radius-2: 24px;
    --radius-round: 50%;
}
/* End Variables */

/* Start Global Rules */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--main-light-blue);
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}
.hero {
    width: 100%;

    background-color: var(--bg-color);
}

.container {
    /* width: 1100px; */
    /* max-width:calc(100% - 40px) */
}
.underline {
    position: relative;
}
.underline::after {
    content: "";
    position: absolute;
    top: 110%;
    left: 0;
    width: 200px;
    height: 10px;
    background-color: var(--green-color);
}
.my-card {
    color: var(--main-light-blue);
    height: 100%;
    border: none;
    background-color: white;
    border-radius: var(--radius-1);
    overflow: hidden;
    text-align: center;
    box-shadow: 0 3px 6px #00000029;
    padding: 30px var(--px) 20px;
}
.my-card img {
    width: 64px;
}
.my-card h3 {
    font-size: 20px;
    padding-top: var(--py);
}
.my-card p {
    font-size: 18px;
}
/* End Global Rules */
/*Start mob-nav */
.mob-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(
        to bottom,
        var(--main-dark-blue),
        var(--main-light-blue),
        var(--bg-color)
    );
    z-index: -5000;
    color: var(--w-text);
    transform: translateY(-300%);
    transition: var(--transition);
}
.mob-nav.active {
    z-index: 5000;
    transform: translateY(0);
}
.mob-nav .inner {
    width: 100%;
    height: 100vh;
    position: relative;
    padding-top: 100px;
}
.mob-nav .inner button.x {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 28px;
    padding: 5px 10px;
    background-color: var(--bg-color);
    border-radius: var(--radius-round);
}
.mob-nav .nav-bar {
    padding: 15px;
}
.mob-nav .dropdown-menu {
    width: fit-content;
    font-size: 14px;
    color: var(--main-light-blue);
    padding-left: 5px;
    padding-right: 5px;
    background-color: var(--bg-color);
    margin-left: auto;
    margin-right: auto;
}
.mob-nav ul.dropdown-menu.show {
    width: 200px;
    font-size: 16px;
    color: var(--main-light-blue);
    padding-left: 5px;
    padding-right: 5px;
    background-color: var(--bg-color);
    margin-left: auto;
    margin-right: auto;
}
/* .mob-nav .dropdown-list.active{
    height: 416px;
    visibility: visible;
    z-index: 5000;
}
.mob-nav .lang .dropdown-list.active{
    height: 146px;
} */
/*End mob-nav */

/* Start Header */
.header {
    position: absolute;
    top: calc(var(--my) / 2);
    left: 0;
    right: 0;
    z-index: 1000;
    color: var(--color);
}
.header .container {
    background-color: #fff;
    border-radius: var(--radius-2);
}
.header a.logo {
    width: 50px;
}
.header .nav-bar {
    margin-left: 150px;
}
.header .nav-bar > ul:first-child {
    flex: 2 1 auto;
}
.header .nav-bar ul.social {
    margin-left: 10px;
    flex: 1 1 auto;
}
.header .nav-bar > ul > li {
    margin-left: 2px;
    font-weight: bold;
}
.header .nav-bar ul.social > li {
    margin-left: 1px;
    color: #61b53f;
}
.header .nav-bar a {
    padding: 15px;
    text-align: center;
    color: var(--main-light-blue);
}
.header .nav-bar ul.social a {
    padding: 0;
}
.header .icon {
    padding: var(--py) var(--px);
}
.header .dropdown-list {
    top: calc(100% + 5px);
    left: -75px;
    height: 0;
    width: 300px;
    z-index: -500;
    visibility: hidden;
    padding: 5 var(--px) var(--py);
    background-color: var(--bg-color);
    border-radius: 0 0 var(--radius-2) var(--radius-2);
    transition: var(--transition);
    overflow: hidden;
    text-align: left;
}
.header .dropdown:hover .dropdown-list {
    height: 502px;
    visibility: visible;
    z-index: 5000;
}
.header .dropdown.lang:hover .dropdown-list {
    height: 116px;
}
.header .dropdown-list li:hover {
    background-color: #ddd;
}
/* End Header */

/* Start home top-slider */
.home .top-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #042255;
    opacity: 0.2;
    z-index: 0;
}
.home .top-slider .carousel-indicators > button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.home .top-slider .text-box {
    position: absolute;
    bottom: var(--my);
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    width: 720px;
    z-index: 5;
}
.home .top-slider .text-box h1 {
    font-size: 48px;
    font-weight: 800;
}
.home .top-slider .text-box a {
    padding: 15px 60px;
    background-color: var(--green-color);
    margin-top: var(--gy);
    border-radius: var(--radius-1);
}
.home .top-slider .text-box a:hover {
    background-color: var(--main-light-blue);
}
/* End home top-slider */
/* Start home why-section */
.home .why-us {
    background-image: linear-gradient(
        to bottom,
        var(--main-light-blue),
        var(--main-light-blue) 80%,
        var(--bg-color) 80%,
        var(--bg-color) 100%
    );
    color: var(--w-text);
}
.home .why-us .top-row .text {
    padding-right: var(--mx);
}
.home .why-us .top-row .img-container {
    border-radius: var(--radius-1);
    overflow: hidden;
}
/* End home why-section */
/* Start home exceptional */
.home .exceptional-results {
    height: 1000px;
    background-attachment: fixed;
    top: 0;
    background-image: url("../images/sliders/container.jpg");
    background-position: center;
    background-size: cover;
    color: var(--main-dark-blue);
}
.home .exceptional-results .inner {
    position: relative;
    height: 1000px;
}
.home .exceptional-results .out-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.home .exceptional-results .box {
    width: 800px;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    padding: 60px;
    border: 2px solid #fff;
    border-radius: var(--radius-1);
}
.home .exceptional-results .box .logos {
    width: 100%;
}
.home .exceptional-results .box .logos img {
    width: 30%;
}
.home .exceptional-results h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: var(--py);
    color: var(--main-light-blue);
}
.home .exceptional-results h3 {
    font-size: 20px;
    font-weight: 800;
}
.home .exceptional-results p {
    font-size: 18px;
}
/* End home exceptional */
/*Start home history */

.home .history .carousel-indicators button {
    border-radius: var(--radius-round);
    height: 10px;
    width: 10px;
}
.home .history .carousel-control-next {
    justify-content: flex-end;
    padding-right: var(--px);
}
.home .history .carousel-control-prev {
    justify-content: flex-start;
    padding-left: var(--px);
}
.home .history .carousel-inner {
    transition: var(--transition);
}
.home .history:hover .carousel-inner {
    transform: scale(1.01, 1.01);
}
.home .history .text,
.history .img-container {
    width: 50%;
}
.home .history .text {
    background-color: var(--main-light-blue);
    color: var(--w-text);
    transition: var(--transition);
}
.home .history .carousel-item:last-child .text {
    background-color: var(--green-color);
}
.home .history .carousel-item:last-child .text h2::after {
    background-color: var(--main-light-blue);
}
/*End home history */

/* Start home services */
.home .services {
    padding: var(--my) 0;
}
.home .services .my-card {
    padding: 30px;
    border-radius: var(--radius-1);
    flex-direction: column;
}
.home .services .my-card img,
.home .services .my-card h3,
.home .services .my-card p {
    margin-top: 5px;
    margin-bottom: 7px;
}
.home .services .my-card img {
    width: 50px;
}
.home .services .my-card h3 {
    font-weight: bold;
}
.home .services .my-card a {
    display: flex;
    padding: 10px 30px;
    background-color: var(--green-color);
    width: 200px;
    border-radius: var(--radius-1);
    color: var(--w-text);
    text-align: left;
    justify-content: space-between;
    transition: 0.3s;
    font-size: 16px;
    margin-top: 20px;
}
.home .services .my-card a .arrow {
    display: none;
}
.home .services .my-card a > span:first-child {
    transition: var(--transition);
}
.home .services .my-card a:hover {
    transform: scale(1.001, 1);
}
.home .services .my-card a:hover span:first-child {
    padding-left: 50px;
}
.home .services .my-card a:hover span:last-child {
    padding-left: 10px;
}
.home .services .my-card a:hover {
    background-color: var(--main-light-blue);
    justify-content: flex-end;
}
/* End home services */
/* start home clients */
.our-clients {
    margin-bottom: 100px;
}
.our-clients .title {
    color: var(--color);
    font-size: 42;
    position: relative;
    margin-bottom: 100px;
    text-align: center;
}
.home .our-clients .title::after {
    position: absolute;
    content: "";
    top: 120%;
    left: 50%;
    background-color: #61b53f;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 10px;
}
.home .our-clients .marquee {
    overflow: hidden;
    position: relative;
    height: 100px;
}
.home .our-clients .logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*width: 1920px;*/
    height: 100px;
    position: absolute;
    overflow: hidden;
    animation: marquee 40s linear infinite;
}
.home .our-clients .logos .logo {
    /* padding: 20px; */
    background-color: #fff;
    border: 1px solid var(--color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: 100.4px;
}
.home .our-clients .logos img {
    width: 90px;
}
/* End home clients */
/*Start  footer */
footer.footer {
    align-self: flex-end;
    background-color: #274271;
    color: #fff;
}
.footer .nav {
    margin-bottom: 30px;
}
.footer .nav a {
    padding: 10px;
}
.footer textarea {
    height: 200px;
}
.footer input,
.footer textarea {
    border: none;
    border-radius: 4px;
    overflow: hidden;
    padding: 0 4px;
}
.footer input:focus,
footer textarea:focus {
    outline: none;
}
.footer input[type="text"] {
    font-size: 14px;
    height: 28px;
}
.footer input.submit {
    background-color: #61b53f;
    color: #fff;
}
.footer .copyrights {
    padding: 20px 0;
    text-align: center;
    background-color: var(--main-light-blue);
}
.contactus-page .footer {
    background-color: transparent;
    color: var(--color);
}
.contactus-page .footer .copyrights {
    color: #fff;
}
/*End  footer*/
/*Start all pages except home*/
.hero .top-bg {
    background-image: url("../images/sliders/bg1.jpg");
    background-position: center;
    background-size: cover;
    height: 250px;
}
/*End all pages except home*/

/*page-about  welcome */
.page-about .welcome {
    color: var(--main-light-blue);
    padding: 100px 0;
    font-size: 24px;
    text-align: center;
}
/*page-about vision-mission */
.page-about .vision-mission .inner {
    width: 200vw;
    max-width: 3840px;
    background-color: antiquewhite;
    height: 100vh;
    transition: var(--transition);
}
.page-about .vision-mission .inner.next {
    transform: translateX(-50%);
}
.page-about .vision-mission .item {
    color: #fff;
    width: 100vw;
    max-width: 1920px;
    height: 100vh;
    float: left;
}
.page-about .vision-mission .item.vision {
    background-color: var(--main-light-blue);
}
.page-about .vision-mission .item.mission {
    background-color: var(--green-color);
}
.page-about .vision-mission .item .top {
    height: 50%;
}

.page-about .vision-mission .item .bottom.img-container {
    height: 50%;
    width: 100%;
}

.page-about .vision-mission .item .text {
    width: 75%;
}
.page-about .vision-mission .item .text h2 {
    font-size: 48px;
    padding: 50px 100px;
}
.page-about .vision-mission .item .text p {
    font-size: 24px;
    padding: 50px 100px;
    font-weight: 300;
}
.page-about .vision-mission .item button {
    width: 15%;
    border: none;
    text-transform: capitalize;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    background-color: var(--main-light-blue);
}
.page-about .vision-mission .item.vision button {
    background-color: var(--green-color);
    width: 25%;
}
.page-about .vision-mission .item button span.position-absolute {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* page-services start*/
.services-page .title {
    padding-top: var(--my);
}
.services-page .subtitle {
    padding-bottom: 70px;
}
.services-page .services .my-card {
    padding: 30px;
    border-radius: var(--radius-1);
}
.services-page .my-card img,
.services-page .my-card h3,
.services-page .my-card p {
    margin-top: 5px;
    margin-bottom: 7px;
}
.services-page .my-card img {
    width: 50px;
}
.home .services .my-card h3 {
    font-weight: bold;
}
.services-page .my-card a {
    display: flex;
    padding: 10px 30px;
    background-color: var(--green-color);
    width: 200px;
    border-radius: var(--radius-1);
    color: var(--w-text);
    text-align: left;
    justify-content: space-between;
    transition: 0.3s;
    font-size: 16px;
    margin-top: 20px;
}
.services-page .my-card a > span:first-child {
    transition: var(--transition);
}
.services-page .my-card a:hover {
    transform: scale(1.001, 1);
}
.services-page .my-card a:hover span:first-child {
    padding-left: 50px;
}
.services-page .my-card a:hover {
    background-color: var(--main-light-blue);
}
/* page-services end */
/* page-one_service */
.page-one_service .service-link a {
    display: inline-block;
    color: var(--color);
    font-size: 26px;
    padding: 10px 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.page-one_service .service-link a span {
    margin-left: 10px;
    color: #61b53f;
}
.page-one_service .service-text {
    color: var(--color);
}
.page-one_service .service-text h2 {
    display: inline-block;
    width: auto;
    font-size: 38px;
    font-weight: bold;
    border-bottom: 10px solid #61b53f;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.page-one_service .service-text p {
    font-size: 22px;
    width: 1000px;
    max-width: 100%;
}
.page-one_service .service-text p:last-child {
    padding-bottom: 40px;
}

/* products-page */
.products-page h1 {
    color: var(--color);
    padding: 10px 20px;
    border-bottom: 10px solid #61b53f;
    display: inline-block;
    margin-top: 100px;
    margin-bottom: 50px;
}
.products-page .pro-card {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 0px 1px 0px;
    color: var(--color);
    font-size: 18px;
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 50px;
}
.products-page .pro-card .img-container {
    overflow: hidden;
}
.products-page .pro-card:hover {
    transform: scale(1.02, 1.02);
}
.products-page .pro-card h3 {
    font-size: 24px;
}
.products-page .pro-card h4 {
    font-size: 22px;
}
.products-page .pro-card a {
    background-color: #61b53f;
    display: block;
    padding: 15px;
    color: #fff;
    margin-top: 10px;
    transition: 0.3s;
}
.products-page .pro-card a:hover {
    background-color: var(--main-light-blue);
}
/* clients-page*/
.clients-page h1 {
    color: var(--color);
    padding: 10px 20px;
    border-bottom: 10px solid #61b53f;
    display: inline-block;
    margin-top: 100px;
    margin-bottom: 50px;
}
.clients-page .intro-text {
    color: var(--color);
    padding: 10px 50px;
    font-size: 22px;
}
.clients-page .logos .logo {
    text-align: center;
    width: calc((100% - 420px) / 7);
    margin: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--color);
}
.clients-page .logos .logo img {
    text-align: center;
    width: 100%;
}
/* one_product-page */
.one_product-page .title h1 span {
    color: #61b53f;
    margin-left: 20px;
}
.one_product-page .title h1 {
    margin-top: 50px;
    margin-bottom: 100px;
}
.one_product-page {
    color: var(--color);
}
.one_product-page .details {
    padding-top: 100px;
}
.one_product-page .details table {
    border: 1px solid #707070;
    color: inherit;
    margin-top: 100px;
    margin-bottom: 100px;
}
.one_product-page .details td,
.one_product-page .details th {
    color: var(--color);
    font-size: 18px;
}
.one_product-page .details th {
    vertical-align: middle;
}
.one_product-page .details td {
    font-size: 16px;
}
.one_product-page .details caption {
    font-weight: bold;
    font-size: 26px;
    color: var(--color);
}
.one_product-page .details .text {
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    /* justify-items: center; */
    height: 100%;
    justify-content: space-between;
}
.one_product-page .details h3 {
    font-weight: bold;
    font-size: 32px;
}
.one_product-page .details p {
    font-size: 22px;
}
.one_product-page .details a {
    display: block;
    background-color: #61b53f;
    padding: 15px;
    color: #fff;
    text-align: center;
    font-size: 22px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}
.one_product-page .details .images {
    height: 50vh;
    border-radius: 16px;
}
.one_product-page .details .images .big-pic {
    width: 75%;
    border-radius: 16px;
    overflow: hidden;
}
.one_product-page .details .images .big-pic img {
    width: 100%;
    height: 100%;
}
.one_product-page .details .images .small-pics {
    width: 20%;
    height: 100%;
    overflow-y: auto;
}
.one_product-page .details .images .small-pics::-webkit-scrollbar {
    background-color: transparent;
    z-index: 1000;
    width: thin;
}
.one_product-page .details .images .small-pics img {
    display: block;
    margin-bottom: 10px;
    border-radius: 12px;
}
/* Start Animation Classes */
.bright {
    transition: 0.3s;
    filter: brightness(100%);
}
.bright:hover {
    filter: brightness(150%);
}
.hov-border {
    border: 5px solid transparent;
    transition: 0.3s;
}
.hov-border:hover {
    border-color: #61b53f transparent #61b53f transparent;
}
.scale1 {
    transition: var(--transition);
}
.scale1:hover {
    transform: scale(1.05, 1.1);
}
.scale {
    transition: var(--transition);
}
.scale:hover {
    transform: scale(1.2, 1.1);
}
/* End Animation Classes */

/* Start media queries */
@media (min-width: 1920px) {
    .hero {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 1500px) {
    .home .exceptional-results .box {
        padding: 30px;
    }
    .home .exceptional-results h2 {
        font-size: 28px;
    }
    .home .exceptional-results h3 {
        font-size: 18px;
    }
    .home .exceptional-results p {
        font-size: 16px;
    }
}
@media (max-width: 1400px) {
    .page-about .vision-mission .item .top {
        height: 60%;
    }
    .page-about .vision-mission .item .bottom {
        height: 40%;
    }
    .page-about .vision-mission .item .text p,
    .page-about .vision-mission .item .text h2 {
        padding: 30px;
    }
}
@media (max-width: 1200px) {
    .home .exceptional-results h2 {
        font-size: 24px;
    }
    .home .exceptional-results h3 {
        font-size: 16px;
    }
    .history .carousel-item .d-flex {
        flex-direction: column;
    }
    .history .carousel-item:last-child .d-flex {
        flex-direction: column-reverse;
    }
    .home .history .text,
    .home .history .img-container {
        width: 100%;
    }
    .history .text {
        padding: 100px;
    }
    .page-about .vision-mission .item .text {
        /* font-size: 18px; */
    }
    .page-about .vision-mission .item .text p {
        font-size: 18px;
    }
    .page-about .vision-mission .item .text h2 {
        font-size: 32px;
    }
    .page-about .vision-mission .item button {
        font-size: 32px;
    }
}
@media (max-width: 992px) {
    .home .exceptional-results .box {
        max-width: calc(100vw - 30px);
        margin-left: auto;
        margin-right: auto;
    }
    .home .top-slider .text-box {
        top: 200px;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .home .top-slider .carousel-control-prev,
    .home .top-slider .carousel-control-next {
        visibility: hidden;
    }
    .home .top-slider .text-box {
        max-width: 70vw;
    }
    .home .top-slider .text-box h1 {
        font-size: 32px;
    }
    .home .top-slider .text-box h1 {
        font-size: 44px;
    }
    .one_product-page .details .text {
        padding-right: 50px;
    }
    .one_product-page .details .text h3 {
        font-size: 22px;
    }
    .one_product-page .details .text p {
        font-size: 18px;
    }
    .clients-page .logos .logo {
        text-align: center;
        width: calc((100% - 100px) / 4);
        margin: 30px;
        border-radius: 50%;
        overflow: hidden;
        border: 1px solid var(--color);
    }
}
@media (max-width: 720px) {
    .home .exceptional-results .box h2 {
        font-size: 18px;
    }
    .home .exceptional-results .box h3 {
        font-size: 16px;
    }
    .home .exceptional-results .box p {
        font-size: 14px;
    }
    .home .exceptional-results .box {
        padding: 20px;
    }
    .home .why-us .filter::before {
        height: 1026px;
    }
    .home .top-slider .text-box h1 {
        font-size: 18px;
        font-weight: 800;
    }
    .home .top-slider .text-box h1 {
        font-size: 18px;
        font-weight: 800;
    }
    .home .why-us {
        background-image: linear-gradient(
            to bottom,
            var(--main-light-blue),
            var(--main-light-blue)
        );
        color: var(--w-text);
    }
    .home .why-us .top-row {
        flex-direction: column-reverse;
    }
    .home .why-us .top-row .text {
        padding-right: 15px;
    }
    .home .why-us .my-card {
        display: flex;
        width: 100%;
        text-align: left;
    }
    .home .why-us .my-card .card-text {
        margin-left: 30px;
    }
    .home .services .my-card {
        flex-direction: row;
        width: 100%;
    }
    .home .services .my-card .text {
        margin: 0 30px;
        text-align: left;
    }
    .home .services .my-card a {
        background-color: transparent;
        color: var(--green-color);
        padding: 0;
    }
    .home .services .my-card a .arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 5px solid var(--green-color);
        width: 40px;
        height: 40px;
    }
    .home .services .my-card a span:not(.arrow) {
        display: none;
    }
    .page-about .vision-mission .item button {
        width: 25%;
    }
    .page-about .welcome {
        font-size: 18px;
    }
}
@media (max-width: 576px) {
    .page-about .vision-mission .item .text p {
        font-size: 14px;
    }
    .page-about .vision-mission .item .text h2 {
        font-size: 22px;
    }
    .page-about .vision-mission .item button {
        font-size: 22px;
    }
    .header .container {
        border-radius: 16px;
        width: calc(100% - 60px);
    }
}
@keyframes marquee {
    0% {
        left: 0%;
    }
    100% {
        left: -50%;
    }
}
/* End media query */
