﻿html {
    width: 100vw;
    height: 100vh;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.IndexBackImage {
    width: 100vw;
    height: 100vh;
    z-index: -3;
    position: absolute;
    top: 0;
    right: 0;
}

#IndexBackOverLay {
    width: 100vw;
    height: 100vh;
    z-index: -2;
    position: absolute;
    top: 0;
    right: 0;
    /*background-color: rgba(0,0,0,.2);*/
}

#IndexparticleOverLay {
    width: 100vw;
    height: 100vh;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
}

#DesktopHeader {
    width: 100%;
    height: 120px;
    position: relative;
}

#IndexHeaderLogo {
    height: 75%;
    position: relative;
    top: 20%;
    right: 50px;
}

#HeaderSocialIcons {
    list-style-type: none;
    position: absolute;
    left: 20px;
    top: 30%;
}

    #HeaderSocialIcons > li {
        display: inline-block;
        margin-right: 20px;
        padding: 4px;
        border-radius: 50%;
        transition-duration: .3s;
        cursor: pointer
    }

        #HeaderSocialIcons > li > i {
            font-size: 25px;
            color: white;
            transition-duration: .3s
        }

        #HeaderSocialIcons > li:hover {
            background-color: white;
        }

            #HeaderSocialIcons > li:hover > i {
                color: black
            }





#indexFooter {
    height: 140px;
    width: 100vw !important;
    position: absolute;
    bottom: 35px;
    left: 0;
    padding: 20px
}

.FooterLinkSectionDesktopFiller {
    height: 120px;
    width: 20%;
    display: flex;
}

.FooterLinkSection {
    height: 120px;
    width: 10%;
    display: flex;
}

    .FooterLinkSection > div {
        margin: auto;
        text-align: center;
        cursor: pointer;
    }

        .FooterLinkSection > div > i {
            color: white;
            display: block;
            font-size: 28px;
            margin-bottom: 4px;
            transition-duration: .5s;
        }

        .FooterLinkSection > div > label {
            color: white;
            font-size: 13px;
            font-weight: bold;
            transition-duration: .5s;
        }

        .FooterLinkSection > div:hover > label {
            text-decoration: underline;
            transform: translateY(-5px)
        }

        .FooterLinkSection > div:hover > i {
            text-decoration: underline;
            transform: translateY(-5px)
        }


.IndexModalWrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.3);
    display: none;
    /*display: flex;*/
    z-index: 100;
}

.IndexModalInner {
    width: 80vw;
    height: 80vh;
    /*background-color: #e4e4e4;*/
    background-color: rgba(255,255,255,.7);
    /*background-color: rgba(228,228,228,.9);*/
    backdrop-filter: blur(5px);
    margin: auto;
    border-radius: 20px;
    position: relative;
}

.IndexModalTitle {
    position: absolute;
    top: -17px;
    right: 70px;
    padding: 8px 70px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    position: relative;
}

.IndexModalCloseBTN {
    font-size: 35px;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 6px;
    color: #212529;
}

.IndexModalSeprator {
    position: absolute;
    top: 45px;
    width: 74vw;
    right: 3vw;
    display: none
}

.IndexModalContent {
    position: absolute;
    top: 70px;
    width: 78vw;
    height: calc(80vh - 80px);
    right: 1vw;
    overflow: auto;
    color: black;
    padding: 10px;
    overflow-x: hidden
}

    .IndexModalContent::-webkit-scrollbar {
        width: 7px;
    }

    .IndexModalContent::-webkit-scrollbar-track {
        background: transparent;
    }

    .IndexModalContent::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 50px
    }

        .IndexModalContent::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.IndexloginImageSectionDesktop {
    height: calc(80vh - 100px);
    position: relative
}

    .IndexloginImageSectionDesktop > img {
        position: absolute;
        width: 100%;
        height: calc(80vh - 100px);
        top: 0;
        border-radius: 0 15px 15px 0;
        left: 0;
    }

