* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
li {
    list-style: none;
}
button {
    border: none;
}
a {
    text-decoration: none;
}
:root {
    /* --background-color: -webkit-linear-gradient(300deg, #ffffff 0%, #ffffff 100%); */
    --background-color: rgb(255, 255, 255);
    --text-color: #333;
    --main-color: #00a551;
    --toggle-button-color: #666;
    --toggle-icon-color: #fff;
    --nav-color: rgb(255, 255, 255);
    --products-nav-color: rgb(247, 243, 243);
    --after-titles: rgba(0, 0, 0, 0.664);
    --transition: 0.25s;
    --footer: linear-gradient(135deg, #15161f 60%, #15161f 100%);
    --footer-text-color: rgb(0, 0, 0);
    --padding-top: 100px;
    --contact-border: rgba(0, 0, 0, 0.25);
    --box-background: rgb(255, 255, 255);
    --info-content-box: rgb(119, 119, 119);
    --box-ul: rgb(0, 0, 0);
    --fill-color: #ffffff;
}

[data-theme="dark"] {
    --background-color: rgb(41, 40, 40);
    --text-color: rgb(255, 255, 255);
    --toggle-button-color: #ccc;
    --toggle-icon-color: #333;
    --nav-color: rgb(39, 39, 39);
    --products-nav-color: rgb(61, 61, 61);
    --after-titles: rgba(221, 213, 213, 0.808);
    --footer: linear-gradient(135deg, #15161f 60%, #000000 100%);
    --footer-text-color: rgb(253, 244, 244);
    --contact-border: rgba(255, 255, 255, 0.25);
    --box-background: rgb(37, 37, 37);
    --info-content-box: rgb(139, 139, 139);
    --fill-color: #292828;
}
body {
    background: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.5s ease, color 0.5s ease;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    font-family: "Eudoxus Sans", sans-serif;
    --nav-height: 90px;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
html,
body {
    margin: 0;
    padding: 0;
}
/* Start Nav */
nav {
    width: 100%;
    height: var(--nav-height);
    /* height: 90px; */
    position: fixed;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
    background-color: var(--nav-color);
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.233);
    transition: var(--transition) ease-in-out;
}
.nav--hidden {
    transform: translateY(calc(-1 * var(--nav-height)));
    box-shadow: none;
    transition: var(--transition) ease-in-out;
  }
nav > div {
    width: 10%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

nav div i {
    font-size: 28px;
    cursor: pointer;
}
nav .logo
{
    position: relative;
    z-index: 2000;
}
nav .logo img {
    width: 250px;
    position: relative;
}

nav .logo h1 {
    font-weight: 900;
}

nav button {
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    #container-links.open {
        width: 38% !important;
    }
}

@media screen and (max-width: 600px) {
    nav {
        width: 100%;
        padding: 0 10px !important;
    }
    nav .logo img {
        width: 190px !important;
    }

    #container-links.open {
        width: 100% !important;
    }
}
@media screen and (max-width: 550px) {
    nav > div 
    {
        width: 56px;
    }
    nav > div a
    {
        font-size: 14px;
    }
    nav button i {
        font-size: 27px;
    }
    .nested-list li 
    {
        font-size: 13px;
        letter-spacing: 1px;
    }
    .nested-list li a
    {
        letter-spacing: 1px;
    }
}

nav .btn-mode a span{
    font-weight: 700;
    letter-spacing: 1px;
    color: black;
}
nav .btn-mode a span:nth-of-type(2){
    color: rgb(5, 197, 255);
}
.btn-mode i
{
    font-size: 25px;
    color: var(--icon-color);
}

/* Nav Menu */
.menu #container-links {
    background-color: rgb(41, 40, 40);
    position: fixed;
    height: 100vh;
    width: 0px;
    top: 0;
    right: 0;
    transition: var(--transition);
    overflow: hidden;
    z-index: 9999999;
}

.menu #container-links .title2 {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.menu #container-links.open {
    width: 400px;
    opacity: 1;
}

.menu #container-links #menu-close-button i {
    font-size: 24px;
    color: rgb(168, 168, 168);
    cursor: pointer;
    margin-top: 10px;
}

.menu #container-links #menu-close-button i:hover {
    color: white;
}

.menu #container-links .links {
    height: 100%;
    width: 100%;
    padding: 20px;
    
}

