.rubik {
    font-family: 'Rubik', sans-serif;
}

.side-search-bar input {
    background: #e8e9e7;
}
/*==================================:: WOW CSS Start ::==================================*/

.animated {
    animation-duration: 0.5s;
    animation-fill-mode: both
}

    .animated.infinite {
        animation-iteration-count: infinite
    }

    .animated.hinge {
        animation-duration: 2s
    }

    .animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
        animation-duration: .75s
    }

@keyframes bounce {
    0%,20%,53%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25,.75,1)
    }

    40% {
        transform: scale3d(.75,1.25,1)
    }

    50% {
        transform: scale3d(1.15,.85,1)
    }

    65% {
        transform: scale3d(.95,1.05,1)
    }

    75% {
        transform: scale3d(1.05,.95,1)
    }

    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(10px,0,0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }

    15% {
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,11.1%,to {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-10%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-10%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(10%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,10%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,10%,0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-10%,0,0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(10%,0,0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-10%,0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInY
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(10%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(10%,0,0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-10%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(10%,0,0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px,0,0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px,0,0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0,-10%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-10%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(10%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0,10%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,10%,0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-10%,0,0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(10%,0,0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-10%,0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

/*==================================:: WOW CSS End ::==================================*/

/*Slick Slider Css Start*/

.slick-slider {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list.dragging {
        cursor: pointer;
    }

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

    .slick-track:before, .slick-track:after {
        display: table;
        content: "";
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-initialized .slick-slide {
    display: block;
    list-style: none;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 2;
    padding: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 0;
    background-color: #23b8bf;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: all 0.4s ease;
    border-radius: 50%;
}

    .slick-arrow:before {
        font-family: 'Line Awesome Free';
        font-weight: 900;
        font-size: 24px;
        text-align: center;
        line-height: 50px;
        color: #fff;
        transition: all 0.4s ease;
    }

    .slick-arrow.slick-prev {
        left: 15px;
    }

    .slick-arrow.slick-next {
        right: 15px;
    }

    .slick-arrow.slick-prev:before {
        content: "\f104";
    }

    .slick-arrow.slick-next:before {
        content: "\f105";
    }

    .slick-arrow:hover {
        opacity: 1;
        background: #f1c05b;
    }

    .slick-arrow.slick-disabled {
        background-color: #D2D3D5;
        cursor: default;
    }

.slick-dots {
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

    .slick-dots li {
        margin: 0 4px;
        padding: 0;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        line-height: normal;
    }

        .slick-dots li button {
            display: block;
            width: 36px;
            height: 36px;
            font-size: 0;
            padding: 0;
            cursor: pointer;
            background: none !important;
            border: 0;
        }

            .slick-dots li button:before {
                content: "\f111";
                font-family: 'Line Awesome Free';
                font-weight: 900;
                font-size: 36px;
                color: #fff;
                transition: all 0.4s ease;
            }

        .slick-dots li.slick-active button:hover:before, .slick-dots li.slick-active button:before {
            content: "\f192";
        }



/* popup css */

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

    .mfp-fade.mfp-bg.mfp-ready {
        opacity: 0.8;
    }

    .mfp-fade.mfp-bg.mfp-removing {
        opacity: 0;
    }

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.mfp-iframe-holder iframe {
    width: 1000px;
    height: 700px;
}

/* Magnific Popup CSS */



.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99991042;
    overflow: hidden;
    position: fixed;
    background: #000;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99991043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

    .mfp-container:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    font-size: 0;
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

    .mfp-preloader a {
        color: #CCC;
    }

        .mfp-preloader a:hover {
            color: #FFF;
        }

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button.mfp-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #B4975A;
    font-weight: 900;
    font-family: 'Line Awesome Free';
    color: #0b435c;
    text-align: center;
    font-size: 24px;
    margin: 0 !important;
    opacity: 1;
}

    button.mfp-arrow:before {
        display: block !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border: 0;
        margin: 0;
        width: 50px;
        height: 50px;
        opacity: 1 !important;
        background-size: 14px auto;
        background-repeat: no-repeat;
        background-position: center;
    }

    button.mfp-arrow.mfp-arrow-left {
        left: 15px;
    }

    button.mfp-arrow.mfp-arrow-right {
        right: 15px;
    }

    button.mfp-arrow.mfp-arrow-left:before {
        background-image: url(../images/prev-arrow.png);
    }

    button.mfp-arrow.mfp-arrow-right:before {
        background-image: url(../images/next-arrow.png);
    }

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
    background: #23b8bf !important;
}

    .mfp-close:hover, .mfp-close:focus {
        opacity: 1;
        background: #f1c05b !important;
    }

    .mfp-close:active {
        top: 1px;
    }

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    font-size: 40px !important;
    color: #fff;
    text-align: center;
    padding-right: 0;
    opacity: 1;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    position: fixed;
    right: 15px;
    top: 15px;
}

body .mfp-image-holder .mfp-close {
    font-size: 0 !important;
}

.mfp-image-holder .mfp-close:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/close-icon.png) no-repeat center;
    background-size: 18px auto;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

    .mfp-arrow:active {
        margin-top: -54px;
    }

    .mfp-arrow:hover, .mfp-arrow:focus {
        opacity: 1;
    }

    .mfp-arrow:before, .mfp-arrow:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 35px;
        margin-left: 35px;
        border: medium inset transparent;
        display: none;
    }

    .mfp-arrow:after {
        border-top-width: 13px;
        border-bottom-width: 13px;
        top: 8px;
    }

    .mfp-arrow:before {
        border-top-width: 21px;
        border-bottom-width: 21px;
        opacity: 0.7;
    }

.mfp-arrow-left {
    left: 0;
}

    .mfp-arrow-left:after {
        border-right: 17px solid #FFF;
        margin-left: 31px;
    }

    .mfp-arrow-left:before {
        margin-left: 25px;
        border-right: 27px solid #3F3F3F;
    }

.mfp-arrow-right {
    right: 0;
}

    .mfp-arrow-right:after {
        border-left: 17px solid #FFF;
        margin-left: 39px;
    }

    .mfp-arrow-right:before {
        border-left: 27px solid #3F3F3F;
    }

.mfp-bottom-bar {
    display: none;
}

.mfp-content figure {
    margin: 0;
}



/* ===== RESET ================================================== */

html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* ===== GLOBAL ================================================== */

body {
    padding: 90px 0 0;
    margin: 0;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #231f20;
    background: #fff;
    overflow-x: hidden;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

:focus {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none;
    color: #f15d5b;
    outline: none;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

    a:hover {
        text-decoration: none;
        color: #B4975A;
    }

    a:focus {
        outline: 0;
        outline: none;
    }



blockquote, q {
    border-left: 4px solid #B4975A;
    padding-left: 20px;
    margin: 38px 0;
}

    blockquote p, q p {
        font-size: 24px;
        line-height: 30px;
        font-weight: 300;
        color: #B4975A;
    }



.table-main {
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #e8e9e7;
}

table {
    width: 100%;
}

    table tr + tr {
        border-top: 1px solid #e8e9e7;
    }

    table th {
        font-size: 16px;
        color: #0b435c;
        font-weight: 600;
        background: #95d0d1;
        padding: 13px 20px;
    }

        table th + th,
        table td + td {
            border-left: 1px solid #e8e9e7;
        }

    table td {
        font-size: 15px;
        color: #0b435c;
        padding: 13px 20px;
        vertical-align: top;
    }



/* Ul Li & Ol Li CSS */

ul, ol {
    margin: 0;
    padding: 0;
}

    ul ul, ol ol, ul ol, ol ul {
        margin-top: 15px;
    }

    ul li, ol li {
        margin: 0;
        padding: 0;
        font-size: 15px;
        line-height: 22px;
        color: #0b435c;
        font-weight: 400;
        letter-spacing: 0.025em;
    }

li a {
    color: #B4975A;
}

.list-style ul, .list-style ol {
    display: inline-block;
    padding: 0;
    margin: 10px 0;
    list-style: none;
}

    .list-style ul ul, .list-style ol ol {
        margin: 10px 0;
    }

    .list-style ul li ul li {
        list-style: none;
    }

    .list-style ol li ol li {
        margin-left: 15px;
    }

    .list-style ul li {
        list-style: none;
        padding: 0 0 0 25px;
        margin: 0 0 18px;
        position: relative;
    }

        .list-style ul li:before {
            display: block;
            content: "\f058";
            font-family: 'Line Awesome Free';
            font-weight: 900;
            color: #23b8bf;
            position: absolute;
            left: 0;
            top: 0;
            border-radius: 50%;
        }

        .list-style ul li li:before {
            border: 1px solid #0b435c;
            background: #fff;
        }

.list-style ol {
    margin-left: 0;
}

    .list-style ol li {
        position: relative;
        margin: 0 0 25px;
        counter-increment: step-counter;
        padding-left: 36px;
    }

        .list-style ol li:before {
            content: counter(step-counter)".";
            position: absolute;
            left: 0;
            top: 0;
        }

    .list-style ol ul li {
        list-style: none;
    }



h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #0b435c;
    font-family: 'Baloo Chettan 2', cursive;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 15px;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 22px;
}

/*  h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
        color: #23b8bf;
    }
*/


p {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #0b435c;
    font-weight: 400;
    letter-spacing: 0.025em;
    margin: 0 0 25px;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
}

strong {
    font-weight: bold;
}



section *:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1650px;
    padding: 0 15px;
}

.inner-container {
    max-width: 1310px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}



/*Form Input Field*/

input, textarea, select {
    background: #ffffff;
    border: 1px solid #c5c5c5;
    width: 100%;
    text-align: left;
    padding: 5px 22px;
    margin: 0;
    font-size: 16px;
    color: #0b435c;
    font-weight: 300;
    line-height: normal;
    font-family: 'Merriweather Sans', sans-serif;
    height: 50px;
    outline: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    box-shadow: none;
    letter-spacing: 0.025em;
}

    input[type="button"], input[type="submit"] {
        cursor: pointer;
        width: auto;
        height: auto;
    }

    input[type="checkbox"], input[type="radio"] {
        border: none;
        width: auto;
        height: auto;
    }

textarea {
    height: 110px;
    padding: 15px 15px;
    vertical-align: top;
    resize: none;
}

.selectbox {
    display: block;
    width: 100%;
    background: #e8e9e7;
    border: 0;
    line-height: 48px;
    position: relative;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .selectbox:after {
        position: absolute;
        content: "\f107";
        font-weight: 900;
        right: 20px;
        font-family: 'Line Awesome Free';
        font-size: 16px;
        line-height: 50px;
        color: #1f5675;
        top: -1px;
        z-index: 1;
    }

    .selectbox select {
        display: block;
        width: 100%;
        height: 48px;
        padding: 0 50px 0 20px;
        background: transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        position: relative;
        z-index: 2;
        cursor: pointer;
        color: #0b435c;
    }

        .selectbox select option {
            background: #ccc;
            color: #000;
            padding: 4px 10px;
        }

        .selectbox select.not_chosen {
            background: #B4975A;
            color: #fff;
        }



::-webkit-input-placeholder {
    color: #0b435c;
    opacity: 1;
}

:-moz-placeholder {
    color: #0b435c;
    opacity: 1;
}
/* Firefox 18- */

::-moz-placeholder {
    color: #0b435c;
    opacity: 1;
}
/* Firefox 19+ */

:-ms-input-placeholder {
    color: #0b435c;
    opacity: 1;
}



/*Radio Css*/

.checkbox, .radiobox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    text-align: left;
    font-size: 16px;
    color: #0b435c;
    line-height: 24px;
}

    .checkbox input, .radiobox input {
        position: absolute;
        opacity: 0;
        left: 0;
        top: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .radiobox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
    }

        .radiobox .checkmark:after {
            display: block;
            content: "\f111";
            font-family: 'Line Awesome Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            right: 0;
            top: 2px;
            text-align: center;
            font-size: 20px;
            color: #23b8bf;
            line-height: 20px;
            transition: all 0.4s ease;
        }

    .radiobox input:checked ~ .checkmark:after {
        content: "\f192";
    }



    /*Checkbox Css*/

    .checkbox.check {
        padding: 0;
        width: 24px;
        height: 24px;
    }

    .checkbox .checkmark {
        display: block;
        position: absolute;
        top: 2px;
        left: 0;
        bottom: 0;
    }

    .checkbox input:checked ~ .checkmark {
        background: #fff;
        border-color: #B4975A;
    }

    .checkbox .checkmark:after {
        display: block;
        content: "\f04d";
        font-family: 'Line Awesome Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        text-align: center;
        font-size: 20px;
        color: #23b8bf;
        line-height: 22px;
    }

    .checkbox input:checked ~ .checkmark:after {
        content: "\f14a";
    }



/*Buttons*/

.button, .btn, .side-search-bar input[type="submit"] {
    display: inline-block;
    padding: 0 30px;
    background: #23b8bf;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Merriweather Sans', sans-serif;
    cursor: pointer;
    letter-spacing: 0;
    text-align: center;
    position: relative;
    min-width: 180px;
    height: 50px;
    line-height: 50px;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    box-shadow: none;
    outline: 0;
    outline: none !important;
    box-shadow: none !important;
    z-index: 1;
}

    .button:hover, .button.alt:hover, .btn:hover,
    .button:focus, .button.alt:focus, .btn:focus,
    .button:active, .button.alt:active, .btn:active {
        background: #f1c05b;
        color: #0b435c;
        outline: 0;
        outline: 0;
    }
.btn-hover-none {
    border-radius: 5px;
    border-style: solid;
    color: #0b435c;
}

.btn-hover-none:hover, .btn-hover-none:focus, btn-hover-none:active {
    background: #23b8bf;
    color: #ffff;
}

.secondary-btn {
    background: #f15c5a;
}

.secondary-btn:hover, .secondary-btn:focus, .secondary-btn:active
{
    background: #23b8bf;
    color: #ffff;
}

.btn-tertiary {
    background: #1f5675;
    color: #ffff;
    border-radius: 5px;
    border-style: solid;
}

.btn-tertiary:hover, .btn-tertiary:focus, .btn-tertiary:active {
    background: #1f5675;
    color: #23b8bf;
}
/* ===== Header ============= */
.header {
    background: #1f5675;
    padding: 15px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    transition: all 0.4s ease;
}

    .header .logo {
        max-width: 187px;
        transition: all 0.4s ease;
    }

        .header .logo img {
            width: 100%;
            height: auto;
            display: block;
        }

    .header .navbar-nav .nav-item + .nav-item {
        margin-left: 45px;
    }

    .header .navbar-nav .nav-link {
        padding: 15px 0;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0;
        color: #fff;
        font-family: 'Merriweather Sans', sans-serif;
    }

        .header .navbar-nav .nav-item.active .nav-link,
        .header .navbar-nav .nav-link:hover {
            color: #f15d5b;
        }

    .header .dropdown .dropdown-menu {
        border: none;
        /*display: block;*/
        opacity: 0;
        visibility: hidden;
        transition: all 0.15s;
        transform: translate3d(0, 15px, 0);
        margin-top: 0;
        border-radius: 4px;
        -webkit-box-shadow: 3px 3px 3px -3px rgb(0 0 0 / 10%), 3px 3px 3px -3px rgb(0 0 0 / 10%), -3px 3px 3px -3px rgb(0 0 0 / 10%);
        -moz-box-shadow: 3px 3px 3px -3px rgba(0, 0, 0, 0.1), 3px 3px 3px -3px rgba(0, 0, 0, 0.1), -3px 3px 3px -3px rgba(0, 0, 0, 0.1);
        box-shadow: 3px 3px 3px -3px rgb(0 0 0 / 10%), 3px 3px 3px -3px rgb(0 0 0 / 10%), -3px 3px 3px -3px rgb(0 0 0 / 10%);
    }

        .header .dropdown .dropdown-menu:before {
            content: '';
            position: absolute;
            top: 0;
            left: 15px;
            margin-top: -10px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #FFF;
        }

    .header .dropdown:hover .dropdown-menu,
    .header .dropdown .nav-link.show + .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .header .dropdown .dropdown-item {
        padding: 5px 15px;
        background: none !important;
        font-size: 16px;
    }

        .header .dropdown .dropdown-item.active,
        .header .dropdown .dropdown-item:hover {
            color: #f15d5b;
        }

    .header .btn-box {
        margin-left: 40px;
    }

    .header .dropdown-toggle::after {
        vertical-align: middle;
    }



body.header-fixed {
    padding: 88px 0 0 0;
}

.header-fixed .header {
    padding: 10px 0;
}

    .header-fixed .header .logo {
        max-width: 160px;
    }



/** Banner Section Start **/

.home-banner-section {
    overflow: hidden;
}

    .home-banner-section .image-box {
        background: #000;
        height: 720px;
        flex-basis: 55%;
        min-width: 55%;
        max-width: 55%;
    }

        .home-banner-section .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

.banner-right-caption {
    flex-basis: 45%;
    min-width: 45%;
    max-width: 45%;
    background: #23b8bf;
}

.left-bottom-shape {
    width: 636px;
    height: 636px;
    border-radius: 50%;
    background: #f15d5b;
    position: absolute;
    left: -318px;
    bottom: -420px;
    z-index: 1;
}

.b-shape-1 {
    left: -91px;
}

.b-shape-2 {
    left: -357px;
}

.banner-right-caption-inner {
    background: #01445e;
    width: 52.7%;
    height: 100%;
}

.caption-middle {
    padding-right: 60px;
    width: 700px;
}

.banner-right-caption-inner h1 {
    color: #fff;
    text-transform: uppercase;
    line-height: 80px;
    margin-bottom: 24px;
}

.banner-right-caption-inner p {
    color: #95d0d1;
    font-size: 30px;
    letter-spacing: 0.025em;
    line-height: normal;
}

.banner-logo {
    max-width: 240px;
    width: 100%;
    margin-bottom: 10px;
}

    .banner-logo img {
        width: 100%;
        height: auto;
        display: block;
    }



.home-slider .items {
    display: none;
}

    .home-slider .items.slick-slide,
    .home-slider .items:first-child {
        display: block;
    }

.home-slider .slick-dots {
    bottom: 50px;
}



/** Filter Search Section Start **/

.bg-image {
    background-size: cover !important;
    background-attachment: fixed !important;
}

.overlay-1:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f1c05b;
    opacity: 0.9;
}

.filter-search-inner {
    background: rgba(11, 67, 92, 0.3);
    padding: 20px;
    border-radius: 3px;
}

    .filter-search-inner .field-group {
        margin: -5px;
        padding-right: 75px;
    }

    .filter-search-inner .field {
        padding: 5px;
        min-width: 33.333%;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

        .filter-search-inner .field.whith-icon {
            position: relative;
        }

            .filter-search-inner .field.whith-icon i {
                top: 0;
            }

    .filter-search-inner input {
        background: #e8e9e7;
        height: 60px;
        font-weight: 400;
    }

    .filter-search-inner .field.whith-icon input {
        padding-right: 35px;
    }

    .filter-search-inner .field.whith-icon i {
        top: 50%;
        transform: translate(0, -50%);
        right: 20px;
    }

    .filter-search-inner .field.whith-icon .la-times {
        cursor: pointer;
    }

.search-btn {
    width: 70px;
    height: 60px;
    border: 0;
    border-radius: 3px;
    background: #f15c5a;
    color: #fff;
    font-size: 36px;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.4s ease;
    top: 5px;
}

    .search-btn:hover {
        background: #23b8bf;
    }



/** Section 3 Start **/

.three-boxes-main {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

    .three-boxes-main .icon-text-box-main {
        background: #e8e9e7;
        padding: 102px 30px 36px 30px;
    }

    .three-boxes-main .row {
        margin: -20px !important;
    }

        .three-boxes-main .row > div {
            padding: 20px !important;
        }

    .three-boxes-main .icon-box {
        display: block;
        width: 150px;
        height: 150px;
        background: #1f5675;
        border-radius: 50%;
        margin: 0 auto;
        top: -75px;
        transition: all 0.4s ease;
    }

        .three-boxes-main .icon-box img {
            width: 100%;
            height: 100%;
            object-fit: scale-down;
            object-position: center;
            display: block;
        }

    .three-boxes-main strong {
        display: block;
        font-weight: 500;
        font-size: 18px;
        letter-spacing: 0.025em;
        line-height: normal;
        color: #0b435c;
        min-height: 61px;
    }

        .three-boxes-main strong a {
            color: #0b435c;
        }

            .three-boxes-main strong a:hover {
                text-decoration: underline;
            }

.icon-text-box-main:hover .icon-box {
    background: #f15c5a;
}



.why-study-block .video-box {
    height: 500px;
    width: 100%;
    overflow: hidden;
}

    .why-study-block .video-box a {
        width: 100%;
        height: 100%;
        display: block;
    }

    .why-study-block .video-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.youtube-play-icon {
    background: url(../images/youtube-play-icon.png) no-repeat center;
    background-size: 100% auto;
    width: 85px;
    height: 60px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home .mfp-iframe-holder iframe {
    width: 640px;
    height: 360px;
}



/** Section 4 Start **/

.home-section4 {
    background: #23b8bf;
}

    .home-section4:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 22px;
        display: block;
        background: #fff;
    }

    .home-section4:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 22px;
        display: block;
        background: #fff;
    }

.icon-with-title-list {
    margin: 0 -15px;
    z-index: 1;
}

    .icon-with-title-list .items {
        min-width: 20%;
        max-width: 20%;
        flex-basis: 20%;
        padding: 0 15px;
    }

    .icon-with-title-list .icon {
        min-width: 150px;
        max-width: 150px;
        flex-basis: 150px;
        height: 150px;
        background: #fff;
        border: 1px solid #23b5bc;
        border-radius: 50%;
        transition: all 0.4s ease;
        margin-right: 15px;
        box-shadow: 0 10px 80px rgba(14, 14, 23, 0.1);
    }

        .icon-with-title-list .icon img {
            width: 100%;
            height: 100%;
            object-fit: scale-down;
            object-position: center;
            display: block;
            transition: all 0.4s ease;
        }

        .icon-with-title-list .icon .hover-icon {
            opacity: 0;
        }

    .icon-with-title-list .items strong {
        display: block;
        font-size: 22px;
        line-height: normal;
        font-weight: 500;
        letter-spacing: 0.025em;
        color: #fff;
    }

        .icon-with-title-list .items strong a {
            color: #fff;
        }

    .icon-with-title-list .items:hover .icon {
        background: #f15c5a;
        border-color: #f15c5a;
    }

        .icon-with-title-list .items:hover .icon .default-icon {
            opacity: 0;
        }

        .icon-with-title-list .items:hover .icon .hover-icon {
            opacity: 1;
        }

    .icon-with-title-list .items:hover strong a {
        text-decoration: underline;
    }



/** Testimonials Section Start **/

.testimonials-section .qute-icon {
    width: 50px;
    height: 41px;
    background: url(../images/qute-icon.png) no-repeat center;
    background-size: 100% auto;
    display: block;
    margin-bottom: 28px;
}

.testimonials-box-main p {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #4d4a59;
    font-style: italic;
    margin: 0 0 30px 0;
}

.testimonials-box-main .name {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0.025em;
    color: #f15c5a;
    margin-bottom: 4px;
}

.testimonials-box-main .sub-title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.025em;
    color: #4d4a59;
}



.testimonials-slider {
    padding-bottom: 94px;
}

    .testimonials-slider .items {
        display: none;
    }

        .testimonials-slider .items.slick-slide,
        .testimonials-slider .items:first-child {
            display: block;
        }

    .testimonials-slider .slick-arrow {
        left: 0;
        top: auto;
        margin: -5px 0 0;
        bottom: 0;
    }

    .testimonials-slider .slick-next.slick-arrow {
        left: 60px;
    }

.image-box-style {
    width: auto;
    height: 500px;
    margin: 20px 0 0 20px;
    z-index: 1;
}

    .image-box-style:before {
        content: "";
        position: absolute;
        left: -20px;
        top: -20px;
        width: 100%;
        height: 100%;
        border: 4px solid #f1c05b;
        z-index: -1;
    }

    .image-box-style img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }



/** Form Section Start **/

.form-section {
    background: #23b8bf;
    overflow: hidden;
}

    .form-section .image-box {
        width: 48%;
    }

        .form-section .image-box:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: -4px;
            left: -179px;
            width: 315px;
            background: url(../images/form-section1-shape2.svg) no-repeat center;
            background-size: 100% auto;
            display: block;
            z-index: 1;
        }

        .form-section .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

.contact-form-main {
    width: 52%;
}

.form-section h3 {
    font-weight: 500;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 14px;
}

.form-section p {
    color: #fff;
    font-size: 16px;
    line-height: normal;
}

.contact-form-inner {
    max-width: 620px;
    width: 100%;
}

.contact-form-main .form-group {
    margin: -10px;
}

    .contact-form-main .form-group .field {
        min-width: 50%;
        max-width: 50%;
        flex-basis: 50%;
        padding: 10px;
    }

        .contact-form-main .form-group .field.full-width {
            min-width: 100%;
            max-width: 100%;
            flex-basis: 100%;
        }

.contact-form-main .btn {
    background: #01445e;
}

    .contact-form-main .btn:hover, .contact-form-main .btn:focus, .contact-form-main .btn:active {
        background: #f1c05b;
    }

.catcha {
    margin-top: 6px;
}

.btn-box {
    /*margin-top: 10px;*/
}



/** Footer Start **/

.footer {
    background: #01445e;
}

.footer-top {
    margin-left: -15px;
    margin-right: -15px;
}

.f-col-1 {
    padding: 0 15px;
    min-width: 24%;
    max-width: 24%;
    flex-basis: 24%;
}

    .f-col-1 .f-logo {
        max-width: 234px;
        width: 100%;
        display: block;
    }

        .f-col-1 .f-logo img {
            display: block;
            width: 100%;
            height: auto;
        }

.footer h6 {
    color: #23b8bf;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.025em;
    font-weight: 600;
    margin-bottom: 35px;
}

.f-col-2 {
    min-width: 28%;
    max-width: 28%;
    flex-basis: 28%;
    padding: 0 13px;
}

.f-email,
.f-address {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.025em;
    color: #b8b8bf;
    padding-left: 37px;
    position: relative;
}

    .f-email i,
    .f-phone i,
    .f-address i {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 20px;
        color: #f1c05b;
    }

.f-phone {
    position: relative;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0.025em;
    color: #b8b8bf;
    padding-left: 37px;
    margin-top: 18px;
}

    .f-email a,
    .f-phone a {
        color: #b8b8bf;
    }

    .f-phone i {
        font-size: 24px;
    }

    .f-email a:hover,
    .f-phone a:hover {
        color: #f1c05b;
    }

.f-email {
    margin-top: 10px;
}

.social-icons {
    margin-top: 32px;
}

    .social-icons a {
        display: block;
        width: 44px;
        min-width: 44px;
        height: 44px;
        line-height: 46px;
        background: #23b8bf;
        border-radius: 50%;
        text-align: center;
        font-size: 20px;
        color: #01445e;
        transition: all 0.4s ease;
    }

        .social-icons a + a {
            margin-left: 10px;
        }

        .social-icons a:hover {
            background: #f1c05b;
        }

.f-col-3 {
    min-width: 27%;
    max-width: 27%;
    flex-basis: 27%;
    padding: 0 15px;
}

ul.f-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul.f-menu li + li {
        margin-top: 7px;
    }

    ul.f-menu li a {
        color: #b8b8bf;
        font-size: 15px;
        line-height: normal;
        letter-spacing: 0.025em;
    }

        ul.f-menu li.active a,
        ul.f-menu li a:hover {
            color: #f1c05b;
        }

.f-col-4 {
    min-width: 21%;
    max-width: 21%;
    flex-basis: 21%;
    padding: 0 15px;
}

    .f-col-4 a {
        display: block;
        max-width: 255px;
        width: 100%;
    }

/* .f-col-4 a img {
            width: 100%;
            height: auto;
            display: block;
        }*/

.copy-right-text {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
    line-height: normal;
    color: #b8b8bf;
    letter-spacing: 0.05em;
}

    .copy-right-text a {
        color: #23b8bf;
    }

        .copy-right-text a:hover {
            color: #b8b8bf;
        }



/** Courses Page Start **/

.internal-banner .caption {
    min-height: 250px;
}

.internal-banner .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.internal-banner h5 {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.025em;
}

.internal-banner p {
    font-size: 16px;
}



.courses-inner {
    margin: -20px;
}

.courses-list-left {
    min-width: 70.5%;
    max-width: 70.5%;
    flex-basis: 70.5%;
    padding: 20px;
}

.right-sidebar {
    min-width: 29.5%;
    max-width: 29.5%;
    flex-basis: 29.5%;
    padding: 20px;
}

.courses-list-left .row {
    margin: -10px;
}

    .courses-list-left .row > div {
        padding: 10px;
    }

.courses-box {
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .courses-box .image-box {
        width: 100%;
        height: 250px;
        overflow: hidden;
        background: #000;
        display: block;
        border-radius: 3px 3px 0 0;
    }

        .courses-box .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: all 0.4s ease;
        }

.courses-info-main {
    padding: 0 30px 25px;
}

    .courses-info-main h5 {
        font-family: 'Merriweather Sans', sans-serif;
        font-weight: 500;
        letter-spacing: 0.025em;
        font-weight: 500;
        color: #0b435c;
        line-height: normal;
        min-height: 75px;
    }

        .courses-info-main h5 a {
            color: #0b435c;
        }

    .courses-info-main p {
        margin: 0;
        min-height: 120px !important;
    }

.icon-with-list {
    border-top: 1px solid rgba(124, 127, 128, 0.5);
    margin-top: 23px;
    padding-top: 23px;
}

    .icon-with-list .items {
        min-width: 50%;
        max-width: 50%;
        flex-basis: 50%;
        font-size: 16px;
        color: #23b8bf;
        font-weight: 600;
        letter-spacing: 0.025em;
        padding-left: 25px;
        position: relative;
    }

        .icon-with-list .items i {
            position: absolute;
            left: 0;
            top: 50%;
            font-size: 18px;
            transform: translate(0,-50%);
        }

        .icon-with-list .items.full-width {
            min-width: 100%;
            max-width: 100%;
            flex-basis: 100%;
        }

.price-text {
    background: #f15c5a;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #fff;
    padding: 0 10px;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
}

.courses-box:hover .image-box img {
    transform: scale(1.1);
    opacity: 0.8;
}



.pagination .page-link {
    padding: 0;
    border: 1px solid #0b435c;
    width: 40px;
    text-align: center;
    line-height: 38px;
    height: 40px;
    font-size: 18px;
    font-weight: 500;
    color: #0b435c;
    margin: 0 5px !important;
    border-radius: 3px;
    box-shadow: none !important;
    outline: none !important;
}

    .pagination .page-link.previous,
    .pagination .page-link.next {
        color: #fff;
        background: #23b8bf;
        border-color: #23b8bf;
    }

    .pagination .page-link:hover {
        background: #f1c05b;
        border-color: #f1c05b;
        color: #0b435c;
    }



.right-sidebar .card + .card {
    margin-top: 20px;
}

.card {
    border-radius: 3px;
    border: 1px solid #e8e9e7;
}

    .card .card-header {
        font-size: 20px;
        letter-spacing: 0.025em;
        font-weight: 500;
        color: #fff;
        background: #23b8bf;
        border: 0;
        padding: 13px 28px;
    }

.card-header-testimonial {
    background: #95d0d1 !important;
}

.card-body {
    padding: 30px;
}



.side-search-bar .field + .field {
    margin-top: 10px;
}

.side-search-bar .btn {
    min-width: 140px;
    margin-top: 20px;
}

.video-box1 {
    width: 100%;
    height: 230px;
    border-radius: 0 0 3px 3px;
    overflow: hidden;
}

    .video-box1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .video-box1 .play-icon {
        color: #fff;
        font-size: 60px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.free-course-counselling-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #000;
    border-radius: 3px;
}

    .free-course-counselling-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: all 0.4s ease;
        opacity: 0.5;
    }

    .free-course-counselling-box .content {
        padding: 30px;
    }

    .free-course-counselling-box:hover img {
        opacity: 0.3;
        transform: scale(1.1);
    }

    .free-course-counselling-box h5 {
        font-family: 'Merriweather Sans', sans-serif;
        font-weight: 500;
        letter-spacing: 0.025em;
        font-weight: 500;
        color: #fff;
        line-height: normal;
        font-size: 24px;
        margin-bottom: 24px;
    }

        .free-course-counselling-box h5 a {
            color: #fff;
        }

    .free-course-counselling-box .btn {
        height: 60px;
        line-height: 60px;
        padding: 0 22px;
    }

    .free-course-counselling-box a {
        z-index: 1;
    }



.collapse-title {
    font-weight: 600;
    font-size: 18px;
    color: #0b435c;
    background: #e8e9e7;
    border-radius: 3px;
    border: 0;
    padding: 13px 40px 13px 20px;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
}

    .collapse-title:after {
        content: "\f106";
        font-family: 'Line Awesome Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(0,-50%);
        font-size: 16px;
        color: #1f5675;
        transition: all 0.4s ease;
    }

    .collapse-title[aria-expanded=false]:after {
        content: "\f107";
    }

.collapse-content {
    padding: 10px 22px 0 22px;
}

.collapse-main + .collapse-main {
    margin-top: 22px;
}

.check-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .check-box-list li {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .check-box-list li + li {
            margin-top: 12px;
        }



.other-courses-list .image-box {
    min-width: 100px;
    max-width: 100px;
    flex-basis: 100px;
    height: 100px;
    overflow: hidden;
    background: #000;
    display: block;
    border-radius: 3px;
    margin-right: 20px;
}

    .other-courses-list .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: all 0.4s ease;
    }

.other-courses-list .items + .items {
    margin-top: 20px;
}

.other-courses-list .items strong {
    font-size: 18px;
    color: #0b435c;
    letter-spacing: 0;
}

    .other-courses-list .items strong a {
        color: #0b435c;
    }

.other-courses-list .items:hover .image-box img {
    transform: scale(1.1);
    opacity: 0.8;
}

.demo-btn {
    width: 100%;
    padding: 20px;
    background: #f1c05b;
    border-radius: 3px;
    text-align: center;
    display: block;
    color: #0b435c !important;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
}

.demo-btn span {
padding: 42px 20px;
display: block;
border: 1px dashed #0b435c;
border-radius: 3px;
}

.sidebar-testimonials {
    text-align: left;
    padding: 30px;
}

    .sidebar-testimonials .qute-icon {
        max-width: 61px;
        width: 100%;
        margin: 0 auto 26px auto;
        display: block;
    }

        .sidebar-testimonials .qute-icon img {
            display: block;
            width: 100%;
            height: auto;
        }

    .sidebar-testimonials p {
        font-size: 14px;
        line-height: 20px;
        font-style: normal;
        line-height: normal;
        margin: 0;
    }

    .sidebar-testimonials .name1 {
        font-size: 14px;
        color:#0b435c;
        display: block;
        margin-top: 20px;
    }



/** Course Details Page Start **/

.internal-banner.course-details-banner .caption {
    min-height: 1px;
}

.caption-left {
    max-width: 63%;
    min-width: 63%;
    flex-basis: 63%;
    padding-right: 30px;
}

.caption-right {
    max-width: 37%;
    min-width: 37%;
    flex-basis: 37%;
}

    .caption-right .card {
        border: 0;
    }

.card.style-2 .card-header {
    background: #f15c5a;
}

.caption-right .card .side-search-bar .selectbox {
    margin-bottom: 25px;
}

.caption-right .card .side-search-bar p {
    font-size: 15px;
    margin: 0 0 16px 0;
    color: #0b435c;
    letter-spacing: 0;
    line-height: normal;
}

    .caption-right .card .side-search-bar p a {
        color: #23b8bf;
    }

        .caption-right .card .side-search-bar p a:hover {
            color: #f15c5a;
        }

.caption-right .two-btns .btn.secondary-btn {
    min-width: 190px;
}

.caption-right .two-btns .btn {
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    margin: 5px 0 0;
}

    .caption-right .two-btns .btn + .btn {
        margin-left: 10px;
    }



.featured-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 3px;
    background: #0b435c;
}

    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        opacity: 0.8;
    }

    .featured-image .price-text {
        left: 30px;
        bottom: 30px;
        background: #23b8bf;
    }

    .featured-image .get-enrol-btn {
        left: auto;
        right: 30px;
        bottom: 30px;
        background: #f1c05b;
        min-width: 120px;
        color: #0b435c;
    }

        .featured-image .get-enrol-btn:hover {
            color: #fff;
            background: #f15d5b;
        }

.courses-info-main1 {
    background: #95d0d1;
    border-radius: 0 0 3px 3px;
    padding: 15px 0;
}

    .courses-info-main1 .items {
        color: #0b435c;
        font-size: 15px;
        letter-spacing: 0.025em;
        padding: 7px 30px;
        margin: 8px 0;
    }

        .courses-info-main1 .items + .items {
            border-left: 1px solid rgba(11, 67, 92, 0.3);
        }

    .courses-info-main1 strong {
        display: block;
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 6px;
    }



.courses-three-boxes {
    padding: 40px 0;
}

    .courses-three-boxes .icon-text-box-main {
        margin-top: 75px;
    }

.three-boxes-main.courses-three-boxes strong {
    font-size: 22px;
}

.courses-details-section {
    border: 1px solid #e8e9e7;
    border-radius: 3px;
    overflow: hidden;
    background: #ffff;
}

    .courses-details-section .nav-tabs {
        border: 0;
    }

        .courses-details-section .nav-tabs .nav-item + .nav-item {
            border-left: 1px solid #fff;
        }

        .courses-details-section .nav-tabs .nav-link {
            border: 0;
            padding: 13px 15px;
            background: #95d0d1;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.025em;
            color: #0b435c;
            min-width: 218px;
            border-radius: 0;
            text-align: center;
            position: relative;
        }

            .courses-details-section .nav-tabs .nav-link:before {
                content: "";
                border-width: 10px 10px 0 10px;
                border-color: #f1c05b transparent transparent transparent;
                position: absolute;
                left: 50%;
                bottom: -10px;
                border-style: solid;
                transform: translate(-50%, 0);
                opacity: 0;
                transition: all 0.4s ease;
            }

            .courses-details-section .nav-tabs .nav-link:hover:before,
            .courses-details-section .nav-tabs .nav-link.active:before {
                opacity: 1;
            }

            .courses-details-section .nav-tabs .nav-link:hover,
            .courses-details-section .nav-tabs .nav-link.active {
                background: #f1c05b;
                color: #0b435c;
            }

.tab-content-inner {
    padding: 30px;
}

.collapse-style1 .collapse-title {
    font-size: 20px;
    padding: 18px 50px 18px 30px;
}

    .collapse-style1 .collapse-title:after {
        right: 30px;
        content: "\f056";
        font-size: 30px;
    }

    .collapse-style1 .collapse-title[aria-expanded=false]:after {
        content: "\f055";
    }

.collapse-style1 .collapse-content {
    padding: 25px 0;
}

.collapse-content h5,
.collapse-content h6 {
    font-weight: 500;
}

.collapse-content .btn {
    min-width: 140px;
}

.next-post {
    border-top: 1px dashed #0b435c;
    margin-top: 8px;
    padding-top: 30px;
    margin-bottom: 25px;
}

    .next-post h6 {
        margin-bottom: 24px;
    }

        .next-post h6 a {
            color: #23b8bf;
        }

.next-post {
    font-style: italic;
}

.credentials-list .items {
    min-width: 50%;
    max-width: 50%;
    flex-basis: 50%;
    padding-right: 40px;
}

    .credentials-list .items .image-box {
        display: block;
        margin-bottom: 25px;
        height: 100px;
    }

        .credentials-list .items .image-box img {
            display: block;
            height: auto;
            max-height: 100%;
        }

    .credentials-list .items a {
        color: #23b8bf;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0.025em;
    }



.collapse-main.collapse-style2 {
    margin: -1px 0 0 !important;
}

.collapse-style2 .collapse-title {
    font-size: 22px;
    padding: 18px 40px 18px 20px;
    font-weight: 500;
    letter-spacing: 0;
    background: none;
    border-top: 1px solid #e8e9e7;
    border-bottom: 1px solid #e8e9e7;
}

    .collapse-style2 .collapse-title:after {
        right: 20px;
        content: "\f068";
        font-size: 24px;
        color: #23b8bf;
    }

    .collapse-style2 .collapse-title[aria-expanded=true] {
        background: #e8e9e7;
    }

    .collapse-style2 .collapse-title[aria-expanded=false]:after {
        content: "\f067";
    }

.collapse-style2 .collapse-content {
    padding-top: 0;
    padding-bottom: 20px;
    margin-top: -4px;
    position: relative;
    background: #e8e9e7;
}



.team-list-main {
    max-width: 984px;
    width: 100%;
    margin: 0 auto;
}

    .team-list-main .row {
        margin: -20px;
    }

        .team-list-main .row > div {
            padding: 20px;
        }

    .team-list-main .team-box .image-box {
        width: 100%;
        height: 250px;
        overflow: hidden;
        display: block;
        border-radius: 3px;
        margin-bottom: 27px;
    }

        .team-list-main .team-box .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

    .team-list-main .team-box h6 {
        font-family: 'Merriweather Sans', sans-serif;
        letter-spacing: 0.025em;
        font-weight: 500;
        color: #0b435c;
        margin-bottom: 38px;
    }



#related-ebooks .team-list-main .team-box .image-box {
    height: auto;
}



