@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: 100;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: 200;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-UltraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: 300;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-light.ttf') format('truetype');
}

@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: 500;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: 600;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-demibold.ttf') format('truetype');
}

@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: 800;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-extrabold.ttf') format('truetype');
}

@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: 900;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-black.ttf') format('truetype');
}

@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: bold;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'SofiaSans';
    font-style: normal;
    font-weight: normal;
    src: url('/Fonts/Sofia_Sans/static/SofiaSans-regular.ttf') format('truetype');
}


@font-face {
    font-family: 'ARIALNB';
    font-style: normal;
    font-weight: 700;
    src: url('../Fonts/ARIALNB.TTF') format('truetype');
}

@font-face {
    font-family: 'GLSNECB';
    font-style: normal;
    font-weight: 700;
    src: url('../Fonts/GLSNECB.TTF') format('truetype');
}



html,
* {
    font-family: 'SofiaSans', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: initial;
}

.fic {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

body {
    margin: 0;
    background-color: #f8f8f8;
}

/* header {
    /* background-image: url("/Assets/websote\ header\ EDT.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
} */

header .head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

header .logo {
    width: 100%;

}

header h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #90d484;
    text-shadow: 0 1px 5px #2c4f007d;
}

.Titr {
    font-size: 2.25rem;
    color: #ff9100;
    padding: 15px 0;
}

.Titr * {
    font-family: 'ARIALNB';
    font-weight: 700;
}

.Titr b {
    margin-right: 40px;
    color: #027a08;
}


.Category {
    display: flex;
    width: 100%;
    height: 256px;
    margin-top: 20px;
    box-shadow: 0 3px 12px 0px #87878724;
    border-radius: 10px;
    background-color: #6cff00;
    overflow: hidden;
}

.Category .secTitle {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Category .secTitle:hover::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff5;
    z-index: 2;
}

.Category .secTitle:hover .Title {
    transform: scale(0.8);
}

.Category .Title {
    padding: 10px;
    font-size: 2.5rem;
    width: 270px;
    min-width: 270px;
    color: #027a08;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    position: relative;
    transition: all 200ms;
}

.Category .Title .t {
    font-family: 'GLSNECB';
    display: none;
}


.Category .Title img {
    width: 100%;
    max-width: 186px;
}

.Category .body {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* background-color: #98FB9850; */
    background-color: #fff;
}

.Category .body .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: #fccf98b3;
    backdrop-filter: blur(2px);
    font-size: 1.5rem;
    font-weight: 500;
    color: #027a08;
    align-items: center;
    justify-content: center;
    text-align: justify;
    text-shadow: 0 0 10px #ffffff61;
    display: none;
}

.Category .body .content .text {
    display: none;
}

.Category .body .content.open {
    display: flex;
    animation: showCategoryContent 300ms forwards;
}

.Category .body .content.hide {
    display: flex;
    animation: hideCategoryContent 500ms forwards;
}

@keyframes showCategoryContent {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hideCategoryContent {
    0% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    100% {
        display: none;
    }
}

.Category .body .content.open .text {
    display: flex;
    animation: showCategoryContentText 500ms forwards;
    max-height: 100%;
    overflow: auto;
}

.Category .body .content.hide .text {
    display: flex;
    animation: hideCategoryContentText 300ms forwards;
}

@keyframes showCategoryContentText {
    0% {
        transform: translate(-100%, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes hideCategoryContentText {
    0% {
        transform: translate(0, 0);
    }

    99% {
        transform: translate(-100%, 0);
    }

    100% {
        display: none;
    }
}

.Category .body .images {
    width: 100%;
    height: 100%;
}

.Category .body .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.Information {
    display: flex;
    margin: 50px 0 80px;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.Information .item {
    display: flex;
    background-color: #fff;
    color: #017e08;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 3px 12px 0px #87878724;
    width: calc(33.33% - 27px);
    min-width: 300px;
    overflow: hidden;
    cursor: pointer;
    padding: 10px;
    border: 2px solid #e5e5e5;
    position: relative;
    transition: all 200ms;
}

.Information .item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff5;
    opacity: 0;
    transition: all 200ms;
}

.Information .item:hover {
    transform: scale(1.1);
}

.Information .item:hover::before {
    opacity: 1;
}

.Information .item svg {
    fill: #fdac42;
}

.Information .item img {
    width: 100%;
}



footer {
    background-color: #fdac43;
    margin-top: 20px;
    padding: 30px 0;
    color: #252525;
}

footer .foot {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

footer .text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75rem;
}

footer .code {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

footer .code .title {
    font-size: 1.2rem;
    font-weight: 600;
}

footer .code .qr {
    width: 85px;
    height: 85px;
}

footer .code .qr img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

footer .code .subTitle {
    font-size: 1rem;
    font-weight: 600;
    transition: all 200ms;
}

footer .code .subTitle:hover {
    transform: scale(1.1);
}




.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.modal .overley {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0005;
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal .content {
    z-index: 2;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    width: 600px;
    max-width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal .content.big {
    width: 800px;
}

.modal .content .justImg {
    width: 100%;
    border-radius: 10px;
    outline: 1px solid #b4b4b4;
    outline-offset: -1px;
}

.modal .content .text {
    padding: 30px;
    font-size: 1.4rem;
    color: #444;
    font-weight: 700;
    background-image: url(/Assets/transprant.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 2rem;
}

.modal .content .text a {
    text-decoration: none;
}

.modal .content .text .soctial {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 15px;
}

.modal .content .text .soctial .soc {
    display: flex;
    align-items: center;
    gap: 7px;
}

.modal .content .text .soctial .soc a {
    width: 36px;
    transition: all 200ms;
}

.modal .content .text .soctial .soc a img {
    width: 100%;
}

.modal .content .text .soctial .soc .copyText {
    cursor: pointer;
}

.modal .content .text .soctial .soc img.copyText {
    width: 20px;
    outline: none;
    border-radius: 0;
    visibility: hidden;
}

.modal .content .text .soctial .soc a:hover {
    transform: scale(1.1);
}

.modal .content .text .soctial .soc div.copyText:hover {
    color: #0080ff;
}

.modal .content .text .soctial .soc div.copyText:hover img.copyText {
    visibility: initial;
    color: #0080ff;
}

.modal .content .text .smText {
    font-size: 1.2rem;
    margin-bottom: 7px;
}





#copyMessage {
    background-color: #4caf50;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    display: none;
}








.container {
    max-width: 1084px;
    margin: auto;
    padding: 0 20px;
}


@media (max-width: 1230px) {
    .Category {
        flex-direction: column;
        height: initial;
    }

    .Category .Title {
        width: initial;
    }

    .Category .Title br {
        display: none;
    }
}

@media (max-width: 600px) {
    .Titr {
        font-size: 1.2rem;
    }

    .Titr b {
        margin-right: 20px;
    }

    .Category .Title {
        font-size: 2rem;
        padding: 8px;
        min-width: 100px;
    }

    .Category .Title img {
        display: none;
    }

    .Category .Title .t {
        display: block;
    }

    .Category .body .content {
        padding: 15px;
        font-size: 1.1rem;
    }
}