﻿
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,600;0,800;0,900;1,200;1,400;1,600;1,800;1,900&display=swap');

a:hover {
    color: currentColor;
}

body {
    font-family: 'Montserrat', sans-serif;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}



.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.OverlayMenu {
    /* (A1) COVER ENTIRE SCREEN */
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100vw;
    z-index: 999000000000000000000;
    background: #464749;
    ;
}


.DoSlid {
    animation-name: slide;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes slide {
    from {
        left: 100vw;
    }

    to {
        left: 0vw;
    }
}

.DoFade {
    animation-name: fadeOut;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


a {
    text-decoration: none;
}

    a.no-underline {
        text-decoration: none;
    }


.MainTitle_Light {
    font-size: 70px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.MainTitle_Dark {
    font-size: 70px;
    font-weight: bold;
    color: #464749;
    text-transform: uppercase;
}


.MainTitle_Mobile_Dark {
    font-size: 10vw;
    font-weight: bold;
    color: #464749;
    text-transform: uppercase;
}

.MainTitle_Mobile_Light {
    font-size: 10vw;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.SubTitle_Ligth {
    font-size: 4vw;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.SubTitle_Dark {
    font-size: 50px;
    font-weight: bold;
    color: #464749;
    text-transform: uppercase;
}



.Paragraph_Light {
    color: white;
}

.Paragraph_Dark {
    color: #464749;
}
/*
    --------------------------------------------------------------------------
    round carasoul indicators
    --------------------------------------------------------------------------
*/


.MIIII {
    opacity: 0; /* initial state */
    transition: opacity 2s ease-in-out; /* transition settings */
}



.carousel-indicators {
    list-style: none;
}

    .carousel-indicators li {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #fff;
        margin: 0 5px;
    }

        .carousel-indicators li.active {
            background-color: #007bff;
        }



/*
    --------------------------------------------------------------------------
    --------------------------------------------------------------------------
*/

.img-hover-zoom {
    overflow: hidden;
}

    .img-hover-zoom img {
        transition: transform .5s ease;
    }

    .img-hover-zoom:hover img {
        transform: scale(1.2); /* (80% zoom - Note: if the zoom is too small, it will leave empty space) */
    }

/*
    --------------------------------------------------------------------------
    --------------------------------------------------------------------------
*/

.Color-Dark {
    color: #464749;
}

.Color-Light {
    color: white;
}

/*
    --------------------------------------------------------------------------
    --------------------------------------------------------------------------
*/

.WhatWeDoAnimation:hover text[name="svgNumver"] {
    fill: black;
}

.WhatWeDoAnimation div[name="zoomImage"] {
    overflow: hidden;
}

    .WhatWeDoAnimation div[name="zoomImage"] img {
        transition: transform .5s ease;
    }

.WhatWeDoAnimation:hover div[name="zoomImage"] img {
    transform: scale(1.2);
}

.WhatWeDoAnimation:hover line[name="lineUnderText"] {
    opacity: 100;
}
/*
    --------------------------------------------------------------------------
    --------------------------------------------------------------------------
*/
.mmcontainer {
    position: relative;
}



.overlay-left {
    position: absolute;
    top: 0;
    left: -100%; /* change it to right: -100% if need start from right */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease, left 0.5s ease; /* change it to right if need start from right */
    display: flex; /* add this line */
}

    .overlay-left ul {
        color: white;
        list-style-type: none;
        margin: 80px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start; /* change this line */
        font-size: x-large;
    }

    .overlay-left li {
        margin: 5px 0;
    }

.mmcontainer:hover .overlay-left {
    left: 0; /* change it to right: 0 if need start from right */
    background-color: rgba(33, 33, 33, 1);
}




.overlay-right {
    position: absolute;
    top: 0;
    right: -100%; /* change it to right: -100% if need start from right */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease, right 0.5s ease; /* change it to right if need start from right */
    display: flex; /* add this line */
}

    .overlay-right ul {
        color: white;
        list-style-type: none;
        margin: 80px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        font-size: x-large;
    }

    .overlay-right li {
        margin: 5px 0;
    }

.mmcontainer:hover .overlay-right {
    right: 0; /* change it to right: 0 if need start from right */
    background-color: rgba(33, 33, 33, 1);
}


/*------------------------------------------------------------------------------------*/
.NumberSvg {
    height: 30px;
    margin-right: 20px;
}
/*------------------------------------------------------------------------------------*/

/*button {
    font-style: normal;
    font-weight: normal;
}*/

/*hide checkbox */
.toggle-checkbox {
    display: none;
}

/* Menu button */
.toggle-label {
    cursor: pointer;
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    right: 40px;
}

.bar {
    background-color: #f3f5ea;
    height: 2px;
    margin: 8px 0;
    transition: all 1s;
}

/* Hide menu */
#menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #333333;
    color: white;
    transition: right 0.5s ease-in-out;
    z-index: 1;
}

.phrase-container {
    position: absolute;
    width: 250px;
    height: 420px;
    top: 20%;
    right: 260px;
    overflow: hidden;
}

.phrase-container-Mobile {
    position: absolute;
    width: 250px;
    height: 420px;
    top: 20%;
    right: 60px;
    overflow: hidden;
}
/* Phrases displayed */
.phrase {
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease-in-out, opacity 1s ease-in;
    font-size: xx-large;
    font-weight: bold;
}

/* Menu and phrase animations */
.toggle-checkbox:checked + .toggle-label + #menu {
    right: 0;
}

.toggle-checkbox:checked + .toggle-label .top,
.toggle-checkbox:checked + .toggle-label .middle,
.toggle-checkbox:checked + .toggle-label .bottom {
    transition-delay: 0.5s; /* Delay button transition until ... menu and phrases displayed */
}

.toggle-checkbox:checked + .toggle-label .top {
    transform: rotate(45deg);
    margin-top: 10px;
    margin-bottom: -10px;
}

.toggle-checkbox:checked + .toggle-label .middle {
    opacity: 0;
}

.toggle-checkbox:checked + .toggle-label .bottom {
    transform: rotate(-45deg);
    margin-top: -10px;
    margin-bottom: 10px;
}







/* Center category buttons */
.categories {
    text-align: center;
    margin-top: 30px;
}


/* Style category*/
.category {
    text-decoration: none;
    background: none;
    border: none;
    /*padding: 10px;*/
    cursor: pointer;
    /*font-size: 16px;*/
    color: #333333;
    position: relative;
    margin-bottom: 10px;
    margin-left: 10%;
    margin-right: 10%;
}


/* Style sub-category*/
.sub-category {
    text-decoration: none;
    background: none;
    border: none;
    /*padding: 10px;*/
    padding-bottom: 10px;
    cursor: pointer;
    /*font-size: 16px;*/
    color: #333333;
    position: relative;
    margin-left: 2%;
    margin-right: 2%;
    display: inline-flex;
}

/* Hide sub-categories ((default)) */
.sub-categories {
    display: none;
    margin-top: 30px;
}

/*selected category & sub-category */
.category.selected::after, .sub-category.selected::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* Position line below text */
    width: 100%;
    height: 2px; /* Line thickness */
    background: #333333;
}

/* Initial state of hover animation line */
.category::before, .sub-category::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #333333;
    transition: all 0.8s ease-in-out;
}

/* Final state of hover animation line */
.category:hover::before, .sub-category:hover::before {
    width: 100%;
    left: 0;
}





.nav-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}


.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {
    filter: invert(100%);
}

.carousel-indicators {
    filter: invert(100%);
}