/** Choose Course Page Start **/

.border-1 {
    border: 1px solid #e8e9e7;
    border-radius: 3px;
}

.form-wizard .wizard-fieldset {
    display: none;
}

    .form-wizard .wizard-fieldset.show {
        display: block;
    }

.form-wizard .form-wizard-steps {
    padding: 0;
    margin: -30px 0 0;
    list-style: none;
}

    .form-wizard .form-wizard-steps li {
        width: 25%;
        position: relative;
        padding: 0 25px 0 40px;
        background: #e8e9e7;
        color: #1f5675;
        font-size: 16px;
        font-weight: 500;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        letter-spacing: 0;
        height: 60px;
        clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
        margin: 0 -8px;
        white-space: nowrap;
    }

        .form-wizard .form-wizard-steps li span {
            background-color: #f1c05b;
            border-radius: 50%;
            display: inline-block;
            height: 30px;
            min-width: 30px;
            line-height: 30px;
            position: relative;
            text-align: center;
            width: 30px;
            z-index: 1;
            font-size: 16px;
            font-weight: bold;
            color: #1f5675;
            margin-right: 10px;
        }

        .form-wizard .form-wizard-steps li.active {
            background: #23b8bf;
            color: #fff;
        }

        .form-wizard .form-wizard-steps li.completed {
            background: #f1c05b;
            color: #fff;
            color: #0b435c;
        }

            .form-wizard .form-wizard-steps li.completed span {
                background: #0b435c;
                color: #f1c05b;
            }