.menu .links li {
    margin: 20px 0;
    text-transform: capitalize;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    padding: 10px;
}

.menu .links .effect-hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    background-color: rgba(194, 193, 193, 0);
    bottom: -10px;
    left: 10px;
    transition: var(--transition);
}

.menu .links li:hover::after {
    background-color: rgba(194, 193, 193, 0.137);
    height: 3px;
}

.menu .links li:hover a {
    color: white;
    font-weight: 600;
}
.menu .links li 
{
    color: white;
    font-weight: 600;
}
.menu .links li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: var(--text-hover);
    transition: var(--transition);
}

.nav-item {
    position: relative;
}

.nested-list {
    width: 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--nested-list-background);
    border-radius: 7px;
    position: relative;
    transform: translateY(10px);
    border: 0px solid rgba(129, 129, 129, 0.603);
}

.nested-list li {
    cursor: pointer;
    transition: var(--transition);
    margin: 8px 0 !important;
    padding: 12px !important;
}

.nested-list li:hover {
    background-color: #52575c;
}

.nested-list li:hover a {
    color: white;
    transition: var(--transition);
}

.nested-list.open {
    height: 180px;
    width: 100%;
    border: 1px solid rgba(129, 129, 129, 0.603);
}
.nested-list.open2 {
    height: 70px;

}
/* End Nav */
/* Start Section 1 */
.sec1 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(../images/wallpaper.jpg);
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 100px;
    border-radius: 0px 0px 50px 50px;
}

