@import "Sprite/prodevSoc.x24.sprite.css";

* {
    box-sizing: border-box;
}

.tempBox {
    width: 300px;
    height: 100px;
    background-color: #333;
    margin: auto;
    margin-top: 20px;
}

/*container {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    container tcBox {
        width: 550px;
        height: 70px;
        margin-top: 10px;
        display: flex;
    }

        container tcBox div {
            display: flex;
            height: 100%;
        }

            container tcBox div:nth-of-type(2) {
                background-color: #181818;
                width: 80%;
                color: #ccc;
                opacity: 0;
                transform: translateX(-110%);
                align-items: center;
                text-align: left;
                font-size: 1.2rem;
                line-height: 1.7rem;
                padding-left: 20px;
            }

    container.featActiveWrap tcBox div.check {
        width: 20%;
        align-items: center;
        justify-content: center;
    }

        container.featActiveWrap tcBox div.check svg {
            width: 80%;
            height: 80%;
        }

            container.featActiveWrap tcBox div.check svg .animChkOutline {
                stroke: #6bc703;
                stroke-width: 2px;
                stroke-dasharray: 0, 1000;
                transform-origin: center;
                animation: checkmarkOutlineAnim 1s 0.5s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
            }

            container.featActiveWrap tcBox div.check svg .animChkChkmark {
                stroke: green;
                stroke-width: 3px;
                stroke-dasharray: 0, 100;
                animation: checkmarkAnim 2.2s 1.3s cubic-bezier(0.46, 0.03, 0.52, 0.96) forwards;
            }

    container.featActiveWrap tcBox div:nth-of-type(2) {
        background-color: #181818;
        width: 80%;
        color: #ccc;
        opacity: 0;
        transform: translateX(-110%);
        align-items: center;
        text-align: left;
        font-size: 1.2rem;
        line-height: 1.7rem;
        padding: 0 20px;
        animation: wobble 4s ease 1;
        animation-fill-mode: forwards;
    }

    container.featActiveWrap tcBox:nth-child(2) div.check > svg > * {
        animation-delay: 6s;
    }

    container.featActiveWrap tcBox:nth-child(2) div:nth-of-type(2) {
        animation-delay: 3s;
    }

    container.featActiveWrap tcBox:nth-child(3) div.check > svg > * {
        animation-delay: 8s;
    }

    container.featActiveWrap tcBox:nth-child(3) div:nth-of-type(2) {
        animation-delay: 5s;
    }

    container.featActiveWrap tcBox:nth-child(4) div.check > svg > * {
        animation-delay: 10s;
    }

    container.featActiveWrap tcBox:nth-child(4) div:nth-of-type(2) {
        animation-delay: 7s;
    }*/