.label {
    font-size: 18px;
    font-weight: 600;
    color: #0b435c;
    line-height: normal;
    margin-bottom: 8px !important;
    display: block;
}

.text-link {
    font-size: 16px;
    font-weight: 400;
    color: #23b8bf;
}

    .text-link i {
        margin-left: 10px;
    }

    .text-link:hover {
        color: #f15d5b;
    }

.radio-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .radio-list li + li {
        margin-top: 13px;
    }

.bottom-btns .btn {
    min-width: 140px;
    padding: 0 25px;
}

    .bottom-btns .btn + .btn {
        margin-left: 10px;
    }



.edit-option {
    max-width: 270px;
    width: 100%;
    font-size: 16px;
    line-height: normal;
    color: #4d4a59;
    letter-spacing: 0.025em;
}

    .edit-option .edit {
        font-size: 18px;
        color: #23b8bf;
    }

.plan-panel {
    background: #95d0d1;
    font-size: 18px;
    color: #0b435c;
    letter-spacing: 0;
    border-radius: 3px 0 0 3px;
    font-weight: 500;
    padding: 13px 30px;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

.plan-title {
    font-weight: 600;
    font-size: 18px;
    color: #0b435c;
    line-height: normal;
    letter-spacing: 0;
    margin-bottom: 20px;
    display: block;
}

.plan-box .radiobox {
    font-size: 18px;
    font-weight: 600;
    color: #23b8bf;
    letter-spacing: 0;
    min-width: 145px;
    max-width: 145px;
    flex-basis: 145px;
    padding-right: 15px;
}

    .plan-box .radiobox span {
        transition: all 0.4s ease;
    }

    .plan-box .radiobox input:checked ~ .checkmark + span,
    .plan-box .radiobox input:checked ~ .checkmark:after {
        color: #f1c05b;
    }

.label-value-main {
    width: 100%;
}

    .notes2,
    .label-value-main .gst-text,
    .label-value-main span,
    .label-value-main label {
        font-size: 16px;
        color: #4d4a59;
        min-width: 72px;
        max-width: 72px;
        flex-basis: 72px;
        letter-spacing: 0.025em;
    }

        .label-value-main .gst-text,
        .notes2,
        .label-value-main label.full-width {
            min-width: 100%;
            max-width: 100%;
            flex-basis: 100%;
        }

    /*.label-value-main .gst-text{min-width:1px;max-width:none;flex-basis:inherit; width:100%;}*/

    .label-value-main strong {
        font-size: 18px;
        color: #23b8bf;
    }

    .label-value-main span {
        min-width: 140px;
        max-width: 140px;
        flex-basis: 140px;
        padding-right: 50px;
    }

    .label-value-main .items + .items {
        margin-top: 20px !important;
    }

.choose-course-plan-2 li {
    font-weight: 600;
}

    .choose-course-plan-2 li:last-child {
        margin-bottom: 0;
    }



.payment-due-today-text {
    color: #0b435c;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

    .payment-due-today-text span {
        margin-right: 30px;
    }

.promotional-code-main {
    max-width: 620px;
    width: 100%;
    padding-right: 210px;
}

    .promotional-code-main input {
        background: #e8e9e7;
        font-weight: 400;
    }

    .promotional-code-main .btn {
        min-width: 200px;
    }

.required {
    color: #f15c5a;
}



.details-form .row {
    margin: -17px -10px;
}

    .details-form .row > div {
        padding: 17px 10px;
    }

.details-form .field-label {
    display: block;
    font-size: 16px;
    color: #4d4a59;
    font-weight: 400;
    margin-bottom: 14px;
}

    .details-form .field-label small {
        font-size: 14px;
        color: #666666;
    }

.details-form .field input {
    width: 100%;
    border: 1px solid #e8e9e7;
    font-weight: 300;
    font-size: 14px;
    color: #0b435c;
}

.details-form .field .selectbox {
    background: #fff;
    border: 1px solid #e8e9e7;
}

    .details-form .field .selectbox select {
        font-weight: 300;
        font-size: 14px;
        color: #0b435c;
    }

.field-notes {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.025em;
    color: #666666;
    font-weight: 300;
    background: #e8e9e7;
    padding: 13px 20px;
    border-radius: 3px;
}

.gender-field .field-label {
    width: 146px;
}

.gender-options .items + .items {
    margin-top: 25px;
}



.payment-block {
    background: #e8e9e7;
    border-radius: 3px;
}

    .payment-block .row {
        margin: 0 -15px !important;
    }

        .payment-block .row > div {
            padding: 0 15px !important;
        }

.payment-options {
    padding: 25px 30px;
}

    .payment-options .checkbox,
    .payment-options .radiobox {
        font-size: 15px;
        font-weight: bold;
        padding-left: 30px;
    }

    .payment-options .check-box-list li + li {
        margin-top: 6px;
    }

    .payment-options .checkbox {
        white-space: nowrap;
    }

        .payment-options .checkbox a {
            color: #23b8bf;
            z-index: 2;
            position: relative;
        }

            .payment-options .checkbox a:hover {
                color: #f15d5b;
            }

    .payment-options .radio-list li + li {
        margin-top: 23px;
    }

    .payment-options .label {
        margin-bottom: 2px !important;
    }



.thank-you-box {
    background: #23b8bf;
    padding: 30px;
    border-radius: 3px;
}

.order-title .btn i {
    margin-right: 10px;
}

.thank-you-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.thank-you-box p {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0;
}

    .thank-you-box p a {
        color: #0b435c;
    }

        .thank-you-box p a:hover {
            color: #f15d5b;
        }



.payment-advice-block .row {
    margin: -20px;
}

    .payment-advice-block .row > div {
        padding: 20px;
    }

.payment-advice-block p a {
    color: #23b8bf;
}

    .payment-advice-block p a:hover {
        color: #f15d5b;
    }

.payment-advice-box {
    position: relative;
    padding: 15px 0 0 72px;
}

    .payment-advice-box .number {
        font-style: normal;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        background: #f1c05b;
        font-size: 24px;
        font-weight: 600;
        color: #0b435c;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 50%;
    }

    .payment-advice-box strong {
        font-weight: 600;
    }

.table-main table .label {
    margin-bottom: 4px !important;
}



.thank-you-box1 {
    padding: 45px 30px;
    border-radius: 3px;
}

    .thank-you-box1 h3 {
        margin-bottom: 10px;
    }

    .thank-you-box1 p {
        font-size: 18px;
        letter-spacing: 0;
    }

        .thank-you-box1 p a {
            color: #23b8bf;
        }

            .thank-you-box1 p a:hover {
                color: #f15d5b;
            }

.loading {
    position: fixed; /* or absolute */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*======================================================================

=============================:: MEDIA CSS ::============================

=======================================================================*/

@media screen and (max-width:1699px) {

    .internal-banner.course-details-banner .caption-left p br {
        display: none;
    }
}

@media screen and (max-width:1399px) {

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 50px;
    }

    h3 {
        font-size: 40px;
    }

    h4 {
        font-size: 30px;
    }

    h5 {
        font-size: 26px;
    }

    .slick-dots li button {
        width: 30px;
        height: 30px;
    }

        .slick-dots li button:before {
            font-size: 30px;
        }



    /** Header Start **/

    .header .navbar-nav .nav-link {
        font-size: 16px;
    }

    .header .navbar-nav .nav-item + .nav-item {
        margin-left: 35px;
    }

    .header .btn-box {
        margin-left: 30px;
    }

    .header .dropdown .dropdown-item {
        font-size: 14px;
    }



    /** Banner Section Start **/

    .home-banner-section .image-box {
        height: 500px;
    }

    .caption-middle {
        padding-right: 40px;
        width: 610px;
    }

    .banner-right-caption-inner h1 {
        line-height: 56px;
        margin-bottom: 15px;
    }

    .banner-right-caption-inner p {
        font-size: 22px;
    }

    .banner-logo {
        max-width: 180px;
    }

    .home-slider .slick-dots {
        bottom: 20px;
    }



    /** Section 4 Start **/

    .icon-with-title-list {
        margin: 0 -10px;
    }

        .icon-with-title-list .items {
            padding: 0 10px;
        }

        .icon-with-title-list .icon {
            min-width: 130px;
            max-width: 130px;
            flex-basis: 130px;
            height: 130px;
            margin-right: 10px;
        }

        .icon-with-title-list .items strong {
            font-size: 20px;
        }



    /** Courses Page Start **/

    .courses-box .image-box {
        height: 200px;
    }

    .courses-info-main {
        padding: 20px 25px;
    }



    .right-sidebar .card + .card {
        margin-top: 15px;
    }

    .card .card-header {
        font-size: 18px;
        padding: 12px 25px;
    }

    .card-body {
        padding: 20px;
    }

    .side-search-bar .btn {
        margin-top: 15px;
    }

    .video-box1 {
        height: 200px;
    }

        .video-box1 .play-icon {
            font-size: 54px;
        }

    .free-course-counselling-box {
        height: 250px;
    }

        .free-course-counselling-box .content {
            padding: 20px;
        }

        .free-course-counselling-box h5 {
            font-size: 22px;
            margin-bottom: 22px;
        }

        .free-course-counselling-box .btn {
            height: 54px;
            line-height: 54px;
            padding: 0 20px;
        }

        .free-course-counselling-box a {
            z-index: 1;
        }



    .collapse-title {
        font-size: 16px;
        padding: 12px 40px 12px 20px;
    }

    .collapse-content {
        padding: 10px 20px 0 20px;
    }

    .collapse-main + .collapse-main {
        margin-top: 20px;
    }

    .check-box-list li + li {
        margin-top: 10px;
    }



    .other-courses-list .image-box {
        min-width: 90px;
        max-width: 90px;
        flex-basis: 90px;
        height: 90px;
        margin-right: 15px;
    }

    .other-courses-list .items + .items {
        margin-top: 15px;
    }

    .other-courses-list .items strong {
        font-size: 16px;
    }

    .demo-btn {
        padding: 15px;
        font-size: 28px;
    }

        .demo-btn span {
            padding: 35px 20px;
        }

    .sidebar-testimonials {
        padding: 20px;
    }

        .sidebar-testimonials .qute-icon {
            margin: 0 auto 20px auto;
        }

        .sidebar-testimonials p {
            font-size: 20px;
        }

        .sidebar-testimonials .name1 {
            font-size: 16px;
            margin-top: 20px;
        }



    /** Course Details Page Start **/

    .three-boxes-main strong {
        font-size: 22px;
    }

    .three-boxes-main.courses-three-boxes strong {
        font-size: 20px;
    }



    .collapse-style1 .collapse-title {
        font-size: 18px;
        padding: 15px 40px 15px 25px;
    }

        .collapse-style1 .collapse-title:after {
            font-size: 24px;
            right: 20px;
        }



    .collapse-style2 .collapse-title {
        font-size: 20px;
        padding: 15px 40px 15px 15px;
    }

        .collapse-style2 .collapse-title:after {
            right: 15px;
            font-size: 22px;
        }



    .team-list-main .row {
        margin: -15px;
    }

        .team-list-main .row > div {
            padding: 15px;
        }

    .team-list-main .team-box .image-box {
        height: 220px;
        margin-bottom: 20px;
    }

    .team-list-main .team-box h6 {
        margin-bottom: 30px;
    }



    /** Choose Course Page Start **/

    .form-wizard {
        padding: 0 15px;
    }

    .label {
        font-size: 16px;
    }
}



@media screen and (max-width:1299px) {

    /** Section 4 Start **/

    .home-section4:before, .home-section4:after {
        height: 15px;
    }

    .icon-with-title-list {
        margin: 0 -5px;
    }

        .icon-with-title-list .items {
            padding: 0 5px;
        }

        .icon-with-title-list .icon {
            min-width: 110px;
            max-width: 110px;
            flex-basis: 110px;
            height: 110px;
        }

        .icon-with-title-list .items strong {
            font-size: 18px;
        }



    /** Courses Page Start **/

    .courses-box .image-box {
        height: 180px;
    }

    .courses-info-main {
        padding: 20px;
    }

        .courses-info-main h6 {
            font-size: 18px;
        }

    .icon-with-list {
        margin-top: 20px;
        padding-top: 20px;
    }

        .icon-with-list .items {
            min-width: 50%;
            max-width: 50%;
            flex-basis: 50%;
            font-size: 14px;
            padding-left: 22px;
        }

            .icon-with-list .items i {
                font-size: 16px;
            }

    .price-text {
        min-width: 80px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
        margin-top: 20px;
    }



    .featured-image {
        height: 400px;
    }

    .courses-three-boxes .icon-text-box-main {
        padding: 102px 15px 36px 15px;
    }



    /** Courses Details Page Start **/

    .courses-details-section .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 14px;
        min-width: 180px;
    }

    .collapse-style2 .collapse-title {
        font-size: 18px;
    }
}

/* iPad 1024px View */

@media screen and (max-width:1199px) {

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 36px;
    }

    h4 {
        font-size: 28px;
    }

    h5 {
        font-size: 24px;
    }

    h6 {
        font-size: 20px;
    }

    p {
        margin-bottom: 20px;
    }

    .button, .btn {
        font-size: 16px;
    }

    .slick-dots li button {
        width: 26px;
        height: 26px;
    }

        .slick-dots li button:before {
            font-size: 26px;
        }

    .checkbox, .radiobox {
        padding-left: 30px;
        font-size: 14px;
    }

    .list-style ol li,
    .list-style ul li {
        margin-bottom: 15px;
    }

    table th {
        font-size: 14px;
        padding: 8px 15px;
    }

    table td {
        font-size: 13px;
        padding: 8px 15px;
    }



    /** Header Start **/

    .header .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header .navbar-nav .nav-item + .nav-item,
    .header .btn-box {
        margin-left: 20px;
    }

    .header .dropdown .dropdown-item {
        font-size: 14px;
    }

    body, body.header-fixed {
        padding: 78px 0 0 0;
    }

    .header, .header-fixed .header {
        padding: 10px 0;
    }

        .header .logo, .header-fixed .header .logo {
            max-width: 160px;
        }



    /** Filter Search Section Start **/

    .bg-image {
        background-attachment: inherit !important;
    }



    /** Banner Section Start **/

    .home-banner-section .image-box {
        height: 400px;
        flex-basis: 50%;
        min-width: 50%;
        max-width: 50%;
    }

    .banner-right-caption {
        flex-basis: 50%;
        min-width: 50%;
        max-width: 50%;
    }

    .caption-middle {
        padding-right: 20px;
        width: 500px;
    }

    .banner-right-caption-inner h1 {
        line-height: 50px;
        margin-bottom: 10px;
    }

    .banner-right-caption-inner p {
        font-size: 18px;
    }

    .banner-logo {
        max-width: 160px;
        margin-bottom: 5px;
    }

    .left-bottom-shape {
        width: 500px;
        height: 500px;
        left: -300px;
        bottom: -300px;
    }

    .home-slider .slick-dots {
        bottom: 15px;
    }



    /** Section 4 Start **/

    .icon-with-title-list .items {
        padding: 10px 5px;
        min-width: 25%;
        max-width: 25%;
        flex-basis: 25%;
    }

    .icon-with-title-list .icon {
        min-width: 110px;
        max-width: 110px;
        flex-basis: 110px;
        height: 110px;
    }

    .icon-with-title-list .items strong {
        font-size: 18px;
    }



    /** Testimonials Section Start **/

    .testimonials-box-main p {
        font-size: 16px;
        line-height: 26px;
        margin: 0 0 25px 0;
    }

    .testimonials-box-main .name {
        font-size: 20px;
        line-height: 22px;
    }

    .testimonials-box-main .sub-title {
        font-size: 14px;
        line-height: 22px;
    }

    .image-box-style {
        height: 400px;
        margin: 15px 0 0 15px;
    }

        .image-box-style:before {
            left: -15px;
            top: -15px;
            border: 3px solid #f1c05b;
        }



    /** Form Section Start **/

    .form-section h3 {
        margin-bottom: 10px;
    }

    .form-section p {
        font-size: 14px;
    }

    .contact-form-inner {
        max-width: 450px;
        width: 100%;
    }



    /** Courses Page Start **/

    .internal-banner .caption {
        min-height: 300px;
    }

    .internal-banner h5 {
        font-size: 22px;
    }

    .internal-banner p br {
        display: none;
    }

    .internal-banner p {
        font-size: 15px;
    }



    /** Courses Page Start **/

    .courses-inner {
        margin: -15px;
    }

    .right-sidebar,
    .courses-list-left {
        padding: 15px;
    }

    .courses-box .image-box {
        height: 160px;
    }

    .courses-info-main {
        padding: 15px;
    }

        .courses-info-main h6 {
            font-size: 16px;
            margin-bottom: 10px !important;
        }

        .courses-info-main p {
            font-size: 13px;
            line-height: 20px;
        }

    .icon-with-list {
        margin-top: 15px;
        padding-top: 15px;
    }

        .icon-with-list .items {
            min-width: 50%;
            max-width: 50%;
            flex-basis: 50%;
            font-size: 12px;
            padding-left: 20px;
        }

    .price-text {
        font-size: 14px;
        margin-top: 15px;
    }



    .card .card-header {
        font-size: 16px;
        padding: 10px 20px;
    }

    .card-body {
        padding: 15px;
    }

    .side-search-bar .btn {
        margin-top: 10px;
    }

    .video-box1 {
        height: 150px;
    }

        .video-box1 .play-icon {
            font-size: 46px;
        }

    .free-course-counselling-box {
        height: 200px;
    }

        .free-course-counselling-box .content {
            padding: 15px;
        }

        .free-course-counselling-box h5 {
            font-size: 20px;
            margin-bottom: 20px;
        }

            .free-course-counselling-box h5 br {
                display: none;
            }

        .free-course-counselling-box .btn {
            height: 50px;
            line-height: 50px;
        }



    .collapse-title {
        font-size: 15px;
        padding: 10px 30px 10px 15px;
    }

    .collapse-content {
        padding: 10px 15px 0 15px;
    }

    .collapse-main + .collapse-main {
        margin-top: 15px;
    }

    .check-box-list li + li {
        margin-top: 8px;
    }



    .other-courses-list .image-box {
        min-width: 80px;
        max-width: 80px;
        flex-basis: 80px;
        height: 80px;
        margin-right: 10px;
    }

    .other-courses-list .items strong {
        font-size: 14px;
    }

        .other-courses-list .items strong br {
            display: none;
        }

    .demo-btn {
        padding: 10px;
        font-size: 22px;
    }

        .demo-btn span {
            padding: 25px 15px;
        }

    .sidebar-testimonials {
        padding: 15px;
    }

        .sidebar-testimonials .qute-icon {
            margin: 0 auto 15px auto;
        }

        .sidebar-testimonials p {
            font-size: 18px;
        }

            .sidebar-testimonials p br {
                display: none;
            }

        .sidebar-testimonials .name1 {
            font-size: 14px;
            margin-top: 15px;
        }



    /** Course Details Page Start **/

    .caption-left {
        padding-right: 15px;
    }

    .caption-right .card .side-search-bar .selectbox {
        margin-bottom: 20px;
    }

    .caption-right .card .side-search-bar p {
        font-size: 13px;
        margin: 0 0 14px 0;
    }

    .caption-right .two-btns .btn.secondary-btn {
        min-width: 160px;
    }

    .caption-right .two-btns .btn {
        height: 50px;
        line-height: 50px;
        margin: 0;
    }



    .featured-image {
        height: 350px;
    }

        .featured-image .price-text {
            left: 20px;
            bottom: 20px;
        }

        .featured-image .get-enrol-btn {
            left: auto;
            right: 20px;
            bottom: 20px;
            min-width: 100px;
        }

    .courses-info-main1 {
        padding: 10px 0;
    }

        .courses-info-main1 .items {
            font-size: 14px;
            padding: 5px 25px;
            margin: 5px 0;
        }

        .courses-info-main1 strong {
            font-size: 16px;
            margin-bottom: 4px;
        }



    .courses-three-boxes {
        padding: 30px 0;
    }

    .three-boxes-main.courses-three-boxes .row > div {
        min-width: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }



    .tab-content-inner {
        padding: 20px;
    }

    .courses-details-section .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 160px;
    }

    .collapse-style1 .collapse-content {
        padding: 20px 0;
    }

    .collapse-style1 .collapse-title {
        font-size: 16px;
        padding: 10px 40px 10px 20px;
    }

        .collapse-style1 .collapse-title:after {
            font-size: 22px;
            right: 15px;
        }

    .next-post {
        padding-top: 25px;
    }

        .next-post h6 {
            margin-bottom: 15px;
        }

    .credentials-list .items .image-box {
        margin-bottom: 20px;
    }

    .credentials-list .items,
    .credentials-list .items a {
        line-height: normal;
    }



    .collapse-style2 .collapse-title {
        font-size: 16px;
    }

        .collapse-style2 .collapse-title:after {
            right: 15px;
            font-size: 20px;
        }

    .collapse-style2 .collapse-content {
        padding-bottom: 15px;
    }



    .team-list-main .team-box .image-box {
        height: 180px;
        margin-bottom: 15px;
    }

    .team-list-main .team-box h6 {
        margin-bottom: 15px;
    }



    /** Choose Course Page Start **/

    .form-wizard .form-wizard-steps {
        margin: -25px 0 0;
    }

        .form-wizard .form-wizard-steps li {
            width: 25%;
            padding: 0 25px;
            font-size: 15px;
            height: 50px;
            clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 8% 50%);
            margin: 0 -6px;
        }

            .form-wizard .form-wizard-steps li span {
                height: 22px;
                min-width: 22px;
                line-height: 22px;
                width: 22px;
                font-size: 14px;
                margin-right: 5px;
            }

    .label {
        font-size: 15px;
    }

    .text-link {
        font-size: 16px;
    }

        .text-link i {
            margin-left: 5px;
        }

    .radio-list li + li {
        margin-top: 10px;
    }



    .plan-panel {
        font-size: 16px;
        padding: 10px 25px;
    }

    .plan-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .plan-box .radiobox {
        font-size: 16px;
        min-width: 120px;
        max-width: 120px;
        flex-basis: 120px;
    }

    .notes2,
    .label-value-main .gst-text,
    .label-value-main span,
    .label-value-main label {
        font-size: 15px;
        min-width: 60px;
        max-width: 60px;
        flex-basis: 60px;
    }

    .label-value-main strong {
        font-size: 16px;
    }

    .label-value-main span {
        min-width: 120px;
        max-width: 120px;
        flex-basis: 120px;
        padding-right: 30px;
    }

    .label-value-main .items + .items {
        margin-top: 15px !important;
    }

    .label-value-main .gst-text, .notes2, .label-value-main label.full-width {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }



    .details-form .row {
        margin: -15px -10px;
    }

        .details-form .row > div {
            padding: 15px 10px;
        }

    .details-form .field-label {
        font-size: 14px;
        margin-bottom: 10px;
    }

        .details-form .field-label small {
            font-size: 12px;
        }

    .field-notes {
        font-size: 13px;
        line-height: 22px;
        padding: 10px 15px;
    }

    .gender-field .field-label {
        width: 130px;
    }

    .gender-options .items + .items {
        margin-top: 20px;
    }



    .payment-options {
        padding: 20px 25px;
    }

        .payment-options .check-box-list li + li {
            margin-top: 4px;
        }

        .payment-options .checkbox {
            white-space: normal;
            line-height: 1;
        }

        .payment-options .radio-list li + li {
            margin-top: 15px;
        }

        .payment-options .label {
            margin-bottom: 0 !important;
        }



    .thank-you-box {
        padding: 25px;
    }

    .order-title .btn i {
        margin-right: 5px;
    }

    .thank-you-box h3 {
        margin-bottom: 5px;
    }

    .thank-you-box p {
        font-size: 16px;
    }



    .payment-advice-block .row {
        margin: -15px;
    }

        .payment-advice-block .row > div {
            padding: 15px;
        }

    .payment-advice-box {
        padding: 10px 0 0 65px;
    }

        .payment-advice-box .number {
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 20px;
        }

    .table-main table .label {
        margin-bottom: 0px !important;
    }



    .thank-you-box1 {
        padding: 30px 25px;
    }

        .thank-you-box1 h3 {
            margin-bottom: 5px;
        }

        .thank-you-box1 p {
            font-size: 16px;
        }

    .order-title {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

        .order-title h2 {
            display: block;
            width: 100%;
        }

        .order-title .btn {
            margin: 10px auto 0 auto !important;
        }
}

