﻿body {
    overflow-x: hidden;
}
::placeholder {
    color: #ddd;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #ddd;
}

@font-face {
    font-family: 'ComicKings';
    src: url('Assets/Font/Comic Kings.ttf') format('truetype');
}
@font-face {
    font-family: 'Bubble';
    src: url('Assets/Font/Bubblegum.ttf') format('truetype');
}
@font-face {
    font-family: 'HeyCommic';
    src: url('Assets/Font/Hey Comic.ttf') format('truetype');
}

* {
    font-family: ComicKings,FontAwesome;
    letter-spacing: 3px;
    line-height: 35px;
    color: #464e51;
}
h1, h2 {
    color: #46a7cd;
}
p, span, input, li {
    font-family: HeyCommic,fontAwesome;
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
.mission {
    color: #b9fb19;
    font-family: ComicKings,fontAwesome;
    text-align: center;
    font-size: 50px;
    margin-top:9vh;
    text-shadow: -3px 1px #333;
}
.border-boxed {
    border: 3px solid #000000;
    padding: 20px;
    border-radius: 50px;
    margin: 15px 0;
}
.bottom-text {
    text-align: center;
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    margin: auto;
}
.bottom-text h2{
    color:#000;
}
.about-us-text {
    text-align: center;
    position:relative;
    z-index:1;
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    margin: auto;
}
    .about-us-text h2 {
        font-size: 50px;
        margin-bottom: 30px;
        color: #ff860a;
    }
    .about-us-text a {
        margin-top:20px;
        border: 2px solid #fff;
        position: relative;
        top: 70px;
        padding: 20px 30px;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        color: #fff;
        cursor: pointer;
        font-size:30px;
        text-decoration: none;
        -moz-transition: all .5s ease;
        ;
        -o-transition: all .5s ease;
        ;
        -webkit-transition: all .5s ease;
        ;
        transition: all .5s ease;
        ;
    }
    .about-us-text a:hover {
        background-color:#fff;
        color:#000;
    }
    .about-us-text p {
        font-size: 25px;
        color: #fff;
    }
.mission-p {
    text-align: center;
    font-size: 30px;
    margin: auto;
    color: #ffffff;
    text-shadow: 0 2px BLACK;
}
.role-not-exist {
    color: #ab6224;
    font-size: 18px;
}
.role-not-exist i {
    color: #ab6224;
    font-size: 25px;
}
p a {
    color: #ab6224;
}

.header {
    position: absolute;
    background-color: rgba(255,255,255,.25);
    width: 100%;
}

.menu-items {
    margin: 0;
    padding: 0 20px;
    padding-left: 160px;
    box-shadow:none;
}

    .menu-items li {
        display: inline-block;
        font-family: sans-serif;
        padding: 30px 20px 30px 30px;
        font-size: 30px;
        color: #fff;
        transition: all .3s ease;
    }

        .menu-items li a {
            text-decoration: none;
            color: unset;
            text-shadow: -3px 1px #333;
            display: block
        }

        .menu-items li:hover {
            cursor: pointer;
            color: #333;
        }

.logo {
    position: absolute;
    width: 180px;
    left: 0;
    top: 5px;
}

.banner {
    width: 100vw;
    height: 100vh;
    background-image: url(/Assets/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-responsive {
    display: none;
}

.menu-back {
    position: absolute;
    background: linear-gradient(to bottom, #46a7cd, #6badc7, transparent);
    width: 100%;
    height: 250px;
    top: 0px;
    z-index: -1;
}

main {
    padding: 220px 50px 20px 50px;
}

h1 {
    font-size: 50px;
}

p {
    font-size: 22px;
}


@keyframes moveBackground {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes cardRotate {
    0% {
        -moz-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
        -o-transform: rotate(-2deg);
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }

    50% {
        -moz-transform: rotate(2deg);
        -ms-transform: rotate(2deg);
        -o-transform: rotate(2deg);
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }

    100% {
        -moz-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
        -o-transform: rotate(-2deg);
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }
}

@media only screen and (max-width: 500px) {

    .waterfall {
        height: 70vh !important;
    }
}



.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: relative;
}

.menu-items {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

    .menu-items li ul {
        display: none;
        position: absolute;
        list-style: none;
        padding: 0.5rem;
    }

    .menu-items li:hover ul {
        display: block;
    }

.hamburger {
    position: absolute;
    right: 25px;
    top: 20px;
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    h1{
        font-size:27px;
        line-height:40px;
    }
    h2{
        font-size:23px;
    }
    main{
        padding-left:10px;
        padding-right:10px;
    }
    .nav{
        height:80px;
        padding:0;
    }
    .language {
        position: absolute;
        right: 70px;
    }
    .has-sub-menu ul {
        left: -20px !important;
        top: 54px !important;
        width: 110% !important;
        background-color: rgba(0,0,0,.4) !important;
    }
    .menu-items {
        padding:0;
        flex-direction: column;
        width: 100%;
        z-index: 9;
        top: 80px;
        position: absolute;
        right: 0;
        background-color:rgba(0,0,0,.4);
        display: none;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
        .menu-items li {
            padding: 10px 20px 10px 10px;
        }

        .menu-items.show {
            display: flex;
        }

    .hamburger {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .banner {
        display: none;
    }
    .logo{
        max-width:120px;
    }

    .banner-responsive {
        display: block;
        width: 100vw;
        height: 100vh;
        background-image: url(/Assets/bbb.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .waterfall img:first-of-type {
        width: 95vw !important;
        border-radius: 25px !important;
    }
}

.images-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    max-width: 100vw;
    min-width: 50vw;
    margin: auto;
    z-index: 9;
}

.main-banner {
    position: relative;
    z-index: 9;
    width: 100vw;
    height: 100vh;
    background-image: url(/Assets/Images/sky.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}




.images-wrapper img {
    width: 45vw;
    background-image: url(/Assets/Images/w2.png);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -25vh;
    -moz-animation: cardRotate 1s infinite ease;
    -o-animation: cardRotate 1s infinite ease;
    -webkit-animation: cardRotate 1s infinite ease;
    animation: cardRotate 1s infinite ease;
}
.images-wrapper .mobile-apps{
    height:80vh;
    width:auto;
    top:0;
}
.w-1 {
    top: 53% !important;
}

.w-2 {
    top: 100% !important;
}

.w-3 {
    top: 150% !important;
}

.waterfall-end-banner {
    position: relative;
    width: 100vw;
    height: 135vh;
    background-image: url(/Assets/Images/waterfall_end.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-image {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url(/Assets/Images/footer.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.undergrand-image {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url(/Assets/Images/underground.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    margin-bottom:40vh;
}

.on-scroll-animation {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
    margin: auto;
    width: 200px;
    top: 0;
}





.waterfall {
    position: relative;
    width: 100vw;
    height: 136vh;
    background-image: url("/Assets/Images/waterfall.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.waterfall-loop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 136vh;
    right: 0;
    background: url("/Assets/Images/waterfall_line.png") repeat-y;
    background-size: cover;
    background-position: center 0;
    -moz-animation: waterfallloop 2s infinite linear;
    -webkit-animation: waterfallloop 2s infinite linear;
    -ms-animation: waterfallloop 2s infinite linear;
    -o-animation: waterfallloop 2s infinite linear;
}


@keyframes splash {
    to {
        box-shadow: 8vmin 0 0 2vmin white, 14vmin 0 0 0.5vmin white, 20vmin 0 0 3vmin white, 26vmin 0 0 0vmin white, 32vmin 0 0 1vmin white;
    }
}

@-moz-keyframes waterfallloop {
    0% {
        background-position: center 0;
    }
    /* the end position y must equal bitmap's height */
    50%% {
        background-position: center 1299px;
    }
}

@-webkit-keyframes waterfallloop {
    0% {
        background-position: center 0;
    }

    100% {
        background-position: center 1299px;
    }
}

@-ms-keyframes waterfallloop {
    0% {
        background-position: center 0;
    }

    100% {
        background-position: center 1299px;
    }
}

@-o-keyframes waterfallloop {
    0% {
        background-position: center 0;
    }

    100% {
        background-position: center 1299px;
    }
}

.owl-dots {
    text-align: center;
}
.owl-item p{
    line-height:25px;
}

.owl-dot {
    background-color: #ccc !important;
    margin: 0 5px !important;
    width: 10px !important;
    height: 10px !important;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

    .owl-dot.active {
        background-color: #46a7cd !important;
        width: 10px !important;
        height: 10px !important;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
    }



.backwrap {
    background-color: #fff;
    position: relative;
    width: 100%;
    height: 245vh;
    left: 0;
    top: 0;
    z-index: -5;
}

/* Shapes & Animation
*/

.back-shapes {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .back-shapes img {
        position: absolute;
        width: 1.5%;
    }


.floating {
    position: absolute;
    animation-name: floating;
    -webkit-animation-name: floating;
    animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    &.circle

{
    display: inline-block;
    filter: invert(38%) sepia(94%) saturate(7495%) hue-rotate(349deg) brightness(106%) contrast(109%);
    width: 39px;
    height: 39px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAYAAACMo1E1AAAABHNCSVQICAgIfAhkiAAAA0pJREFUWIXdmL1O40AQx8fZ5BxQCqRrLqKxqKjAOl0JvMHxBIjHyCu4dGkJ+khpQNa9QeTyZIkihbtYCKWwbC1KFXbtvYJxbrIYMOBD1o20UhDe//x2dnb2w1BKQVut25SQYRhG+Vs1NGLjvToI0yHNwKawFWV7L+yb4AhQFwC6QRB8tyzrxDTN3V6vN2SMfc3zPBVCLFar1d18Pp8eHR2FACCxvQ1UKfVqg8eIMADo+75/kKbphRDiVtUwIcRtmqYXvu8fAEAfdYxafmuC9TzPs5IkuSyK4qEOlG5FUTwkSXLpeZ4FAL06gHXA+mEYnkops1f851LKe6VU/tJHUsosDMNTjOKLgK+CxXE8KopCVDjhWZZNZrPZ2Xg83rdtewcABrZt74zH4/3ZbHaWZdlESskroijiOB69BvgSmBnH8ahq9JzzK8dxLBTvweZqLRdNDwD6juNYnPOrKh0ENJ8DfDbHwjA81SMmpUyiKDoHgO06iU0W0nYURedSykSPIE5xZQ5WCTLP8yw9x5bL5dR13b26yVw1YNd195bL5VQbcIaLhL0IV+ZZkiSXesQQrPtWME2767runh7BJEkuq/LvSdR83z/QywVO5Zf3gmmAX6IoOtem9wHr4Eb09M5mmqYXtCPn/AoAtgCg8xEw4qMDAFv6IknT9AIAzEo4HNWAVn4pJcdV+SQfPgjIHMexaJkRQtwCwIDOzkaHIAiO6WiyLJvUKZbvnN5+lmUT6i8IgmMaiA7ZZpllWSd0310sFr8AIFeo2JShXo76a0P/rPybwhmmae7Sj29ubn4DQN4kGLEc9deG/tfnwo0wc86vSZRz3JIanVI6tbZt7yiyF3POr4Gk0QYcLZBSynvQEvQf5N0ADwtKqcdCT+HotEKe52n5mzE2sG27sWN8ldm23WWMDar8A2DOYYIqIcSC/m80Gn0DmgPNmoH66wChf1UuQBo5tVqt7mjvw8PDH0BWT8PGUH9t6H9dGShcPp/Pp/Tj4XD4EwAYvVk1YajHUH9t6P9vddATtJU7BHZq595ajqjNp5L2nufK6LXyJEyFWnmHIKLtu31pgO27t+qArbvxa4DteyvRAD/9lanV73P/z8tmDVgAaMGb8GfYHwpq7kYvpXclAAAAAElFTkSuQmCC');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

&.square {
    display: inline-block;
    width: 35px;
    filter: invert(22%) sepia(93%) saturate(6000%) hue-rotate(245deg) brightness(85%) contrast(105%);
    height: 35px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAUNJREFUWIXt2DFugzAUBuD/EVMGJMyQsZ3aA+QQ3ZjrIzKQgYWD5ACVOjRjBkBiSHF4XRJEIzmBCgiD/83Ysj9ZxrJNzIylRHQLREQAaMbxmTuz0WKUUk9Zlj0XRbHSWk8OEkKwlPKklNonSfLTYojISdP0JYqiz6kR16nr+o2Ivpi5cS4fy7JczQ25Hte51XDuCFOF1vpQVdWOiEb73ZiZfN/fCCHWgzBVVe3CMPwAcAQwBogAeHmeb6WU74Mw5xk5jozBrZk2Yjr5sxf8W0L3d4tFLWCLMcViTLEYUyzGFIsxxWJMsRhTFoXpc7iiPgejPv3ca2DEMDMB8C7FkTDeud9hGN/3N3meb6e4HQzGCCHWplP8VFnUAm4xQRCcHgHojisAgJkbpdS367qvc79CxHG8Z+YGAKh7JXr0+wwt6eXqFzNGfAM6wJFPAAAAAElFTkSuQmCC');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .5;
}

&.triangle {
    display: inline-block;
    filter: invert(25%) sepia(100%) saturate(3500%) hue-rotate(90deg) brightness(95%) contrast(105%);
    width: 35px;
    height: 35px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAAjCAYAAAAJ+yOQAAAABHNCSVQICAgIfAhkiAAABARJREFUWIXNVj2IGlsU/sa/3XWDRWCICyFNTF4Rq7AQSJUmiKRN2rAuBlKlM03gRV4lj9hYmSLwigQMCA9iZcAmNrIpDLurNiNKoiiODE+HmXXezNz7ird3ubvPdf17cQ9MMXfunPud75zvniNQSnHZzbFqANPYUkEKguDY3t52C4Kw3OAppUt5ADjC4bBP1/U/w+GwD4Bjab6XBFAAsNZqtV5RSmmr1XoFYA2AcJlAOlOp1E3btgeUUmrb9iCVSt0E4LwUII9Z3FAU5T3lTFGU9wA2lsHmMkC6isXiA0qpTU+bXSwWHwBwrRQk/r0dNnVd/0rHmK7rXwFsLiqiRUF66vX6cx7Y0dGRxL/X6/XnADwrAQnAEYvF/KZpdhkgwzB+7O7u/mIYxg+2ZppmNxaL+Rdhc16AAoD1Xq+X4lmr1Wo7ADZrtdoOv97r9VIA1ucV0bwgnblc7i4hxGBANE0rHtefE8CmpmlF9o0QYuRyubvzXklzpRmAV1XVzxwIq1Ao3GdKBuAqFAr3CSEW26Oq6mcA3nnSPg9Id6VSecKns9/vv+PTycqh3++/4/dVKpUnANz/K0gAjlAodNUwjBMFW5alJBKJG2cZAuBIJBI3LMtS2F7DMKRQKHR1VjZnFctau91+zbPTbDZj510xADzNZjPG72+3269n7esziSWdTt+ybVtlB45Go0ogEDh34gHgCAQCvtFoVGH/2LatptPpW7OIaBYWNxRF+cizUi6XH13U9gC4yuXyI/4/RVE+ztLXpwXpKpVKDymlhB00GAw+TXMQC3AwGHzicJJSqfRw2r4+lVhEUbyi6/q3kxMIOcpkMsFpUwbAmclkgoSQI+ZD1/VvoihemUZE0xzgaTQaL/h0dTqdN7MUPxNdp9N5w/tpNBovpunrF7IYj8evW5YlM8emabaj0ei1ma8RwBGNRq+ZptlmvizLkuPx+PWLfF0U/bosy2/56CVJejbvVAPAI0nSM96fLMtvL+rrE8WSz+fvEUJM5lDTtL1F5kM2f2qatsd8EkLMfD5/b5KIJjpTVfULF/RSJu1xk7yqql8mBX+eI3e1Wn3Kp0VRlA+z3G0TQLI79wPvv1qtPj2vr49lMRKJiIZhfD+h0LaHyWTyNgDP8Si26ONJJpO3bdsesjMMw/geiUTEcWyyqQUAIAiCAMDT6XR+8/v9L9m6LMvZw8PDP3w+n4kl2XA4dAeDwR1RFB+ztW63+/vW1tavAP6mPLAzLDqz2ewdQohOV2CEED2bzd7BmSbxn1o5075+uo1rt6dYlCQpvEqAzCRJCvNsurgyIfv7+3sHBwcBXdcdlmUJy6q/ac3lclGv10sopX8BIGx9nHB+OrgxRikH7BTIy2r/AAlu0j5Iy8AaAAAAAElFTkSuQmCC');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

&.cross {
    display: inline-block;
    width: 35px;
    filter: invert(65%) sepia(100%) saturate(3500%) hue-rotate(190deg) brightness(100%) contrast(100%);
    height: 35px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAlCAYAAADFniADAAAABHNCSVQICAgIfAhkiAAAAgJJREFUWIXN2MFO4zAQBuDfbSpaiUOvvTRS3w6EoEChwAvsZS9IvAnwOK5rV5V7Se8cNrOHNVXWpMk4caEj5dDInvkySeMkgohwbNH5aUBZJP4OIYQA0HU//9ABWllXo+MN7gDobzab+/V6fQbgxCWIDTqx1k6ttdPSGkQEBxUABsaYJ/oXuZTyGkAfgPgc12ZzNfpa6zkR5USUa63nfo3ihMRae0f/Ry6lvIkBKwHtalhrZwCSz7H+hU5u23V7Mpn8llKel7Y58JRpra/G4/EvB9wfjCMhIsoXi8Vtk47V5a08fZwEy+UyCNYE9AUVE9YUVIpiwmZVsDagvag2sLagShQTdlcsEANUiwqEJTFALBSzA/cAhjFAbBQHlmXZWwxQEIoB86MRKBhVgA2UUg8VsFwp9QBgEApqhHKwLoBhlmXvZaLtdvsKYAig2yj/ATs1/5ZOhV5T/n0sOorx73sv298EFgXk/mV771N1a2UwKmDpqLyjh8BigVhrH/uxJxaIO48Diwrizq97tI4O4uapeks6CKgt7GAgbl6l1NTPW5ycWGtnMUFc2Gq1ukTFy6gfZIx5TNP0GcAHuQqh4eZ9pGn6bIx5hPfC2+v1Tv0J+46mdYc4HTPGPMFbuEXx4AtfRC4AYDQavbTpUFl4NUShRr4b49c7hu9TX1DHEEf5efEvSKr5qd+QqggAAAAASUVORK5CYII=');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .5;
}

}

@keyframes floating {
    0% {
        transform: translateY(0%) rotate(-55deg);
    }

    50% {
        transform: translateY(300%) rotate(55deg);
    }

    100% {
        transform: translateY(0%) rotate(-55deg);
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(300%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

.note {
    font-size: 0.375em;
    font-weight: bold;
    text-transform: uppercase;
    color: #6426a7;
}

#search {
    align-items: center;
    border: 8px solid #1065ab;
    background: #fff;
    border-radius: 20px 50px 50px 20px;
    display: flex;
    justify-content: space-between;
    margin: 0.5em 0;
    width: 80%;
    padding: 0.5em 0.5em 0.5em 1em;
    transition: all 0.5s;
    position: relative;
    height: 100px;
    top: 8vh;
    -moz-box-shadow: 0 0 15px #00000029;
    -webkit-box-shadow: 0 0 15px #00000029;
    box-shadow: 0 0 15px #00000029;
}

    #search:hover, #search:focus {
        background: #fff;
        color: #000;
    }

    #search button,
    #search input {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding-left:55px;
        background: transparent;
        border: 0;
        color: inherit;
        font: inherit;
        outline: 0;
    }

    #search button {
        cursor: pointer;
        padding: 0 0.25em;
        BACKGROUND: linear-gradient(to left, #07599f, #47b4ff);
        WIDTH: 100PX;
        HEIGHT: 100PX;
        BORDER-RADIUS: 50PX;
        position: absolute;
        left: -40px;
    }
    #search button i {
        font-size:40px;
        font-weight:bold;
        color:#fff;
    }
    #search input {
        flex: 1;
        font-size: 25px;
        color:#999;
    }

        #search input::-moz-placeholder {
            color: #222;
        }

        #search input:-ms-input-placeholder {
            color: #222;
        }


    #search .spinner {
        -webkit-animation: spinner 1s infinite linear;
        animation: spinner 1s infinite linear;
        display: none;
        padding: 0 0.25em;
    }

    #search.loading button {
        display: none;
    }

    #search.loading .spinner {
        display: block;
    }

@-webkit-keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*==================== 
	Footer 
====================== */

/* Main Footer */
footer{
    position:relative;
}
    footer .main-footer {
        padding: 75px 0;
        background: #37373f;
    }
footer div{
    text-align:center;
}
footer ul {
    padding-left: 0;

    list-style: none;
}
    footer li, footer i {
        color: #969696;
        font-size: 23px;
    }

/* Copy Right Footer */
.footer-copyright {
    background: #222;
    padding: 5px 0;
}

    .footer-copyright .logo {
        display: inherit;
    }

    .footer-copyright nav {
        float: right;
        margin-top: 5px;
    }

        .footer-copyright nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

            .footer-copyright nav ul li {
                border-left: 1px solid #505050;
                display: inline-block;
                line-height: 12px;
                margin: 0;
                padding: 0 8px;
            }

                .footer-copyright nav ul li a {
                    color: #969696;
                }

                .footer-copyright nav ul li:first-child {
                    border: medium none;
                    padding-left: 0;
                }

    .footer-copyright p {
        color: #969696;
        margin: 2px 0 0;
    }

/* Footer Top */
.footer-top {
    background: #252525;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 3px solid #222;
}

/* Footer transparent */
footer.transparent .footer-top, footer.transparent .main-footer {
    background: transparent;
}

footer.transparent .footer-copyright {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3);
}

/* Footer light */
footer.light .footer-top {
    background: #f9f9f9;
}

footer.light .main-footer {
    background: #f9f9f9;
}

footer.light .footer-copyright {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3);
}

/* Footer 4 */
.footer- .logo {
    display: inline-block;
}

/*==================== 
	Widgets 
====================== */
.widget {
    padding: 20px;
    margin-bottom: 40px;
}

    .widget.widget-last {
        margin-bottom: 0px;
    }

    .widget.no-box {
        padding: 0;
        background-color: transparent;
        margin-bottom: 40px;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
    }

    .widget.subscribe p {
        margin-bottom: 18px;
    }

    .widget li a {
        color: #ff8d1e;
    }

        .widget li a:hover {
            color: #4b92dc;
        }

.widget-title {
    margin-bottom: 20px;
}

    .widget-title span {
        background: #839FAD none repeat scroll 0 0;
        display: block;
        height: 1px;
        margin-top: 25px;
        position: relative;
        width: 20%;
    }

        .widget-title span::after {
            background: inherit;
            content: "";
            height: inherit;
            position: absolute;
            top: -4px;
            width: 50%;
        }

    .widget-title.text-center span, .widget-title.text-center span::after {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }

.widget .badge {
    float: right;
    background: #7f7f7f;
}
.widget p {
    width: 60%;
    color: #969696 !important;
    text-align: justify;
    margin: 15px auto 0;
    font-size: 17px;
}

.typo-light h1,
.typo-light h2,
.typo-light h3,
.typo-light h4,
.typo-light h5,
.typo-light h6,
.typo-light p,
.typo-light div,
.typo-light span,
.typo-light small {
    color: #fff;
}

ul.social-footer2 {
    margin: 0;
    padding: 0;
    width: auto;
}

    ul.social-footer2 li {
        display: inline-block;
        padding: 0;
    }


        ul.social-footer2 li a {
            display: block;
            height: 70px;
            margin:0 5px;
            cursor:pointer;
            width: 70px;
            text-align: center;
        }
        ul.social-footer2 li a img {
            width:100%;
        }

.btn {
    background-color: #ff8d1e;
    color: #fff;
}

    .btn:hover, .btn:focus, .btn.active {
        background: #4b92dc;
        color: #fff;
        -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        -webkit-transition: all 250ms ease-in-out 0s;
        -moz-transition: all 250ms ease-in-out 0s;
        -ms-transition: all 250ms ease-in-out 0s;
        -o-transition: all 250ms ease-in-out 0s;
        transition: all 250ms ease-in-out 0s;
    }





@-webkit-keyframes myfirst {
    0% {
        margin-left: -235px
    }

    90% {
        margin-left: 100%;
    }

    100% {
        margin-left: 100%;
    }
}

/* Animation */
@keyframes myfirst {
    0% {
        margin-left: -235px
    }

    70% {
        margin-left: 100%;
    }

    100% {
        margin-left: 100%;
    }
}

.fish {
    background-image: url('http://www.geertjanhendriks.nl/codepen/form/fish.png');
    width: 235px;
    height: 104px;
    margin-left: -535px;
    position: absolute;
    animation: myfirst 24s;
    -webkit-animation: myfirst 24s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

#fish {
    top: 120px;
}

#fish2 {
    top: 260px;
    animation-delay: 12s;
    -webkit-animation-delay: 12s;
}



#form {
    height: 100%;
    overflow: hidden;
    position: relative;
}

form {
    margin: 0 auto;
    padding-top: 40px;
    color: white;
    position: relative;
}

label, input, textarea {
    display: block;
}

input, textarea {
    width: 100%;
    border: none;
    padding:10px;
    border-radius: 20px;
    outline: none;
    padding: 10px 40px;
    font-family: HeyCommic;
    font-size: 22px;
    color: #000;
    transition: border 0.5s;
    -webkit-transition: border 0.5s;
    -moz-transition: border 0.5s;
    -o-transition: border 0.5s;
    border: solid 3px #98d4f3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    input:focus, textarea:focus {
        border: solid 3px #77bde0;
    }

textarea {
    height: 300px;
    padding:40px;
    text-align:justify;
    resize: none;
    overflow: auto;
}
.language{
    padding-right:15px;
}
/*#english-button {
    text-decoration:none;
    background-color: #61c913;*/ /* رنگ پس زمینه */
    /*border-color: #61c913;*/ /* رنگ حاشیه */
    /*color: #fff;*/ /* رنگ متن */
    /*line-height: 22px;*/ /* ارتفاع دکمه (تنظیم شده) */
    /*cursor: pointer;*/ /* نشانگر موس */
    /*font-size: 1em;*/ /* اندازه فونت (تنظیم شده) */
    /*font-family: ComicKings, cursive;*/ /* فونت */
    /*transition: background-color 0.5s, color 0.5s, border-color 0.5s;*/ /* انتقال رنگ پس زمینه، رنگ متن و رنگ حاشیه */
    /*padding: 10px 30px;*/ /* فاصله داخلی */
    /*border-radius: 20px;*/ /* گردی گوشه ها */
    /*margin-left: 10px;*/ /* فاصله از عناصر قبلی */
    /*border: none;
    position: absolute;
    top: 30px;*/ /* فاصله از بالای صفحه (تنظیم کنید) */
    /*right: 40px;*/ /* فاصله از راست صفحه (تنظیم کنید) */
/*}*/

    #english-button:hover {
        background-color: #fff; /* رنگ پس زمینه هنگام هاور */
        color: #61c913; /* رنگ متن هنگام هاور */
        border-color: #61c913; /* رنگ حاشیه هنگام هاور */
    }
input[type="submit"] {
    background-color: #61c913;
    border-color: #61c913;
    color: #fff;
    height: 80px;
    cursor: pointer;
    font-size: 1.29em;
    font-family: ComicKings, cursive;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;

    width: 40%;
    margin: 50px auto;
    border-radius: 50px;
}

    input[type="submit"]:hover {
        background-color: #fff;
        color: #61c913;
        border-color: #61c913;
    }

label {
    font-size: 1.5em;
    margin-top: 20px;
    padding-left: 20px;
}

.formgroup, .formgroup-active, .formgroup-error {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 10.5%;
    transition: background-image 0.7s;
    -webkit-transition: background-image 0.7s;
    -moz-transition: background-image 0.7s;
    -o-transition: background-image 0.7s;
    padding-top: 2px;
}

.formgroup {
    background-image: url('http://www.geertjanhendriks.nl/codepen/form/pixel.gif');
    padding:20px;
}

.formgroup-active {
    background-image: url('http://www.geertjanhendriks.nl/codepen/form/octo.png');
}

.formgroup-error {
    background-image: url('http://www.geertjanhendriks.nl/codepen/form/octo-error.png');
    color: red;
}

@media only screen and (max-width:991px){
    .w-1 {
        top: 140% !important;
    }

    .w-2 {
        top: 260% !important;
    }

    .w-3 {
        top: 380% !important;
    }
}
.has-sub-menu{
    position:relative;
}
    .has-sub-menu ul li {
        display:block;
    }
    .has-sub-menu ul li:hover {
        background-color: #ffffff36;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }
    .has-sub-menu ul {
        padding: 0;
        visibility: hidden;
        width: 100%;
        position: absolute;
        background: #ffffff40;
        top: 95px;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        -o-transform-origin: top;
        -webkit-transform-origin: top;
        transform-origin: top;
        height: 0;
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }
        .has-sub-menu ul a {
            font-size: 20px;
        }
        .has-sub-menu:hover ul {
            visibility: visible;
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
            -o-transform: scaleY(1);
            -webkit-transform: scaleY(1);
            height: auto;
            transform: scaleY(1);
        }