.title-first-page
{
    color: rgb(255, 255, 255);
    position: relative;
    width: 100%;
    height: 40%;
    transform: translateY(0px);
    /* animation: titleA 1s ease-in-out forwards; */
    /* animation-delay: 4s; */
    opacity: 1;
}
@keyframes titleA {
    0% 
    {
        transform: translateY(200px);
        opacity: 0;
    }
    100% 
    {
        transform: translateY(0px);
        opacity: 1;
    }
}
.sec1 h1 {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    font-size: 160px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.144);
}
@media screen and (max-width: 1124px) {
    .sec1 h1,
    .sec1 h2 {
        font-size: 100px;
    }
    .sec1 h1 i 
    {
        font-size: 90px;
    }
}
@media screen and (max-width: 650px) {
    .sec1 h1,
    .sec1 h2 {
        font-size: 80px;
    }
    .sec1 h1 i 
    {
        font-size: 75px;
    }
}
@media screen and (max-width: 450px) {
    .sec1 h1,
    .sec1 h2 {
        font-size: 60px;
        top: 40%;
    }
    .sec1 h1 i 
    {
        font-size: 45px;
    }

}
.back 
{
    height: 200px;
    width: 30%;
    margin: auto;
    background-image: url(../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    background-attachment: fixed;
}
/* End Section 1 */
.title-page {
    text-align: center;
    font-size: 36px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* background: linear-gradient(254.51deg,rgb(172, 161, 161)  10.45%, #000000 70.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    /* mix-blend-mode: difference; */
    color: var(--text-color);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.title-page::before,
.title-page::after {
    position: absolute;
    content: "";
    height: 3px;
    width: 14%;
    background-color: var(--after-titles);
    left: 0;
    bottom: -10px;
}
.title-page h1::before,
.title-page h1::after {
    position: absolute;
    content: "";
    height: 3px;
    width: 14%;
    background-color: var(--after-titles);
    right: 0;
    bottom: -10px;
}
.title-page::after,
.title-page h1::after {
    bottom: -30px;
    width: 45%;
}
.title-page img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--main-color);
    -webkit-filter: invert(77%) sepia(45%) saturate(1247%) hue-rotate(335deg) brightness(96%) contrast(102%) !important;
    filter: invert(77%) sepia(45%) saturate(1247%) hue-rotate(335deg) brightness(96%) contrast(102%) !important;
}

/* Start Section 1 */
main {
    padding: 0px 0px;

    background-color: var(--background-color);
}

.sec2,
.sec3,
.sec4 {
    position: relative;
    padding: 0 250px;
}

.first-page {
    background: url(../images/wallpaper2.jpg);
    background-size: cover;
    height: 150vh;
    position: relative;
    background-attachment: fixed;
    z-index: -1;
}
.product-img {
    width: 1200px;
    position: absolute;
    top: 30%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.product-text {
    position: absolute;
    top: 53%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    opacity: 0;
    animation: titles 1.5s ease-in-out forwards;
    animation-delay: 3.5s;
}
@keyframes titles {
    100% {
        top: 38%;
        opacity: 1;
    }
}
.product-title {
    color: var(--main-color);
    font-weight: 500;
    font-size: 280px;
    background: -o-linear-gradient(195.49deg, #8a8a8a 6.45%, #ffffff 53.26%);
    background: linear-gradient(254.51deg, #8a8a8a 6.45%, #ffffff 53.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.product-title img {
    -webkit-transform: rotate(154deg);
    -ms-transform: rotate(154deg);
    transform: rotate(154deg);
    width: 201px;
}
.product-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    bottom: -600px;
}

.product-desc p {
    position: absolute;
    font-size: 30px;
    top: -700px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    /* opacity: 1; */
    animation: title_p 1.5s ease-in-out forwards;
    animation-delay: 4s;
}
@keyframes title_p {
    100% {
        top: -500px;
        opacity: 1;
    }
}
@media (max-width: 1386px) {
    .product-title {
        font-weight: 500;
        font-size: 130px;
    }
    .product-title img {
        width: 96px;
    }
    .product-desc p {
        font-size: 20px;
    }
}
@media (max-width: 1386px) {
    .product-title {
        font-weight: 500;
        font-size: 130px;
    }
    .product-title img {
        width: 96px;
    }
    .product-desc p {
        font-size: 20px;
    }
}
@media (max-width: 350px) {
  .box 
  {
    width: 125%;
  }
  .box h1
  {
    font-size: 10px !important;
  }
}
.products-info {
    padding-top: 100px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.products-info .box .content_box {
    /* background-color: var(--box-background); */
    height: 700px;
    width: 1300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 150px;
    position: relative;
    display: flex;
}

.box_name {
    letter-spacing: 1px;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 30px;
}

.box .images {
    height: 100%;
    width: 43%;
    margin-bottom: 11px;
}
.box .images .bigImage {
    height: 57%;
    position: relative;
}

.box .images .bigImage span {
    position: absolute;
    height: 25%;
    width: 98%;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 6px;
    background-color: rgba(0, 0, 0, 0.712);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.918);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    font-family: "Archivo Black", sans-serif;
}
.box .images .bigImage:hover span {
    opacity: 1;
}

.box .images .bigImage img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgba(68, 68, 68, 0.562);
    padding: 6px;
}
.box .images .smallImages {
    height: 15%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.box .images .smallImages img {
    width: 23%;
    margin: 1%;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid rgba(68, 68, 68, 0.562);
    padding: 3px;
}
.box .information {
    height: 100%;
    width: 64%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-transform: capitalize;
}
.box .information div {
    width: 50%;
    padding: 5px 20px;
}

.box .information div h2 {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--main-color);
}
.box .information p {
    line-height: 170%;
    color: var(--info-content-box);
    text-transform: capitalize;
}
.box .information div:first-child p {
    text-transform: lowercase;
    font-weight: 400;
    /* width: 150%; */
}
.box .information ul li {
    margin-bottom: 20px;
    color: var(--info-content-box);
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}
.box .information ul li p {
    line-height: 130%;
}
.box .information ul li span {
    color: var(--text-color);
    font-size: 16px;
    margin-right: 4px;
    text-transform: lowercase;
    font-weight: 400;
}
.box .information .col-2 li span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: var(--main-color);
    height: 7px;
    width: 7px;
    border-radius: 50%;
    margin-right: 5px;
}

.products-info .box:nth-child(2) .col-3 {
    width: 49%;
}
.products-info .box:nth-child(2) .col-4 {
    width: 51%;
}
#coming_soon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
#coming_soon h1 span {
    font-size: 25px;
    color: rgb(20, 130, 255);
    letter-spacing: 0px;
    animation: comingSoon 1.5s ease-in-out alternate infinite;
}
@-webkit-keyframes comingSoon {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}
@keyframes comingSoon {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}
#coming_soon .content_box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#coming_soon .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#coming_soon .images .bigImage {
    height: 80%;
}