.IndexloginFormSection {
    border-radius: 15px 0 0 15px;
    height: calc(80vh - 100px);
    display: flex;
    overflow: auto;
    padding: 25px 15px
}

    .IndexloginFormSection > .IndexLoginForm {
        margin: auto;
        opacity: 1;
        z-index: 1;
        padding: 35px 15px;
        border: 1px solid white;
        border-radius: 5px;
        backdrop-filter: blur(5px);
    }

    .IndexloginFormSection > .IndexRecoveryPasswordForm {
        margin: auto;
        opacity: 1;
        z-index: 1;
        padding: 35px 15px;
        border: 1px solid white;
        border-radius: 5px;
        backdrop-filter: blur(5px);
    }

    .IndexloginFormSection > .IndexRegisterForm {
        margin: auto;
        opacity: 1;
        z-index: 1;
        padding: 35px 15px;
        border: 1px solid white;
        border-radius: 5px;
        backdrop-filter: blur(5px);
    }

    .IndexloginFormSection > div > div {
        position: relative;
        z-index: 5;
    }

    .IndexloginFormSection input {
        margin-bottom: 15px;
        border-radius: 50px;
        /*text-align:center;*/
        width: 100%;
    }

        .IndexloginFormSection input::placeholder {
            color: #8b8c8d;
        }

.IndexLoginSectionFormTitle {
    display: block;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
}

#IndexText {
    /*padding: 10px 15px 10px 15px;*/
    padding: 25px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    position: relative;
    top: 50px;
    width: 50%;
}

    #IndexText > div {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: .2;
        border-radius: 5px;
        border: 3px solid;
    }

    #IndexText > p {
        font-size: 15px;
        text-align: justify;
        margin-bottom:5px;
        min-height:10px;
    }
/*#region LoginForm */
.IndexloginFormSection > .IndexLoginForm input[type="text"] {
    text-align: center;
    font-weight: bold;
    height: 50px;
    letter-spacing: 5px
}

.IndexloginFormSection > .IndexLoginForm input[type="password"] {
    text-align: center;
    font-weight: bold;
    height: 50px;
    letter-spacing: .5rem
}


    .IndexloginFormSection > .IndexLoginForm input[type="password"]::placeholder {
        letter-spacing: 5px
    }

.IndexloginFormSection > .IndexLoginForm input[type="button"] {
    text-align: center;
    height: 50px;
}

#ForgetPasswordLink {
    font-size: 12px;
    margin-bottom: 15px;
    color: #d3d3d3;
    cursor: pointer;
}

    #ForgetPasswordLink > i {
        font-size: 20px;
    }

    #ForgetPasswordLink:hover {
        color: white;
    }

#RegisterNewUserLink {
    display: block;
    text-align: center;
    color: #d3d3d3;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

    #RegisterNewUserLink:hover {
        color: white;
    }

#LoginErrMsg {
    color: red;
    display: block;
    text-align: center;
    text-decoration: underline;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 50px;
    /*padding:5px 0;*/
}
/*#endregion */
/*#region RecoveryPassword */
#RecoveryLoginInfoPhoneNumber {
    letter-spacing: normal;
    text-align: right
}

#RecoveryLoginInfoCode {
    letter-spacing: normal;
    text-align: right
}

#RecoveryLoginInfoSendCodeBTN {
    position: absolute;
    top: 0;
    left: 12px;
    height: 38px;
    font-size: 35px;
    width: 60px;
    text-align: center;
    vertical-align: central;
    border-radius: 50px 0 0 50px;
    border: 2px solid white;
    cursor: pointer;
}

#RegisterLoginLink {
    display: block;
    text-align: center;
    color: #d3d3d3;
    cursor: pointer;
    font-size: 14px;
}

    #RegisterLoginLink:hover {
        color: white;
    }

/*#endregion */

/*#region Register */



#RecoveryLoginInfoLoginLink {
    display: block;
    text-align: center;
    color: #d3d3d3;
    cursor: pointer;
    font-size: 14px;
}

    #RecoveryLoginInfoLoginLink:hover {
        color: white;
    }

#RegisterSendCodeBTN {
    position: absolute;
    top: 0;
    left: 12px;
    height: 38px;
    font-size: 35px;
    width: 60px;
    text-align: center;
    vertical-align: central;
    border-radius: 50px 0 0 50px;
    border: 2px solid white;
    cursor: pointer;
}
/*#endregion */