@media screen and (max-width:991px) {

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 22px;
    }

    input, textarea, select {
        padding: 5px 15px;
        font-size: 14px;
    }

    .slick-arrow {
        width: 40px;
        height: 40px;
    }

        .slick-arrow:before {
            line-height: 41px;
            font-size: 20px;
        }

    .table-main {
        overflow: auto;
    }

        .table-main th {
            white-space: nowrap;
        }

    table th {
        font-size: 13px;
    }

    table td {
        font-size: 12px;
    }



    /** Header Start **/

    .header .navbar-toggler {
        color: rgba(255,255,255,.5);
        border-color: rgba(255,255,255,.1);
        outline: none !important;
        box-shadow: none !important;
    }

    .header .navbar-toggler-icon {
        background-image: url(../images/toggle-icon.svg);
    }

    .header .navbar-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        background: #1f5675;
        padding: 0 20px 20px 20px;
    }

    .header .navbar-nav .nav-item + .nav-item, .header .btn-box {
        margin: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header .btn-box {
        padding-top: 15px;
    }

    .header .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        display: none;
    }

    .header .dropdown .nav-link.show + .dropdown-menu {
        display: block;
    }



    /** Banner Section Start **/

    .home-banner-section .image-box {
        height: 500px;
        flex-basis: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .banner-right-caption {
        flex-basis: 100%;
        min-width: 100%;
        max-width: 100%;
        z-index: 1;
    }

    .caption-middle.position-absolute {
        position: static !important;
    }

    .caption-middle {
        width: 500px;
        padding: 40px 15px;
    }

    .left-bottom-shape {
        width: 400px;
        height: 400px;
        left: -250px;
        bottom: auto;
        top: 370px;
    }



    /** Filter Search Section Start **/

    .filter-search-inner {
        padding: 15px;
    }

        .filter-search-inner .field-group {
            padding-right: 65px;
        }

        .filter-search-inner input {
            height: 60px;
        }

        .filter-search-inner .field.whith-icon input {
            padding-right: 35px;
        }

        .filter-search-inner .field.whith-icon i {
            right: 15px;
        }

    .search-btn {
        width: 60px;
        height: 50px;
        font-size: 30px;
        line-height: 50px;
    }



    /** Section 3 Start **/

    .three-boxes-main .icon-text-box-main {
        padding: 80px 15px 20px 15px;
    }

    .three-boxes-main .row {
        margin: -15px !important;
    }

        .three-boxes-main .row > div {
            padding: 15px !important;
        }

    .three-boxes-main .icon-box {
        width: 120px;
        height: 120px;
        top: -60px;
    }

    .three-boxes-main.courses-three-boxes strong,
    .three-boxes-main strong {
        font-size: 18px;
    }



    .why-study-block .video-box {
        height: 400px;
    }

    .home .mfp-iframe-holder iframe {
        width: 640px;
        height: 360px;
    }



    /** Section 4 Start **/

    .icon-with-title-list .items {
        min-width: 33.333%;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }



    /** Testimonials Section Start **/

    .testimonials-slider {
        padding-bottom: 60px;
    }

    .testimonials-section .qute-icon {
        width: 36px;
        height: 30px;
        margin-bottom: 20px;
    }

    .testimonials-box-main p {
        font-size: 16px;
        line-height: 26px;
        margin: 0 0 20px 0;
    }

    .testimonials-box-main .name {
        font-size: 18px;
        line-height: 20px;
    }

    .image-box-style {
        height: 360px;
    }

    .testimonials-slider .slick-next.slick-arrow {
        left: 50px;
    }



    /** Form Section Start **/

    .contact-form-main {
        width: 100%;
    }

    .form-section .image-box {
        position: relative !important;
        width: 100%;
    }

    .form-section h3 {
        margin-bottom: 10px;
    }

    .contact-form-inner {
        max-width: 620px;
        width: 100%;
    }

    .catcha {
        margin-top: 0;
    }

    .btn-box {
        margin-top: 0;
    }



    /** Footer Start **/

    .f-col-1 {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        padding: 10px 15px;
    }

    .f-col-2,
    .f-col-3,
    .f-col-4 {
        min-width: 33.33%;
        max-width: 33.33%;
        flex-basis: 33.33%;
        padding: 10px 15px;
    }

    .footer h6 {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .social-icons {
        margin-top: 20px;
    }

    ul.f-menu li + li {
        margin-top: 5px;
    }



    /** Courses Page Start **/

    .internal-banner .caption {
        min-height: 250px;
    }

    .internal-banner h5 {
        font-size: 20px;
    }



    .right-sidebar,
    .courses-list-left {
        padding: 15px;
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }

    .icon-with-list .items i {
        font-size: 16px;
    }

    .mfp-iframe-holder iframe {
        width: 700px;
        height: 400px;
    }



    /** Course Details Page Start **/

    .caption-left,
    .caption-right {
        max-width: 100%;
        min-width: 100%;
        flex-basis: 100%;
        padding: 0;
    }

    .caption-right {
        padding-top: 20px;
    }

        .caption-right .card .side-search-bar .selectbox {
            margin-bottom: 20px;
        }

        .caption-right .card .side-search-bar p {
            font-size: 13px;
            margin: 0 0 14px 0;
        }

        .caption-right .two-btns .btn.secondary-btn {
            min-width: 160px;
        }

        .caption-right .two-btns .btn {
            height: 50px;
            line-height: 50px;
            margin: 0;
        }



    .featured-image .price-text {
        left: 15px;
        bottom: 15px;
    }

    .featured-image .get-enrol-btn {
        left: auto;
        right: 15px;
        bottom: 15px;
        min-width: 80px;
    }

    .courses-info-main1 .items {
        font-size: 14px;
        padding: 5px 20px;
        margin: 0;
    }

    .courses-info-main1 strong {
        font-size: 16px;
        margin-bottom: 0px;
    }



    .three-boxes-main strong {
        min-height: 46px;
    }

    .courses-three-boxes .icon-text-box-main {
        margin-top: 60px;
    }



    .team-list-main .team-box h6 {
        margin-bottom: 10px;
    }



    /** Choose Course Page Start **/

    .form-wizard .form-wizard-steps {
        flex-wrap: wrap;
    }

        .form-wizard .form-wizard-steps li {
            width: 33.333%;
            margin-bottom: 6px;
        }

    .text-link {
        font-size: 15px;
    }

    .radio-list .radiobox {
        line-height: normal;
    }

    .radio-list li + li {
        margin-top: 8px;
    }



    .payment-due-today-text {
        font-size: 15px;
        line-height: 22px;
    }

        .payment-due-today-text span {
            margin-right: 20px;
        }

    .promotional-code-main {
        padding-right: 190px;
    }

        .promotional-code-main .btn {
            min-width: 180px;
        }

    .label-value-main .gst-text {
        min-width: 1px;
        max-width: none;
        flex-basis: inherit;
    }



    .details-form .row {
        margin: -10px;
    }

        .details-form .row > div {
            padding: 10px;
        }

    .gender-field .field-label {
        width: 120px;
    }

    .gender-options .items + .items {
        margin-top: 15px;
    }



    .payment-options {
        padding: 15px 20px;
    }

        .payment-options .check-box-list li + li {
            margin-top: 3px;
        }

        .payment-options .radio-list li + li {
            margin-top: 10px;
        }

        .payment-options .checkbox, .payment-options .radiobox {
            font-size: 13px;
        }



    .thank-you-box {
        padding: 20px;
    }

        .thank-you-box p {
            font-size: 14px;
        }



    .payment-advice-box {
        padding: 8px 0 0 50px;
    }

        .payment-advice-box .number {
            width: 36px;
            height: 36px;
            line-height: 36px;
            font-size: 18px;
        }



    .thank-you-box1 {
        padding: 25px 20px;
    }

        .thank-you-box1 p {
            font-size: 14px;
        }
}

/* iPhone-6 plus 736 (Landscape) view */

@media screen and (max-width:767px) {

    body {
        -webkit-text-size-adjust: none;
    }

    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 10px;
        line-height: 1;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }

    ul li, ol li, p {
        font-size: 14px;
    }

    .list-style ol li,
    .list-style ul li {
        margin-bottom: 10px;
    }

    input, textarea, select {
        height: 40px;
        padding: 5px 15px;
    }

    .selectbox select {
        padding: 5px 40px 5px 15px;
        height: 38px;
    }

    .selectbox:after {
        line-height: 40px;
        font-size: 14px;
        right: 15px;
    }

    .slick-dots li {
        margin: 0 2px;
    }

        .slick-dots li button {
            width: 22px;
            height: 22px;
        }

            .slick-dots li button:before {
                font-size: 22px;
            }

    /** Banner Section Start **/

    .home-banner-section .image-box {
        height: 320px;
    }

    .caption-middle {
        width: 140%;
        margin-left: -40%;
        position: relative;
        z-index: 1;
        padding-bottom: 50px;
    }

    .banner-right-caption-inner h1 {
        line-height: 36px;
        margin-bottom: 10px;
    }

    .banner-right-caption-inner p {
        font-size: 16px;
    }

    .banner-logo {
        max-width: 100px;
        margin-bottom: 5px;
    }

    .left-bottom-shape {
        width: 300px;
        height: 300px;
        left: -200px;
        bottom: auto;
        top: 230px;
    }

    .home-slider .slick-dots {
        bottom: 5px;
    }



    /** Filter Search Section Start **/

    .filter-search-inner .field {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }

    .filter-search-inner .field-group {
        padding-right: 0;
    }

    .filter-search-inner input {
        height: 60px;
    }

    .filter-search-inner .field.whith-icon input {
        padding-right: 35px;
    }

    .filter-search-inner .field.whith-icon i {
        right: 15px;
    }

    .search-btn {
        position: static !important;
        margin: 5px 5px 0 5px;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }



    /** Section 3 Start **/

    .three-boxes-main .icon-text-box-main {
        padding: 80px 15px 20px 15px;
    }

    .three-boxes-main .row {
        margin: -15px !important;
    }

        .three-boxes-main .row > div {
            padding: 15px !important;
        }

            .three-boxes-main .row > div + div {
                margin-top: 50px;
            }

    .three-boxes-main .icon-box {
        width: 120px;
        height: 120px;
        top: -60px;
    }

    .three-boxes-main strong {
        font-size: 16px;
    }

    .why-study-block .video-box {
        height: 250px;
    }

    .youtube-play-icon {
        width: 60px;
        height: 40px;
    }



    /** Section 4 Start **/

    .icon-with-title-list .items {
        min-width: 50%;
        max-width: 50%;
        flex-basis: 50%;
    }



    /** Testimonials Section Start **/

    .testimonials-slider {
        padding-bottom: 50px;
        text-align: center;
    }

    .testimonials-section .qute-icon {
        width: 25px;
        height: 20px;
        margin: 0 auto 15px auto;
    }

    .testimonials-box-main p {
        font-size: 16px;
        line-height: 26px;
        margin: 0 0 15px 0;
    }

    .testimonials-box-main .name {
        font-size: 16px;
        line-height: 18px;
    }

    .image-box-style {
        height: auto;
        margin-top: 40px;
    }

    .testimonials-slider .slick-arrow,
    .testimonials-slider .slick-next.slick-arrow {
        left: 50%;
    }

    .testimonials-slider .slick-prev.slick-arrow {
        margin-left: -50px;
    }

    .testimonials-slider .slick-next.slick-arrow {
        margin-right: -50px;
    }



    /** Form Section Start **/

    .contact-form-main .form-group {
        margin: -5px;
    }

        .contact-form-main .form-group .field {
            min-width: 100%;
            max-width: 100%;
            flex-basis: 100%;
            padding: 5px;
        }



    /** Footer Start **/

    .f-col-2,
    .f-col-3,
    .f-col-4 {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        padding: 15px;
    }

    .footer h6 {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .social-icons {
        margin-top: 15px;
    }

    .f-col-3.justify-content-center {
        justify-content: flex-start !important;
    }

    .f-email, .f-address {
        font-size: 13px;
        padding-left: 27px;
    }

    .f-phone {
        font-size: 18px;
        padding-left: 27px;
    }

        .f-phone i {
            font-size: 20px;
            top: 3px;
        }

    .f-email i, .f-address i {
        font-size: 18px;
    }

    .f-address i {
        top: 3px;
    }

    .copy-right-text,
    ul.f-menu li,
    ul.f-menu li a {
        font-size: 13px;
        line-height: 22px;
    }



    /** Courses Page Start **/

    .internal-banner .caption {
        min-height: 200px;
    }

    .internal-banner h5 {
        font-size: 18px;
    }



    .courses-box .image-box {
        height: 250px;
    }

    .pagination .page-link {
        width: 36px;
        line-height: 34px;
        height: 36px;
        font-size: 14px;
        margin: 0 2px !important;
    }



    /** Course Details Page Start **/

    .caption-right .card .side-search-bar .selectbox {
        margin-bottom: 15px;
    }

    .caption-right .two-btns .btn,
    .caption-right .two-btns .btn.secondary-btn {
        min-width: 1px;
    }



    .featured-image {
        height: 300px;
    }

        .featured-image .get-enrol-btn {
            min-width: 60px;
        }

    .courses-info-main1 {
        padding: 0 15px;
    }

        .courses-info-main1 .items {
            font-size: 13px;
            min-width: 100%;
            max-width: 100%;
            flex-basis: 100%;
            padding: 15px;
        }

        .courses-info-main1 strong {
            font-size: 14px;
        }

        .courses-info-main1 .items + .items {
            border-left: 0;
            border-top: 1px solid rgba(11, 67, 92, 0.3);
        }



    .courses-three-boxes {
        padding: 20px 0;
    }

    .three-boxes-main.courses-three-boxes .row > div {
        min-width: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

        .three-boxes-main.courses-three-boxes .row > div + div {
            margin-top: 0;
        }



    .tab-content-inner {
        padding: 15px;
    }

    .courses-details-section .nav-tabs .nav-item {
        width: 50%;
    }

        .courses-details-section .nav-tabs .nav-item + .nav-item {
            border-left: 1px solid #fff;
        }

    .courses-details-section .nav-tabs .nav-link:before {
        display: none;
    }

    .courses-details-section .nav-tabs .nav-link {
        padding: 8px 15px;
        font-size: 13px;
        min-width: 1px;
        width: 100%;
        border-bottom: 2px solid #fff !important;
    }

    .collapse-style1 .collapse-content {
        padding: 20px 0;
    }

    .collapse-style1 .collapse-title {
        font-size: 14px;
        padding: 10px 40px 10px 20px;
    }

        .collapse-style1 .collapse-title:after {
            font-size: 20px;
        }

    .next-post {
        padding-top: 20px;
    }

        .next-post h6 {
            margin-bottom: 10px;
        }

    .credentials-list .items {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        padding-right: 0;
    }

        .credentials-list .items + .items {
            margin-top: 30px;
        }

        .credentials-list .items .image-box {
            margin-bottom: 15px;
            height: auto;
        }



    .team-list-main .team-box {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }

        .team-list-main .team-box .image-box {
            height: 250px;
            margin-bottom: 15px;
        }



    /** Choose Course Page Start **/

    .form-wizard .form-wizard-steps {
        margin-top: -22px;
    }

        .form-wizard .form-wizard-steps li {
            width: 50%;
            font-size: 13px;
            height: 44px;
        }



    .plan-panel {
        font-size: 15px;
        padding: 8px 15px;
    }

    .plan-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .plan-box .radiobox {
        font-size: 15px;
        min-width: 100px;
        max-width: 100px;
        flex-basis: 100px;
    }

    .notes2,
    .label-value-main .gst-text,
    .label-value-main span,
    .label-value-main label {
        font-size: 14px;
    }

    .label-value-main strong {
        font-size: 15px;
    }

    .label-value-main span {
        min-width: 110px;
        max-width: 110px;
        flex-basis: 110px;
        padding-right: 20px;
    }

    .label-value-main .items + .items {
        margin-top: 10px !important;
    }

    .notes2, .label-value-main label.full-width {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }



    .payment-due-today-text span {
        margin-right: 10px;
    }

    .promotional-code-main {
        padding-right: 0;
    }

        .promotional-code-main .btn {
            min-width: 140px;
            position: static !important;
            margin-top: 10px;
            height: 40px;
            line-height: 40px;
            padding: 0 15px;
        }



    .details-form .row {
        margin: -5px;
    }

        .details-form .row > div {
            padding: 5px;
        }

    .details-form .field-label {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .gender-options .items + .items {
        margin-top: 10px;
    }

    .field-notes {
        font-size: 12px;
        line-height: 20px;
    }
}

/*View :: 320px ::*/

@media screen and (max-width:479px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 24px;
    }


    #dvProgressBar img{
        left:27%!important;
    }
    /** Banner Section Start **/
    .home-banner-section .image-box {
        height: 250px;
    }

    .caption-middle {
        width: 170%;
        padding: 20px 15px 40px 15px;
        margin-left: -70%;
        position: relative;
        z-index: 1;
    }

    .banner-right-caption-inner h1 {
        line-height: 30px;
        margin-bottom: 10px;
    }

    .banner-right-caption-inner p {
        font-size: 14px;
    }

    .banner-logo {
        max-width: 80px;
        margin-bottom: 5px;
    }

    .left-bottom-shape {
        width: 200px;
        height: 200px;
        left: -130px;
        bottom: auto;
        top: 180px;
    }



    /** Section 3 Start **/

    .why-study-block .video-box {
        height: 160px;
    }



    /** Section 4 Start **/

    .icon-with-title-list .items {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }



    /** Courses Page Start **/

    .courses-box .image-box {
        height: 200px;
    }



    /** Course Details Page Start **/

    .featured-image {
        height: 200px;
    }

    .courses-info-main1 strong {
        font-size: 14px;
    }

    .courses-details-section .nav-tabs .nav-item {
        width: 100%;
    }

    .collapse-style1 .collapse-title {
        line-height: 1;
        padding: 12px 40px 12px 15px;
    }



    /** Choose Course Page Start **/

    .form-wizard .form-wizard-steps li {
        width: 100%;
        padding: 0 40px;
        max-width: 260px;
        margin: 0 auto 8px auto;
    }



    .plan-box {
        flex-wrap: wrap;
    }

        .plan-box .radiobox {
            min-width: 100%;
            max-width: 100%;
            flex-basis: 100%;
        }

    .label-value-main span {
        min-width: 90px;
        max-width: 90px;
        flex-basis: 90px;
        padding-right: 10px;
    }

    .label-value-main .items {
        align-items: center;
    }

        .label-value-main .items + .items {
            margin-top: 15px !important;
        }

    .label-value-main .gst-text {
        line-height: 1;
    }

    .bottom-btns .btn + .btn {
        margin-left: 5px;
    }

    .bottom-btns .btn {
        min-width: 120px;
    }



    .payment-options .bottom-btns .btn {
        width: 100%;
    }

        .payment-options .bottom-btns .btn + .btn {
            margin: 10px 0 0;
        }
}

.courses-info-main h6 {
    height: 55px;
    overflow: hidden;
}

.course-content .list-style ol li {
    position: initial;
    margin: initial;
    counter-increment: initial;
    padding-left: initial;
    margin-left: 20px;
    margin-bottom: 20px;
}

    .course-content .list-style ol li ul li {
        margin-bottom: 0px;
    }

    .course-content .list-style ol li:before {
        content: initial;
        position: initial;
        left: initial;
        top: initial;
    }


.course-content ol {
    display: initial;
    list-style-type: initial;
    margin-block-start: initial;
    margin-block-end: initial;
    margin-inline-start: initial;
    margin-inline-end: initial;
    padding-inline-start: initial;
    margin-bottom: 20px;
    font-weight: bold;
}

    .course-content ol li {
        font-weight: bold;
        margin-bottom: 20px;
    }

        .course-content ol li ul li {
            font-weight: normal;
        }

.course-content .list-style ul, .course-content .list-style ol {
    display: initial;
}

.course-content ol ul li {
    padding-left: 40px;
    list-style: disc;
    margin-left: 20px;
}

.page-content {
    color: #0b435c;
}

    .page-content p {
        color: inherit;
    }

    .page-content ul, .page-content ol {
        margin: initial;
        padding: initial;
        padding-left: 2rem;
    }


h1, h2 {
    font-size: 55px;
}

@media screen and (max-width:767px) {
    h1, h2 {
        font-size: 25px;
    }
}

@media screen and (max-width: 991px) {
    /*.header {
        position: relative !important;
    }*/

    .header .dropdown .nav-link.show + .dropdown-menu {
        overflow-y: auto;
        max-height: 400px;
    }
}

.blogcontent ul {
    list-style: disc !important;
    margin-bottom: 20px;
    margin-top: 20px;
}

    .blogcontent ul li {
        background: initial !important;
        padding: initial !important;
        margin-left: 50px;
        font-size: 14px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

.blogcontent p {
    color: inherit;
}

.blogcontent ul li, .blogcontent ol li {
    color: inherit;
}