#coming_soon .images .smallImages {
    height: 21%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 1200px) {
    .products-info .box .content_box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 700px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
    .box .images {
        width: 100%;
    }
    .box .images .smallImages {
        height: 13%;
    }
    .box .information {
        /* flex-direction: column; */
        width: 100%;
    }
    .box .information div {
        width: 50% !important;
    }
    .box .information div:first-child {
        width: 100% !important;
    }
}
@media (max-width: 786px) {
    .products-info .box .content_box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 450px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        /* margin: auto; */
    }
    .products-info .box:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .box .images {
        width: 100%;
        padding: 10px;
    }
    .box .images .smallImages {
        height: 13%;
    }
    .box .information {
        /* flex-direction: column; */
        width: 100%;
        padding-left: 30px;
    }
    .box .information div {
        width: 100% !important;
    }
}
@media (max-width: 500px) {
    .box .information {
        padding-left: 40px;
    }
    .box .information .col-1 p {
        width: 93%;
    }
    .box:nth-child(3) h1 {
        font-size: 34px;
    }
    .box .images {
        width: 80%;
    }
    .box h1 {
    font-size: 20px !important;
    width: 70%;
    margin: auto;
    }
}
@media (max-width: 370px) {
    .box .information {
        padding-left: 40px;
    }
    .box .information .col-1 p {
        width: 80%;
    }
    .box:nth-child(3) h1 {
        font-size: 34px;
    }
    .box .images {
        width: 72%;
        margin-right: -13px;
    }
    .box h1 {
        font-size: 24px !important;
    }
}
/* Start Section 2*/

.sec2 {
    position: relative;
    padding-top: var(--padding-top);
    opacity: 1;
}

.sec2 .products {
    margin-top: 100px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-align: center;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    margin-bottom: 150px;
}
.sec2 .title-page img {
    -webkit-filter: invert(36%) sepia(34%) saturate(4900%) hue-rotate(134deg) brightness(98%) contrast(103%);
    filter: invert(36%) sepia(34%) saturate(4900%) hue-rotate(134deg) brightness(98%) contrast(103%);
}

.tag {
    font-size: 20px;
    margin: 1.5em 0px;
    padding: 5px 25px;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    background: #efefef;
    text-decoration: none;
    color: black;
    border: 1px solid #ccc;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.sec2 .products .images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    overflow: hidden;
    width: 70%;
}
.sec2 .products .card {
    margin: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.sec2 .products img {
    max-width: 250px;
    width: 350px;
    height: 300px;
    border-radius: 20px;
}
/*filter CSS */

#Products1:checked ~ .images > div:not([class*="Products1"]),
#Products2:checked ~ .images > div:not([class*="Products2"]),
#ComingSoon:checked ~ .images > div:not([class*="ComingSoon"]) {
    opacity: 0;
    height: 0px;
    width: 0;
}

#all:checked ~ .all,
#Products1:checked ~ .tag1,
#Products2:checked ~ .tag2,
#ComingSoon:checked ~ .tag3 {
    background: var(--main-color);
    color: white;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}
.sec2 .imgScroll {
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: hidden;
    border-radius: 50px;
    margin-top: 100px;
}
.sec2 .imgScroll div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: animate 45s linear infinite;
    animation: animate 45s linear infinite;
    -webkit-animation-delay: -42.5s;
    animation-delay: -42.5s;
}
.sec2 .imgScroll div:nth-child(2) {
    -webkit-animation: animate2 45s linear infinite;
    animation: animate2 45s linear infinite;
    -webkit-animation-delay: -20s;
    animation-delay: -20s;
}

.imgScroll:hover div,
.imgScroll:hover div:nth-child(2) {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
@-webkit-keyframes animate {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@keyframes animate {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@-webkit-keyframes animate2 {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}
@keyframes animate2 {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}
.sec2 .imgScroll div img {
    margin: 0px 25px;
    max-width: 400px;
    border: 10px solid transparent;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    border-radius: 30px;
    position: relative;
}
.sec2 .imgScroll div img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sec2 .imgScroll:hover div img {
    opacity: 0.65;
    -webkit-filter: blur(5px);
    filter: blur(5px);
}
.sec2 .imgScroll div img:hover {
    border: 10px solid #fff;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
}

#full-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.884);
    z-index: 9999;
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
}

#full-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    border-radius: 50px;
}

#full-image.fade-in {
    display: block;
    -webkit-animation: fade-in 0.2s;
    animation: fade-in 0.2s;
}