/*#region FAQ */
.FAQRow {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

    .FAQRow > i {
        font-size: 20px;
        margin-left: 10px;
        margin-right: 5px;
    }

    .FAQRow > label {
        font-size: 17px;
    }

    .FAQRow > p {
        font-size: 15px;
        text-align: justify;
        margin: 0;
        padding: 10px 10% 5px 5px
    }

/*#endregion */

/*#region Contact Us */
#CUMap {
    width: 100%;
    border-radius: 2px
}

#CUMiniText {
    width: 100%;
    font-weight: bold;
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
    text-decoration: underline;
}

#CUTitr {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 23px;
}

#CULargText {
    margin-top: 20px;
    border-radius: 5px;
    padding: 15px;
    text-align: justify;
    font-size: 15px;
}


#CUContactInfo {
    border-radius: 5px;
    padding: 10px;
}

    #CUContactInfo > div {
        position: relative;
        margin: 10px 0 10px 0;
        padding-bottom: 10px;
        border-bottom: 1px dashed black
    }

        #CUContactInfo > div:last-child {
            margin-bottom: 0px;
            border-bottom: none
        }

        #CUContactInfo > div > .ContactType {
            font-size: 14px;
            font-weight: bold;
        }
        #CUContactInfo > div > .ContactType > i{
            font-size: 18px;
            margin-left:12px;
            position:relative;
            top:2px;
        }
        #CUContactInfo > div > .ContactInfo {
            position: absolute;
            left: 0;
            font-size: 14px;
            font-weight: bold;
        }


#CUSocialIcons {
    list-style-type: none;
    position: relative;
    margin: 50px 0 50px 0;
    padding: 0;
    width: 100%;
}

    #CUSocialIcons > li {
        display: inline-block;
        cursor: pointer;
        width: 23%;
        margin: 0;
        padding: 0;
        text-align: center
    }

        #CUSocialIcons > li > i {
            font-size: 30px;
        }

/*#endregion */


/*#region Gallery */
.GalleryImage {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition-duration: .5s;
    box-shadow: -2px 3px 7px 1px #00000096;
    border-radius: 3px;
}

    .GalleryImage:hover {
        box-shadow: none;
    }

    .GalleryImage > img {
        width: 100%;
        z-index: 1;
        border-radius: 3px;
    }

    .GalleryImage > div {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
        top: 0;
        left: 0;
        opacity: .5;
        display: flex;
        display: none;
        border-radius: 3px;
    }

        .GalleryImage > div > label {
            margin: auto;
            z-index: 3;
            font-size: 22px;
            font-weight: bold;
        }

    .GalleryImage > span {
        position: absolute;
        left: -15px;
        top: 0;
        display: block;
        height: 200%;
        width: 5px;
        transform: rotateZ(-45deg);
        z-index: 3;
        transition-timing-function: cubic-bezier(0.84, 0.34, 0.31, 0.67);
        opacity: .8;
    }

    .GalleryImage:hover > div {
        display: flex;
    }

    .GalleryImage:hover > span {
        transition-duration: .5s;
        left: 101%;
        top: -100%;
    }





/*#endregion */

/*#region AboutUs */
#AboutUsRightSection {
    display: flex;
    height: 100%;
}

    #AboutUsRightSection > img {
        width: 100%;
        margin: auto;
    }

#AboutUsLeftSection > p {
    border-radius: 5px;
    padding: 15px;
    text-align: justify;
    font-size: 15px;
}

#AboutUsLeftSection {
    position: relative;
    height: 100%;
}

    #AboutUsLeftSection > div {
        width: 100%;
        position: absolute;
        bottom: 0;
        direction: ltr;
        padding: 10px;
    }

        #AboutUsLeftSection > div > label {
            display: block;
            font-weight: bold;
            text-align: center;
            border-bottom: 1px solid black;
            margin-bottom: 10px;
            padding-bottom: 5px;
        }

        #AboutUsLeftSection > div img {
            width: 100px;
        }
/*#endregion */

/*#region Services */

#ServicesDiscription {
    padding: 10px;
    border-radius: 5px;
    text-align: justify;
}