@keyframes wobble {
    0% {
        transform: translateX(-110%);
        opacity: 0;
    }

    40% {
        transform: translateX(20%);
        opacity: 0.5;
    }

    71% {
        transform: translateX(-5%);
        opacity: 1;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes checkmarkOutlineAnim {
    0% {
        opacity: 1;
        transform: rotate(180deg);
    }

    100% {
        stroke-dasharray: 130, 1000;
        transform: rotate(0);
    }
}

@keyframes checkmarkFillBgAnim {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes checkmarkAnim {
    100% {
        stroke-dasharray: 100, 100;
    }
}



@media (max-width: 952px) {
    .p1HeaderMenuBar {
        height: 100vh;
    }

    .gap1 {
        width: 200px;
    }

    .menu[data-vis=false] {
        display: none;
    }

    .menu[data-vis=true] {
        flex-direction: column;
        background-color: rgba(12, 8, 12, 0.8);
        width: 200px;
        height: 100%;
        right: 0;
        position: fixed;
        transition: all 0.3s;
        padding: 100px 0 0 0;
    }

    .menu li:hover > a {
        border: none;
    }

    .menu .submenu li:hover a {
        border-right: 3px solid orange;
    }

    .submenu {
        left: -170px;
        top: 0;
    }

    .iXMenuContainer {
        display: block;
        height: 100%;
        right: 2rem;
        cursor: pointer;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    .gap1 {
        width: 160px;
    }
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: serif;
    font-family: montserrat; /*montserrat;  - calibri, montserrat, sans-serif; */
    line-height: 1.6rem;
    min-height: 100vh;
    min-width: 572px;
}

h2 {
    text-align: center;
    align-self: center;
}

/*.pnlHead {
    height: 140px;
    display: flex;
    flex-direction: row;
    background-color: #2d2d2d;
    background-image: url(../images/b1.jpg);
    background-repeat: repeat-x;
    border-bottom: 5px solid #F9F9F9;*/ /*#b181a0;*/
    /*position: relative;
}

    .pnlHead > .pnlLogo {
        position: absolute;
        left: 0px;
        top: 0;
        background-color: rgba(29, 29, 29, 0.8);
        height: 150px;
        width: 300px;
        z-index: 2100;
        clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
    }

        .pnlHead > .pnlLogo img {
            margin-left: 60px;
            margin-top: 8px;
            width: 135px;
        }

    .pnlHead > .pnlMenu {
        display: flex;
        flex: 1;
        height: 60px;
        margin-top: 60px;
        margin-left: 50px;
    }*/

/*    SectBoard additional setup*/

.sectBoard > .sectNews {
    grid-row: 3;
    margin-top: -60px;
}

.sectFeat {
    display: grid;
    grid-template-rows: 360px 100px;
}

    .sectFeat > .main {
        background-color: black;
        background: url(../images/BGFull4.jpg);
        background-size: cover;
        grid-row: 1;
        padding: 0 50px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 0.2rem;
        align-items: center;
    }

        .sectFeat > .main > item {
            color: #005c72;
            display: block;
            text-align: center;
            height: 100%;
            opacity: 0.92;
            padding: 0;
        }

            .sectFeat > .main > item:hover {
                border-left: #ffaf00 1px solid;
                border-right: #ffaf00 1px solid;
                cursor: pointer;
                height: 97%;
            }

            .sectFeat > .main > item img {
                width: 100%;
            }

    .sectFeat > .shad {
        grid-row: 2;
        margin-top: 25px;
        background-image: url(../images/shadw.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }



/*.sectShow {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px;
}

    .sectShow .item {
        background-color: #f0f0f0;
        border: 2px solid #ccc;
        border-radius: 16px;
        padding: 8px;
    }

        .sectShow .item .image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

            .sectShow .item .image-container img {
                display: block;
                width: 100%;
                height: auto;
                border-radius: 12px;
            }

            .sectShow .item .image-container .hover-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(4px);
                opacity: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.5rem;
                text-transform: uppercase;
                font-weight: bold;
                text-align: center;
                transition: opacity 0.3s ease;
            }

            .sectShow .item .image-container:hover {
                transform: scale(1.05);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
                cursor: pointer;
            }

                .sectShow .item .image-container:hover .hover-overlay {
                    opacity: 1;
                }
*/
.pnlFeatures {
    color: ivory;
    height: 300px;
    background-color: rgb(177, 129, 160);
    padding: 0 50px;
    display: flex;
}

    .pnlFeatures div {
        width: 300px;
        height: 200px;
        margin: 15px;
        flex-grow: 1;
        padding: 20px;
    }

        .pnlFeatures div:nth-of-type(1) {
            color: #e3c3e6;
        }

.pnlFeatures {
    background-color: #456777;
}

/*.pnlZ {
    color: #F9F9F9;
    height: 310px;
    background-color: #4B253E;
    padding: 0 50px;
    display: flex;
}

    .pnlZ div {
        width: 22%;
        height: 275px;
        margin: 15px;
        flex-grow: 1;
        padding: 20px;
        border-radius: 7px;
        border: solid 1px #E3C3E6;
    }

        .pnlZ div:nth-child(1), .pnlZ div:nth-child(3) {
            color: #e3c3e6;
        }*/


@keyframes BoardPartAnim {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0.6;
    }
}

@keyframes BoardPartAnim2 {
    0% {
        right: -600px;
    }

    50% {
        right: -600px;
    }

    100% {
        right: 0;
    }
}

@keyframes BoardPartAnim3 {
    0% {
        bottom: -400px;
    }

    50% {
        bottom: -400px;
    }

    100% {
        bottom: 0;
    }
}

.p1Container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #d3d3d3; /* Light grey background color */
    border-radius: 10px;
}

    .p1Container .circle {
        text-align: center;
        margin: 10px;
        width: 240px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

        .p1Container .circle .mask {
            width: 100%;
            height: 240px;
            background-color: grey;
            border-radius: 50%;
            border: 4px solid #2e2e2e;
            background-size: cover;
            background-position: center;
        }

        .p1Container .circle:nth-of-type(1) .mask {
            background-image: url("../images/b1.jpg");
        }

        .p1Container .circle:nth-of-type(2) .mask {
            background-image: url("../images/b2.jpg");
        }

        .p1Container .circle:nth-of-type(3) .mask {
            background-image: url("../images/b3.jpg");
        }

        .p1Container .circle:nth-of-type(4) .mask {
            background-image: url("../images/b4.jpg");
        }

.text-container {
    height: 60px; /* Fixed height for text container */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
}

/*p {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  word-wrap: break-word;
  font-weight: 700;
}*/

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .circle {
        margin: 20px 0;
        width: auto; /* Adjust width for mobile */
    }

    .mask {
        width: 100%; /* Adjust size for mobile */
        height: 150px; /* Adjust size for mobile */
    }

    .text-container {
        height: auto; /* Adjust height for mobile */
    }

    p {
        font-size: 16px; /* Adjust font size for mobile */
    }
}

.p1Credits {
    display: flex;
    justify-content: space-between;
    padding: 0 150px 10px;
    cursor: pointer;
    gap: 12px;
}

    .p1Credits div {
        width: 340px;
        border-radius: 20px;
    }

        .p1Credits div img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 20px;
            border: #4B253E 2px solid;
        }
/*# sourceMappingURL=site6.css.map */


/*============ form ===============
=================================*/


section.c1Form {
    @import url(https://fonts.googleapis.com/css?family=Ubuntu);
    font-family: "Ubuntu", sans-serif;
    background: #333;
    padding: 25px 0;
    /* STYLE FORM INPUT */
    /* FORM LABEL STYLE- */
    /* LABEL ACTIVE STATE */
    /* INPUT DEFAULT COLOR */
    /* FROM BAR STYLE*/
    /* active state */
    /*HIGHLIGHT STYLE*/
    /* HIGHLIGHT ACTIVE STYLE */
    /* HIGHLIGHTER ANIMATION*/
}

    section.c1Form .container {
        width: 350px;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    section.c1Form h1 {
        font-size: 1.2em;
        padding: 10px;
        text-align: center;
        color: #fff;
    }

    section.c1Form .form-group {
        position: relative;
        margin-top: 35px;
        margin-bottom: 20px;
    }

        section.c1Form .form-group input {
            color: #F1E9D2;
        }

        section.c1Form .form-group textarea {
            color: #F1E9D2;
        }

    section.c1Form .captchaBox input {
        color: #F1E9D2;
    }

    section.c1Form .input-group {
        position: relative;
    }

    section.c1Form .form-control {
        display: block;
        height: 36px;
        width: 100%;
        border: none;
        border-radius: 0 !important;
        font-size: 16px;
        font-weight: 300;
        padding: 0;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    section.c1Form .input-group .form-control {
        position: relative;
        z-index: inherit;
        float: inherit;
        width: 100%;
        margin-bottom: 0;
    }

    section.c1Form .form-control:focus {
        border-color: #7c7c7c;
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    section.c1Form label {
        position: absolute;
        top: -18px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
        font-weight: 300;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    section.c1Form .validation-message {
        color: #DA5D2B;
    }

    section.c1Form.ir label {
        font-size: 15px;
        font-weight: 500;
    }

    section.c1Form .form-horizontal .control-label {
        position: relative;
        top: 0;
        margin-bottom: 0;
    }

    section.c1Form .float-label {
        left: 0;
        top: 7px;
        font-size: 16px;
        pointer-events: none;
    }

        section.c1Form .float-label.ir {
            right: 0;
            top: 7px;
            font-size: 16px;
            pointer-events: none;
        }

    section.c1Form .form-control:focus ~ .float-label,
    section.c1Form .form-control:valid ~ .float-label {
        top: -18px;
        font-size: 12px;
    }

    section.c1Form .form-control:focus ~ label {
        color: #e5536b;
    }

    section.c1Form label ~ .form-bar:before,
    section.c1Form label ~ .form-bar:after {
        background: #e5536b;
    }

    section.c1Form .form-bar {
        position: relative;
        display: block;
        width: 100%;
    }

        section.c1Form .form-bar:before,
        section.c1Form .form-bar:after {
            content: "";
            height: 1px;
            width: 0;
            bottom: 0;
            position: absolute;
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        section.c1Form .form-bar:before {
            left: 50%;
        }

        section.c1Form .form-bar:after {
            right: 50%;
        }

    section.c1Form .form-control:focus ~ .form-bar:before,
    section.c1Form .form-control:focus ~ .form-bar:after {
        width: 50%;
    }

    section.c1Form .form-highlight {
        position: absolute;
        height: 60%;
        width: 60px;
        top: 25%;
        left: 0;
        pointer-events: none;
        opacity: 0.4;
    }

    section.c1Form .form-control:focus ~ .form-highlight {
        -webkit-animation: inputHighlighter 0.3s ease;
        animation: inputHighlighter 0.3s ease;
    }

@-webkit-keyframes inputHighlighter {
    from {
        background: #e5536b;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #e5536b;
    }

    to {
        width: 0;
        background: transparent;
    }
}

section.c1Form .captchaBox input[type=text] {
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

section.c1Form .captchaBox button {
    margin-top: 10px;
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    cursor: pointer;
}

section.c1Form .captchaBox canvas {
    /*prevent interaction with the canvas*/
    pointer-events: none;
}

.btnX2 {
    border-radius: 6px;
    font-family: Arial;
    color: #ffffff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.65);
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    margin: 30px;
    display: block;
}

    .btnX2:hover {
        background: #fca63c;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#fca63c), to(#eb7012));
        background-image: linear-gradient(to bottom, #fca63c, #eb7012);
        text-decoration: none;
    }


.divider1 {
    margin: 50px 100px;
    color: #333333;
}


/*-------------*/
/*Login*/
/*.login-panel {
    position: absolute;
    top: 10px;
    right: 60px;
    z-index: 2100;
}



.login-panel {
    width: 220px;
    height: 115px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 1px solid #80808075;
    padding: 5px;
    border-radius: 10px;
}


input.login-input {
    background: transparent;
    border: none;
    border-color: transparent;
    border-bottom: 1px solid #808080; 
}

input:focus {
    outline: none;
}

.login-input {
    width: 90%;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: #fff;*/ /* Entered text in white */
/*}

    .login-input::-moz-placeholder {
        color: #808080;*/ /* Placeholder text in #808080 */
    /*}

    .login-input::placeholder {
        color: #808080;*/ /* Placeholder text in #808080 */
    /*}

    .login-input:focus {
        outline: none;
        border-bottom-color: orange;*/ /* Optionally change color on focus */
    /*}

.btn-login {
    width: 120px;
    padding: 0.4rem;
    font-size: 0.85rem;
    background-color: orange;
    color: #fff;
    border: none;
    border-radius: 4px;
    margin-top: 0.5rem;*/ /* Space between password box and the button */
    /*cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-login:hover {
    background-color: darkorange;
}*/