@-webkit-keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media (max-width: 786px) {
    .sec2 {
        padding: 0 !important;
    }
    .sec2 .title-page {
        font-size: 36px;
    }
    .sec2 .imgScroll {
        width: 100%;
        border-radius: 0;
    }
    .sec2 .imgScroll div img {
        max-width: 150px;
        margin: 0px 5px;
    }
}
/* End Section 2 */

/* Start Section 3 */
.sec3 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: var(--padding-top) !important;
}
.sec3 .title-page::before,
.sec3 .title-page::after {
    left: -10px;
}
.sec3 .title-page h1::after,
.sec3 .title-page h1::before {
    right: -10px;
}
.sec3 .title-page img {
    -webkit-filter: none;
    filter: none;
}
.sec3 .container-about {
    margin-top: 80px;
}
.sec3 .container-about h1 {
    text-align: center;
    font-size: 40px;
    color: var(--main-color);
}
.sec3 .container-about .info {
    margin-top: 40px;
    font-size: 20px;
    font-weight: 500;
    line-height: 230%;
}
.sec3 .container-about .info span {
    font-weight: 900;
    font-size: 23px;
    color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 20px;
}
.sec3 .container-about .info span p {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 200%;
    margin-left: 5px;
}
@media (max-width: 786px) {
    .sec3 {
        padding: 0 20px !important;
    }
    .sec3 .title-page {
        font-size: 37px;
    }
    .sec3 .another-title {
        font-size: 24px !important;
    }
    .sec3 p {
        margin-bottom: 24px;
    }
}
/* End Section 3 */
/* Start Section 3 */
.sec4 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: var(--padding-top) !important;
}
.sec4 .title-page img {
    -webkit-filter: none;
    filter: none;
}

.sec4 .container-about {
    margin-top: 80px;
}
.sec4 .container-about h1 {
    text-align: center;
    font-size: 40px;
    color: var(--main-color);
}
.sec4 .container-about .info {
    margin-top: 40px;
    font-size: 20px;
    font-weight: 500;
    line-height: 230%;
}
.sec4 .container-about .info p {
    position: relative;
    margin-bottom: 20px;
}
.sec4 .container-about .info span {
    font-weight: 900;
    font-size: 23px;
    color: var(--main-color);
}
.sec4 .container-about .info p::before {
    content: "";
    top: 18px;
    left: -30px;
    border-radius: 50%;
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: var(--main-color);
}
@media (max-width: 786px) {
    .sec4 {
        padding: 20px !important;
    }
    .sec4 .title-page {
        font-size: 28px;
    }
    .sec4 .title-page img {
        width: 30px;
        top: 60px;
    }
    .sec4 .another-title {
        font-size: 26px !important;
    }
    .sec4 p {
        margin-bottom: 24px;
        left: 20px;
    }
    .sec4 .container-about .info p::before {
        content: "";
        top: 18px;
        left: -30px;
        border-radius: 50%;
        position: absolute;
        width: 11px;
        height: 11px;
    }
}
@media (max-width: 1230px) {
    .sec3,
    .sec4 {
        padding: 0 80px;
    }
}
/* .sec4 .container-about h1 
    {
        font-size: 28px;
        background-color: red;
        width: 500px;
    } */

/* End Section 3 */
/* Start section 4 */
.sec5 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    margin-bottom: 100px;
}
.sec5 .title-page {
    width: 30%;
}
@media (max-width: 786px) {
    .sec5 {
        padding: 0 30px;
    }
    .sec5 .title-page {
        font-size: 28px;
    }
    .sec5 .title-page img {
        width: 20px;
        top: 61px;
    }
    .sec5 .another-title {
        font-size: 20px !important;
    }
    .sec5 p {
        margin-bottom: 24px;
    }
    .sec5 .container-about .info p::before {
        content: "";
        top: 18px;
        left: -20px;
        border-radius: 50%;
        position: absolute;
        width: 11px;
        height: 11px;
    }
}
/* End section 5 */

/* Start Contact Us */
.contact-us {
    height: 600px;
    margin: 150px auto;
    width: 60%;
    position: relative;
}
.contact-us .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    border-radius: 50px;
    background: rgba(104, 104, 104, 0.082);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    padding-left: 100px;
}