.ServiceWrapper {
    border: 2px solid;
    padding: 5px 10px;
    border-radius: 5px;
}

.ServiceImageName {
    z-index: 3;
    font-weight: bold;
    margin-bottom: 5px;
    font-size:15px;
}
.ServiceImagePrice {
    z-index: 3;
    margin-top: 10px;
    font-size:12px;
    display:block;
    text-align:center;
    padding:2px 0;
    border-radius:5px;
}

.ServicesImage {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition-duration: .5s;
    box-shadow: -1px 2px 3px 0px #00000096;
    border-radius: 3px;
}

    .ServicesImage:hover {
        box-shadow: none;
    }

    .ServicesImage > img {
        width: 100%;
        z-index: 1;
        border-radius: 3px;
    }




    .ServicesImage > span {
        position: absolute;
        left: -15px;
        top: 0;
        display: block;
        height: 200%;
        width: 5px;
        transform: rotateZ(-45deg);
        z-index: 3;
        transition-timing-function: cubic-bezier(0.84, 0.34, 0.31, 0.67);
        opacity: .8;
    }

    .ServicesImage:hover > span {
        transition-duration: .5s;
        left: 101%;
        top: -100%;
    }









/*#endregion */
@media screen and (max-width: 768px) {
    #IndexText {
        padding: 15px;
        top: 10px;
        width: 100%;
    }

        #IndexText > h1 {
            font-size: 15px;
            text-align: justify
        }

    .IndexloginFormSection {
        border-radius: 15px 15px 15px 15px;
        height: calc(100vh - 90px);
        position: absolute;
        top: 0;
        left: 0;
    }

    #AboutUsRightSection {
        height: auto;
    }

    #AboutUsLeftSection {
        position: relative;
        height: auto;
    }

        #AboutUsLeftSection > div {
            position: relative;
            margin-bottom: 50px;
        }

    .IndexloginImageMobile {
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 15px 15px 15px 15px;
        width: 100%;
        height: calc(100vh - 90px);
        opacity: .5;
        z-index: 0;
    }


    #IndexHeaderLogo {
        height: 50%;
        position: relative;
        top: 20%;
        right: 30px;
    }

    #HeaderSocialIcons {
        list-style-type: none;
        position: absolute;
        left: 7px;
        top: 20%;
        padding-left: 0px;
    }

        #HeaderSocialIcons > li > i {
            font-size: 20px;
        }

    #indexFooter {
        height: 100px;
        width: 100vw;
    }

    .FooterLinkSection {
        width: 16.5%;
        height: 100px;
    }

        .FooterLinkSection > div > i {
            font-size: 20px;
        }

        .FooterLinkSection > div > label {
            font-size: 11px;
            font-weight: bold;
        }

    .mobilehide {
        display: none;
    }

    .IndexModalInner {
        width: 100vw;
        height: 100vh;
        border-radius: 5px;
        background-color: rgba(228,228,228,.8);
        backdrop-filter: blur(5px);
    }

    .IndexModalTitle {
        top: 10px;
        right: 25px;
        width: 50vw;
        font-size: 14px;
        /*transform:none*/
    }

    .IndexModalCloseBTN {
        font-size: 35px;
        left: 10px;
        top: 3px;
    }

    .IndexModalSeprator {
        width: 94vw;
        right: 3vw;
    }

    .IndexModalContent {
        width: 98vw;
        height: calc(100vh - 90px);
        right: 1vw;
        overflow: auto;
        overflow-x: hidden
    }
}

@media screen and (min-width: 1200px) {
    .IndexModalInner {
        width: 50vw;
        height: 70vh;
    }

    .IndexModalSeprator {
        width: 44vw;
        right: 3vw;
    }

    .IndexModalContent {
        width: 48vw;
        height: calc(70vh - 80px);
    }

    .IndexloginImageSectionDesktop {
        height: calc(70vh - 100px);
    }

        .IndexloginImageSectionDesktop > img {
            height: calc(70vh - 100px);
            border-radius: 0 15px 15px 0;
        }

    .IndexloginFormSection {
        border-radius: 15px 0 0 15px;
        height: calc(70vh - 100px);
    }
}
