@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot');
    src: url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'), url('../fonts/icomoon.woff') format('woff'), url('../fonts/icomoon.ttf') format('truetype'), url('../fonts/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fontawesome';
    src: url('../fonts/fontawesome/fontawesome.eot?-ulzwqn');
    src: url('../fonts/fontawesome/fontawesome.eot?#iefix-ulzwqn') format('embedded-opentype'), url('../fonts/fontawesome/fontawesome.woff?-ulzwqn') format('woff'), url('../fonts/fontawesome/fontawesome.ttf?-ulzwqn') format('truetype'), url('../fonts/fontawesome/fontawesome.svg?-ulzwqn#fontawesome') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.eot');
    src: url('../fonts/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/MyriadPro-Regular.woff') format('woff'), url('../fonts/MyriadPro-Regular.ttf') format('truetype'), url('../fonts/MyriadPro-Regular.svg#MyriadPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Light.eot');
    src: url('../fonts/MyriadPro-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/MyriadPro-Light.woff') format('woff'), url('../fonts/MyriadPro-Light.ttf') format('truetype'), url('../fonts/MyriadPro-Light.svg#MyriadPro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}


.fxSoftScale .navOutNext {
    -webkit-animation: scaleUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: scaleUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSoftScale .navInNext {
    -webkit-animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSoftScale .navOutPrev {
    -webkit-animation: scaleDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: scaleDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSoftScale .navInPrev {
    -webkit-animation: scaleUpDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: scaleUpDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes scaleUp {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes scaleUp {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-webkit-keyframes scaleDownUp {
    from {
        opacity: 0;
        -webkit-transform: scale(0.9);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes scaleDownUp {
    from {
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scaleDown {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        opacity: 0;
        -webkit-transform: scale(0.9);
    }
}

@keyframes scaleDown {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@-webkit-keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.2);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/*****************************************/


/* Press away */


/*****************************************/

.fxPressAway .navOutNext {
    -webkit-animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxPressAway .navInNext {
    opacity: 1;
    -webkit-animation: slideInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxPressAway .navOutPrev {
    -webkit-animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxPressAway .navInPrev {
    opacity: 1;
    -webkit-animation: slideInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes slideOutScaleRight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateX(100%) scale(0.9);
        opacity: 0;
    }
}

@keyframes slideOutScaleRight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateX(100%) scale(0.9);
        transform: translateX(100%) scale(0.9);
        opacity: 0;
    }
}

@-webkit-keyframes slideInFromLeft {
    from {
        -webkit-transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes slideOutScaleLeft {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateX(-100%) scale(0.9);
        opacity: 0;
    }
}

@keyframes slideOutScaleLeft {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateX(-100%) scale(0.9);
        transform: translateX(-100%) scale(0.9);
        opacity: 0;
    }
}

@-webkit-keyframes slideInFromRight {
    from {
        -webkit-transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/*****************************************/


/* Side Swing */


/*****************************************/

.fxSideSwing .navOutNext {
    -webkit-animation: slideOutScaleRight 1.2s forwards;
    animation: slideOutScaleRight 1.2s forwards;
    -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
    /* older webkit */
    -webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
    animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}

.fxSideSwing .navInNext {
    opacity: 1;
    -webkit-animation: slideInFromLeft 1.2s forwards;
    animation: slideInFromLeft 1.2s forwards;
    -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
    /* older webkit */
    -webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
    animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}

.fxSideSwing .navOutPrev {
    -webkit-animation: slideOutScaleLeft 1.2s forwards;
    animation: slideOutScaleLeft 1.2s forwards;
    -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
    /* older webkit */
    -webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
    animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}

.fxSideSwing .navInPrev {
    opacity: 1;
    -webkit-animation: slideInFromRight 1.2s forwards;
    animation: slideInFromRight 1.2s forwards;
    -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
    /* older webkit */
    -webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
    animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}


/*****************************************/


/* Fortune wheel */


/*****************************************/

.fxFortuneWheel .itemwrap {
    -webkit-perspective: 1600px;
    perspective: 1600px;
}

.fxFortuneWheel .navOutNext {
    -webkit-animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxFortuneWheel .navInNext {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: rotateInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxFortuneWheel .navOutPrev {
    -webkit-animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxFortuneWheel .navInPrev {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: rotateInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes rotateInFromLeft {
    from {
        -webkit-transform: translateX(-100%) rotateY(-55deg);
    }
    to {
        -webkit-transform: translateX(0) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes rotateInFromLeft {
    from {
        -webkit-transform: translateX(-100%) rotateY(-55deg);
        transform: translateX(-100%) rotateY(-55deg);
    }
    to {
        -webkit-transform: translateX(0) rotateY(0deg);
        transform: translateX(0) rotateY(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes rotateInFromRight {
    from {
        -webkit-transform: translateX(100%) rotateY(55deg);
    }
    to {
        -webkit-transform: translateX(0) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes rotateInFromRight {
    from {
        -webkit-transform: translateX(100%) rotateY(55deg);
        transform: translateX(100%) rotateY(55deg);
    }
    to {
        -webkit-transform: translateX(0) rotateY(0deg);
        transform: translateX(0) rotateY(0deg);
        opacity: 1;
    }
}


/*****************************************/


/* Swipe */


/*****************************************/

.fxSwipe .navOutNext {
    -webkit-animation: decreaseHeight 0.8s forwards ease-in-out;
    animation: decreaseHeight 0.8s forwards ease-in-out;
}

.fxSwipe .navInNext {
    -webkit-animation: show 0.8s forwards ease-in-out;
    animation: show 0.8s forwards ease-in-out;
}

.fxSwipe .navOutPrev {
    -webkit-animation: hide 0.8s forwards ease-in-out;
    animation: hide 0.8s forwards ease-in-out;
}

.fxSwipe .navInPrev {
    z-index: 1001;
    opacity: 1;
    -webkit-animation: increaseHeight 0.8s forwards ease-in-out;
    animation: increaseHeight 0.8s forwards ease-in-out;
}

@-webkit-keyframes decreaseHeight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        height: 0;
    }
}

@keyframes decreaseHeight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        height: 0;
    }
}

@-webkit-keyframes show {
    0% {
        opacity: 0;
    }
    1%,
    100% {
        opacity: 1;
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }
    1%,
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes hide {
    0%,
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes hide {
    0%,
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes increaseHeight {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes increaseHeight {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}


/*****************************************/


/* Push reveal */


/*****************************************/

.fxPushReveal .navOutNext {
    opacity: 1;
    -webkit-animation: slideOutBottom 0.7s forwards ease-in-out;
    animation: slideOutBottom 0.7s forwards ease-in-out;
}

.fxPushReveal .navInNext {
    opacity: 1;
    -webkit-animation: slideInHalfFromTop 0.7s forwards ease-in-out;
    animation: slideInHalfFromTop 0.7s forwards ease-in-out;
}

.fxPushReveal .navOutPrev {
    opacity: 1;
    -webkit-animation: slideOutHalfTop 0.7s forwards ease-in-out;
    animation: slideOutHalfTop 0.7s forwards ease-in-out;
}

.fxPushReveal .navInPrev {
    opacity: 1;
    z-index: 1001;
    -webkit-animation: slideInFromBottom 0.7s forwards ease-in-out;
    animation: slideInFromBottom 0.7s forwards ease-in-out;
}

@-webkit-keyframes slideOutBottom {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateY(100%);
    }
}

@keyframes slideOutBottom {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@-webkit-keyframes slideInHalfFromTop {
    from {
        -webkit-transform: translateY(-50%);
    }
    to {
        -webkit-transform: translateY(0);
    }
}

@keyframes slideInHalfFromTop {
    from {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideOutHalfTop {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateY(-50%);
    }
}

@keyframes slideOutHalfTop {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@-webkit-keyframes slideInFromBottom {
    from {
        -webkit-transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/*****************************************/


/* Snap in */


/*****************************************/

.fxSnapIn .navOutNext {
    -webkit-animation: slideOutLeft 0.5s forwards ease-in;
    animation: slideOutLeft 0.5s forwards ease-in;
}

.fxSnapIn .navInNext {
    z-index: 1001;
    opacity: 1;
    -webkit-animation: slideFromRightFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideFromRightFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSnapIn .navOutPrev {
    -webkit-animation: slideOutRight 0.5s forwards ease-in;
    animation: slideOutRight 0.5s forwards ease-in;
}

.fxSnapIn .navInPrev {
    z-index: 1001;
    opacity: 1;
    -webkit-animation: slideFromLeftFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideFromLeftFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSnapIn li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity 0.4s 0.1s ease-in;
    transition: opacity 0.4s 0.1s ease-in;
}

.fxSnapIn .navOutPrev::after,
.fxSnapIn .navOutNext::after {
    opacity: 1;
}

@-webkit-keyframes slideOutLeft {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateX(-10%);
    }
}

@keyframes slideOutLeft {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
    }
}

@-webkit-keyframes slideFromRightFast {
    0%,
    50% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@keyframes slideFromRightFast {
    0%,
    50% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideOutRight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateX(10%);
    }
}

@keyframes slideOutRight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
}

@-webkit-keyframes slideFromLeftFast {
    0%,
    50% {
        -webkit-transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@keyframes slideFromLeftFast {
    0%,
    50% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}


/*****************************************/


/* Let me in */


/*****************************************/

.fxLetMeIn .itemwrap {
    -webkit-perspective: 1600px;
    perspective: 1600px;
}

.fxLetMeIn .navOutNext {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateOutRight 0.5s forwards ease-in-out;
    animation: rotateOutRight 0.5s forwards ease-in-out;
}

.fxLetMeIn .navInNext {
    z-index: 1001;
    opacity: 1;
    -webkit-animation: slideFromRightFast 0.5s forwards ease;
    animation: slideFromRightFast 0.5s forwards ease;
}

.fxLetMeIn .navOutPrev {
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-animation: rotateOutLeft 0.5s forwards ease-in-out;
    animation: rotateOutLeft 0.5s forwards ease-in-out;
}

.fxLetMeIn .navInPrev {
    z-index: 1001;
    opacity: 1;
    -webkit-animation: slideFromLeftFast 0.5s forwards ease;
    animation: slideFromLeftFast 0.5s forwards ease;
}

.fxLetMeIn li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.fxLetMeIn .navOutPrev::after,
.fxLetMeIn .navOutNext::after {
    opacity: 1;
}

@-webkit-keyframes rotateOutRight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: rotateY(10deg);
    }
}

@keyframes rotateOutRight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: rotateY(10deg);
        transform: rotateY(10deg);
    }
}

@-webkit-keyframes rotateOutLeft {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: rotateY(-10deg);
    }
}

@keyframes rotateOutLeft {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: rotateY(-10deg);
        transform: rotateY(-10deg);
    }
}


/*****************************************/


/* Stick it */


/*****************************************/

.fxStickIt .itemwrap {
    -webkit-perspective: 1600px;
    perspective: 1600px;
}

.fxStickIt .navOutNext {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateBottomSideOut 0.8s forwards ease-in;
    animation: rotateBottomSideOut 0.8s forwards ease-in;
}

.fxStickIt .navInNext {
    z-index: 1001;
    opacity: 1;
    -webkit-animation: slideInFromBottomDelayed 0.8s forwards;
    animation: slideInFromBottomDelayed 0.8s forwards;
}

.fxStickIt .navOutPrev {
    opacity: 1;
    -webkit-animation: slideOutToBottom 0.8s forwards;
    animation: slideOutToBottom 0.8s forwards;
}

.fxStickIt .navInPrev {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateBottomSideIn 0.8s 0.1s forwards ease-in;
    animation: rotateBottomSideIn 0.8s 0.1s forwards ease-in;
}

@-webkit-keyframes rotateBottomSideOut {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    40% {
        -webkit-transform: rotateX(-15deg);
        -webkit-animation-timing-function: ease-out;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.8) translateZ(-200px);
    }
}

@keyframes rotateBottomSideOut {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    40% {
        -webkit-transform: rotateX(-15deg);
        transform: rotateX(-15deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.8) translateZ(-200px);
        transform: scale(0.8) translateZ(-200px);
    }
}

@-webkit-keyframes slideInFromBottomDelayed {
    0%,
    30% {
        -webkit-transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes slideInFromBottomDelayed {
    0%,
    30% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes rotateBottomSideIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8) translateZ(-200px);
    }
    60% {
        -webkit-transform: scale(1) translateZ(0) rotateX(-15deg);
        -webkit-animation-timing-function: ease-out;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateZ(0) rotateX(0deg);
    }
}

@keyframes rotateBottomSideIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8) translateZ(-200px);
        transform: scale(0.8) translateZ(-200px);
    }
    60% {
        -webkit-transform: scale(1) translateZ(0) rotateX(-15deg);
        transform: scale(1) translateZ(0) rotateX(-15deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateZ(0) rotateX(0deg);
        transform: scale(1) translateZ(0) rotateX(0deg);
    }
}


/*****************************************/


/* Archive me */


/*****************************************/

.fxArchiveMe .navOutNext {
    -webkit-animation: scaleHalfDown 2.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: scaleHalfDown 2.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe .navInNext {
    z-index: 1001;
    opacity: 1;
    -webkit-animation: slideInFromBottom 2.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideInFromBottom 2.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe .navOutPrev {
    -webkit-animation: slideOutToBottom 2.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: slideOutToBottom 2.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe .navInPrev {
    -webkit-animation: scaleHalfUp 2.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: scaleHalfUp 2.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe li::before,
.fxArchiveMe li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: opacity 2.1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: opacity 2.1s cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe li::after,
.fxArchiveMe .navOutNext::before {
    opacity: 1;
}

.fxArchiveMe li::before,
.fxArchiveMe li.current::after,
.fxArchiveMe .navInNext::after,
.fxArchiveMe .navInPrev::after {
    opacity: 0;
}

.fxArchiveMe .navInNext::after {
    -webkit-transition: none;
    transition: none;
}

@-webkit-keyframes scaleHalfDown {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes scaleHalfDown {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
}

@-webkit-keyframes slideOutToBottom {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateY(100%);
    }
}

@keyframes slideOutToBottom {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@-webkit-keyframes scaleHalfUp {
    from {
        opacity: 0;
        -webkit-transform: scale(0.6);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes scaleHalfUp {
    from {
        opacity: 0;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/*****************************************/


/* Vertical growth */


/*****************************************/

.fxVGrowth .navOutNext {
    -webkit-animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
    animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}

.fxVGrowth .navInNext {
    z-index: 1001;
    opacity: 1;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
    animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}

.fxVGrowth .navOutPrev {
    -webkit-animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
    animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}

.fxVGrowth .navInPrev {
    z-index: 1001;
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
    animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}

@-webkit-keyframes maximize {
    from {
        -webkit-transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
    }
}

@keyframes maximize {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/*****************************************/


/* Slide Behind */


/* From https://github.com/hakimel/kontext by Hakim El Hattab, http://hakim.se */


/*****************************************/

.fxSlideBehind .itemwrap {
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.fxSlideBehind .navOutNext {
    -webkit-animation: hideLeft 0.8s forwards;
    animation: hideLeft 0.8s forwards;
}

.fxSlideBehind .navInNext {
    -webkit-animation: showRight 0.8s forwards;
    animation: showRight 0.8s forwards;
}

.fxSlideBehind .navOutPrev {
    -webkit-animation: hideRight 0.8s forwards;
    animation: hideRight 0.8s forwards;
}

.fxSlideBehind .navInPrev {
    -webkit-animation: showLeft 0.8s forwards;
    animation: showLeft 0.8s forwards;
}

@-webkit-keyframes hideLeft {
    0% {
        -webkit-transform: translateZ( 0px);
    }
    40% {
        -webkit-transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        z-index: 9999;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ( -400px);
    }
}

@keyframes hideLeft {
    0% {
        -webkit-transform: translateZ( 0px);
        transform: translateZ( 0px);
    }
    40% {
        -webkit-transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        z-index: 9999;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ( -400px);
        transform: translateZ( -400px);
    }
}

@-webkit-keyframes showRight {
    0% {
        -webkit-transform: translateZ( -400px);
        opacity: 1;
    }
    40% {
        -webkit-transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        opacity: 1;
    }
    41% {
        -webkit-transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        opacity: 1;
        z-index: 9999;
    }
    100% {
        -webkit-transform: translateZ( 0px);
        opacity: 1;
        z-index: 9999;
    }
}

@keyframes showRight {
    0% {
        -webkit-transform: translateZ( -400px);
        transform: translateZ( -400px);
        opacity: 1;
    }
    40% {
        -webkit-transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        opacity: 1;
    }
    41% {
        -webkit-transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        opacity: 1;
        z-index: 9999;
    }
    100% {
        -webkit-transform: translateZ( 0px);
        transform: translateZ( 0px);
        opacity: 1;
        z-index: 9999;
    }
}

@-webkit-keyframes hideRight {
    0% {
        -webkit-transform: translateZ( 0px);
    }
    40% {
        -webkit-transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        z-index: 9999;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ( -400px);
    }
}

@keyframes hideRight {
    0% {
        -webkit-transform: translateZ( 0px);
        transform: translateZ( 0px);
    }
    40% {
        -webkit-transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        transform: translate( 0, 40%) scale( 0.8) rotateX( 20deg);
        z-index: 9999;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ( -400px);
        transform: translateZ( -400px);
    }
}

@-webkit-keyframes showLeft {
    0% {
        -webkit-transform: translateZ( -400px);
        opacity: 1;
    }
    40% {
        -webkit-transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        opacity: 1;
    }
    41% {
        -webkit-transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        opacity: 1;
        z-index: 9999;
    }
    100% {
        -webkit-transform: translateZ( 0px);
        opacity: 1;
        z-index: 9999;
    }
}

@keyframes showLeft {
    0% {
        -webkit-transform: translateZ( -400px);
        transform: translateZ( -400px);
        opacity: 1;
    }
    40% {
        -webkit-transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        opacity: 1;
    }
    41% {
        -webkit-transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        transform: translate( 0, -40%) scale( 0.8) rotateX( -20deg);
        opacity: 1;
        z-index: 9999;
    }
    100% {
        -webkit-transform: translateZ( 0px);
        transform: translateZ( 0px);
        opacity: 1;
        z-index: 9999;
    }
}


/*****************************************/


/* Soft Pulse */


/*****************************************/

.fxSoftPulse .navOutPrev,
.fxSoftPulse .navOutNext {
    -webkit-animation: scaleUpFadeOut 0.8s forwards ease-in;
    animation: scaleUpFadeOut 0.8s forwards ease-in;
}

.fxSoftPulse .navInPrev,
.fxSoftPulse .navInNext {
    -webkit-animation: scaleDownFadeIn 0.8s forwards ease-out;
    animation: scaleDownFadeIn 0.8s forwards ease-out;
}

@-webkit-keyframes scaleUpFadeOut {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    50% {
        -webkit-transform: scale(1.2);
        opacity: 1;
    }
    75% {
        -webkit-transform: scale(1.1);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes scaleUpFadeOut {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    75% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes scaleDownFadeIn {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    50% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes scaleDownFadeIn {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    50% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/*****************************************/


/* Earthquake */


/* From http://elrumordelaluz.github.io/csshake/ by Lionel, http://t.co/thCECnx1Yg */


/*****************************************/

.fxEarthquake .navOutNext {
    opacity: 1;
    -webkit-animation: shakeSlideBottom 1s 0.1s forwards;
    animation: shakeSlideBottom 1s 0.1s forwards;
}

.fxEarthquake .navInNext {
    -webkit-animation: pushFromTop 1s 0.1s forwards;
    animation: pushFromTop 1s 0.1s forwards;
}

.fxEarthquake .navOutPrev {
    opacity: 1;
    -webkit-animation: shakeSlideTop 1s 0.1s forwards;
    animation: shakeSlideTop 1s 0.1s forwards;
}

.fxEarthquake .navInPrev {
    opacity: 1;
    -webkit-animation: pushFromBottom 1s 0.1s forwards;
    animation: pushFromBottom 1s 0.1s forwards;
}

.fxEarthquake li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.fxEarthquake .navOutPrev::after,
.fxEarthquake .navOutNext::after {
    opacity: 1;
}

@-webkit-keyframes shakeSlideBottom {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    2% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    4% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    6% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    8% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    10% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    12% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    14% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    16% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    18% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    20% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    22% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    24% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    26% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    28% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    30% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    32% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    34% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    36% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    38% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    40% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    42% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    44% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    46% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    48% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    50% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    52% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    54% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    56% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    58% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    60% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    62% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    64% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    66% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    68% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    70% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    100% {
        -webkit-transform: translateY(100%);
    }
}

@keyframes shakeSlideBottom {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    2% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    4% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    6% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    8% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    10% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    12% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    14% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    16% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    18% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    20% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    22% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    24% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    26% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    28% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    30% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    32% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    34% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    36% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    38% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    40% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    42% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    44% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    46% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    48% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    50% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    52% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    54% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    56% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    58% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    60% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    62% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    64% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    66% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    68% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    70% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@-webkit-keyframes pushFromTop {
    0%,
    70% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes pushFromTop {
    0%,
    70% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes shakeSlideTop {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    2% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    4% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    6% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    8% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    10% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    12% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    14% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    16% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    18% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    20% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    22% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    24% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    26% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    28% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    30% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    32% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    34% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    36% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    38% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    40% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    42% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    44% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    46% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    48% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    50% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    52% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    54% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    56% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    58% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    60% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    62% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    64% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
    }
    66% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    68% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    70% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
    }
    100% {
        -webkit-transform: translateY(-100%);
    }
}

@keyframes shakeSlideTop {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    2% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    4% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    6% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    8% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    10% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    12% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    14% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    16% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    18% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    20% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    22% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    24% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    26% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    28% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    30% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    32% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    34% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    36% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    38% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    40% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    42% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    44% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    46% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    48% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    50% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    52% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    54% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    56% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    58% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    60% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    62% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    64% {
        -webkit-transform: translate(0px, -1px) rotate(-0.5deg);
        transform: translate(0px, -1px) rotate(-0.5deg);
    }
    66% {
        -webkit-transform: translate(-1px, -1px) rotate(-0.5deg);
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }
    68% {
        -webkit-transform: translate(-1px, 0px) rotate(-0.5deg);
        transform: translate(-1px, 0px) rotate(-0.5deg);
    }
    70% {
        -webkit-transform: translate(0px, 0px) rotate(-0.5deg);
        transform: translate(0px, 0px) rotate(-0.5deg);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-webkit-keyframes pushFromBottom {
    0%,
    70% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes pushFromBottom {
    0%,
    70% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/*****************************************/


/* Cliff diving */


/*****************************************/

.fxCliffDiving li {
    -webkit-transform-origin: 50% 400%;
    transform-origin: 50% 400%;
}

.fxCliffDiving .navOutNext {
    opacity: 1;
    -webkit-animation: rotateOutCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: rotateOutCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving .navInNext {
    opacity: 1;
    -webkit-animation: rotateInCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: rotateInCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving .navOutPrev {
    opacity: 1;
    -webkit-animation: rotateOutCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: rotateOutCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving .navInPrev {
    opacity: 1;
    -webkit-animation: rotateInCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
    animation: rotateInCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 1);
    -webkit-transition: opacity 0.9s cubic-bezier(0.7, 0, 0.3, 1);
    transition: opacity 0.9s cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving .navOutPrev::after,
.fxCliffDiving .navOutNext::after {
    opacity: 1;
}

@-webkit-keyframes rotateOutCircLeft {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: rotate(-20deg) translateX(-100%);
    }
}

@keyframes rotateOutCircLeft {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: rotate(-20deg) translateX(-100%);
        transform: rotate(-20deg) translateX(-100%);
    }
}

@-webkit-keyframes rotateInCircRight {
    from {
        -webkit-transform: rotate(20deg) translateX(100%);
    }
    to {
        -webkit-transform: rotate(0deg) translateX(0);
    }
}

@keyframes rotateInCircRight {
    from {
        -webkit-transform: rotate(20deg) translateX(100%);
        transform: rotate(20deg) translateX(100%);
    }
    to {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
}

@-webkit-keyframes rotateOutCircRight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: rotate(20deg) translateX(100%);
    }
}

@keyframes rotateOutCircRight {
    from {}
    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        -webkit-transform: rotate(20deg) translateX(100%);
        transform: rotate(20deg) translateX(100%);
    }
}

@-webkit-keyframes rotateInCircLeft {
    from {
        -webkit-transform: rotate(-20deg) translateX(-100%);
    }
    to {
        -webkit-transform: rotate(0deg) translateX(0);
    }
}

@keyframes rotateInCircLeft {
    from {
        -webkit-transform: rotate(-20deg) translateX(-100%);
        transform: rotate(-20deg) translateX(-100%);
    }
    to {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
}


/*=========================
          Common 
===========================*/

body {
    font-family: 'Myriad Pro', 'Roboto Slab', serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-synthesis: none;
    color: #444;
}

b,
strong {
    font-weight: 400;
}

a:active,
a:focus,
.form-control:focus,
.form-control:active,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

h1,
h2 {
    font-weight: 300;
}

h2 {
    font-size: 36px;
}

p {
    color: #444444;
    line-height: 1.3;
}

p:last-child {
    margin-bottom: 0;
}

.sky-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.sky-section h2 {
    color: #0061af;
    margin-bottom: 30px;
    text-align: center;
    font-size: 30px;
}

.sky-section h2:last-child {
    margin-bottom: 0;
}

.noscroll {
    overflow: hidden !important;
}


/*=========================
      Radion Button 
===========================*/

input[type="radio"] {
    display: none;
}

input[type="radio"]+label {
    font-size: 14px;
}

input[type="radio"]+label span {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: -2px 10px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
}

input[type="radio"]+label span {
    border: 3px solid #0061af;
    background-color: #fff;
}

input[type="radio"]+label span,
input[type="radio"]:checked+label span {
    -webkit-transition: background-color 0.4s linear;
    transition: background-color 0.4s linear;
}

input[type="radio"]+label span::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    background: #fff;
    -webkit-transition: background-color 0.4s linear;
    transition: background-color 0.4s linear;
}

input[type="radio"]:checked+label span::before {
    background: #0061af;
}

.checkbox-inline,
.radio-inline {
    padding-left: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

.radio label,
.radio-inline label,
.checkbox label,
.checkbox-inline label {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding-left: 25px;
}

.checkbox label,
.checkbox-inline label {
    padding-left: 30px;
}

input[type="checkbox"]+label::before {
    position: absolute;
    content: '';
    display: block;
    width: 19px;
    height: 19px;
    top: 0;
    left: 0;
    border: 2px solid #004b87;
}

input[type="checkbox"]:checked+label::after {
    position: absolute;
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    top: 6px;
    left: 5px;
    border-bottom: 2px solid #004b87;
    border-left: 2px solid #004b87;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/*=========================
      Preloader 
===========================*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #235ca6;
    z-index: 9999;
    overflow: hidden;
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}

#loading-center {
    height: 100%;
    position: relative;
    width: 100%;
}

#loading-center-absolute {
    left: 50%;
    margin: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
}

#loading-center-absolute img {
    display: block;
    margin: 0 auto;
}


/*=========================
    Modal
===========================*/

.modal-content {
    border-radius: 0;
}

.modal-header {
    padding-bottom: 0;
    border: none;
    padding: 20px 20px 0 20px;
}

.modal-title {
    color: #0061af;
    font-size: 20px;
    font-weight: 400;
}

.modal-header .close,
.md-close {
    margin-top: -10px;
    opacity: 1;
    color: #0061af;
}

.modal-body {
    padding: 5px 20px 20px 20px;
}

.modal-body p:first-of-type {
    margin-bottom: 15px;
}

.modal-body p:last-of-type {
    font-size: 12px;
}

.modal-body .form-group {
    margin-bottom: 10px;
}

.modal-body .btn {
    padding-top: 10px;
    padding-bottom: 10px;
}

.modal-open {
    overflow: hidden !important;
}

.modal-backdrop {
    background-color: #0061af;
}

.modal-backdrop.in {
    opacity: .75;
}

.modal .btn,
.md-content .btn {
    color: #0061af;
    background-color: #fff;
}

.md-perspective,
.md-perspective body {
    height: 100%;
    overflow: hidden;
}

.md-perspective body {
    background: #222;
    -webkit-perspective: 600px;
    perspective: 600px;
}

/*.container {
    min-height: 100%;
}*/

.md-modal {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: auto;
    z-index: 2000;
}

.md-show {
    visibility: visible;
}

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: #0061af;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.md-show~.md-overlay {
    opacity: .8;
    visibility: visible;
}

body.md-show {
    overflow: hidden !important;
}

.rc-anchor-normal {
    width: 100% !important;
}

.md-modal-body .form-group div,
.md-modal-body .form-group iframe {
    max-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* Content styles */

.md-content {
    color: #0061af;
    background: #fff;
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.md-content h3 {
    margin: 0;
    padding: 10px;
    text-align: center;
    opacity: 0.8;
}

.md-content .form-group {
    position: relative;
    margin-bottom: 10px;
}

.md-effect-1 .md-content {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}


/*=========================
      Carousel fade in  
===========================*/

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


/*=========================
      Slider dot move
===========================*/

.carousel-indicators {
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
    margin: 0;
}

.owl-dots {
    text-align: center
}

.owl-dot,
.carousel-indicators li {
    display: inline-block;
    margin: 0 10px;
    border: none;
}

.owl-dot:first-child,
.carousel-indicators li:first-child {
    margin-left: 0;
}

.owl-dot:last-child,
.carousel-indicators li:last-child {
    margin-right: 0;
}

.owl-dot span,
.carousel-indicators li,
.carousel-indicators li.active {
    height: 16px;
    width: 16px;
    display: inline-block;
    -webkit-box-shadow: inset 0 0 0 2px #0061af;
    box-shadow: inset 0 0 0 2px #0061af;
    border-radius: 100%;
    -webkit-transition: box-shadow .3s ease;
    -webkit-transition: -webkit-box-shadow .3s ease;
    transition: -webkit-box-shadow .3s ease;
    transition: box-shadow .3s ease;
    transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
}

.owl-dot:hover span,
.carousel-indicators li:hover {
    -webkit-box-shadow: inset 0 0 0 2px rgba(0, 97, 175, .6);
    box-shadow: inset 0 0 0 2px rgba(0, 97, 175, .6);
}

.owl-dot.active span,
.carousel-indicators li.active {
    -webkit-box-shadow: inset 0 0 0 8px #0061af;
    box-shadow: inset 0 0 0 8px #0061af;
}


/*=========================
          Form 
===========================*/

.your-amount {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group {
    margin-bottom: 30px;
}

.form-control,
select.form-control {
    border: 1px solid #0061af;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 15px;
    height: 49px;
    padding: 14px;
    color: #0061af;
    font-weight: 400;
    border-radius: 0;
    background: transparent;
}

select.form-control {
    background-image: url('../image/dropdown-icon.svg');
    background-position: calc(100% - 25px) center;
    background-repeat: no-repeat;
}

select.form-control:focus,
select.form-control:active {
    background-image: url('../image/dropdown-icon-up.svg');
}

.form-date,
.form-group_amount {
    position: relative;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control option {
    color: #0061af;
    padding: 5px 14px;
}

.form-control::-webkit-input-placeholder {
    color: #0061af;
}

.form-control::-moz-placeholder {
    color: #0061af;
}

.form-control:-ms-input-placeholder {
    color: #0061af;
}

.form-control:-moz-placeholder {
    color: #0061af;
}

textarea.form-control {
    resize: none;
    height: 156px;
}

.wpcf7-response-output {
    clear: both;
}

.form-group_amount .fa {
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-template-template-online-payment .datepicker.form-control[readonly] {
    background-color: transparent;
}


/*=========================
          Button 
===========================*/

.btn {
    border-radius: 0;
    padding: 14px 15px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn:before {
    position: absolute;
    left: 130%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    content: "";
    font-family: "icomoon";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1.2;
    text-transform: none;
    font-size: 18px;
}

.btn:hover:before {
    left: 80%;
}

.btn-primary {
    background: transparent;
    border: 1px solid #0061af;
    color: #0061af;
    letter-spacing: 2px;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background: #0061af;
    border-color: #0061af;
}

.btn-large {
    letter-spacing: 2px;
    min-width: 245px;
}

.btn-medium {
    padding-left: 50px;
    padding-right: 50px;
}

.btn-link {
    text-decoration: none;
}

.btn-bordered {
    border: 1px solid #0061af;
}

.btn-bordered:hover,
.btn-bordered:focus {
    color: #fff;
    background: #0061af;
    border-color: #0061af;
}


/*=========================
        Table Css 
===========================*/

.table-bordered {
    border-color: #0061af;
}

.table>thead>tr>th {
    background: #0061af;
    color: #fff;
    text-align: center;
    border-left-color: #0061af;
    border-right-color: #00aeef;
    border-bottom-color: #00aeef;
    font-weight: 400;
}

.table>tbody>tr>td {
    vertical-align: middle;
    background: #fff;
    color: #0061af;
    text-align: center;
    border-color: #0061af;
}

.table>tbody>tr:nth-child(even)>td {
    background: #00aeef;
    color: #fff;
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom-width: 1px;
}

.table .hide-small {
    display: none;
}

.table-responsive>.table-bordered>tbody>tr>td:first-child,
.table-responsive>.table-bordered>tbody>tr>th:first-child,
.table-responsive>.table-bordered>tfoot>tr>td:first-child,
.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.table-responsive>.table-bordered>thead>tr>td:first-child,
.table-responsive>.table-bordered>thead>tr>th:first-child {
    border-left: 1px solid #0061af;
}

.table-responsive>.table-bordered>tbody>tr>td:last-child,
.table-responsive>.table-bordered>tbody>tr>th:last-child,
.table-responsive>.table-bordered>tfoot>tr>td:last-child,
.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.table-responsive>.table-bordered>thead>tr>td:last-child,
.table-responsive>.table-bordered>thead>tr>th:last-child {
    border-right: 1px solid #0061af;
}

.table-responsive>.table-bordered>tbody>tr:last-child>td,
.table-responsive>.table-bordered>tbody>tr:last-child>th,
.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.table-responsive>.table-bordered>tfoot>tr:last-child>th {
    border-bottom: 1px solid #0061af;
}


/*=========================
    hamburger icon
===========================*/

.nav-icon {
    width: 24px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: 11px;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.nav-icon span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.nav-icon span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.nav-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    left: 3px;
}

.nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 17px;
    left: 3px;
}


/*=========================
        Bootstrap tab 
===========================*/

.nav-tabs>li>a,
.nav-tabs>li {
    margin: 0;
    border: none;
    border-radius: 0;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    border: none;
    border-top: 2px solid #0061af;
    border-bottom: 2px solid #0061af;
    margin: 0;
    color: #fff;
    background: #0061af;
}

.nav-tabs>li>a:hover {
    background: transparent;
    color: #ccc;
    border: 2px solid transparent;
    border-left: none;
    border-right: none;
}

.nav-tabs>li:hover {
    border-color: transparent;
}

.nav-tabs {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
}

.nav-tabs>li>a {
    font-size: 15px;
    font-weight: bold;
    display: block;
    padding: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border: none;
    margin: 0;
}

.nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
    outline: none;
}

.nav-tabs>li {
    position: relative;
    width: 100%;
    display: block;
    margin: 0 0 10px;
    border-left: 2px solid #0061af;
    border-right: 2px solid #0061af;
}

.nav-tabs>li>a {
    position: relative;
    display: block;
    text-align: center;
    color: #0061af;
    margin: 0;
    font-weight: 400;
    font-family: 'Myriad Pro', 'Montserrat', sans-serif;
    border: none;
    border-top: 2px solid #0061af;
    border-bottom: 2px solid #0061af;
}

.nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
    color: #929292;
}

.nav-tabs>.active>a {
    color: #0061af;
}

.nav-tabs>li::before,
.nav-tabs>li::after,
.nav-tabs>li>a::before,
.nav-tabs>li>a::after {
    content: '';
    position: absolute;
    background: #0061af;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    z-index: 5;
}

.nav-tabs>li::before,
.nav-tabs>li::after {
    top: 0;
    width: 2px;
    height: 100%;
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
}

.nav-tabs>li::before {
    left: -2px;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

.nav-tabs>li::after {
    right: -2px;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}

.nav-tabs>li>a::before,
.nav-tabs>li>a::after {
    left: -2px;
    width: calc(100% + 4px);
    height: 2px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
}

.nav-tabs>li>a::before {
    top: -2px;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.nav-tabs>li>a::after {
    bottom: -2px;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.nav-tabs>.active::before,
.nav-tabs>.active::after,
.nav-tabs>li:hover::before,
.nav-tabs>li:hover::after,
.nav-tabs>li:hover>a::before,
.nav-tabs>li:hover>a::after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 1.5s;
    transition-duration: 1.5s;
}

.nav-tabs>li:hover>a {
    color: #0061af;
}

.nav-tabs>li.active>a,
.nav-tabs>.active>a:active,
.nav-tabs>li.active>a:focus,
.nav-tabs>.active:hover>a {
    background: #0061af;
    color: #fff;
}

.nav-tabs-light>li>a,
.nav-tabs-light>li:hover>a {
    color: #fff;
}

.nav-tabs-light>li,
.nav-tabs-light>li>a,
.nav-tabs-light>.active>a,
.nav-tabs-light>li.active>a,
.nav-tabs-light>li.active>a:focus,
.nav-tabs-light>li.active>a:hover {
    border-color: #fff;
}

.nav-tabs-light>li::before,
.nav-tabs-light>li::after,
.nav-tabs-light>li>a::before,
.nav-tabs-light>li>a::after {
    background: #fff;
}

.nav-tabs-light>li.active>a,
.nav-tabs-light>.active>a:active,
.nav-tabs-light>li.active>a:focus,
.nav-tabs-light>.active:hover>a {
    background: #fff;
    color: #0061af;
}


/*=========================
      Inner page css
===========================*/

.sky-page-content h3 {
    font-size: 20px;
    color: #0061af;
}

.sky-page-content .postal-gridding-tab h3 {
    font-size: 15px;
    line-height: 1.3;
}

.sky-page-content p {
    margin-bottom: 15px;
}

.sky-page-content p:last-child,
.sky-page-content ul:last-child {
    margin-bottom: 0;
}

.sky-page-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 25px;
}

.sky-page-content li {
    margin-bottom: 10px;
}

.sky-page-content .sky-about li {
    margin-bottom: 0;
    text-align: left;
    position: relative;
    padding-left: 15px;
}

.sky-page-content .sky-about li::before {
    position: absolute;
    content: "•";
    top: -1px;
    left: 2px;
    font-size: 15px;
}


/*=========================
      top header
===========================*/

.top-header {
    padding: 7px 0;
    background: #00aeef;
}

.top-header ul {
    margin-bottom: 0;
}

.top-header li {
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
}

.top-header li a {
    color: #fff;
    text-decoration: underline;
}

.top-header li span {
    display: none;
}

.top-header li img {
    margin-right: 10px;
}

.top-header li .mobile-tel {
    margin-left: 10px;
}

.top-header li .mobile-tel img {
    margin-right: 0;
    position: relative;
    top: -2px;
}


/*=========================
        Navigation
===========================*/

.sky-nav {
    border: none;
    margin-bottom: 0;
    border-radius: 0;
    background: #0061af;
    position: relative;
    z-index: 999;
}

.sky-nav.open .navbar-collapse {
    opacity: 0;
    visibility: hidden;
}

.sky-nav .navbar-brand {
    height: auto;
    max-width: 200px;
}

.sky-nav .navbar-brand svg {
    display: block;
    width: 100%;
}

.sky-nav .navbar-toggle {
    border: none;
    margin-top: 20px;
    width: 40px;
    right: 45px;
    padding-top: 8px;
    margin-bottom: 0;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 47%;
    transform-origin: 50% 47%;
    -webkit-filter: blur(0);
    -ms-filter: blur(0);
    filter: blur(0);
}

.sky-nav .navbar-toggle svg {
    display: block;
}

.sky-nav .navbar-toggle:focus,
.sky-nav .navbar-toggle:hover {
    background: transparent;
}

.sky-nav .navbar-toggle.collapsed {
    -webkit-transform: none;
    transform: none;
}

.sky-nav .navbar-toggle .icon-bar {
    background: #fff;
}

.sky-nav .navbar-collapse {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.sky-nav .navbar-nav {
    margin-top: 0;
}

.sky-nav .navbar-nav li a {
    font-family: 'Myriad Pro', 'Montserrat', sans-serif;
}

.sky-nav .navbar-nav>li>a {
    color: #fff;
    font-size: 16px;
    padding-right: 50px;
}

.sky-nav .navbar-nav .caret {
    border: none;
    position: absolute;
    background: url(../image/down-arrow.svg) no-repeat center center / 11px;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.sky-nav .navbar-nav>li>a:focus,
.sky-nav .navbar-nav>li>a:hover,
.sky-nav .navbar-nav>li:focus>a,
.sky-nav .navbar-nav>li:hover>a {
    color: #fff;
}

.sky-nav .navbar-nav>.open>a .caret {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 25%;
    transform-origin: 50% 25%;
}

.sky-nav .navbar-nav>.open,
.sky-nav .navbar-nav>.open>a,
.sky-nav .navbar-nav>.open>a:focus,
.sky-nav .navbar-nav>.open>a:hover,
.sky-nav .navbar-nav>.active>a,
.sky-nav .navbar-nav>.active>a:focus,
.sky-nav .navbar-nav>.active>a:hover {
    background: transparent;
    color: #fff;
}

.sky-nav .dropdown-menu,
.navbar-nav .open .dropdown-menu {
    padding-top: 0;
}

.sky-nav .navbar-nav .open .dropdown-menu>li>a,
.sky-nav .navbar-nav .dropdown-menu>li>a {
    color: #fff;
    font-size: 15px;
}

.sky-nav .navbar-nav .open .dropdown-menu>li>a:focus,
.sky-nav .navbar-nav .open .dropdown-menu>li>a:hover {
    color: #fff;
}

.navbar-default .navbar-nav .open .dropdown-menu>.active>a,
.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
    color: #fff;
    background-color: transparent;
}


/*=========================
        Sky banner
===========================*/

.sky-banners {
    position: relative;
}

.banner-tagline {
    position: absolute;
    width: 100%;
    padding: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    z-index: 888;
}

.sky-banners nav {
    display: block !important;
    position: absolute;
    margin-top: 70px;
    top: 60%;
    z-index: 8;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.component {
    margin: 0 auto;
    position: relative;
    margin-bottom: 40px;
    max-width: 100%;
    z-index: 2;
    height: 100vh;
}

.component-small {
    width: 650px;
    height: 290px;
}

.component-fullwidth {
    width: 100%;
    margin-bottom: 0;
    background: #0061af;
}

.component-transparent {
    width: 900px;
    height: 500px;
}

.component>ul {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    z-index: 5;
}

.component-small>ul {
    width: 450px;
}

.component-fullwidth>ul {
    overflow: hidden;
}

.component-transparent>ul {
    width: 112px;
}

.component li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.component-fullwidth li {
    overflow: hidden;
}

.component .current {
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
}

.component li img {
    display: block;
    max-width: none;
}

.component-fullwidth li img {
    min-width: 100%;
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translateX(-50%, -50%);
}

.component nav a {
    position: relative;
    height: 44px;
    width: 44px;
    background: rgba(0, 97, 175, .75);
    display: block;
    overflow: hidden;
    padding: 12px 0;
    text-indent: -9999px;
    float: left;
    margin-right: 5px;
}

.component nav a:last-child {
    margin-right: 0;
}

.component-small nav a.prev,
.component-transparent nav a.prev {
    left: 0px;
}

.component-small nav a.next,
.component-transparent nav a.next {
    right: 0px;
}

.component nav a::before {
    position: absolute;
    left: 50%;
    top: 50%;
    speak: none;
    line-height: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 16px;
    height: 19px;
    text-indent: 0;
}

.component nav a:hover::before {
    opacity: 1;
}

a.prev::before {
    content: url(../image/carousel-left.svg);
}

a.next::before {
    content: url(../image/carousel-right.svg);
}

.banner-text {
    padding: 0 15px;
    background: transparent;
    color: #fff;
    position: absolute;
    top: 60%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
}

.banner-text h1,
.banner-text h2 {
    font-family: 'Myriad Pro', 'Roboto Slab', serif;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    margin-bottom: 0;
    font-size: 28px;
}

.banner-text h1 a,
.banner-text h2 a {
    color: #fff;
    text-decoration: none;
}

.banner-text p {
    color: #fff;
    display: none;
}

.banner-text>a {
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    font-size: 18px;
}


/*=========================
    Banner Titlt effect
===========================*/

.grid_img {
    height: 0;
    padding-bottom: 56%;
    position: relative;
}

.grid_img .tilt {
    position: absolute;
    top: 0;
    height: 130%;
    left: -20%;
    top: -15%;
    width: 130%;
}


/*=========================
        Sky Links
===========================*/

.sky-links {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.sky-links ul {
    margin: 0;
    text-align: center;
}

.sky-links li {
    padding: 0 5px;
    display: inline-block;
}

.sky-links li a {
    background-color: rgba(255, 255, 255, .9);
    border: 2px solid #fff;
    display: block;
    height: 100%;
    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}

.sky-links li:hover a,
.sky-links li:focus a,
.sky-links li:active a {
    background-color: rgba(0, 97, 175, .9);
    border-color: #0066ba;
}

.sky-links svg {
    max-height: 20px;
    display: block;
    fill: #0066ba;
    -webkit-transition: fill .8s ease;
    transition: fill .8s ease;
}

.sky-links li:hover svg,
.sky-links li:focus svg,
.sky-links li:active svg {
    fill: #fff;
}

.sky-links .icon {
    display: inline-block;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sky-links .onhover {
    display: block;
    font-size: 14px;
    display: none;
}


/*=========================
        Home about 
===========================*/

.row-fluid>div,
.about-image {
    padding: 0;
    overflow: hidden;
}

.about-sky {
    padding: 30px 20px;
    background: #0061af;
}

.home-about h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 36px;
}

.home-about p {
    line-height: 1.55;
}

.home-about p,
.home-about p a,
.home-about p a:hover {
    color: #fff;
    text-decoration: none;
}

.home-about .btn-link {
    padding-top: 0;
    padding-bottom: 0;
}

.home-about .btn-link:hover,
.home-about .btn-link:focus,
.home-about .btn-link:active {
    color: #fff;
    text-decoration: none;
}

.row-fluid>div img {
    width: 100%;
}

.about-sky p {
    margin-bottom: 40px;
}

.about-sky p:last-child {
    margin-bottom: 0;
}


/*=========================
    Home Course slider
===========================*/

.home-course-slider {
    background: #e5e5e5 url('../image/course-slider-bg.jpg') repeat left top;
}

.grid-list {
    color: #333;
    margin: 0 auto 40px;
    max-width: 300px;
}

.grid figure {
    position: relative;
    overflow: hidden;
    /*background: #333;*/
}

.grid figure img {
    position: relative;
    display: block;
    width: 100%;
    /*-webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;*/
}

.grid figcaption {
    position: absolute;
    top: 0;
    z-index: 11;
    padding: 10px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.grid figcaption h2,
.home-course-slider .grid figcaption h2,
.mobile-course-slider .grid figcaption h2 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    -webkit-transition: -webkit-transform 0.9s;
    transition: -webkit-transform 0.9s;
    transition: transform 0.9s;
    transition: transform 0.9s, -webkit-transform 0.9s;
    /*font-family: 'Myriad Pro','Roboto Slab', serif;*/
}

.grid figcaption p {
    padding: 0 20px;
    color: #fff;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.grid figcaption h2,
.grid figcaption p {
    -webkit-transform: translateY(55px);
    transform: translateY(55px);
}

.grid figure .btn {
    position: absolute;
    padding: 4px 20px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    -webkit-transition: opacity 1s, -webkit-transform 1s, background 1s;
    -webkit-transition: opacity 1s, background 1s, -webkit-transform 1s;
    transition: opacity 1s, background 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s, background 1s;
    transition: opacity 1s, transform 1s, background 1s, -webkit-transform 1s;
}

.grid figure .btn:hover::before,
.grid figure .btn:focus::before {
    left: 72%;
}

.grid figcaption,
.grid figcaption h2,
.grid figcaption p,
.grid figure .btn {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid svg {
    position: absolute;
    top: -1px;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.grid svg path {
    fill: #0061af;
    fill-opacity: .8;
}

.grid a:hover figure img,
.grid-list:hover figure img {
    opacity: 1;
}

.grid a:hover figcaption h2,
.grid a:hover figcaption p,
.grid-list:hover figcaption h2,
.grid-list:hover figcaption p {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.grid a:hover figcaption p,
.grid-list:hover figcaption p {
    opacity: 0;
}

.grid figure .btn {
    top: 50%;
    left: 50%;
    background: transparent;
    color: #fff;
    background: rgba(0, 97, 175, .75);
    opacity: 0;
    -webkit-transform: perspective(1px) translate3d(-50%, -50%, 0) scale(0.25);
    transform: perspective(1px) translate3d(-50%, -50%, 0) scale(0.25);
    overflow: hidden;
    letter-spacing: 2px;
    padding: 10px 40px;
    font-family: 'Myriad Pro', 'Montserrat', sans-serif;
}

.grid-list:hover figcaption .btn {
    opacity: 1;
    -webkit-transform: perspective(1px) translate3d(-50%, -50%, 0) scale(1);
    transform: perspective(1px) translate3d(-50%, -50%, 0) scale(1);
}

.grid figcaption h2,
.grid figcaption p {
    -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.115, 1);
    -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.115, 1.445);
    transition-timing-function: cubic-bezier(0.250, 0.250, 0.115, 1.445);
}

.grid-list:hover figcaption p {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.grid figcaption h2 {
    color: #52be7f;
}

.grid-list:hover figcaption h2 {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.grid-list .btn:hover,
.grid-list:hover:focus {
    color: #fff;
    background: #0061af;
    border-color: #0061af;
}


/*=========================
     Pro Slider 
===========================*/

.pro-slider {
    background: #e5e5e5 url('../image/slider-bg.jpg') repeat left top;
}

.pro-slider a {
    text-decoration: none;
}

.pro-slider .item figure {
    max-width: 290px;
    margin: 0 auto;
}

.pro-slider figure,
.pro-slider .img-rounded {
    border-radius: 100%;
    width: 100%;
}

.pro-slider figure {
    position: relative;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
}

.pro-slider figure img {
    opacity: .9;
}

.pro-slider .figcaption {
    color: #0061af;
    font-size: 20px;
    letter-spacing: .5px;
    margin-top: 10px;
}

.pro-slider figcaption::after,
.pro-slider figure img {
    -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
    transition: opacity 0.8s, -webkit-transform 0.8s;
    transition: opacity 0.8s, transform 0.8s;
    transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.pro-slider figure::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: .1;
    position: absolute;
    background: linear-gradient(-45deg, #000 0%, #333 100%);
    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
    border-radius: 100%;
}

.pro-slider figure:hover::before {
    opacity: .2;
    z-index: 3;
}

.pro-slider figcaption::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    z-index: 5;
}

.pro-slider figure:hover {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}

.pro-slider figure:hover img {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -ms-filter: blur(0);
    -webkit-filter: blur(0);
    filter: blur(0);
}

.pro-slider figure:hover figcaption::after {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, .8, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, .8, 1);
}

.pro-slider .owl-item,
.pro-slider-desktop .item {
    margin-bottom: 30px;
}


/*=========================
      Home top student 
===========================*/

.home-top-student {
    background: #0061af url('../image/home-top-students-background.jpg') no-repeat center center / cover;
    overflow: hidden;
}

.home-top-student h2 {
    color: #fff;
}

.student-testimonial {
    height: 265px;
    margin-top: 20px;
    position: relative;
    margin-bottom: 20px;
}

.student-testimonial::after,
.student-testimonial::before {
    content: '';
    display: block;
    width: 1766px;
    height: 265px;
    background-size: 1766px 265px;
    background-repeat: no-repeat;
    background-image: url("../image/testimonial.png");
    position: absolute;
    -webkit-animation-duration: 160s;
    animation-duration: 160s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.student-testimonial:hover::after,
.student-testimonial:hover::before {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes appGridAnimationBeforeLarge {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-3948px, 0, 0);
        transform: translate3d(-3948px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(3948px, 0, 0);
        transform: translate3d(3948px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes appGridAnimationBeforeLarge {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-3948px, 0, 0);
        transform: translate3d(-3948px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(3948px, 0, 0);
        transform: translate3d(3948px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes appGridAnimationAfterLarge {
    0% {
        -webkit-transform: translate3d(3948px, 0, 0);
        transform: translate3d(3948px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-3948px, 0, 0);
        transform: translate3d(-3948px, 0, 0)
    }
}

@keyframes appGridAnimationAfterLarge {
    0% {
        -webkit-transform: translate3d(3948px, 0, 0);
        transform: translate3d(3948px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-3948px, 0, 0);
        transform: translate3d(-3948px, 0, 0)
    }
}

@-webkit-keyframes appGridStaggeredAnimationBeforeLarge {
    0% {
        -webkit-transform: translate3d(-150px, 0, 0);
        transform: translate3d(-150px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-3948px, 0, 0);
        transform: translate3d(-3948px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(3686px, 0, 0);
        transform: translate3d(3686px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-132px, 0, 0);
        transform: translate3d(-132px, 0, 0)
    }
}

@keyframes appGridStaggeredAnimationBeforeLarge {
    0% {
        -webkit-transform: translate3d(-150px, 0, 0);
        transform: translate3d(-150px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-3948px, 0, 0);
        transform: translate3d(-3948px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(3686px, 0, 0);
        transform: translate3d(3686px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-150px, 0, 0);
        transform: translate3d(-150px, 0, 0)
    }
}

@-webkit-keyframes appGridStaggeredAnimationAfterLarge {
    0% {
        -webkit-transform: translate3d(3668px, 0, 0);
        transform: translate3d(3668px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-158px, 0, 0);
        transform: translate3d(-158px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-3948px, 0, 0);
        transform: translate3d(-3948px, 0, 0)
    }
}

@keyframes appGridStaggeredAnimationAfterLarge {
    0% {
        -webkit-transform: translate3d(3668px, 0, 0);
        transform: translate3d(3668px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-165px, 0, 0);
        transform: translate3d(-165px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-3948px, 0, 0);
        transform: translate3d(-3948px, 0, 0)
    }
}

@-webkit-keyframes appGridAnimationBeforeMedium {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-2804px, 0, 0);
        transform: translate3d(-2804px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(2804px, 0, 0);
        transform: translate3d(2804px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes appGridAnimationBeforeMedium {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-2804px, 0, 0);
        transform: translate3d(-2804px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(2804px, 0, 0);
        transform: translate3d(2804px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes appGridAnimationAfterMedium {
    0% {
        -webkit-transform: translate3d(2804px, 0, 0);
        transform: translate3d(2804px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-2804px, 0, 0);
        transform: translate3d(-2804px, 0, 0)
    }
}

@keyframes appGridAnimationAfterMedium {
    0% {
        -webkit-transform: translate3d(2804px, 0, 0);
        transform: translate3d(2804px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-2804px, 0, 0);
        transform: translate3d(-2804px, 0, 0)
    }
}

@-webkit-keyframes appGridStaggeredAnimationBeforeMedium {
    0% {
        -webkit-transform: translate3d(-107px, 0, 0);
        transform: translate3d(-107px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-2804px, 0, 0);
        transform: translate3d(-2804px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(2616px, 0, 0);
        transform: translate3d(2616px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-95px, 0, 0);
        transform: translate3d(-95px, 0, 0)
    }
}

@keyframes appGridStaggeredAnimationBeforeMedium {
    0% {
        -webkit-transform: translate3d(-107px, 0, 0);
        transform: translate3d(-107px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-2804px, 0, 0);
        transform: translate3d(-2804px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(2616px, 0, 0);
        transform: translate3d(2616px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-95px, 0, 0);
        transform: translate3d(-95px, 0, 0)
    }
}

@-webkit-keyframes appGridStaggeredAnimationAfterMedium {
    0% {
        -webkit-transform: translate3d(2604px, 0, 0);
        transform: translate3d(2604px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-95px, 0, 0);
        transform: translate3d(-95px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-2804px, 0, 0);
        transform: translate3d(-2804px, 0, 0)
    }
}

@keyframes appGridStaggeredAnimationAfterMedium {
    0% {
        -webkit-transform: translate3d(2604px, 0, 0);
        transform: translate3d(2604px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-95px, 0, 0);
        transform: translate3d(-95px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-2804px, 0, 0);
        transform: translate3d(-2804px, 0, 0)
    }
}

@-webkit-keyframes appGridAnimationBeforeSmall {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-1766px, 0, 0);
        transform: translate3d(-1766px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(1766px, 0, 0);
        transform: translate3d(1766px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes appGridAnimationBeforeSmall {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-1766px, 0, 0);
        transform: translate3d(-1766px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(1766px, 0, 0);
        transform: translate3d(1766px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes appGridAnimationAfterSmall {
    0% {
        -webkit-transform: translate3d(1766px, 0, 0);
        transform: translate3d(1766px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-1766px, 0, 0);
        transform: translate3d(-1766px, 0, 0)
    }
}

@keyframes appGridAnimationAfterSmall {
    0% {
        -webkit-transform: translate3d(1766px, 0, 0);
        transform: translate3d(1766px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-1766px, 0, 0);
        transform: translate3d(-1766px, 0, 0)
    }
}

@-webkit-keyframes appGridStaggeredAnimationBeforeSmall {
    0% {
        -webkit-transform: translate3d(-52px, 0, 0);
        transform: translate3d(-52px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-1766px, 0, 0);
        transform: translate3d(-1766px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(1645px, 0, 0);
        transform: translate3d(1645px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-59px, 0, 0);
        transform: translate3d(-59px, 0, 0)
    }
}

@keyframes appGridStaggeredAnimationBeforeSmall {
    0% {
        -webkit-transform: translate3d(-52px, 0, 0);
        transform: translate3d(-52px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-1766px, 0, 0);
        transform: translate3d(-1766px, 0, 0)
    }
    50.001% {
        -webkit-transform: translate3d(1645px, 0, 0);
        transform: translate3d(1645px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-59px, 0, 0);
        transform: translate3d(-59px, 0, 0)
    }
}

@-webkit-keyframes appGridStaggeredAnimationAfterSmall {
    0% {
        -webkit-transform: translate3d(1652px, 0, 0);
        transform: translate3d(1652px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-59px, 0, 0);
        transform: translate3d(-59px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-1766px, 0, 0);
        transform: translate3d(-1766px, 0, 0)
    }
}

@keyframes appGridStaggeredAnimationAfterSmall {
    0% {
        -webkit-transform: translate3d(1652px, 0, 0);
        transform: translate3d(1652px, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(-59px, 0, 0);
        transform: translate3d(-59px, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-1766px, 0, 0);
        transform: translate3d(-1766px, 0, 0)
    }
}

.student-testimonial::before {
    -webkit-animation-name: appGridStaggeredAnimationBeforeSmall;
    animation-name: appGridStaggeredAnimationBeforeSmall;
}

.student-testimonial::after {
    -webkit-animation-name: appGridStaggeredAnimationAfterSmall;
    animation-name: appGridStaggeredAnimationAfterSmall;
}

.home-top-student .btn {
    text-transform: none;
    color: #fff;
    padding: 0 15px;
    margin-top: 35px;
}


/*
.top-student-box {
    float: left;
    width: calc(50% - 30px);
    margin: 0 15px;
    background: #fff;
    margin-bottom: 30px;
    text-align: center;
    min-height: 164px;
}

.top-student figure {
    margin-bottom: 10px;
    max-height: 126px;
    overflow: hidden;
}

.top-student h3 {
    font-size: 12px;
    font-family: 'Myriad Pro','Roboto Slab', serif;
    margin-bottom: 2px;
}

.top-student p {
    text-transform: uppercase;
    color: #00aeef;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.top-student img {
    max-width: 100%;
}

.carousel-control-container .carousel-control {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    background: transparent;
    border: 2px solid #fff;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    border-radius: 2px;
}

.carousel-control-container .carousel-control:last-child {
    margin-right: 0;
}

.carousel-control-container .carousel-control:hover,
.carousel-control-container .carousel-control:focus {
    border-style: dashed;
}

.carousel-control-container .carousel-control.left {
    background: url('../image/left-arrow.svg') no-repeat center center / 10px;
}

.carousel-control-container .carousel-control.right {
    background: url('../image/right-arrow.svg') no-repeat center center / 10px;
}

.carousel-control-container .carousel-control span {
    font-size: 0;
}
*/


/*=========================
      Inquiry Form 
===========================*/

.inquiry-form {
    background: #e5e5e5 url('../image/course-slider-bg.jpg') repeat left top;
}

.inquiry-form .form-group {
    position: relative;
}

.inquiry-form .btn-primary {
    color: #0061af;
    margin-bottom: 15px;
}

.inquiry-form .btn-primary:hover {
    background: #0061af;
    color: #fff;
}

.btn-reset:hover::before,
.btn-reset:focus::before,
.btn-reset:active::before {
    left: 120%;
}

div.wpcf7 .ajax-loader {
    position: absolute;
    top: 15px;
    left: 50%;
}

.form-recaptcha div {
    margin: 0 auto;
}


/*=========================
      Student Testimonial 
===========================*/

.what-student-say {
    margin-top: 30px;
}

.comma img {
    width: 73px;
}

.student-testimonials {
    padding: 15px;
    border: 2px solid #0061af;
}

.testimonial-slider {
    margin: 15px 0;
}

blockquote {
    padding: 0;
    border: none;
    margin: 0;
}

blockquote>p {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 35px;
}

blockquote footer {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

blockquote footer:before {
    content: "";
}

.student-image {
    margin-right: 15px;
}

.student-name p {
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
}

.student-name p:last-child {
    text-transform: uppercase;
}

.testimonial-slider .carousel-control-container {
    margin-top: -15px;
}

.testimonial-slider .carousel-control-container .carousel-control {
    border: none;
    margin-right: 0;
    height: 20px;
    width: 20px;
}


/*=========================
     Home Contact 
===========================*/

.sky-home-contact {
    background: #333 url('../image/contact-heading-bg.jpg') no-repeat center center / cover;
}

.sky-office-detail {
    padding: 30px 20px 15px;
    clear: both;
}

address strong {
    font-weight: 400;
    color: #0061af;
}

.ofiice-contact ul {
    margin-bottom: 30px;
}

.ofiice-contact li {
    color: #0061af;
    position: relative;
}

.ofiice-contact li:first-child::after {
    position: relative;
    content: "|";
    margin-left: 10px;
    color: #444;
}

.ofiice-contact li a {
    color: #444;
}

.ofiice-contact .list-single li {
    width: 100%;
    text-align: left;
}

.ofiice-contact .list-single li:first-child::after {
    display: none;
}

.sky-map {
    position: relative;
    z-index: 1;
}

.sky-map::after {
    position: absolute;
    display: none;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0;
    z-index: 2;
}

.sky-map .embed-responsive-item {
    z-index: 1;
}

.sky-office-detail {
    z-index: 2;
}


/*=========================
          Footer 
===========================*/

.sky-footer {
    background: #0061af;
    padding: 25px 0;
    text-align: center;
    color: #fff;
    letter-spacing: .25px;
    position: relative;
}

.sky-footer .return-to-top {
    position: absolute;
    top: -25px;
    height: 50px;
    width: 50px;
    background: #0061af;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 25px;
}

.sky-footer svg {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: -15px;
    margin-top: 9px;
}

.sky-footer a {
    color: #fff;
}

.sky-footer li:last-child {
    margin-right: 0;
}

.sky-footer p,
.sky-footer ul,
.sky-footer li {
    color: #fff;
}

.footer-link {
    text-align: left;
}

.footer-link li,
.copyright li {
    margin-bottom: 10px;
}

.footer-link li:last-child {
    margin-bottom: 0;
}

.footer-link:last-child {
    margin-bottom: 30px;
}

.copyright li:first-child {
    max-width: 204px;
    display: block;
    margin: 0 auto 10px;
}

.copyright li:first-child::after {
    display: none;
}

.copyright li:nth-child(2) {
    clear: both;
}

.copyright li span {
    display: block;
}

.copyright li {
    position: relative;
}

.copyright li::after {
    position: relative;
    content: "|";
    margin-left: 10px;
}

.copyright li:last-child {
    padding-right: 0;
}

.copyright li:last-child::after {
    display: none;
}


/*=========================
    Gallery
===========================*/

.sky-aos-box {
    margin-bottom: 6px;
    position: relative;
}

.caption {
    position: absolute;
    bottom: 10px;
    color: #fff;
    left: 10px;
    width: 100%;
    -webkit-transition: opacity 1.2s ease;
    transition: opacity 1.2s ease;
    text-align: left;
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
    opacity: 1;
}

.sky-page-content .caption h3,
.caption h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.sky-gallery .sky-aos-box img {
    width: 100%;
}


/*=========================
    Postal Coaching 
===========================*/

.sky-page-content {
    padding-bottom: 30px;
}

.sky-page-content h2,
.sky-page-content h1 {
    color: #0061af;
    line-height: 1.2;
}

.sky-page-content h1 {
    margin-bottom: 30px;
}

.sky-page-content h2,
.sky-page-content .sky-section h2 {
    margin-bottom: 20px;
    text-align: left;
}

.sky-page-content h2 small {
    display: block;
    color: #0061af;
    letter-spacing: .35px;
}

.sky-page-content .container>p {
    margin-bottom: 30px;
}

.sky-page-banner img {
    width: 100%;
}

.sky-tabbing p {
    margin-bottom: 13px;
}

.sky-tabbing .tab-content {
    margin-top: 30px;
}

.sky-tabbing ul {
    list-style: none;
    padding-left: 0;
}

.sky-tabbing li strong {
    color: #0061af;
    font-weight: 400;
}


/*=========================
        Faculty 
===========================*/

.da-thumbs {
    list-style: none;
    position: relative;
    margin: 20px auto;
    padding: 0;
}

.da-thumbs li {
    position: relative;
    margin-bottom: 30px;
    padding: 0 15px;
}

.da-thumbs li:last-child {
    margin-bottom: 0;
}

.da-thumbs li a,
.da-thumbs li a img {
    display: block;
    position: relative;
    width: 100%;
    cursor: default;
}

.da-thumbs li a {
    overflow: hidden;
}

.da-thumbs li a .hover {
    position: absolute;
    background: #333;
    background: rgba(0, 97, 175, 0.85);
    width: 100%;
    height: 100%;
    padding: 40px 30px;
}

.da-thumbs li a .hover span {
    display: block;
    margin: 40px 20px 20px 20px;
    text-transform: uppercase;
    font-weight: normal;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.da-thumbs li a .hover h3,
.da-thumbs li a .hover p {
    font-size: 22px;
    font-family: 'Myriad Pro', 'Roboto Slab', serif;
    color: #fff;
    font-weight: 400;
}

.da-thumbs li a .hover p {
    padding-bottom: 18px;
    border-bottom: 3px solid rgba(255, 255, 255, .2);
}

.da-thumbs .border-box {
    height: 29px;
    width: 100%;
    display: block;
    background: #fff;
    opacity: .2;
    margin-bottom: 25px;
}


/*=========================
        Sample paper 
===========================*/

.sample-paper-listing {
    margin-bottom: 40px;
}

.sample-paper-listing:last-child {
    margin-bottom: 0;
}

.institute-name {
    width: 140px;
    height: 140px;
    display: -ms-flex;
    display: -moz-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background: #0061af;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 15px;
}

.institute-name h3,
.sky-page-content .institute-name h3 {
    margin: 0;
    text-transform: uppercase;
    width: 100%;
    font-size: 24px;
    color: #fff;
}

.sample-paper {
    position: relative;
    padding: 30px 0;
    text-align: center;
    background: #ffede1;
}

.sample-paper::before {
    position: absolute;
    width: 100%;
    height: 30px;
    content: "";
    background: #ffede1;
    top: -30px;
    left: 0;
}

.download-paper {
    margin-bottom: 30px;
}

.download-paper:last-child {
    margin-bottom: 0;
}

.download-paper figure {
    position: relative;
    max-width: 78px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.download-pdf {
    position: absolute;
    width: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.download-file {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    background: #00aeef;
    padding: 2px;
    opacity: 1;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.download-paper svg {
    fill: #00aeef;
    -webkit-transition: fill 1s ease;
    transition: fill 1s ease;
    display: block;
}

.download-paper a:hover .download-pdf {
    -webkit-animation: arrow 5s 1;
    animation: arrow 5s 1;
}

.download-paper a:hover svg {
    fill: #0061b0;
}

.download-paper a {
    display: inline-block;
    text-decoration: none;
}

.download-paper p {
    -webkit-transition: color 1s ease;
    transition: color 1s ease;
}

.download-paper p span {
    display: block;
}

.download-paper a:hover p {
    color: #0061b0;
}

@-webkit-keyframes arrow {
    0% {
        top: 16px;
    }
    100% {
        top: calc(100% - 5px);
    }
}

@keyframes arrow {
    0% {
        top: 16px;
    }
    100% {
        top: calc(100% - 5px);
    }
}


/*=========================
    Sky Sidebar
===========================*/

.sky-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translateX(350px);
    transform: translateX(350px);
    width: 290px;
    background-color: rgba(68, 69, 68, .95);
    height: 100vh;
    z-index: 9999;
    -webkit-transition: transform 1s ease;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
    overflow: auto;
}

.sky-sidebar.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.sky-sidebar-menu {
    padding: 60px 20px 20px;
}

.sky-sidebar ul {
    overflow: hidden;
}

.sky-sidebar li {
    margin-bottom: 15px;
    opacity: 0;
    -webkit-transform: translateX(320px);
    transform: translateX(320px);
    -webkit-transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.3s ease-in 0.3s;
    -webkit-transition: opacity 0.3s ease-in 0.3s, -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    transition: opacity 0.3s ease-in 0.3s, -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.3s ease-in 0.3s;
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.3s ease-in 0.3s, -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.sky-sidebar li a {
    color: #fff;
    position: relative;
    font-family: 'Myriad Pro', 'Montserrat', sans-serif;
    font-size: 15px;
    display: inline-block;
    padding: 10px 0 10px 50px;
    overflow: hidden;
    -webkit-transition: color .3s ease-in;
    transition: color .3s ease-in;
    text-decoration: none;
}

.sky-sidebar li a span {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sky-sidebar li svg {
    fill: #fff;
    -webkit-transition: fill .3s ease-in;
    transition: fill .3s ease-in;
}

.sky-sidebar li:hover a,
.sky-sidebar li:focus a,
.sky-sidebar li:active a,
.sky-sidebar li a:hover {
    color: #00aeef;
}

.sky-sidebar li:hover svg,
.sky-sidebar li:focus svg,
.sky-sidebar li:active svg {
    fill: #00aeef;
}

.sky-sidebar li:hover a::after {
    left: calc(100% - 30px);
}

.sky-sidebar.open li {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.sky-sidebar.open li:first-child {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.sky-sidebar.open li:nth-child(2) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.sky-sidebar.open li:nth-child(3) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.sky-sidebar.open li:nth-child(4) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

.sky-sidebar.open li:nth-child(5) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}

.sky-sidebar.open li:nth-child(6) {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
}

.sky-sidebar.open li:nth-child(7) {
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
}

.sky-sidebar.open li:nth-child(8) {
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
}

.sky-sidebar.open li:nth-child(9) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.sky-sidebar.open li:nth-child(10) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.sky-sidebar.open li:nth-child(11) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.sky-sidebar.open li:nth-child(12) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.sky-sidebar.open li:nth-child(13) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.sky-sidebar.open li:nth-child(14) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.sky-sidebar.open li:nth-child(15) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.sky-sidebar.open li:nth-child(16) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.sky-sidebar.open li:nth-child(17) {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.sky-sidebar.open li:nth-child(18) {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
}

.sky-sidebar.open li:nth-child(19) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.close-sidebar {
    position: absolute;
    left: 20px;
    top: 15px;
}

.close-sidebar svg {
    width: 30px;
    fill: #00aeef;
    cursor: pointer;
}


/*=========================
        Join us 
===========================*/

.redstrik {
    color: #0061af;
}

.sky-apply-form {
    margin-top: 30px;
}

.sky-apply-form .btn:hover::before {
    left: 85%;
}


/*=========================
    Panel css
===========================*/

.panel {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.panel-group .panel+.panel {
    margin-top: 20px;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 1s ease;
    transition: height 1s ease;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-default {
    border: none;
}

.panel-default>.panel-heading {
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.panel-title,
.sky-section .panel-title,
.sky-section .panel-title:last-of-type {
    margin-bottom: 0;
    font-weight: 400;
}

.panel-title a {
    display: inline-block;
    padding: 10px 15px 10px 40px;
    font-size: 22px;
    color: #0061af;
    text-decoration: none;
    position: relative;
}

.panel-title a::before {
    position: absolute;
    left: 7px;
    top: 45%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    background: #0061af;
    width: 3px;
    height: 17px;
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.panel-title a.collapsed::before {
    opacity: 1;
    visibility: visible;
}

.panel-title a::after {
    position: absolute;
    left: 0;
    top: 45%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    background: #0061af;
    width: 17px;
    height: 3px;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: none;
}

.panel-body {
    padding-left: 40px;
}

.sky-tabbing .panel-body {
    padding-left: 15px;
}

.sky-tabbing .panel-body p {
    color: #444;
}


/*=========================
    About page css 
===========================*/

.sky-about-us {
    background: #e2dedd url('../image/about-us-bg.jpg') no-repeat left top;
}

.sky-inner-about-pic {
    position: relative;
    z-index: 2;
}

.sky-inner-about-pic .img-responsive {
    margin: 0 auto;
}

.sky-about-detail {
    background: #ececec;
    padding: 30px 15px;
    position: relative;
    text-align: center;
}

.sky-about-detail::before {
    position: absolute;
    top: -40px;
    height: 40px;
    width: 100%;
    left: 0;
    content: "";
    background: #ececec;
}

.sky-about-detail p:last-of-type,
.sky-about-detail ul {
    margin-bottom: 25px;
}

.sky-about-detail p:last-child,
.sky-about-detail ul:last-child {
    margin-bottom: 0;
}

.sky-workshop {
    background: #efeded;
    position: relative;
}

.sky-workshop * {
    position: relative;
}

.sky-workshop-detail {
    color: #fff;
    padding: 30px 15px;
}

.sky-workshop-detail h3 {
    font-size: 16px;
    color: #0061af;
}

.sky-registration {
    padding-bottom: 60px;
}

.registration-steps {
    margin-bottom: 18px;
}

.registration-steps:last-of-type {
    margin-bottom: 40px;
}

.step {
    width: 115px;
    height: 115px;
    background: #fff;
    border-radius: 100%;
    border: 12px solid #00aeef;
    position: relative;
    text-align: center;
    margin: 0 auto;
    z-index: 2;
}

.step span {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #0061af;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    padding-top: 10px;
    padding-left: 3px;
}

.step-details {
    background: #0061af;
    color: #fff;
    padding: 15px 30px 30px;
    position: relative;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.step-details::before {
    position: absolute;
    left: 0;
    top: -20px;
    width: 100%;
    content: "";
    height: 20px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: #0061af;
}

.step-details p {
    color: #fff;
}

.step-details a {
    color: #fff;
}

.course-content li,
.sky-about-detail li {
    margin-bottom: 12px;
    text-align: center;
}


/*.sky-vision {
    background-color: #f7eed7;
}*/

.sky-vision .icon {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    background-color: #0061af;
    border: 3px solid #00aeef;
    position: relative;
    margin: 0 auto 12px;
}

.sky-vision .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sky-page-content .sky-vision h3 {
    margin-bottom: 0;
}

.sky-vision-box {
    padding-bottom: 30px;
    position: relative;
    margin-bottom: 30px;
}

.sky-vision-box::after {
    height: 1px;
    width: calc(100% - 30px);
    border-bottom: 1px dashed #948985;
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
}

.sky-vision-box:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.sky-vision-box:last-child::after {
    display: none;
}


/*=========================
    Infrasturcture 
===========================*/

.infrastructure-list {
    background-image: url('../image/infrastructure.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-transition: all 1s linear;
    transition: all 1s linear;
    padding-top: 150px;
    text-align: center;
}

.infrastructure-list .container {
    position: relative;
}

.infrastructure-list .container::before {
    position: absolute;
    top: -7px;
    left: 7px;
    width: calc(100% - 14px);
    height: calc(100% + 14px);
    content: "";
    background: #e2dfde;
    display: block;
}

.infrastructure-list .container * {
    position: relative;
}

.infrastructure-box {
    background: #efeded;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    padding: 25px;
    margin-bottom: 7px;
}

.infrastructure-box:last-child {
    margin-bottom: 0;
}

.infrastructure-box h3 {
    color: #0061af;
    margin-bottom: 15px;
    font-size: 18px;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}

.infrastructure-box p {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.infrastructure-box .icon {
    min-height: 44px;
    margin-bottom: 25px;
}

.infrastructure-box svg {
    height: 44px;
    display: block;
    fill: #0061af;
    margin: 0 auto;
    -webkit-transition: fill .8s ease-in-out;
    transition: fill .8s ease-in-out;
}

.infrastructure-box:hover,
.infrastructure-box:focus,
.infrastructure-box:active {
    background: #0061af;
}

.infrastructure-box:hover h3,
.infrastructure-box:focus h3,
.infrastructure-box:active h3,
.infrastructure-box:hover p,
.infrastructure-box:focus p,
.infrastructure-box:active p {
    color: #fff;
}

.infrastructure-box:hover svg,
.infrastructure-box:focus svg,
.infrastructure-box:active svg {
    fill: #fff;
}

.sky-infrastructure {
    padding-bottom: 30px;
}

.sky-infrastructure h2 {
    margin-bottom: 0;
}

.why-skyblue {
    margin-top: 30px;
}

.why-skyblue .owl-carousel {
    position: relative;
}

.why-skyblue .owl-carousel .owl-nav .owl-next,
.why-skyblue .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    text-indent: -9999px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.why-skyblue .owl-carousel .owl-nav .owl-next {
    left: 0;
    background: url('../image/left-blue.svg') no-repeat center center;
}

.why-skyblue .owl-carousel .owl-nav .owl-prev {
    right: 0;
    background: url('../image/right-blue.svg') no-repeat center center;
}

.why-skyblue .owl-dots {
    display: none;
}

.why-skyblue .item {
    text-align: center;
}

.why-skyblue .icon {
    position: relative;
    display: inline-block;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: #fff;
    margin-bottom: 10px;
}

.why-skyblue .icon img {
    position: absolute;
    width: auto;
    max-width: 90px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.why-skyblue h3 {
    font-size: 18px;
    font-weight: 300;
    color: #444;
}


/*===================================
    Design & Architecture Courses 
=====================================*/

.sky-inner-courses {
    margin-bottom: 35px;
}

.sky-inner-courses:last-child {
    margin-bottom: 0;
}

.sky-inner-courses.focus .sky-about-detail::before,
.sky-inner-courses.focus .sky-about-detail {
    background: #e5f7fd;
}

.sky-inner-courses .sky-inner-about-pic img {
    border-top: 4px solid #0061af;
    border-left: 4px solid #0061af;
}

.class-fee {
    margin-bottom: 25px;
}

.class-fee span {
    padding: 4px 7px;
    display: inline-block;
    background: #0061af;
    color: #fff;
    font-size: 14px;
}

.apply-for-course .btn-primary {
    padding: 14px 50px;
}

.sky-tabbing .panel::before,
.sky-tabbing .panel::after {
    display: none;
}


/*=========================
    Form outs for 
===========================*/

.sky-page-content .institute-box,
.institute-box {
    margin-bottom: 30px;
}

.institute-box figure {
    position: relative;
    margin: 0 auto;
    max-width: 360px;
}

.institute-box figure img {
    -webkit-transition: transform 1s ease 0s;
    -webkit-transition: -webkit-transform 1s ease 0s;
    transition: -webkit-transform 1s ease 0s;
    transition: transform 1s ease 0s;
    transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
    z-index: 2;
    position: relative;
    opacity: .95;
}

.institute-box figure:hover img {
    -webkit-transform: translateY(-50px) scale(0.5);
    transform: translateY(-50px) scale(0.5);
}

.institute-box figcaption {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    background: #2c3f52 url('../image/nid-college-dark.jpg') no-repeat center center / cover;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.institute-box figcaption .btn-primary {
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(0, 97, 175, .85);
    color: #fff;
    padding: 10px 25px;
}

.institute-box figcaption .btn-primary:hover,
.institute-box figcaption .btn-primary:focus {
    background-color: #0061af;
}


/*=========================
    Results 
===========================*/

.animation-element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.sky-student {
    margin-bottom: 10px;
    text-align: center;
}

.sky-student img {
    border: 1px solid #ccc;
    margin: 0 auto 10px;
}

.sky-student h3 {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    text-transform: none;
}

.sky-student p {
    text-transform: uppercase;
    font-size: 13px;
}


/*=========================
    Contact Us page 
===========================*/

.sky-page-content .sky-office-detail {
    padding-top: 0;
    padding-bottom: 0;
}

.sky-page-content address {
    margin-bottom: 0;
}

.sky-page-content .ofiice-contact {
    margin-bottom: 30px;
}

.sky-page-content .ofiice-contact li {
    margin-bottom: 2px;
}

.contact-form {
    margin-bottom: 40px;
}


/*=========================
    Career in Design 
===========================*/

.sky-gray {
    background: #ececec;
    position: relative;
}


/*.sky-career .sky-gray::before {
    position: absolute;
    left: -30px;
    top: 60px;
    width: calc(100% + 60px);
    content: "";
    background: #ececec;
    height: calc(100% - 60px);
    display: block;
}*/

.sky-coaching-criteria {
    text-align: center;
    margin-bottom: 30px;
}

.sky-coaching-criteria .icon {
    position: relative;
    display: inline-block;
    border-radius: 100%;
    height: 150px;
    width: 150px;
    margin-bottom: 18px;
    background: #f4efc6;
}

.sky-coaching-criteria svg {
    position: absolute;
    max-width: 90px;
    max-height: 75px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/*=========================
    Design Program 
===========================*/

.sky-program {
    padding-bottom: 0;
}

.sky-program .sky-section h1,
.sky-program .sky-section h2 {
    font-size: 24px;
    max-width: 180px;
}

.sky-program .sky-section p {
    max-width: 180px;
}

.sky-program .sky-page-heading p {
    max-width: 165px;
}

.sky-program .sky-batch-schedule p {
    max-width: none;
}

.sky-page-content .sky-page-heading {
    margin-bottom: 30px;
}

.sky-page-content .sky-page-heading h1 {
    margin-bottom: 0;
    color: #444;
}

.sky-page-content .sky-program-detail_small .sky-page-heading,
.sky-program .sky-section .sky-program-detail_small h2,
.sky-program .sky-section .sky-program-detail_small h2 {
    margin-bottom: 20px;
}

.sky-page-content .sky-program-detail_small h1 {
    color: #0071c0;
}

.sky-fashion-design {
    background: #faeef0 url('../image/fashion-mobile-bg.png') no-repeat left top / 100%;
}

.apply-for-course .radio {
    margin: 0 0 15px;
}

.apply-for-course .radio:last-of-type {
    margin-bottom: 30px;
}

.sky-interior-design {
    background: #f5ebe3 url('../image/interior-small-bg.png') no-repeat left top / 100%;
}

.sky-jewellery-design {
    background: #fff url('../image/jewellery-small-bg.png') no-repeat calc(100% + 100px) top / 250px;
}

.sky-fine-arts {
    background: #e2f3e9 url('../image/fine-art-small-bg.png') no-repeat right top / 100%;
}

.sky-photography {
    background: #faf1e8 url('../image/photography-small-bg.png') no-repeat right top / 100%;
}

.sky-program .course-heading {
    margin-bottom: 20px;
}

.sky-program .course-heading h2:last-of-type {
    margin-bottom: 5px;
}

.sky-study-abroad {
    background: url('../image/study-abroad-plain-bg.png') no-repeat right top / cover;
}


/*=========================
    Top Colleges 
===========================*/

.sky-top-colleges ul li {
    float: left;
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
}

.sky-top-colleges ul li img {
    width: 100%;
}

.sky-top-colleges ul li:nth-child(3n) {
    margin-right: 0;
}

.sky-top-colleges ul li:nth-child(3n+1) {
    clear: both;
}

.sky-page-content .sky-top-colleges ul {
    margin-bottom: 45px;
}


/*=========================
    Infographics 
===========================*/

.sky-infographics {
    margin-bottom: 15px;
}

.sky-program .sky-section h1,
.sky-program .sky-section h2 {
    margin-bottom: 0;
}

.sky-program .sky-section p:first-of-type {
    margin-bottom: 30px;
}

.sky-program h3 {
    margin-bottom: 0;
}

.sky-batch-schedule {
    background: #e0e0e0;
}

.sky-program .sky-batch-schedule h2,
.sky-batch-schedule h2 {
    margin-bottom: 25px;
    max-width: none;
}


/*=========================
        Course Content 
===========================*/

.course__text {
    margin-top: 30px;
}

.course__content__box {
    margin-bottom: 30px;
}

.course__content__box:last-child {
    margin-bottom: 0;
}

.course__text h4 {
    font-weight: 300;
    font-size: 16px;
    color: #0061af;
}

.course__text ol li::before {
    display: none;
}

.sky-page-content .course__text.sky-about ol li {
    padding-left: 3px;
    list-style: lower-alpha;
}


/*=========================
    Design Architecture page
===========================*/

.radio-container {
    margin-bottom: 20px;
}

.radio-container input[type="radio"]+label {
    font-size: 18px;
    font-weight: 300;
    color: #0061af;
}

.radio-container input[type="radio"]+label span {
    border-radius: 100%;
}

.radio-detail {
    display: none;
    margin-bottom: 30px;
    padding-left: 30px;
}

.fees,
.sky-page-content .fees {
    margin-bottom: 25px;
    font-weight: 300;
}

.symbol-rupees {
    font-size: 83%;
}

.sky-nift {
    background: #fceae8;
    padding-bottom: 0 !important;
}

.sky-nift .sky-section {
    padding-bottom: 0;
}

.sky-nift .sky-section p {
    max-width: 650px;
}

.sky-nift .container {
    position: relative;
    z-index: 2;
}

.sky-nift img {
    width: 100%;
    margin-top: -25vw;
}

.postal-features .flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.postal-features p {
    font-size: 13px;
    margin-bottom: 8px;
}

.postal-features p strong {
    color: #0061af;
}

.feature__text,
.feature__button {
    margin-bottom: 20px;
}

.feature__button .btn {
    max-width: 200px;
}

.checkbox .wpcf7-list-item input[type="checkbox"] {
    display: block;
    margin-top: 9px;
}

.checkbox .wpcf7-list-item label {
    padding-left: 7px;
}

.your-rules .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    min-width: 250px;
}


/*=========================
    Development Changes 
===========================*/

.inquiry-form {
    position: relative;
}

.form-group_amount .form-control {
    padding-left: 30px;
}

.symbol {
    font-family: "Roboto Slab", serif;
    font-size: 15px;
    margin-right: 2px;
}

.program-fees h2 .symbol {
    font-size: 30px;
}

.page-template-template-study-abroad .program-fees h2 .symbol {
    font-size: 25px;
}

.form-group_amount .symbol {
    position: absolute;
    top: 12px;
    left: 30px;
    color: #0061af;
}

div.wpcf7 .ajax-loader {
    width: 24px;
    height: 24px;
    top: 100%;
    background-image: url('../image/loading.svg');
    background-size: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.load-more-btn {
    margin-top: 40px;
}

.load-more-btn .btn {
    padding: 12px 15px;
    min-width: 200px;
}

.apply-for-course .radio label {
    padding-left: 0;
}

.sky-section_big {
    background-repeat: no-repeat;
    background-size: cover;
}

#under-graduation-course {
    background-size: 100%;
    background-position: center bottom;
    padding-bottom: 60vw;
}

#jewellery-design .list-inline {
    margin-left: 0;
}

#jewellery-design .list-inline li {
    display: block;
}

.sky-ceed {
    padding-bottom: 75vw;
    background: #eef0f1 url("../image/nid-ceed.jpg") no-repeat scroll 50% bottom / 100% auto;
}

.page-template-template-nid-ceed-studio-test .sky-page-content {
    padding-bottom: 0;
}

.page-template-template-nid-ceed-studio-test .sky-registration {
    background: #e7e9ea;
}

#fashion-design {
    background-color: #e7dbdd;
}

#interior-design {
    background-color: #ededed;
}

#jewellery-design {
    background-color: #ededed;
}

#graphic-design {
    background-color: #f3f6ef;
}

#fine-arts {
    background-color: #efefef;
}

#product-design {
    background-color: #dde5e7;
}

#illustration {
    background-color: #f3eae1;
}

#photography {

    background-color: #f3f3f3;
}

.page-template-template-online-payment div.wpcf7 .ajax-loader,
.modal div.wpcf7 .ajax-loader,
.contact-form div.wpcf7 .ajax-loader {
    position: relative;
    left: initial;
    top: initial;
    margin-left: 25px;
    -webkit-transform: none;
    transform: none;
}

.page-content {
    margin-top: -50px;
}

.postal-gridding-tab .checkbox label {
    padding-left: 0;
}

.form-group_relative {
    position: relative;
}

div.wpcf7 .form-group_relative .ajax-loader {
    display: inline-block;
    position: relative;
    top: initial;
    left: inherit;
    -webkit-transform: none;
    transform: none;
    margin-left: 25px;
}

.sky-page-content.sky-page-content_abroad {
    padding-bottom: 0;
}

.datepicker.form-control[readonly] {
    background-color: #fff;
}


/*=========================
        404 page 
===========================*/

.not-found {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100vh - 113px);
}

.not-found .container {
    padding: 50px 15px;
    min-height: 50px;
}

.not-found h1,
.not-found p,
.not-found h2,
.not-found h3 {
    font-weight: 300;
    color: #0061af;
}

.not-found h1 {
    font-size: 28px;
}

.not-found p,
.not-found h2 {
    font-size: 20px;
}

.response-icon img {
    max-width: 60px;
    margin: 0 auto 30px;
}

.transaction h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.not-found .transaction p {
    font-size: 14px;
}

.not-found-space {
    padding-top: 50px;
    padding-bottom: 50px;
}

main.sky-page-content.sky-program.sky-page-content_abroad.location.scroll {
    padding-top: 0;
}

/*=========================
        Responsive 
===========================*/

@media (min-width: 400px) and (max-width: 992px) {
    .da-thumbs li {
        width: 50%;
        padding: 0 4px 0 15px;
        margin-bottom: 8px;
    }
    .da-thumbs li:nth-child(even) {
        padding-left: 4px;
        padding-right: 15px;
    }
    .da-thumbs li a .hover {
        padding: 15px;
    }
    .da-thumbs .border-box {
        height: 8px
    }
    .da-thumbs li a .hover h3,
    .da-thumbs li a .hover p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .sidemenu-opener {
        position: absolute;
        right: 15px;
        top: 27px;
    }
    .sidemenu-opener .nav-icon {
        margin-top: 0;
    }
    .sky-study-abroad .sky-section {
        padding-bottom: 0;
    }
    .sky-program .sky-study-abroad h1,
    .sky-program .sky-study-abroad h2,
    .sky-program .sky-study-abroad p {
        max-width: none;
    }
    .component-fullwidth li img {
        max-width: 100%;
    }
    /* Responsive Tab */
    .nav-tabs-responsive {
        z-index: 99;
        position: relative;
    }
    .nav-tabs-responsive.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 97, 175, .8);
        padding: 0 15px;
    }
    .tab-content.sticky {
        padding-top: 75px;
    }
    .nav-tabs-responsive>li {
        display: none;
        width: 23%;
    }
    .nav-tabs-responsive>li.prev::before,
    .nav-tabs-responsive>li.prev::after,
    .nav-tabs-responsive>li.prev>a::before,
    .nav-tabs-responsive>li.prev>a::after,
    .nav-tabs-responsive>li.next::before,
    .nav-tabs-responsive>li.next::after,
    .nav-tabs-responsive>li.next>a::before,
    .nav-tabs-responsive>li.next>a::after {
        background-color: transparent;
        top: initial;
        left: initial;
        bottom: initial;
    }
    .nav-tabs-responsive>li>a {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-wrap: normal;
        width: 100%;
        width: 100%;
        text-align: center;
        vertical-align: top;
    }
    .nav-tabs-responsive.sticky>li>a {
        color: #fff;
        border-color: transparent;
    }
    .nav-tabs-responsive.sticky>li {
        border-color: rgba(0, 97, 175, .9);
        border: none;
        margin-bottom: 0;
    }
    .nav-tabs-responsive.sticky>li.prev::before,
    .nav-tabs-responsive.sticky>li.prev::after,
    .nav-tabs-responsive.sticky>li.prev>a::before,
    .nav-tabs-responsive.sticky>li.prev>a::after,
    .nav-tabs-responsive.sticky>li.next::before,
    .nav-tabs-responsive.sticky>li.next::after,
    .nav-tabs-responsive.sticky>li.next>a::before,
    .nav-tabs-responsive.sticky>li.next>a::after {
        border-color: transparent;
    }
    .nav-tabs-responsive.sticky>li::before,
    .nav-tabs-responsive.sticky>li::after,
    .nav-tabs-responsive.sticky>li>a::before,
    .nav-tabs-responsive.sticky>li>a::after,
    .nav-tabs-responsive.sticky>li.active>a,
    .nav-tabs-responsive.sticky>.active>a:active,
    .nav-tabs-responsive.sticky>li.active>a:focus,
    .nav-tabs-responsive.sticky>.active:hover>a {
        background-color: transparent;
        border-color: transparent;
    }
    .nav-tabs-responsive>li.active {
        width: 54%;
    }
    .nav-tabs-responsive>li.active:first-child {
        margin-left: 23%;
    }
    .nav-tabs-responsive>li.active,
    .nav-tabs-responsive>li.prev,
    .nav-tabs-responsive>li.next {
        display: block;
    }
    .nav-tabs-responsive>li.prev,
    .nav-tabs-responsive>li.next {
        -webkit-transform: scale(1);
        transform: scale(1);
        border: none;
    }
    .nav-tabs-responsive>li.next::before,
    .nav-tabs-responsive>li.prev::after,
    .nav-tabs-responsive>li.prev>a::before,
    .nav-tabs-responsive>li.prev>a::after,
    .nav-tabs-responsive>li.next>a::after,
    .nav-tabs-responsive>li.next>a::before {
        display: none;
    }
    .nav-tabs-responsive>li.prev:hover::before {
        display: none
    }
    .nav-tabs-responsive>li.next>a,
    .nav-tabs-responsive>li.prev>a {
        -webkit-transition: none;
        transition: none;
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 45px;
    }
    .nav-tabs-responsive>li.prev>a::after,
    .nav-tabs-responsive>li.next>a::after {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    .nav-tabs-responsive>li.next>a .text,
    .nav-tabs-responsive>li.prev>a .text {
        display: none;
    }
    .nav-tabs-responsive>li.next>a:after,
    .nav-tabs-responsive>li.next>a:after,
    .nav-tabs-responsive>li.prev>a:after,
    .nav-tabs-responsive>li.prev>a:after {
        position: relative;
        top: 1px;
        display: inline-block;
        font-family: 'Glyphicons Halflings';
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin: 0 auto;
    }
    .nav-tabs-responsive>li.prev>a:after {
        content: "\e079";
        height: auto;
        width: auto;
        background-color: transparent;
    }
    .nav-tabs-responsive>li.next>a:after {
        content: "\e080";
        height: auto;
        width: auto;
        background-color: transparent;
    }
    .nav-tabs-responsive>li.dropdown>a>.caret {
        display: none;
    }
    .nav-tabs-responsive>li.dropdown>a:after {
        content: "\e114";
    }
    .nav-tabs-responsive>li.dropdown.active>a:after {
        display: none;
    }
    .nav-tabs-responsive>li.dropdown.active>a>.caret {
        display: inline-block;
    }
    .nav-tabs-responsive>li.dropdown .dropdown-menu.pull-xs-left {
        left: 0;
        right: auto;
    }
    .nav-tabs-responsive>li.dropdown .dropdown-menu.pull-xs-center {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .nav-tabs-responsive>li.dropdown .dropdown-menu.pull-xs-right {
        left: auto;
        right: 0;
    }
    .nav-tabs-responsive>.active::before,
    .nav-tabs-responsive>.active::after,
    .nav-tabs-responsive>li:hover::before,
    .nav-tabs-responsive>li:hover::after,
    .nav-tabs-responsive>li:hover>a::before,
    .nav-tabs-responsive>li:hover>a::after {
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
    }
    /*====== developer changes ========*/
    .page-template-template-online-payment .wpcf7-form {
        margin-top: 30px;
    }
    .sky-study-abroad {
        background-position: left top;
    }
    .sky-map {
        display: none;
    }
    .banner-tagline {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .rc-anchor-logo-portrait {
        margin-left: 0;
    }
    .rc-anchor-normal .rc-anchor-content {
        width: 160px;
    }
    .rc-anchor-normal.rc-anchor-error .rc-anchor-error-msg-container {
        margin: 0;
    }
    .rc-anchor-normal {
        max-width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media (min-width: 400px) {
    .top-student-box {
        width: calc( (100% / 3) - 30px);
    }
    .top-student-box:nth-child(3n+1) {
        clear: both;
    }
}

@media (min-width: 768px) {
    /*=========================
              Common 
    ===========================*/
    .sky-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .sky-section h2 {
        margin-bottom: 30px;
        font-size: 36px;
    }
    /*=========================
         Modal
    ===========================*/
    .modal-small .modal-dialog .modal-content {
        max-width: 350px;
        margin: 30px auto 0;
    }
    .md-content {
        margin: 30px auto 0;
    }
    /*=========================
         Table
    ===========================*/
    .table .hide-small {
        display: inline-block;
    }
    /*=========================
          top header
    ===========================*/
    .top-header {
        padding: 0;
    }
    .top-header ul {
        display: flex;
        justify-content: flex-end;
    }
    .top-header li {
        padding: 0 10px;
        border-right: 1px solid rgba(255, 255, 255, .5);
        position: relative;
        display: inline-flex;
        align-items: center;
    }
    .top-header li span {
        display: inline-block;
        margin-left: 5px;
    }
    .top-header li span img {
        max-width: 15px;
    }
    .top-header li:first-child {
        border-right: none;
    }
    .top-header li:last-child {
        padding: 0;
    }
    .top-header .facebook a,
    .top-header .twitter a,
	.top-header .youtube a,
	.top-header .instagram a,
	.top-header .search-top a{
        display: block;
        width: 46px;
        height: 46px;
    }
    .top-header .search-top a {
        background: url('../image/search-icon.svg') no-repeat center center / 22px;
    }
    .top-header .facebook a {
        background: url('../image/socialicon/facebook.png') no-repeat center center / 20px;
    }
	
	.top-header .twitter a {
        background: url('../image/socialicon/twitter.png') no-repeat center center / 20px;
    }
	
	.top-header .youtube a {
        background: url('../image/socialicon/youtube.png') no-repeat center center / 20px;
    }
	
	.top-header .instagram a {
        background: url('../image/socialicon/instagram.png') no-repeat center center / 20px;
    }	
	
	
    .top-header .search-top {
        z-index: 2;
    }
    .top-header .search-form {
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        -webkit-transition: width 1.3s ease;
        transition: width 1.3s ease;
        overflow: hidden;
    }
    .top-header .search-form .form-control {
        border: none;
        padding: 10px;
        height: 46px;
        background: #fff;
    }
    .top-header .open.search-form {
        width: 460px;
    }
    .search-icon {
        position: absolute;
        right: 0;
        top: 0;
        width: 46px;
        height: 46px;
        background: #00aeef url('../image/search-icon.svg') no-repeat center center / 22px;
        -webkit-appearance: none;
        -moz-appearance: none;
        border: none;
    }
    /*=========================
          top navigation
    ===========================*/
    .sky-nav {
        position: relative;
    }
    .sky-nav .navbar-collapse {
        width: calc(100% - 185px);
        float: right;
        padding-right: 0;
    }
    .sky-nav .navbar-nav {
        width: 100%;
        display: -ms-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .sky-nav .navbar-brand {
        padding: 19px 15px;
    }
    .sky-nav .navbar-nav>li:first-child {
        width: 180px;
    }
    .sky-nav .navbar-nav>li:nth-child(2) {
        width: 130px;
    }
    .sky-nav .navbar-nav>li:last-child {
        width: 30px;
        padding-bottom: 18px;
    }
    .sky-nav .navbar-nav>li {
        width: calc( (100% - 243px) / 3);
        position: inherit;
    }
    .sky-nav .navbar-nav>li>a {
        padding: 15px 5px 0;
        font-size: 15px;
    }
    .sky-nav .navbar-nav>.dropdown>a {
        padding-bottom: 25px;
    }
    .sky-nav .navbar-nav .caret {
        position: absolute;
        top: inherit;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        right: inherit;
        bottom: 5px;
        left: 0;
        margin: 0;
    }
    .sky-nav .navbar-nav>.open>a .caret {
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
    .sky-nav .dropdown-menu,
    .sky-nav .open .dropdown-menu {
        display: block;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transition: all .5s ease-in-out 0s;
        transition: all .5s ease-in-out 0s;
        border: none;
        border-radius: 0;
        width: 100%;
        padding: 10px calc( (100vw - 750px) / 2);
        background: #055295;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .sky-nav .navbar-nav>.open>.dropdown-menu {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    .sky-nav .dropdown-menu li,
    .sky-nav .open .dropdown-menu li {
        float: left;
        width: calc(100% / 3);
        margin-bottom: 10px;
    }
    .sky-nav .dropdown-menu>li>a,
    .sky-nav .dropdown-menu>li:hover>a,
    .sky-nav .navbar-nav .open .dropdown-menu>li>a,
    .sky-nav .navbar-nav .dropdown-menu>li>a {
        color: #fff;
        background: transparent;
    }
    .sky-nav .navbar-nav>li:nth-child(4)>a {
        padding-bottom: 19px;
    }
    /*=========================
          Fixed navigation
    ===========================*/
    .affixed {
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 999;
        top: 0;
        -webkit-animation: slide-down 0.7s;
        animation: slide-down 0.7s;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.27);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.27);
    }
    @-webkit-keyframes slide-down {
        0% {
            opacity: 0;
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    @keyframes slide-down {
        0% {
            opacity: 0;
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    @-webkit-keyframes slide-ups {
        0% {
            opacity: 0;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }
    }
    @keyframes slide-ups {
        0% {
            opacity: 0;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }
    }
    .navbar {
        top: 0;
        left: 0;
    }
    .velocity-animating .affixed {
        position: relative !important;
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }
    .velocity-animating .scroll {
        margin: 0;
        padding: 0;
    }
    /*=========================
          Banner
    ===========================*/
    .component {
        height: calc(100vh - 126px);
    }
    .sky-banners {
        position: relative;
    }
    .banner-text {
        background: rgba(0, 97, 175, .8);
        position: absolute;
        bottom: 140px;
        right: calc((100% - 750px) / 2);
        max-width: 380px;
        padding: 20px;
        z-index: 8;
        display: block;
        text-align: left;
        top: initial;
        -webkit-transform: none;
        transform: none;
    }
    .banner-text h1,
    .banner-text h2 {
        font-size: 30px;
        text-shadow: none;
        font-weight: 300;
        margin-bottom: 15px;
    }
    .banner-text p {
        display: block;
    }
    .sky-banners nav {
        bottom: 89px;
        height: 44px;
        right: calc((100% - 750px) / 2);
        z-index: 9;
        top: initial;
        left: initial;
        margin-top: 0;
        -webkit-transform: none;
        transform: none;
    }
    /*=========================
          Home about 
    ===========================*/
    .row-fluid {
        display: -ms-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .row-fluid .image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: all 7s ease;
        transition: all 7s ease;
    }
    .row-fluid>div img {
        -webkit-transition: all 7s ease;
        transition: all 7s ease;
    }
    .about-image img {
        width: 100%;
    }
    .office-left img,
    .office-right img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        display: none;
    }
    .home-about h2 {
        margin-bottom: 30px;
    }
    .about-sky p {
        margin: 0 auto 40px;
        max-width: 400px;
    }
    /*=========================
          Home Course slider 
    ===========================*/
    .grid-list {
        max-width: none;
    }
    .grid figcaption h2 {
        -webkit-transform: translateY(75px);
        transform: translateY(75px);
        margin: 0;
    }
    .grid-list:hover figcaption h2 {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    /*=========================
            Home top student 
    ===========================*/
    .top-student-box:nth-child(3n+1) {
        clear: both;
    }
    .carousel-control-container .carousel-control span {
        margin: 0;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        height: auto;
        width: auto;
        right: inherit;
        left: 50%;
    }
    .student-testimonial {
        height: 421px;
    }
    .student-testimonial::before,
    .student-testimonial::after {
        background-size: 2804px 421px;
        width: 2804px;
        height: 421px;
        -webkit-animation-duration: 400s;
        animation-duration: 400s;
    }
    .student-testimonial::before {
        -webkit-animation-name: appGridStaggeredAnimationBeforeMedium;
        animation-name: appGridStaggeredAnimationBeforeMedium;
    }
    .student-testimonial::after {
        -webkit-animation-name: appGridStaggeredAnimationAfterMedium;
        animation-name: appGridStaggeredAnimationAfterMedium;
    }
    /*=========================
         Pro Slider 
    ===========================*/
    .pro-slider .owl-item {
        padding: 0 15px;
    }
    .pro-slider .item {
        max-width: none;
    }
    /*=========================
          Student Testimonial 
    ===========================*/
    .what-student-say {
        margin-top: 0;
    }
    .testimonial-slider .carousel-control-container {
        margin-top: -20px;
    }
    /*=========================
          Inquiry Form 
    ===========================*/
    .inquiry-form .btn-primary {
        margin-bottom: 0;
        margin-right: 25px;
    }
    .inquiry-form .btn-primary:last-child {
        margin: 0;
    }
    /*=========================
            Home Contact 
    ===========================*/
    .sky-office {
        position: relative;
    }
    .sky-office .sky-office-detail {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        right: 0;
        background: rgba(255, 255, 255, .8);
        max-width: 350px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    /*=========================
              Footer 
    ===========================*/
    .sky-footer {
        text-align: left;
    }
    .sky-footer p,
    .sky-footer li,
    .copyright,
    .sky-footer .copyright ul {
        margin-bottom: 0;
        font-size: 13px;
    }
    .sky-footer ul {
        margin-bottom: 10px;
    }
    .sky-footer .footer-links {
        text-align: center;
    }
    .sky-footer .designed-by {
        text-align: right;
    }
    .footer-link li {
        margin-bottom: 10px;
    }
    .sky-footer svg {
        margin-left: 3px;
        margin-top: 8px;
    }
    .copyright {
        padding-right: 0;
    }
    .copyright li span {
        display: inline-block;
    }
    /*=========================
        Gallery
    ===========================*/
    .sky-aos-left {
        padding-right: 3px;
    }
    .sky-aos-right {
        padding-left: 3px;
    }
    /*=========================
            Postal Coaching 
    ===========================*/
    .nav-tabs {
        text-align: center;
        -ms-align-items: center;
        -moz-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .nav-tabs>li {
        margin-right: 15px;
    }
    .nav-tabs>li:last-child {
        margin-right: 0;
    }
    .nav-tabs>li>a {
        padding: 15px 8px;
    }
    .grid-3>li {
        width: calc((100% - 62px) / 3);
        margin-bottom: 0;
        margin-right: 30px;
    }
    .grid-2>li {
        width: calc((100% - 30px) / 2);
        margin-bottom: 0;
        margin-right: 30px;
    }
    .nav-tabs>li:last-child {
        margin-right: 0;
    }
    .sky-page-content {
        position: relative;
        padding-bottom: 45px;
    }
    .scroll {
        margin-top: 80px;
    }
    .sky-page-content.scroll {
        margin-top: 0;
        padding-top: 80px;
    }
    .sky-page-content h1 {
        margin-bottom: 40px;
    }
    .velocity-animating .scroll {
        margin: 0;
        padding: 0;
    }
    /*=========================
            Faculty 
    ===========================*/
    .da-thumbs,
    .sky-page-content .da-thumbs {
        padding: 0 10px;
    }
    .da-thumbs li {
        float: left;
        width: 50%;
        padding: 0 5px;
        margin-bottom: 10px;
    }
    .da-thumbs li a .hover {
        padding: 30px;
    }
    .da-thumbs li a .hover h3,
    .da-thumbs li a .hover p {
        font-size: 28px;
    }
    .da-thumbs li a .hover h3 {
        margin-bottom: 30px;
    }
    /*=========================
            Sample paper 
    ===========================*/
    .sky-test-papers {
        overflow: hidden;
    }
    .institute-name {
        float: left;
        margin: 18px 0 0;
    }
    .sample-paper {
        width: calc(100% - 140px);
        float: left;
        padding-right: 15px;
        padding-left: 40px;
    }
    .sample-paper::before {
        width: 50px;
        display: block;
        top: 0;
        left: -50px;
        height: 100%;
    }
    .sample-paper::after {
        width: calc((100vw - 750px) / 2);
        height: 100%;
        left: 100%;
        top: 0;
        content: "";
        position: absolute;
        background: #ffede1;
        display: block;
    }
    .download-paper {
        margin-bottom: 50px;
    }
    .download-paper:nth-child(4n+1) {
        clear: both;
    }
    /*=========================
            Sky Links
    ===========================*/
    .sky-links {
        position: absolute;
        left: calc((100vw - 750px) / 2);
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 15;
        text-align: left;
        width: auto;
        bottom: initial;
    }
    .sky-links ul {
        float: left;
    }
    .sky-links li {
        background-color: transparent;
        width: auto;
        float: none;
        display: block;
        border: none;
        text-align: left;
        margin-bottom: 35px;
    }
    .sky-links li:last-child {
        margin-bottom: 0;
    }
    .sky-links li a {
        background-color: transparent;
        position: relative;
        text-align: left;
        border: none;
        width: auto;
        height: 73px;
        display: inline-block;
    }
    .sky-links .icon {
        width: 73px;
        height: 73px;
        position: relative;
        background-color: rgba(255, 255, 255, .85);
        border-radius: 100%;
        border: 2px solid #fff;
        -webkit-transition: all .8s ease;
        transition: all .8s ease;
        left: initial;
        top: initial;
        -webkit-transform: none;
        transform: none;
    }
    .sky-links li:hover a,
    .sky-links li:focus a,
    .sky-links li:active a {
        border: none;
        background: transparent;
    }
    .sky-links a:hover .icon {
        background-color: rgba(0, 97, 175, .85);
        border-color: rgba(0, 97, 175, .85);
    }
    .sky-links svg {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: all .8s ease;
        transition: all .8s ease;
        max-height: 35px;
    }
    .sky-links a:hover svg {
        fill: #fff;
    }
    .sky-links .onhover {
        position: absolute;
        top: 50%;
        left: calc(100% + 15px);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        text-align: left;
        width: auto;
        padding: 10px 25px;
        color: #fff;
        -webkit-transition: all 0.8s 0.3s;
        transition: all 0.8s 0.3s;
        opacity: 0;
        background-color: rgba(0, 97, 175, 0.85);
        border-radius: 4px;
        font-size: 16px;
        display: inline-block;
    }
    .sky-links a:hover .onhover {
        opacity: 1;
    }
    .onhover::after {
        content: '';
        top: 50%;
        left: -20px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        border: solid transparent;
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: transparent;
        border-right-color: rgba(0, 97, 175, 0.85);
        border-width: 10px;
    }
    .sky-links li:nth-child(2) .onhover,
    .sky-links li:last-child .onhover {
        min-width: 270px;
    }
    .sky-links li:nth-child(3) .onhover {
        min-width: 150px;
    }
    /*=========================
        Sky Sidebar
    ===========================*/
    .sky-sidebar {
        width: 320px;
    }
    .close-sidebar {
        left: 38px;
        top: 19px;
        display: none;
    }
    .sky-sidebar-menu {
        padding: 30px 20px 30px 40px;
    }
    .sky-sidebar li {
        font-size: 16px;
    }
    /*=========================
        Gallery
    ===========================*/
    .gallery-grid li {
        width: 50%;
        padding: 2.5px;
    }
    /*=========================
        Join us
    ===========================*/
    .sky-apply-form {
        margin-top: 0;
    }
    /*=========================
        About page css 
    ===========================*/
    .sky-about-us.sky-about {
        background-color: #f1edee;
        background-position: left center;
        background-size: cover;
    }
    .sky-inner-about-pic .img-responsive {
        margin: 0;
    }
    .sky-about-detail,
    .sky-workshop-detail {
        text-align: left;
    }
    .sky-about-detail::before {
        position: absolute;
        top: 0;
        height: 100%;
        width: 200px;
        left: -200px;
        content: "";
        background: #ececec;
    }
    .sky-workshop-detail {
        padding-top: 40px;
    }
    .registration-process {
        text-align: left;
    }
    .sky-registration {
        padding-bottom: 0;
    }
    .step {
        margin: 0;
        float: left;
    }
    .step-details {
        float: left;
        width: calc(100% - 115px);
        text-align: left;
        padding: 0 15px;
        height: 115px;
        border-top-right-radius: 4px;
        display: -ms-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .step-details::before {
        left: -60px;
        top: 0;
        height: 100%;
        width: 65px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
    }
    .sky-vision-box {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .sky-vision-box::after {
        width: 2px;
        height: 100%;
        right: 0;
        left: initial;
        border: none;
        border-right: 2px dashed #999;
        background: none;
    }
    .sky-vision-box p {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
    }
    .flex-row,
    .infrastructure-list .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    /*=========================
        Infrasturcture 
    ===========================*/
    .infrastructure-list {
        padding-top: 200px;
    }
    .infrastructure-list .container {
        -ms-flex-flow: row wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-flow: row wrap;
    }
    .infrastructure-list .container::before {
        width: 100%;
        height: calc(100% + 30px);
        left: 0;
        top: -15px;
    }
    .infrastructure-box {
        width: calc((100% - 20px) / 2);
        float: left;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .infrastructure-box:nth-child(even) {
        margin-right: 0;
    }
    .sky-infrastructure h2 {
        margin-bottom: 15px;
    }
    .why-skyblue {
        margin-top: 0;
    }
    .why-skyblue .owl-carousel {
        padding: 0 30px;
    }
    .why-skyblue .owl-carousel .owl-nav.disabled {
        display: block;
    }
    .why-skyblue .owl-carousel .owl-nav .owl-next,
    .why-skyblue .owl-carousel .owl-nav .owl-prev {
        top: 52px;
        margin-top: 0;
        -webkit-transform: none;
        transform: none;
    }
    .why-skyblue .item {
        padding: 0 15px;
    }
    .why-skyblue .icon {
        width: 120px;
        height: 120px;
    }
    .why-skyblue .icon img {
        max-width: 40%;
    }
    /*=========================
        Facullty css
    ===========================*/
    .sky-page-content .faculty-listing li::before {
        display: none;
    }
    /*===================================
        Design & Architecture Courses 
    =====================================*/
    .sky-inner-courses {
        margin-bottom: 45px;
    }
    .sky-inner-courses .sky-inner-about-pic {
        margin-top: 18px;
    }
    .class-fee {
        margin-bottom: 0;
    }
    .class-fee span {
        font-size: 15px;
        padding: 7px 15px;
    }
    .apply-for-course {
        text-align: right;
    }
    .sky-page-content .sky-about .sky-tabbing li {
        padding-left: 0;
        width: auto;
    }
    .sky-page-content .sky-about .sky-tabbing li::before {
        content: "";
        left: -2px;
        top: 0;
    }
    .sky-page-content .sky-about .sky-tabbing li a {
        padding: 10px;
    }
    /*=========================
        Form outs for 
    ===========================*/
    .institute-logo a {
        height: 220px;
    }
    /*=========================
        Contact Us page 
    ===========================*/
    .contact-form {
        margin-bottom: 70px;
    }
    /*=========================
        Career in Design 
    ===========================*/
    .sky-coaching-criteria {
        text-align: left;
        margin-bottom: 60px;
    }
    .sky-coaching-criteria:last-child {
        margin-bottom: 0;
    }
    .sky-coaching-criteria:nth-child(odd) {
        clear: both;
    }
    .sky-coaching-criteria .icon {
        margin-bottom: 0;
        float: left;
        width: 120px;
        height: 120px;
    }
    .sky-criteria-detail {
        width: calc(100% - 120px);
        float: left;
        padding-left: 15px;
        padding-top: 35px;
    }
    /*=========================
        Design Program
    ===========================*/
    .sky-program {
        padding-bottom: 0;
    }
    .sky-program .sky-section .sky-page-heading p {
        max-width: 370px;
    }
    .sky-program .sky-section p,
    .sky-program .sky-section h1,
    .sky-program .sky-section h2 {
        max-width: none;
    }
    .sky-program .sky-section h1,
    .sky-program .sky-section h2 {
        font-size: 30px;
    }
    .sky-program .sky-section p,
    .sky-program .sky-section li,
    .sky-program .sky-section label {
        font-size: 17px;
        font-weight: 300;
        color: #000;
    }
    .sky-program-detail {
        max-width: 400px;
    }
    .sky-program-detail .apply-for-course {
        text-align: left
    }
    .sky-about {
        background-size: cover;
        background-position: right top;
    }
    .sky-fashion-design {
        background-image: url('../image/fashion-medium-bg.png');
    }
    .sky-interior-design {
        background-image: url('../image/interior-medium-bg.png');
    }
    .sky-fine-arts {
        background-image: url('../image/fine-art-medium-bg.png');
    }
    .sky-jewellery-design {
        background: #fff url('../image/jewellery-bg.png') no-repeat calc(100% + 150px) 120px / 550px;
    }
    .sky-photography {
        background: #fcf8f4 url('../image/photography-medium.png') no-repeat left top / cover;
    }
    .sky-study-abroad {
        background-size: cover;
        background-position: calc(100% + 500px), right top;
        background-repeat: no-repeat;
        background-image: url('../image/study-abroad-bg.png'), url('../image/study-abroad-plain-bg.png');
    }
    .program-fees {
        margin: 50px 0;
    }
    /*=========================
        Top Colleges 
    ===========================*/
    .sky-top-colleges ul li {
        width: calc((100% - 40px) / 5);
    }
    .sky-top-colleges ul li:nth-child(3n) {
        margin-right: 10px;
    }
    .sky-top-colleges ul li:nth-child(3n+1) {
        clear: none;
    }
    .sky-top-colleges ul li:nth-child(5n) {
        margin-right: 0;
    }
    .sky-top-colleges ul li:nth-child(5n+1) {
        clear: both;
    }
    /*=========================
            Course Content 
    ===========================*/
    .course__content__box {
        margin-bottom: 50px;
    }
    .course__text {
        margin-top: 0;
    }
    .course__text ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-flow: row wrap;
    }
    .course__text ul li {
        width: 50%;
    }
    /*=========================
        Design Architecture page
    ===========================*/
    .sky-program-detail.sky-program-detail_small {
        max-width: 320px;
    }
    .sky-section_big {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 800px;
    }
    .sky-section_big {
        background-position: center center;
    }
    .sky-ceed {
        background: #eef0f1 url('../image/nid-ceed.jpg') no-repeat 38% bottom / cover;
    }
    #fashion-design {
        background-position: 80% center;
    }
    #photography {
        background-color: #eeeef0;
        background-size: 160%;
        background-position: right bottom;
    }
    #under-graduation-course {
        padding-bottom: 45px;
        background-size: cover;
    }
    div.wpcf7 .ajax-loader {
        left: 88%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .banner-tagline {
        top: 9%;
        width: 335px;
        text-align: left;
        left: calc((100% - 750px) / 2);
    }
    #foundation-course {
        min-height: calc(100vh - 127px);
    }
    #under-graduation-course,
    #post-graduation-course,
    #interview-portfolio-preparation {
        min-height: 100vh;
    }
    .copyright li:first-child {
        display: inline-block;
        width: auto;
        max-width: none;
    }
    .copyright li:first-child::after {
        display: inline-block;
    }
    .copyright li:nth-child(2) {
        clear: none;
    }
    /*=========================
            404 page 
    ===========================*/
    .not-found {
        min-height: calc(100vh - 526px);
    }
    .not-found h1 {
        margin-bottom: 0;
        font-size: 50px;
    }
    .not-found h2,
    .not-found p {
        font-size: 28px;
    }
    .transaction h3 {
        font-size: 26px;
    }
    .not-found .transaction p {
        font-size: 22px;
    }
    .not-found-space {
        padding-top: 65px;
        padding-bottom: 65px;
    }
}

@media (min-width: 992px) {
    /*=========================
              Common 
    ===========================*/
    p,
    li {
        font-size: 15px;
    }
    .sky-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }
    .sky-section h2 {
        margin-bottom: 35px;
    }
    /*=========================
            Gallery Grid 
    ===========================*/
    .gallery-grid .caption {
        font-size: 24px;
    }
    /*=========================
            Navigation 
    ===========================*/
    .sky-nav .navbar-brand {
        max-width: 260px;
    }
    .sky-nav .navbar-collapse {
        width: calc(100% - 290px);
    }
    .sky-nav .navbar-nav>li:first-child,
    .sky-nav .navbar-nav>li:nth-child(2) {
        width: 210px;
    }
    .sky-nav .navbar-nav>li:nth-child(2) {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sky-nav .navbar-nav>li>a {
        font-size: 16px;
        padding-top: 22px;
    }
    .sky-nav .dropdown-menu,
    .sky-nav .open .dropdown-menu {
        padding: 10px calc((100vw - 970px) / 2) 0;
    }
    .sky-nav .dropdown-menu li,
    .sky-nav .open .dropdown-menu li {
        width: calc(100% / 4);
    }
    /*=========================
          Banner
    ===========================*/
    .component {
        height: calc(100vh - 140px);
    }
    .banner-text {
        right: calc((100% - 970px) / 2);
    }
    .banner-text h1,
    .banner-text h2 {
        font-size: 34px;
    }
    .sky-banners nav {
        right: calc((100% - 970px) / 2);
    }
    /*=========================
          Home Course slider 
    ===========================*/
    .home-course-slider .grid figcaption h2 {
        font-size: 18px;
    }
    .grid figcaption h2 {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    .grid-list:hover figcaption h2 {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    /*=========================
          Home top Student
    ===========================*/
    .top-student-box {
        width: calc( (100% / 4) - 30px);
    }
    .top-student-box:nth-child(3n+1) {
        clear: none;
    }
    /*=========================
            Home Contact 
    ===========================*/
    .sky-office .sky-office-detail {
        font-size: 15px;
        max-width: 450px;
        padding: 50px 50px 20px;
        max-height: 100%;
    }
    /*=========================
              Footer 
    ===========================*/
    .sky-footer {
        padding: 30px 0;
    }
    .sky-footer p,
    .sky-footer li {
        font-size: 13px;
    }
    .footer-link {
        margin-bottom: 50px;
    }
    .footer-link li {
        margin-bottom: 5px;
    }
    /*=========================
            Postal Coaching 
    ===========================*/
    .scroll {
        margin-top: 95px;
    }
    .sky-page-content {
        overflow: hidden;
    }
   
    .sky-page-content.scroll {
        margin-top: 0;
        padding-top: 95px;
    }
    .velocity-animating .scroll {
        margin: 0;
        padding: 0;
    }
    .sky-page-content {
        padding-bottom: 60px;
    }
    .sky-program {
        padding-bottom: 0;
    }
    .nav-tabs>li {
        margin-right: 25px;
    }
    .page-template-template-postal-coaching .sky-page-content {
        overflow: initial;
    }
    /*=========================
            Faculty 
    ===========================*/
    .da-thumbs li {
        width: calc(100% / 3);
    }
    .da-thumbs li a .hover h3,
    .da-thumbs li a .hover p {
        font-size: 20px;
    }
    /*=========================
            Sample paper 
    ===========================*/
    .institute-name {
        width: 162px;
        height: 162px;
    }
    .sample-paper {
        width: calc(100% - 162px);
    }
    .sample-paper::after {
        width: calc((100vw - 970px) / 2);
    }
    /*=========================
            Sky Links
    ===========================*/
    .sky-links {
        left: calc((100vw - 970px) / 2);
    }
    /*=========================
        Panel css
    ===========================*/
    .panel-title a {
        font-size: 26px;
    }
    .panel-body {
        font-size: 16px;
    }
    /*=========================
        About page css 
    ===========================*/
    .sky-about-us.sky-about {
        background-position: 100px center;
    }
    .sky-about-detail {
        min-height: 380px;
        padding: 30px 60px;
    }
    .sky-about-detail p,
    .sky-workshop-detail p {
        font-size: 15px;
    }
    .sky-workshop-detail {
        padding: 40px 60px 30px;
    }
    .registration-process address {
        font-size: 15px;
    }
    /*=========================
        Infrasturcture 
    ===========================*/
    .infrastructure-list {
        padding-top: 290px;
    }
    .infrastructure-list .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
    .infrastructure-list .container::before {
        width: calc(100% + 10px);
        height: calc(100% + 40px);
        left: -5px;
        top: -20px;
    }
    .infrastructure-box {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0;
        width: auto;
        margin-bottom: 0;
    }
    .infrastructure-box:nth-child(even) {
        margin-right: 10px;
    }
    .infrastructure-box:last-child {
        margin-right: 0;
    }
    .infrastructure-box p {
        font-size: 14px;
    }
    .why-skyblue .owl-carousel .owl-nav .owl-next,
    .why-skyblue .owl-carousel .owl-nav .owl-prev {
        top: 70px;
    }
    .why-skyblue .icon {
        width: 160px;
        height: 160px;
    }
    .why-skyblue .icon img {
        max-width: 90px;
    }
    /*=========================
        Form outs for 
    ===========================*/
    .institute-logo a {
        height: 293px;
    }
    /*=========================
        Career in Design 
    ===========================*/
    .sky-coaching-criteria .icon {
        width: 150px;
        height: 150px;
    }
    .sky-criteria-detail {
        width: calc(100% - 150px);
    }
    /*=========================
        Design Program
    ===========================*/
    .sky-program .sky-section h1,
    .sky-program .sky-section .sky-program-detail_small h2 {
        font-size: 36px;
    }
    .sky-program .sky-section h2 {
        font-size: 30px;
    }
    .sky-program .sky-page-heading p {
        font-size: 24px;
    }
    .sky-program-detail {
        max-width: 480px;
    }
    .sky-about-us .sky-program-detail {
        max-width: 450px;
    }
    .sky-program .course-heading {
        margin-bottom: 40px;
        max-width: 450px;
    }
    .sky-program .course-heading h2:first-child {
        margin-bottom: 25px;
    }
    .sky-program .course-heading h2:last-of-type {
        font-size: 40px;
    }
    .sky-jewellery-design {
        background-size: 480px;
        background-position: calc(100% + 50px) 120px;
    }
    /*=========================
        Top Colleges 
    ===========================*/
    .sky-top-colleges ul li {
        width: calc((100% - 90px) / 10);
    }
    .sky-top-colleges ul li:nth-child(5n) {
        margin-right: 10px;
    }
    .sky-top-colleges ul li:nth-child(5n+1) {
        clear: none;
    }
    .sky-top-colleges ul li:nth-child(10n) {
        margin-right: 0;
    }
    .sky-top-colleges ul li:nth-child(10n+1) {
        clear: both;
    }
    .sky-study-abroad {
        background-position: calc(100% + 300px) center, right top;
    }
    .sky-photography {
        background: #fcf8f4 url('../image/photography-bg.png') no-repeat left top / cover;
    }
    /*=========================
            Course Content 
    ===========================*/
    .course__content__box {
        margin-bottom: 80px;
    }
    .sky-section_big {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    #fashion-design {
        background-position: right center;
    }
    .banner-tagline {
        top: 14px;
        left: calc((100% - 970px) / 2);
    }
    #foundation-course {
        min-height: calc(100vh - 134px);
    }
    #under-graduation-course,
    #post-graduation-course,
    #interview-portfolio-preparation {
        min-height: 100vh;
    }
    .feature__button .btn {
        max-width: 100%;
    }
    /*=========================
            404 page 
    ===========================*/
    .not-found {
        min-height: calc(100vh - 421px);
    }
}

@media (min-width: 1200px) {
    /*=========================
              Common 
    ===========================*/
    .sky-section {
        padding-top: 55px;
        padding-bottom: 60px;
    }
    .sky-section h2 {
        margin-bottom: 40px;
    }
    .noscroll,
    .md-show {
        padding-right: 15px;
    }
    .noscroll .affixed,
    .md-show .affixed {
        padding-right: 15px;
    }
    /*=========================
            Navigation
    ===========================*/
    .sky-nav .navbar-brand {
        padding: 18px 15px 20px;
    }
    .sky-nav .navbar-collapse {
        width: 770px;
    }
    .sky-nav .navbar-nav>li {
        margin-right: 60px;
    }
    .sky-nav .navbar-nav>li:first-child {
        min-width: 210px;
    }
    .sky-nav .navbar-nav>li:nth-child(2) {
        min-width: 130px;
        padding-right: 0;
        padding-left: 0;
    }
    .sky-nav .navbar-nav>li:nth-last-child(2) {
        margin-right: 40px;
    }
    .sky-nav .navbar-nav>li:last-child {
        margin-right: 0;
    }
    .sky-nav .navbar-nav>.dropdown>a {
        padding-bottom: 32px;
    }
    .sky-nav .navbar-nav>li>a {
        padding-bottom: 13px;
    }
    .sky-nav .navbar-nav>.dropdown:hover>.dropdown-menu {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    .sky-nav .dropdown-menu,
    .sky-nav .open .dropdown-menu {
        padding: 10px calc((100vw - 1170px) / 2) 0;
    }
    .sky-nav .dropdown-menu li,
    .sky-nav .open .dropdown-menu li {
        width: calc(100% / 5);
    }
    .sky-nav .navbar-nav>li:nth-child(2) .dropdown-menu li {
        width: calc(100% / 8);
        text-align: center;
    }
    .sky-nav .navbar-nav>.dropdown:first-child .dropdown-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .sky-nav .navbar-nav>li:first-child .dropdown-menu li {
        width: auto;
        margin-right: 58px;
    }
    .sky-nav .navbar-nav>li:first-child .dropdown-menu li>a {
        padding-left: 5px;
    }
    .sky-nav .navbar-nav>li>a:hover .caret,
    .sky-nav .navbar-nav>li:hover>a .caret {
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
    .sky-nav .navbar-nav>li:nth-child(2) .dropdown-menu li {
        width: auto;
        margin-right: 59px;
    }
    .sky-nav .navbar-nav>li:nth-child(2) .dropdown-menu li:last-child {
        margin-right: 0;
    }
    .sky-nav .navbar-nav>li:nth-child(2) .dropdown-menu li>a {
        padding-right: 0;
        padding-left: 5px;
    }
    /*.sky-nav .navbar-nav>li:nth-child(4)>a {
        padding-bottom: 29px;
    }*/
    .sky-nav .navbar-nav>li:nth-child(4)>a {
        padding-bottom: 13px;
    }
    .sky-nav .navbar-nav>li{
        margin-right: 30px; 
    }

    /*=========================
          Banner
    ===========================*/
    .component {
        min-height: 600px;
    }
    .banner-text {
        right: calc((100% - 1170px) / 2);
        bottom: 17%;
    }
    .banner-text h1,
    .banner-text h2 {
        font-size: 40px;
    }
    .sky-banners nav {
        right: calc((100% - 1170px) / 2);
        bottom: calc(17% - 49px);
    }
    .component-fullwidth li img {
        max-width: 100%;
    }
    /*=========================
        Banner Titlt effect
    ===========================*/
    .grid_img {
        padding-bottom: 42%;
    }
    /*=========================
              About Sky 
    ===========================*/
    .about-sky {
        padding: 40px 50px 50px;
    }
    .about-sky p:last-child {
        margin-bottom: 0;
    }
    /*=========================
          Home Course slider 
    ===========================*/
    .home-course-slider .grid figcaption h2 {
        font-size: 20px;
    }
    .grid figcaption h2,
    .grid figcaption p {
        -webkit-transform: translateY(57px);
        transform: translateY(57px);
    }
    .grid-list:hover figcaption h2 {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    /*=========================
          Pro slider 
    ===========================*/
    .student-testimonial::before {
        -webkit-animation-name: appGridStaggeredAnimationBeforeLarge;
        animation-name: appGridStaggeredAnimationBeforeLarge;
    }
    .student-testimonial::after {
        -webkit-animation-name: appGridStaggeredAnimationAfterLarge;
        animation-name: appGridStaggeredAnimationAfterLarge;
    }
    .student-testimonial {
        height: 592px;
    }
    .student-testimonial::before,
    .student-testimonial::after {
        background-size: 3948px 592px;
        width: 3948px;
        height: 592px;
    }
    /*=========================
            Home Contact 
    ===========================*/
    .sky-map {
        padding-bottom: 33%;
    }
    /*=========================
              Footer 
    ===========================*/
    .sky-footer .footer-links {
        padding-left: 56px;
    }
    .footer-link:nth-child(3) {
        padding-left: 65px;
    }
    .footer-link:last-child {
        padding-left: 35px;
    }
    /*=========================
        Postal Coaching 
    ===========================*/
    /*=========================
            Faculty 
    ===========================*/
    .da-thumbs li a .hover h3,
    .da-thumbs li a .hover p {
        font-size: 30px;
    }
    /*=========================
            Sample paper 
    ===========================*/
    .sample-paper::after {
        width: calc((100vw - 1170px) / 2);
    }
    .download-paper a:hover .download-file {
        background: #0061af;
    }
    /*=========================
            Sky Links
    ===========================*/
    .sky-links {
        left: calc((100vw - 1170px) / 2);
    }
    /*=========================
        Panel css
    ===========================*/
    .panel-title a {
        font-size: 30px;
    }
    /*=========================
            Responsive 
    ===========================*/
    /*=========================
        About page css 
    ===========================*/
    .registration-process {
        padding-right: 60px;
    }
    .step-details {
        padding: 10px 50px 10px 30px;
    }
    .step-details p {
        font-size: 16px;
    }
    .why-skyblue .owl-carousel {
        padding: 0 50px;
    }
    /*=========================
        Form outs for 
    ===========================*/
    .institute-logo a {
        height: 360px;
        width: 360px;
        padding: 50px 80px;
    }
    .list-grid-2 li {
        float: left;
        width: 50%;
    }
    /*=========================
        Career in Design 
    ===========================*/
    /*=========================
        Design Program
    ===========================*/
    .sky-program .sky-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .sky-program .sky-section .sky-page-heading p {
        max-width: 435px;
    }
    .sky-page-content_abroad .sky-section {
        padding: 55px 0 60px;
    }
    .sky-fashion-design {
        background-image: url('../image/fashion-design.jpg');
        background-position: center top;
    }
    .sky-interior-design {
        background-image: url('../image/interior.jpg');
        background-position: 70% top;
    }
    .sky-fine-arts {
        background-image: url('../image/fine-arts.jpg');
        background-position: 40% top;
    }
    .sky-photography {
        background-image: url('../image/1_photography.jpg');
        background-position: 70% top;
    }
    .sky-program .sky-section h1 {
        font-size: 40px;
    }
    .sky-program .sky-page-heading {
        margin-bottom: 80px;
    }
    .sky-program .sky-page-heading p {
        font-size: 28px;
    }
    .sky-jewellery-design {
        background-size: 700px;
        background-position: right 20px;
    }
    .sky-study-abroad {
        background-size: auto, cover;
        background-position: calc(100% + 250px) center, left top;
    }
    .page-content {
        margin-top: -140px;
    }
    #under-graduation-course {
        min-height: 920px;
    }
    .sky-ceed {
        background-size: auto;
    }
    #photography {
        background-size: cover;
        background-position: center center;
    }
    #fashion-design {
        background-position: center center;
    }
    .banner-tagline {
        left: calc((100% - 1170px) / 2);
    }
    #foundation-course {
        min-height: calc(100vh - 142px);
    }
    #under-graduation-course,
    #post-graduation-course,
    #interview-portfolio-preparation {
        min-height: 100vh;
    }
    .ipad.noscroll,
    .ipad.md-show,
    .ipad.noscroll .affixed,
    .ipad.md-show .affixed {
        padding-right: 0;
    }
}

@media (min-width: 1600px) {
    .sky-footer .return-to-top {
        right: calc((100% - 1170px) / 2 - 150px);
    }
    /*=========================
        Banner Titlt effect
    ===========================*/
    .grid_img {
        padding-bottom: 39%;
    }
    /*=========================
            Home Contact 
    ===========================*/
    .sky-map {
        padding-bottom: 28%;
    }
    .sky-jewellery-design {
        background-size: auto;
    }
    .sky-study-abroad {
        background-position: left top,left top;
    }
    .sky-about-us.sky-about {
        background-size: cover;
    }
    /*=========================
            Course Content 
    ===========================*/
    .sky-section_big {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .sky-ceed {
        background-position: right bottom;
    }
    /*=========================
            404 page 
    ===========================*/
    .not-found {
        min-height: calc(100vh - 403px);
    }
    .not-found h1 {
        font-size: 100px;
    }
    .not-found p,
    .not-found h2 {
        font-size: 50px;
    }
    .transaction h3 {
        font-size: 25px;
    }
    .not-found .transaction p {
        font-size: 23px;
    }
    .response-icon img {
        max-width: 100px;
    }
}

@media (min-width: 1700px) {
    .about-sky {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (min-width: 1921px) {
    .component {
        height: 753px;
    }
}

@media all and (min-height: 800px) {
    /*.modal-small .modal-dialog, .md-modal {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        margin: 0 auto;
    }*/
}

@media all and (min-height: 1000px) {
    .component {
        height: 850px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* start exit intent popup css*/
.stick_container #exitIntent {
    max-width: 350px;
    background: #FFFFFF;
    padding: 20px;
    margin: 0 auto !important;
    transform: translateX(-50%);
    top:  30px !important;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
}
.stick_content h4 {color: #0061af;
    font-size: 20px;
    font-weight: 400;line-height: 1.42857143;}

.stick_close {
    color: #0061af;float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;text-shadow: 0 1px 0 #fff;margin-top: -10px;
    cursor: pointer;
}
.stick_content .form-group {margin-bottom: 10px;}
.stick_content .form-group input[type="submit"] {
    color: #0061af;
    background: transparent;
}
.stick_content p:last-child {font-size: 12px;}
.stick_block_layer {
    position: fixed; 
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0061af;
    opacity: 0.75;
}
.BodyExitIntentPopUp {
    overflow: hidden !important;
}

@media (max-width: 400px) {
    .stick_container #exitIntent {
        max-width: 300px;
    }
}

/* end exit intent popup css*/

.sky-nav .navbar-nav>li:nth-last-child(3) {
    min-width: 85px;
    margin-right: 15px;
}