.contact-us .circle1 {
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background: -webkit-gradient(linear, right top, left top, from(#00a551), to(rgba(2, 58, 5, 0)));
    background: -o-linear-gradient(right, #00a551, rgba(2, 58, 5, 0));
    background: linear-gradient(to left, #00a551, rgba(2, 58, 5, 0));
    top: -80px;
    right: -80px;
    z-index: -10;
    -webkit-animation: animate-contact 12s linear alternate infinite;
    animation: animate-contact 12s linear alternate infinite;
    -webkit-box-shadow: 15px 7px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 15px 7px 20px rgba(0, 0, 0, 0.2);
}
@-webkit-keyframes animate-contact {
    0% {
        -webkit-transform: rotate(0deg) translateY(50px);
        transform: rotate(0deg) translateY(50px);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes animate-contact {
    0% {
        -webkit-transform: rotate(0deg) translateY(50px);
        transform: rotate(0deg) translateY(50px);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.contact-us .circle2 {
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, right top, from(#fbbd63), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(left, #fbbd63, rgba(0, 0, 0, 0));
    background: linear-gradient(to right, #fbbd63, rgba(0, 0, 0, 0));
    bottom: -80px;
    left: -80px;
    z-index: -10;
    -webkit-animation: animate-contact 12s linear alternate infinite;
    animation: animate-contact 12s linear alternate infinite;
    -webkit-box-shadow: -15px 7px 20px rgba(0, 0, 0, 0.2);
    box-shadow: -15px 7px 20px rgba(0, 0, 0, 0.2);
}
.contact-us .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
}
.contact-us .form form {
    width: 40%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.contact-us .form form input {
    border: 1px solid var(--contact-border);
    border-radius: 10px;
    outline: none;
    width: 400px;
    height: 50px;
    margin: 15px 0px;
    background: transparent;
    padding-left: 20px;
    font-size: 18px;
    color: var(--text-color);
}
.contact-us .form form input::-webkit-input-placeholder {
    letter-spacing: 1px;
    font-size: 15px;
}
.contact-us .form form input::-moz-placeholder {
    letter-spacing: 1px;
    font-size: 15px;
}
.contact-us .form form input:-ms-input-placeholder {
    letter-spacing: 1px;
    font-size: 15px;
}
.contact-us .form form input::-ms-input-placeholder {
    letter-spacing: 1px;
    font-size: 15px;
}
.contact-us .form form input::placeholder {
    letter-spacing: 1px;
    font-size: 15px;
}
.contact-us .form form textarea {
    width: 400px;
    height: 120px;
    outline: none;
    margin: 15px 0px;
    border: 1px solid var(--contact-border);
    background: transparent;
    border-radius: 10px;
    padding: 20px;
    font-size: 15px;
}
.contact-us .form form button {
    background: #5e53a2;
    height: 50px;
    width: 120px;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
.contact-us .map {
    height: 100%;
    width: 40%;
    border-radius: 50px;
}
.contact-us .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: none;
}
@media (max-width: 1300px) {
    .contact-us .container {
        padding-left: 10px;
    }
    .contact-us .form form input {
        width: 250px;
        padding-left: 10px;
    }
    .contact-us .form form textarea {
        width: 250px;
    }
    .contact-us .map {
        width: 50%;
    }
}
@media (max-width: 970px) {
    .contact-us {
        height: 900px;
        width: 85%;
    }
    .contact-us .circle1,
    .contact-us .circle2 {
        left: 40%;
    }
    .contact-us .container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .contact-us .container h1 {
        text-align: center;
    }
    .contact-us .map {
        width: 100%;
        height: 350px;
    }
    .contact-us .form {
        gap: 25px;
        margin-left: 20px;
    }
    .contact-us .form form input {
        width: 230%;
    }
    .contact-us .form form textarea {
        width: 230%;
    }
}
@media (max-width: 500px) {
    .contact-us {
        height: 900px;
        width: 100%;
    }
    .contact-us .circle1,
    .contact-us .circle2 {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
        left: 20%;
    }
    .contact-us span:nth-child(1) {
        right: 90px;
    }
    .contact-us span:nth-child(3) {
        left: 90px;
    }
    .contact-us .container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .contact-us .container h1 {
        text-align: center;
    }
    .contact-us .map {
        width: 100%;
        height: 350px;
    }
    .contact-us .form {
        gap: 25px;
        margin-left: 20px;
    }
    .contact-us .form form input {
        width: 230%;
    }
    .contact-us .form form textarea {
        width: 230%;
    }
}
/* End Contact Us */

/* Start footer */
footer {
    height: 500px;
    width: 100%;
    bottom: 0;
    left: 0;
    /* background-color: var(--main-color); */
    background: var(--background-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
footer img {
    width: 50px;
    margin: 0px 20px;
}
footer p {
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0;
    text-transform: capitalize;
}
footer .container {
    background: var(--footer);
    height: 92%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

footer .container * {
    color: white;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

footer .row-1,
footer .row-2,
footer .row-3 {
    width: 16%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* align-items: center; */
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: 40px;
    text-transform: capitalize;
    color: var(--footer-text-color);
    padding-bottom: 60px;
}
footer .container .row-1 a {
    font-size: 20px;
    margin-bottom: 10px;
}
footer .row-1 .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 200px;
    gap: 7px;
}
footer .container .row-2 {
    font-size: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
footer .container .row-2 img {
    width: 450px;
}
footer .container .row-2 .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    left: 220px;
}
footer .container .row-2 a {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

footer .container .row-2 a:hover {
    color: rgb(255, 255, 255);
    background-color: #1877f2;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
footer .container .row-2 a:hover:nth-child(2) {
    color: rgb(255, 255, 255);
    background: -o-linear-gradient(230deg, #e1306c, #f56040);
    background: linear-gradient(220deg, #e1306c, #f56040);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
footer .container .row-2 a:hover:nth-child(3) {
    color: #faf6f2;
    background-color: #25d366;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
footer .container .row-2 a:hover:nth-child(4) {
    color: #f5f8fa;
    background-color: #1da1f2;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
footer .container .row-2 a:hover:nth-child(5) {
    color: #282828;
    background-color: #ff0000;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
footer .container .row-3 p {
    margin: 0;
}
footer .container .row-3 i {
    font-size: 20px;
}

footer .container .row-3 div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
footer .row-3 .col-1 > a {
    line-height: 200%;
    position: relative;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
footer .container .row-3 .col-2 {
    text-transform: none;
}
footer .container .row-1 a:hover,
footer .container .row-3 a:hover {
    color: var(--main-color);
}
@media (max-width: 890px) {
    footer {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
    footer .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    footer .row-1,
    footer .row-2,
    footer .row-3 {
        width: 100% !important;
    }
    footer .row-1,
    footer .row-3 {
        padding: 30px;
    }
    footer .row-2 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    footer .row-2 img {
        width: 370px !important;
    }
    footer > p {
        text-transform: capitalize;
        font-size: 15px;
    }
}
@media (max-width: 1250px) {
    footer .container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .row-1 {
        margin: 0 40px;
    }
    footer .row-3 {
        width: 32%;
    }
}
/* Loader */
.loading
{
  height: 100vh;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  position: absolute;
  width: 100%;
  z-index: 9111111;
}

.loading-page {
  position: absolute;
  top: 0;
  left: 0;
  /* background: linear-gradient(to right, #315868, #203a43, #16272e); */
  background:linear-gradient(135deg, #1a1a1d 0%,#17171a 100%);    height: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  color: #191654;
}

#svg {
  height: 150px;
  width: 150px;
  stroke: white;
  fill-opacity: 0;
  stroke-width: 3px;
  stroke-dasharray: 4500;
  animation: draw 8s ease;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 4500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.name-container {
  position: relative;
  height: 30px;
  overflow: hidden;
  animation: loadingName 2s forwards ease-in-out;
  top: 30px;
  opacity: 0;
}
@keyframes loadingName {
    0%
    {
        top: 30px;
        opacity: 0;

    }
    100%
    {
        top: 0px;
        opacity: 1;
    }
}
.logo-name {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-left: 20px;
  font-weight: bolder;
}
.loading.hidden {
  opacity: 0;
  visibility: hidden;
}
.whatsApp
{
    position: fixed;
    bottom: 15px;
    left: 30px;
    width: 0px;
    cursor: pointer;
    z-index: 29999;
    animation: whats 3s ease-in-out alternate infinite;
}
.whatsApp img 
{
    width: 40px;
    cursor: pointer;
}
.messenger
{
    position: fixed;
    bottom: 15px;
    right: 80px;
    width: 0px;
    cursor: pointer;
    z-index: 29999;
    animation: whats 3s ease-in-out alternate infinite;
}
.messenger img 
{
    width: 50px;
    cursor: pointer;
}
@keyframes whats {
    0%
    {
        transform: translateY(-30px);
    }
    100%
    {
        transform: translateY(0px);
    }
}