@import url(https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Condensed&display=swap);
body {
    padding: 0;
    margin: 0;
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden
}

body a {
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all;
    text-decoration: none;
    color: #002a38
}

body a:hover {
    text-decoration: none;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.green-border {
    border-top: 5px solid #22B890 !important;
}


/* -----------------------radio start------------------------------- */

@keyframes ripple {
    0% {
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
    }
}

.md-radio.md-radio-inline {
    display: inline-block;
}

.md-radio input[type="radio"] {
    display: none;
}

.md-radio input[type="radio"]:checked+label:before {
    border-color: #002a38;
    animation: ripple 0.2s linear forwards;
}

.md-radio input[type="radio"]:checked+label:after {
    transform: scale(1);
}

.md-radio label {
    display: inline-block;
    min-height: 20px;
    position: relative;
    padding: 0 30px;
    margin-bottom: 0;
    cursor: pointer;
    /* vertical-align: bottom; */
}

.md-radio label:before,
.md-radio label:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    transition: all .3s ease;
    transition-property: transform, border-color;
}

.md-radio label:before {
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.54);
}

.md-radio label:after {
    top: 8px;
    left: 5px;
    width: 8px;
    height: 8px;
    transform: scale(0);
    background: #002a38;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}


/* -------------------------------radio end-------------------------------------- */


/* Check Box Start */

.checkbox {
    /* display: inline-block; */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.checkbox label {
    cursor: pointer;
    padding-left: 0;
}

.checkbox input[type=checkbox] {
    opacity: 0;
    position: absolute;
    margin: 0;
    z-index: -1;
    width: 0;
    height: 0;
    overflow: hidden;
    left: 0;
    pointer-events: none;
}

.checkbox .checkbox-material {
    vertical-align: middle;
    position: relative;
    top: 3px;
}

.checkbox .checkbox-material:before {
    position: absolute;
    left: 8px;
    top: 2px;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    height: 4px;
    width: 4px;
    border-radius: 100%;
    z-index: 1;
    opacity: 0;
    margin: 0;
}

.checkbox .checkbox-material .check {
    position: relative;
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 2px solid;
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
}

.checkbox .checkbox-material .check:before {
    position: absolute;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    margin-top: -6px;
    margin-left: 5px;
    width: 0;
    height: 0;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
    -webkit-animation: checkbox-off 0.3s forwards ease-out;
    animation: checkbox-off 0.3s forwards ease-out;
}

.checkbox input[type=checkbox]:focus+.checkbox-material .check:after {
    opacity: 0.2;
}

.checkbox input[type=checkbox]:checked+.checkbox-material .check:before {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    -webkit-animation: checkbox-on 0.3s forwards ease-out;
    animation: checkbox-on 0.3s forwards ease-out;
}

.checkbox input[type=checkbox]:not(:checked)+.checkbox-material:before {
    -webkit-animation: rippleOff 700ms forwards ease-out;
    animation: rippleOff 700ms forwards ease-out;
}

.checkbox input[type=checkbox]:checked+.checkbox-material:before {
    -webkit-animation: rippleOn 700ms forwards ease-out;
    animation: rippleOn 700ms forwards ease-out;
}

.checkbox input[type=checkbox]:not(:checked)+.checkbox-material .check:after {
    -webkit-animation: rippleOff 700ms forwards ease-out;
    animation: rippleOff 700ms forwards ease-out;
}

.checkbox input[type=checkbox]:checked+.checkbox-material .check:after {
    -webkit-animation: rippleOn 700ms forwards ease-out;
    animation: rippleOn 700ms forwards ease-out;
}

.checkbox input[type=checkbox][disabled]:not(:checked)~.checkbox-material .check:before,
.checkbox input[type=checkbox][disabled]+.circle {
    opacity: 0.5;
}

.checkbox input[type=checkbox][disabled]+.checkbox-material .check:after {
    background-color: rgba(0, 0, 0, 0.84);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.coloured .checkbox-material .check {
    color: #2FAEF8;
}

.coloured .checkbox-material:before {
    background-color: #2FAEF8;
}

.coloured input[type=checkbox]:checked+.checkbox-material .check {
    color: #2FAEF8;
}

.checkbox label {
    color: #00ADEF;
}

.checkbox label .text {
    color: #58585A;
    font-size: 14px;
}

@-webkit-keyframes checkbox-on {
    0% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    }
    50% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    }
    100% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    }
}

@keyframes checkbox-on {
    0% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    }
    50% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    }
    100% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    }
}

@-webkit-keyframes checkbox-off {
    0% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    }
    25% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    }
    50% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-top: -4px;
        margin-left: 6px;
        width: 0px;
        height: 0px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
    }
    51% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        margin-top: -2px;
        margin-left: -2px;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 10px inset;
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        margin-top: -2px;
        margin-left: -2px;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 0px inset;
    }
}

@keyframes checkbox-off {
    0% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    }
    25% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    }
    50% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-top: -4px;
        margin-left: 6px;
        width: 0px;
        height: 0px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
    }
    51% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        margin-top: -2px;
        margin-left: -2px;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 10px inset;
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        margin-top: -2px;
        margin-left: -2px;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 0px inset;
    }
}

@-webkit-keyframes rippleOn {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(13, 13);
        transform: scale(13, 13);
    }
}

@keyframes rippleOn {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(13, 13);
        transform: scale(13, 13);
    }
}

@-webkit-keyframes rippleOff {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(13, 13);
        transform: scale(13, 13);
    }
}

@keyframes rippleOff {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(13, 13);
        transform: scale(13, 13);
    }
}


/* Check Box End */


/* -------------------------------------------main filter------------------------------------------------ */

.main-filter {
    background: #f9f9f9;
    box-shadow: -1px 3px 5px 1px rgba(0, 0, 0, .15);
}

.main-filter .filter-head {
    display: block;
    font-size: 12px;
    color: #fff;
    padding: 10px 20px;
    background: transparent;
    background: transparent;
    cursor: pointer;
    user-select: none;
    text-align: left;
    border-bottom: none;
    border: 1px solid #008cc7;
    color: #008cc7;
}

.main-filter .filter-head:first-child {
    display: block;
    font-size: 12px;
    color: #f9cc5d;
    background: #002a38;
    padding: 13px 20px;
    cursor: pointer;
    user-select: none;
    text-align: left;
    /* border-bottom: none; */
    border: none;
    /* border-radius: unset; */
}

.main-filter .filter-search {
    border: 1px solid;
    border-bottom: 1px solid;
    border-top: 0px solid;
    border-color: #F0F0F0;
}

.main-filter ul li {
    text-align: left;
    padding: 2px 10px;
    position: relative;
    background-color: #fff;
    border: 0px solid #008cc7;
    border-top: 0;
    border-bottom: 1px solid #F0F0F0;
    list-style-type: none;
}

.main-filter ul li span {
    margin-left: 8px;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    color: #537188;
}

.main-filter input[type=text] {
    height: 20px;
    width: 90%;
    border-radius: 4px;
    outline: 0;
    border: 1px solid #c6dcea;
    padding-left: 10px;
    font-size: 12px;
    margin: 5px 10px 10px 10px;
    color: #4d7188;
}

.main-filter .filter-magnify-icon {
    position: absolute;
    right: 20px;
    top: 54px;
    font-size: 10px;
    color: #4d7188;
}

.main-filter .filter-head,
.resetfilter {
    font-size: 12px;
    color: #f9cc5d;
}

.main-filter .card {
    border-radius: unset;
}

.main-filter ul li input[type=checkbox] {
    float: left;
    width: auto;
    margin-top: 8px;
}

.main-filter .filter-cat-count,
.main-filter .main-filter-count {
    background: #f9cc5d;
    color: #002a38;
    padding: 2px 7px;
    font-size: 13px;
    border-radius: 50%;
}


/* ----------------------------main filter end---------------------------------- */


/* Check Box Start */

.global-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
}


/* Input */

.global-material-checkbox>input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -10px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}


/* Span */

.global-material-checkbox>span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    color: #002a38;
    font-size: 13px;
}


/* Box */

.global-material-checkbox>span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 0px 11px 3px 1px;
    border: solid 2px;
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}


/* Checkmark */

.global-material-checkbox>span::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 1px;
    width: 12px;
    height: 7px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}


/* Checked, Indeterminate */

.global-material-checkbox>input:checked,
.global-material-checkbox>input:indeterminate {
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.global-material-checkbox>input:checked+span::before,
.global-material-checkbox>input:indeterminate+span::before {
    border-color: #002a38;
    background-color: #002a38;
}

.global-material-checkbox>input:checked+span::after,
.global-material-checkbox>input:indeterminate+span::after {
    border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.global-material-checkbox>input:indeterminate+span::after {
    border-left: none;
    transform: translate(4px, 3px);
}


/* Hover, Focus */

.global-material-checkbox:hover>input {
    opacity: 0.04;
}

.global-material-checkbox>input:focus {
    opacity: 0.12;
}

.global-material-checkbox:hover>input:focus {
    opacity: 0.16;
}


/* Active */

.global-material-checkbox>input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.global-material-checkbox>input:active+span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.global-material-checkbox>input:checked:active+span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}


/* Disabled */

.global-material-checkbox>input:disabled {
    opacity: 0;
}

.global-material-checkbox>input:disabled+span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.global-material-checkbox>input:disabled+span::before {
    border-color: currentColor;
}

.global-material-checkbox>input:checked:disabled+span::before,
.global-material-checkbox>input:indeterminate:disabled+span::before {
    border-color: transparent;
    background-color: currentColor;
}


/* ------------------------sohra-------------------------- */

.checkbox label {
    pointer-events: unset;
    left: 26px;
    box-shadow: none;
    width: auto;
    height: auto;
}


/* Check Box End */

a:hover,
body a:focus {
    text-decoration: none
}

input[type=button],
input[type=submit] {
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

input[type=button]:hover,
input[type=submit]:hover {
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.navbar-collapse ul ul li.active {
    background: #f9cc5d
}

.navbar-collapse ul ul li.active a {
    color: #002a38
}

.brabdfont {
    font-family: bell_mtbold
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif
}

p {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #fff;
    font-weight: 400
}

ol,
ul {
    margin: 0;
    padding: 0
}

label {
    margin: 0
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0
}

.about-page #accordion .card .card-header {
    background-color: transparent;
    border-bottom: none;
}

#accordion .btn-link.collapsed:after {
    content: "\f0fe";
    color: #002a38;
}

#accordion .btn-link:after {
    font-family: FontAwesome;
    content: "\f146";
    position: absolute;
    right: 8px;
    top: 20px;
    transform: translate(0, -50%);
    font-size: 20px;
    padding: 0 9px;
    z-index: 9;
}

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 24px;
    right: 3%;
    overflow: hidden;
    z-index: 999;
    width: 32px;
    height: 38px;
    border: none;
    text-indent: 100%;
    background: url(../images/move-top.png) no-repeat 0 0;
}

#toTopHover {
    width: 32px;
    height: 32px;
    display: block;
    overflow: hidden;
    float: right;
    opacity: 0;
    -moz-opacity: 0
}

.top-head-w3ls h1 {
    font-size: 15px;
    letter-spacing: 1px
}

.agile-addresmk p a {
    color: #999
}

.social-icons ul li {
    display: inline-block
}

.social-icons ul li a {
    font-size: 12px;
    color: #fff;
    line-height: 2.5;
    text-align: center;
    vertical-align: top;
    overflow: hidden;
    width: 30px;
    height: 30px;
    box-shadow: 1px 1px 1px 1px rgba(255, 255, 255, .76)
}

.icon-border {
    position: relative
}

.icon-border::after,
.icon-border::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ""
}

.icon-border::before {
    z-index: 1;
    -webkit-transition: box-shadow .3s;
    -moz-transition: box-shadow .3s;
    -o-transition: box-shadow .3s;
    -ms-transition: box-shadow .3s;
    transition: box-shadow .3s
}

.icon-border.facebook:hover::before {
    -webkit-box-shadow: inset 0 0 0 48px #3b5998;
    -moz-box-shadow: inset 0 0 0 48px #3b5998;
    -o-box-shadow: inset 0 0 0 48px #3b5998;
    -ms-box-shadow: inset 0 0 0 48px #3b5998;
    box-shadow: inset 0 0 0 48px #3b5998
}

.icon-border.twitter:hover::before {
    -webkit-box-shadow: inset 0 0 0 48px #4099ff;
    -moz-box-shadow: inset 0 0 0 48px #4099ff;
    -o-box-shadow: inset 0 0 0 48px #4099ff;
    -ms-box-shadow: inset 0 0 0 48px #4099ff;
    box-shadow: inset 0 0 0 48px #4099ff
}

.icon-border.googleplus:hover::before {
    -webkit-box-shadow: inset 0 0 0 48px #d34836;
    -moz-box-shadow: inset 0 0 0 48px #d34836;
    -o-box-shadow: inset 0 0 0 48px #d34836;
    -ms-box-shadow: inset 0 0 0 48px #d34836;
    box-shadow: inset 0 0 0 48px #d34836
}

.icon-border.rss:hover::before {
    -webkit-box-shadow: inset 0 0 0 48px #ee802f;
    -moz-box-shadow: inset 0 0 0 48px #ee802f;
    -o-box-shadow: inset 0 0 0 48px #ee802f;
    -ms-box-shadow: inset 0 0 0 48px #ee802f;
    box-shadow: inset 0 0 0 48px #ee802f
}

a.logo {
    font-size: 48px;
    color: #002a38;
    line-height: 1
}

.navbar-light .navbar-toggler-icon {
    background-image: none
}

.navbar-light .navbar-toggler-icon::before {
    content: "\f0c9";
    font-family: FontAwesome;
    color: #f9cc5d
}

.navbar-toggler-icon {
    display: inline-block;
    width: auto;
    height: auto;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    margin: 10px
}

.nav-middle i {
    font-size: 28px;
    line-height: 1.8;
    color: #42a5f5
}

.nav-middle {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

.agile-addresmk span {
    display: block
}

a.button-head-mow3 {
    background: #42a5f5;
    padding: 9px 25px;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1px
}

.bg-light {
    background-color: #002a38!important
}

li.nav-item a {
    letter-spacing: 1px;
    font-size: 15px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.nav-item a:hover,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #000!important;
    background-color: #f9cc5d
}

.navbar {
    padding: 0
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .5);
    padding: 1rem 1rem
}

.sticky-nav.fixed-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0
}

nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
    z-index: 9999;
    -webkit-box-shadow: 0 3px 12px -2px rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 3px 12px -2px rgba(0, 0, 0, .75);
    box-shadow: 0 3px 12px -2px rgba(0, 0, 0, .75);
    width: 75%;
    margin: 0 auto
}

.brands-w3ls {
    background: linear-gradient(to top, #42a5f5, #86c9ff)
}

.brands-w3ls ul li i {
    color: #efefef
}

.banner-w3ls-1 {
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed
}

.banner-w3ls-2 {
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed
}

.banner-w3ls-3 {
    background: url(../images/banner3.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed
}

.banner-w3ls-4 {
    background: url(../images/banner4.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed
}

.banner-w3ls-5 {
    background: url(../images/banner5.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed
}

.slider {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none
}

.slider li {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 0;
    overflow: hidden;
    transition: width .8s cubic-bezier(.95, .05, .795, .035)
}

.slider li.active {
    z-index: 2;
    width: 100vw
}

.slider li.prev {
    z-index: 1;
    width: 100vw
}

.pager {
    z-index: 100;
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin: 0;
    padding: 0;
    list-style: none
}

.pager li {
    display: inline-block;
    border: 2px solid #fff;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: 0 0
}

.pager li.active {
    background: linear-gradient(to right, #42a5f5, #86c9ff)
}

.banner-agile {
    position: relative
}

.banner-text-posi-w3ls {
    position: absolute;
    z-index: 999;
    left: 11%
}

.banner-text-whtree {
    max-width: 600px;
    padding-top: 13em
}

.banner-text-whtree h3 {
    font-size: 60px;
    letter-spacing: 1px;
    font-weight: 500;
    background: rgba(0, 0, 0, .52)
}

.banner-text-whtree h3 b {
    display: block;
    color: #42a5f5
}

.banner-text-whtree p {
    background: rgba(255, 255, 255, .9)
}

a.button-agiles {
    background: #42a5f5;
    display: inline-block;
    border-radius: 40px;
    padding: 15px 36px;
    font-size: 15px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #42a5f5, #86c9ff)
}

h3.title {
    font-size: 46px;
    position: relative
}

h3.title:after,
h3.title:before {
    position: absolute;
    background: #f9cc5d;
    width: 25%;
    height: 2px;
    content: " ";
    bottom: -3%
}

.text-dark {
    color: #002a38!important
}

h3.title:before {
    left: 43%
}

h3.title:after {
    bottom: -20%;
    right: 43%
}

.about_right h3 {
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 1px
}

.about_right h3 span {
    display: block;
    color: #42a5f5;
    text-shadow: 3px 1px 4px rgba(0, 0, 0, .22);
    font-size: 48px
}

.about_right p {
    font-size: 14px
}

.about_left-list h6 {
    letter-spacing: 1px;
    font-size: 28px
}

.about_left-list ul li i {
    color: #f9cc5d
}

.about_left-list ul li {
    color: #999;
    font-size: 15px;
    line-height: 1.9em;
    letter-spacing: 1px
}

.left-img-agikes {
    position: relative
}

.about-bottom {
    box-shadow: 0 1px 10px 1px rgba(0, 0, 0, .21);
    background: url(../images/bg2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: absolute;
    bottom: -2%;
    width: 100%;
    right: 28%
}

.about-bottom ul li {
    display: inline-block
}

.about-bottom ul li:nth-child(2) {
    margin: 0 5em
}

.about-bottom ul li h5 {
    font-size: 40px;
    color: #42a5f5
}

footer {
    background-color: #002a38;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover
}

p.para-agileits-w3layouts a:hover {
    color: #a5a3a3!important
}

h2.contact-title,
h4.contact-title {
    letter-spacing: 1px;
    font-size: 36px
}

p.conta-para-style {
    border-left: 2px solid #42a5f5!important;
    color: #dcdcdc
}

.subscribe-w3ls h6 {
    font-size: 22px;
    letter-spacing: 1px
}

.subscribe-w3ls input[type=email] {
    width: 70%;
    float: left;
    padding: 14px;
    font-size: 15px;
    color: #fff;
    outline: 0;
    background: rgba(255, 255, 255, .26);
    border: none;
    letter-spacing: 1px;
    border-radius: 0
}

.subscribe-w3ls button[type=submit] {
    font-size: 15px;
    outline: 0;
    letter-spacing: 2px;
    padding: 14px 40px;
    border: none;
    background: #4baaf6;
    border-radius: 0;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.subscribe-w3ls button[type=submit]:hover {
    background: #000;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

p.para-agileits-w3layouts i {
    color: #42a5f5
}

.map iframe {
    outline: 0;
    border: none;
    width: 80%;
    height: 420px
}

.map {
    position: relative
}

.conta-posi-w3ls {
    background: linear-gradient(to left, #42a5f5, #86c9ff);
    width: 50%;
    position: absolute;
    top: 40%;
    right: 4%
}

.conta-posi-w3ls h5 {
    font-size: 28px;
    letter-spacing: 1px
}

.conta-posi-w3ls p {
    color: #efefef
}

.copyright-agiles {
    box-shadow: 2px 1px 2px 1px #f9f5f5
}

p.copy-right-grids a {
    color: #4baaf6
}

p.copy-right-grids a:hover {
    color: #fff
}

.why-choose-agile {
    background: url(../images/bg4.jpg) no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover
}

.why-choose-agile,
.wthree_features_grid,
.wthree_features_grid i {
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.wthree_features_grid i {
    font-size: 28px;
    color: #f9cc5d
}

.agile-why-text h4 {
    font-size: 27px;
    letter-spacing: 1px
}

.agile-why-text p {
    color: #c5c5c5
}

a.service-button {
    color: #f9cc5d
}

a.service-button:hover {
    color: #fff
}

.wthree_agile_us:hover .wthree_features_grid {
    background: #f9cc5d;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.wthree_agile_us:hover .wthree_features_grid i {
    color: #fff;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.ih-item.circle {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%
}

.ih-item.circle.effect16.left_to_right .img {
    -webkit-transform-origin: 95% 40%;
    -moz-transform-origin: 95% 40%;
    -ms-transform-origin: 95% 40%;
    -o-transform-origin: 95% 40%;
    transform-origin: 95% 40%
}

.ih-item.circle.effect16 .img {
    z-index: 11;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out
}

.ih-item.circle .img {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%
}

.ih-item.circle.effect16 .info {
    background: #002a38;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out
}

.ih-item.circle .info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.ih-item.circle.effect16 .info h3 {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 2px;
    font-size: 22px;
    margin: 0 30px;
    padding: 55px 0 0 0;
    height: 60px;
    text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, .3)
}

.ih-item.circle.effect16 .info p {
    color: #fff;
    padding: 10px 5px;
    font-style: italic;
    margin: 0 30px;
    font-size: 15px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out
}

.ih-item.circle.effect16.left_to_right a:hover .img {
    -webkit-transform: rotate(-140deg);
    -moz-transform: rotate(-140deg);
    -ms-transform: rotate(-140deg);
    -o-transform: rotate(-140deg);
    transform: rotate(-140deg);
    z-index: 999
}

.ih-item.circle .img:before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out
}

.ih-item.circle.effect16.left_to_right .img:after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    top: 40%;
    left: 95%;
    margin: -4px 0 0 -4px;
    background: rgba(0, 0, 0, .8);
    box-shadow: 0 0 1px rgba(255, 255, 255, .9)
}

h6.small-heading {
    font-size: 26px
}

.stats-w3layouts {
    background: url(../images/bg5.jpg) no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover
}

.numscroller {
    font-size: 54px;
    color: #fff;
    text-shadow: 2px 4px 6px #080808;
    position: relative
}

.numscroller:before {
    content: " ";
    background: #fff;
    width: 30%;
    height: 8px;
    position: absolute;
    bottom: -25%;
    left: 35%
}

.video iframe {
    width: 634px;
    height: 357px;
    border: none;
    box-shadow: 0 2px 6px 2px rgba(0, 0, 0, .12)
}

.events-up h5 {
    font-size: 23px
}

.events-up h5 span {
    display: block
}

.events-up {
    background: #46a7f5
}

.events-right ul li i {
    color: #46a7f5
}

.events-right ul li {
    font-size: 15px
}

.testimonials {
    background: url(../images/bg6.jpg) no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover
}

.brands-w3ls ul li {
    display: inline-block;
    margin: 0 2em
}

.brands-w3ls ul li i {
    font-size: 70px
}

.news-events-agile {
    background: #ffc107
}

.post-img ul li {
    display: inline-block
}

.news-grid h5 a {
    font-size: 25px
}

.detail-bottom h6 a {
    letter-spacing: 1px;
    font-size: 23px;
    line-height: 1.5
}

.news-grid p {
    font-size: 15px
}

.news-events-agile.event-colo1 {
    background: #13e094
}

.news-events-agile.event-colo3 {
    background: #f54a3e
}

.banner-agile-2 {
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed;
    min-height: 360px;
    margin-top: -54px
}

.banner-2-w3ls {
    padding-top: 7em
}

.breadcrumb {
    box-shadow: 0 2px 8px 2px rgba(0, 0, 0, .12);
    margin: 0
}

li.breadcrumb-item a {
    color: #42a5f5
}

.w3ls-cource-first {
    background: #f9f9f9;
    box-shadow: -1px 3px 5px 1px rgba(0, 0, 0, .15)
}

.w3ls-cource-first ul li i {
    color: #002a38
}

.w3ls-cource-first {
    border-top: 5px solid #002a38
}

.agile-course-main-2 {
    margin-left: -5em
}

.cource-list-agile {
    position: relative
}

.buttons-w3ls {
    position: absolute;
    bottom: -6%;
    left: 6%
}

.buttons-w3ls-2 {
    position: absolute;
    bottom: -6%;
    right: 6%
}

.buttons-w3ls a,
.buttons-w3ls-2 a {
    font-size: 15px;
    border-radius: 0;
    letter-spacing: 1px;
    padding: 10px 20px
}

.buttons-w3ls a.button-cour-w3ls,
.buttons-w3ls-2 a.button-cour-w3ls {
    background: #42a5f5
}

.agile-course-main-3 {
    margin-right: -5em;
    z-index: 99;
    margin-left: 5em
}

@media screen and (max-width:992px) {
    .agile-course-main-3 {
        margin-left: 0
    }
    .w3ls-cource-first {
        min-height: 200px
    }
    .first-child {
        width: 50%;
        float: right
    }
    .first-child li {
        text-align: left
    }
}

.cource-list-agile:nth-child(3) .w3ls-cource-first {
    border-top: 5px solid #42a5f5
}

.cource-list-agile:nth-child(3) .w3ls-cource-first ul li i {
    color: #f76565
}

.cource-list-agile-2 {
    margin: 5em 0
}

.single-left1 p i {
    color: #002a38;
    display: block
}

.admin {
    background: #424040
}

.admin p {
    color: #f5f5f5;
    font-size: 14px;
    line-height: 2.4
}

.admin p i {
    font-size: 28px;
    vertical-align: middle
}

.admin a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px
}

.admin a:hover {
    color: #fff
}

.comments-grid-right ul li {
    display: inline-block;
    color: #888;
    font-size: 14px;
    letter-spacing: 1px
}

.comments-grid-right ul li a {
    color: #002a38
}

.comments-grid-right ul li a:hover {
    color: #555
}

.comments-grid-right p {
    font-size: 14px
}

.leave-coment-form input[type=email],
.leave-coment-form input[type=text],
.leave-coment-form textarea {
    outline: 0;
    border: 1px solid #000;
    background: 0 0;
    padding: 12px;
    font-size: 15px;
    color: #212121;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, .15)
}

.leave-coment-form textarea {
    min-height: 200px;
    resize: none;
    width: 100%
}

.mm_single_submit {
    text-align: right
}

.leave-coment-form input[type=submit] {
    outline: 0;
    border: none;
    background: #42a5f5;
    padding: 14px 36px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 2px;
    box-shadow: 0 2px 5px 1px rgba(0, 0, 0, .14)
}

.leave-coment-form input[type=submit]:hover {
    background: #212121
}

h6.blog-first {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px
}

h6.blog-first i {
    color: #002a38
}

ul.blog_list li {
    display: inline-block;
    color: #777
}

h5.card-title a:hover,
ul.blog_list.my-3 li a:hover {
    color: #000!important
}

ul.blog_list.my-3 li {
    font-size: 15px
}

h5.card-title a {
    font-size: 24px;
    letter-spacing: 1px
}

a.blog-button {
    background: #353535;
    border: none;
    font-size: 14px;
    padding: 11px 22px;
    letter-spacing: 1px
}

a.blog-button:hover {
    background: #42a5f5
}

.event-right input[type=search] {
    padding: 12px;
    width: 100%;
    letter-spacing: 1px;
    margin-right: 0!important
}

.event-right button {
    width: 100%;
    padding: 10px
}

h3.blog-title {
    font-size: 25px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .27)
}

.categories ul li,
.single-left2-left ul li {
    list-style-type: none;
    font-size: 14px
}

.categories ul li i,
.single-left2-left ul li i {
    color: #002a38
}

.categories ul li a,
.single-left2-left ul li a {
    color: #555
}

.categories ul li a:hover,
.posts-grid-right h4 a:hover,
.single-left2-left ul li a:hover,
.wthree_blog_events_list li a:hover {
    color: #4caf50!important
}

.posts-grid-right h4 a {
    font-size: 15px;
    letter-spacing: 1px
}

.wthree_blog_events_list li {
    display: inline-block;
    font-size: 14px
}

ul.wthree_blog_events_list li i {
    color: #42a5f5
}

.tags ul li {
    display: inline-block
}

.tags ul li a {
    padding: 10px 10px;
    margin: 0 10px 10px 0;
    display: block;
    letter-spacing: 1px;
    font-size: 15px
}

.tags ul li a:hover {
    background: #42a5f5;
    border: 1px solid #42a5f5;
    color: #fff!important
}

h6.details-heading {
    font-size: 32px;
    color: #42a5f5
}

h6.reque-title {
    font-size: 30px
}

.social-details-icons li {
    display: inline-block
}

.social-details-icons li a {
    width: 35px;
    height: 35px;
    font-size: 15px;
    line-height: 2.3
}

.con-ic i {
    font-size: 22px;
    color: #42a5f5;
    width: 80px;
    height: 80px;
    line-height: 3.5;
    box-shadow: 2px 1px 4px rgba(0, 0, 0, .37)
}

.contact-grid1 h4 {
    font-size: 24px;
    color: #000;
    letter-spacing: 1px
}

.contact-grid1 p a {
    color: #999;
    text-decoration: none
}

.contact-grid1 p a:hover {
    color: #000
}

.contact-grid1 p label {
    display: block;
    font-weight: 400
}

.contact-form1 h4,
.contact-me h4 {
    font-size: 1.2em;
    color: #3e3a3a;
    margin: 0 0 .5em
}

.contact-form1 input[type=email],
.contact-form1 input[type=text],
.contact-me textarea {
    outline: 0;
    padding: 10px;
    border: 1px solid #f5f5f5;
    background: #f5f5f5;
    font-size: 14px;
    color: #000;
    width: 100%;
    border-radius: 0
}

.contact-me textarea {
    min-height: 18em;
    resize: none
}

.contact-me textarea:focus {
    background: #f5f5f5
}

.contact-grids1 input[type=submit] {
    outline: 0;
    padding: 13px 0;
    border: none;
    background: #000;
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
    width: 100%;
    margin-top: 1em;
    cursor: pointer
}

.contact-grids1 input[type=submit]:hover {
    background: #42a5f5;
    letter-spacing: 6px
}

.section_1_gallery_grid1 {
    position: relative
}

.proj_gallery_grid1_pos {
    background: rgba(14, 15, 16, .59);
    bottom: 23px;
    left: 30px;
    opacity: 0;
    padding: 1em;
    position: absolute;
    right: 30px;
    text-align: center;
    visibility: hidden;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

.proj_gallery_grid1_pos h3 {
    font-size: 1.3em;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    color: #42a5f5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .37)
}

.proj_gallery_grid1_pos p {
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px
}

.section_1_gallery_grid:hover .proj_gallery_grid1_pos {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1)
}

p.quia {
    font-size: 1.2em;
    color: #140b05;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase
}

.proj_gallery_grid img {
    width: 100%
}

.sub-main-w3 form {
    background: url(../images/loginbg.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover
}

.sub-main-w3 {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.sub-main-w3 form {
    max-width: 700px;
    padding: 3.5vw;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.sub-main-w3 label {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.sub-main-w3 label i {
    font-size: 15px;
    margin-left: 5px;
    color: #03a9f4;
    border-radius: 50%;
    line-height: 1.9;
    text-align: center
}

.form-style-agile input[type=email],
.form-style-agile input[type=password],
.form-style-agile input[type=text] {
    width: 100%;
    color: #000;
    outline: 0;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 15px 15px;
    box-sizing: border-box;
    border: none;
    border: 1px solid #000;
    background: #fff
}

.register-form input[type=submit],
.sub-main-w3 input[type=submit] {
    color: #fff;
    background: #03a9f4;
    border: none;
    padding: 13px 0;
    margin-top: 30px;
    outline: 0;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 2px;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .49)
}

.register-form input[type=submit]:hover,
.sub-main-w3 input[type=submit]:hover {
    background: #000;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

::-webkit-input-placeholder {
    color: #000
}

:-moz-placeholder {
    color: #000
}

::-moz-placeholder {
    color: #000
}

:-ms-input-placeholder {
    color: #000
}

ul.list-unstyled.list-login {
    width: 100%
}

label.switch {
    position: relative;
    display: inline-block;
    height: 23px;
    padding-left: 5em;
    cursor: pointer
}

.list-login li:nth-child(2) a,
label.switch {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px
}

.switch input {
    display: none
}

.slider-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 26%;
    background-color: #777;
    -webkit-transition: .4s;
    transition: .4s
}

.slider-switch:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s
}

input:checked+.slider-switch {
    background-color: #42a5f5
}

input:focus+.slider-switch {
    box-shadow: 0 0 1px #2196f3
}

input:checked+.slider-switch:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px)
}

.slider-switch.round {
    border-radius: 34px
}

.slider-switch.round:before {
    border-radius: 50%
}

.slider-switch-2 {
    width: 17%
}

.right-abw3ls h4 {
    font-size: 38px;
    color: #002a38;
    letter-spacing: 2px
}

.about-page-2 {
    background: url(../images/bg4.jpg) no-repeat center fixed
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background: 0 0
}

.blog-gd-w3ls {
    position: relative;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all;
    padding: 0
}

.date-w3 {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(14, 14, 14, .46);
    width: 100%;
    padding: 25px;
    text-align: center
}

.date-w3 h4 {
    font-size: 24px;
    color: #3095fd;
    letter-spacing: 1px
}

.blog-gd-w3ls:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    z-index: 1;
    border: none
}

.blog-gd-w3ls:hover .date-w3 {
    display: block;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.date-w3 p {
    color: #eaeaea;
    font-size: 14px;
    margin: 6px 0 12px
}

.agileinfo-social-grids ul {
    padding: 0;
    margin: 0
}

.agileinfo-social-grids ul li {
    display: inline-block;
    margin: 0 .5em 0 0
}

.agileinfo-social-grids ul li a {
    color: #fff;
    text-align: center
}

.agileinfo-social-grids ul li a i {
    height: 30px;
    width: 30px;
    border: solid 1px #fff;
    line-height: 29px;
    color: #fff;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.agileinfo-social-grids ul li a i.fa-facebook-f {
    background: #3b5998
}

.agileinfo-social-grids ul li a i.fa-twitter {
    background: #55acee
}

.agileinfo-social-grids ul li a i.fa-rss {
    background: #f26522
}

.agileinfo-social-grids ul li a i,
.agileinfo-social-grids ul li a i:hover {
    background: 0 0;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.w3-main-error {
    background: url(../images/bg1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover
}

.agile-info h3 {
    font-size: 14em;
    line-height: 1;
    letter-spacing: 1px;
    color: #42a5f5;
    text-shadow: 11px 8px 10px rgba(0, 0, 0, .18)
}

.agile-info h4 {
    font-size: 3em;
    letter-spacing: 2px
}

.agile-info p {
    letter-spacing: 6px
}

button.w3ls-button2 {
    background: linear-gradient(to left, #42a5f5, #86c9ff);
    border: none;
    padding: 14px 30px;
    letter-spacing: 3px;
    box-shadow: 2px 3px 2px 0 rgba(0, 0, 0, .28)
}

.w3-main-coming {
    background: url(../images/bg7.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover
}

.sub-main-w3-2 form {
    max-width: 700px;
    margin: 2.5vw auto
}

.w3l-agile-coming h3 {
    font-size: 50px;
    letter-spacing: 10px
}

.form-style-agile {
    flex-basis: 100%
}

.sub-main-w3-2 p {
    font-size: 20px
}

.form-style-agile-2 {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

.form-style-agile-2 input[type=email] {
    outline: 0;
    font-size: 14px;
    border: none;
    color: #000;
    letter-spacing: 1px;
    padding: 12px;
    background: #fff;
    flex-basis: 75%;
    -webkit-flex-basis: 75%;
    box-sizing: border-box
}

.sub-main-w3-2 input[type=submit] {
    color: #fff;
    background: #000;
    border: none;
    padding: 15px 0;
    outline: 0;
    flex-basis: 25%;
    -webkit-flex-basis: 25%;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    transition: .5s all
}

.examples {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

div#simply-countdown-losange {
    max-width: 800px;
    margin: 2vw 5vw;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-basis: 100%;
    -webkit-flex-basis: 100%
}

.simply-section {
    flex-basis: 24%;
    -webkit-flex-basis: 24%;
    box-sizing: border-box;
    text-align: center;
    padding: 2vw
}

span.simply-amount {
    color: #42a5f5;
    font-size: 60px;
    font-weight: 700
}

span.simply-word {
    font-size: 16px;
    letter-spacing: 2px;
    color: #999;
    display: block;
    text-transform: capitalize
}

.form-w3l {
    background: url(../images/bg9.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed
}

.register-form {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.register-form form {
    max-width: 700px;
    padding: 3.5vw;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .75);
    box-shadow: 1px 0 11px 0 rgba(0, 0, 0, .3);
    background: rgba(249, 246, 246, .3)
}

.styled-input {
    flex-basis: 100%
}

.register-form input[type=email],
.register-form input[type=text],
select.category2 {
    font-size: 16px;
    color: #5a5656;
    padding: 12px;
    border: none;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .45);
    background: 0 0;
    outline: 0;
    box-sizing: border-box;
    border-radius: 0
}

label.header-admin-form {
    font-size: 18px;
    letter-spacing: 1px
}

h3.w3-head {
    font-size: 35px
}

.faq-w3agile .faq li {
    list-style-type: decimal
}

.faq-w3agile .faq>li>a {
    color: #025061;
    font-size: 17px;
    letter-spacing: .5px
}

li.subitem1 p {
    font-size: 14px;
    letter-spacing: .5px;
    color: #000
}

.faq-w3agile .faq li li.subitem1 {
    display: block
}

.menu-contact-right {
    text-align: right
}

@media (max-width:1680px) {
    nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
        width: 100%;
        margin: 0 auto
    }
}

@media (max-width:768px) {
    .menu-contact-right {
        text-align: center
    }
}

@media (max-width:1440px) {
    nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
        width: 100%;
        margin: 0 auto
    }
    .banner-agile-2 {
        min-height: 320px
    }
}

@media (max-width:1366px) {
    nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
        width: 100%;
        margin: 0 auto
    }
}

@media (max-width:1280px) {
    nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
        width: 100%;
        margin: 0 auto
    }
    .banner-agile-2 {
        min-height: 300px
    }
    .banner-agile,
    .banner-w3ls-1,
    .banner-w3ls-2,
    .banner-w3ls-3,
    .banner-w3ls-4,
    .banner-w3ls-5 {
        min-height: 600px
    }
    .banner-text-whtree h3 {
        font-size: 52px
    }
    .banner-text-whtree {
        padding-top: 10em
    }
}

@media (max-width:1080px) {
    .brands-w3ls ul li {
        margin: 0 1.3em
    }
    .subscribe-w3ls button[type=submit] {
        padding: 14px 30px
    }
    .map iframe {
        height: 390px
    }
    .conta-posi-w3ls {
        top: 37%
    }
    h3.w3-head {
        font-size: 30px
    }
    .agile-info h3 {
        font-size: 13em
    }
    .event-right {
        padding: 0
    }
    .w3ls-cource-first h3 {
        font-size: 25px
    }
    .agile-course-main-2,
    .agile-course-main-3 {
        margin-top: 3em!important
    }
    .agile-why-text {
        padding-right: 0
    }
    .left-abw3ls {
        margin-top: 4em
    }
    .about_right h3 {
        font-size: 36px
    }
    .about-bottom ul li:nth-child(2) {
        margin: 0 4em
    }
    .about-bottom {
        bottom: 8%;
        right: 22%
    }
    .numscroller {
        font-size: 48px
    }
    .stats-grid-w3-agile p {
        font-size: 14px
    }
    .numscroller:before {
        bottom: -28%
    }
    .ih-item.circle,
    .ih-item.circle .img {
        width: 180px;
        height: 180px
    }
    .ih-item.circle.effect16 .info h3 {
        font-size: 20px;
        margin: 0 17px;
        padding: 48px 0 0 0;
        height: 90px;
        letter-spacing: 1px
    }
    .video iframe {
        width: 529px;
        height: 298px;
        margin-top: 2em
    }
    .pager {
        left: 48%
    }
}

@media (max-width:1050px) {
    nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
        width: 90%
    }
    .proj_gallery_grid1_pos p {
        font-size: 13px
    }
}

@media (max-width:1024px) {
    nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
        width: 93%
    }
    a.logo {
        font-size: 45px
    }
    .nav-middle i {
        font-size: 26px
    }
    .banner-agile-2 {
        min-height: 260px
    }
}

@media (max-width:991px) {
    nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
        width: 86%
    }
    .navbar-light .navbar-toggler {
        border-color: #fff;
        border-radius: 0;
        padding: .25rem .65rem
    }
    .dropdown-menu {
        text-align: center
    }
    a.logo {
        font-size: 42px
    }
    .brands-w3ls ul li {
        margin: 0 .8em
    }
    .brands-w3ls ul li i {
        font-size: 56px
    }
    .subscribe-w3ls button[type=submit] {
        padding: 14px 40px
    }
    .conta-posi-w3ls {
        top: 38%;
        width: 42%
    }
    span.simply-amount {
        font-size: 50px
    }
    .w3l-agile-coming h3 {
        font-size: 44px;
        letter-spacing: 8px
    }
    span.simply-word {
        font-size: 14px
    }
    .agile-info h3 {
        font-size: 12em
    }
    .section_1_gallery_grid {
        padding: 0 .5em
    }
    .proj_gallery_grid1_pos {
        padding: 1em .5em
    }
    .contact-grid {
        padding: 0 .2em
    }
    .contact-me textarea {
        min-height: 14em
    }
    .event-right {
        padding: 0 1em
    }
    .buttons-w3ls,
    .buttons-w3ls-2 {
        position: initial;
        margin-top: 2em;
        padding: 0 1em
    }
    .agile-course-main-2 {
        margin-left: 0;
        text-align: center
    }
    .agile-course-main-3 {
        margin-right: 0;
        text-align: center
    }
    .agile-course-main-2,
    .agile-course-main-3 {
        margin-top: 0!important
    }
    .cource-list-agile-2 {
        margin: 3em 0
    }
    .left-abw3ls {
        margin-top: 0
    }
    .date-w3 p {
        font-size: 12px;
        margin: 4px 0 10px
    }
    .date-w3 h4 {
        font-size: 20px;
        letter-spacing: 0
    }
    .date-w3 {
        padding: 10px
    }
    .agile-why-text {
        padding-right: 1em
    }
    .news-grid {
        padding: 0 .5em
    }
    .detail-bottom h6 a,
    .news-grid h5 a {
        font-size: 20px
    }
    .news-grid p {
        font-size: 14px
    }
    .left-img-agikes {
        margin-bottom: 10em
    }
    .about-bottom {
        bottom: -32%;
        right: 10%
    }
    .about-bottom ul li:nth-child(2) {
        margin: 0 5em
    }
    .stats-grid-w3-agile p {
        font-size: 12px
    }
    .ih-item.circle,
    .ih-item.circle .img {
        width: 220px;
        height: 220px
    }
    .ih-item.circle.effect16 .info h3 {
        padding: 66px 0 0 0;
        height: 118px
    }
    .banner-text-whtree h3 {
        font-size: 48px
    }
    .banner-text-whtree p {
        font-size: 14px
    }
    .banner-agile,
    .banner-w3ls-1,
    .banner-w3ls-2,
    .banner-w3ls-3,
    .banner-w3ls-4,
    .banner-w3ls-5 {
        min-height: 550px
    }
    .banner-text-whtree {
        padding-top: 8em
    }
    a.button-agiles {
        padding: 14px 32px;
        font-size: 14px
    }
    .video iframe {
        width: 688px;
        height: 387px;
        margin-top: 0;
        margin-bottom: 2em
    }
}

@media (max-width:900px) {
    .about-bottom {
        right: 5%
    }
}

@media (max-width:800px) {
    nav.navbar.navbar-expand-lg.navbar-light.bg-light.sticky-nav {
        width: 90%
    }
    .proj_gallery_grid1_pos h3 {
        letter-spacing: 1px
    }
    .about-bottom {
        right: 12%;
        width: 86%;
        bottom: -24%
    }
    .left-img-agikes {
        margin-bottom: 8em
    }
    .banner-agile,
    .banner-w3ls-1,
    .banner-w3ls-2,
    .banner-w3ls-3,
    .banner-w3ls-4,
    .banner-w3ls-5 {
        min-height: 500px
    }
    .banner-text-whtree h3 {
        font-size: 44px
    }
    .banner-text-whtree p {
        font-size: 13px
    }
    .pager {
        bottom: 24px
    }
}

@media (max-width:736px) {
    .agile-addresmk p {
        font-size: 14px
    }
    .right-info-agiles {
        padding: 0 .5em
    }
    a.logo {
        font-size: 39px
    }
    .banner-agile-2 {
        min-height: 220px
    }
    h3.title {
        font-size: 42px
    }
    .form-style-agile input[type=email],
    .form-style-agile input[type=password],
    .form-style-agile input[type=text] {
        font-size: 13px;
        padding: 13px 15px
    }
    .register-form input[type=submit],
    .sub-main-w3 input[type=submit] {
        padding: 11px 0;
        font-size: 15px
    }
    .brands-w3ls ul li i {
        font-size: 46px
    }
    .brands-w3ls ul li {
        margin: 0 .4em
    }
    .register-form input[type=email],
    .register-form input[type=text],
    select.category2 {
        font-size: 15px
    }
    span.simply-amount {
        font-size: 40px
    }
    .w3l-agile-coming h3 {
        font-size: 37px
    }
    .sub-main-w3-2 p {
        font-size: 18px
    }
    .agile-info h3 {
        font-size: 11em
    }
    .proj_gallery_grid1_pos {
        padding: .8em .2em;
        left: 10%;
        width: 80%
    }
    .proj_gallery_grid1_pos h3 {
        font-size: 1.2em
    }
    .proj_gallery_grid1_pos p {
        font-size: 11px
    }
    .contact-me textarea {
        min-height: 12em
    }
    h5.card-title a {
        font-size: 23px;
        line-height: 1.4;
        letter-spacing: 0
    }
    .about-bottom ul li:nth-child(2) {
        margin: 0 3.5em
    }
    .about-bottom {
        right: 10%;
        width: 100%
    }
    .left-img-agikes {
        margin-bottom: 6em
    }
    .stats-grid-w3-agile p {
        font-size: 13px
    }
    .video iframe {
        width: 509px;
        height: 287px
    }
}

@media (max-width:667px) {
    .faq-w3agile .faq>li>a {
        font-size: 16px
    }
    .about-bottom {
        right: 14%;
        width: 90%
    }
}

@media (max-width:640px) {
    .banner-agile-2 {
        min-height: 200px
    }
    h2.contact-title,
    h4.contact-title {
        font-size: 34px
    }
    .about_right h3 span {
        font-size: 44px
    }
    .about-bottom {
        right: 10%
    }
    .pager {
        left: 45%
    }
}

@media (max-width:568px) {
    .sticky-logo {
        display: none!important
    }
    .right-info-agiles {
        padding: 0 1em
    }
    .nav-middle i {
        font-size: 24px
    }
    h3.title {
        font-size: 40px
    }
    li.subitem1 p {
        font-size: 13px
    }
    h3.w3-head {
        font-size: 28px
    }
    .section_1_gallery_grid {
        padding: 0 1em
    }
    .proj_gallery_grid1_pos {
        padding: 1em .2em;
        left: 20%;
        width: 60%
    }
    .proj_gallery_grid1_pos h3 {
        font-size: 1.5em
    }
    .proj_gallery_grid1_pos p {
        font-size: 12px
    }
    .posts-grid-right {
        margin-top: 3em
    }
    .right-abw3ls h4 {
        font-size: 34px
    }
    .about-bottom ul li h5 {
        font-size: 34px
    }
    .about-bottom {
        right: 5%
    }
    .ih-item.circle,
    .ih-item.circle .img {
        width: 200px;
        height: 200px
    }
    .ih-item.circle.effect16 .info h3 {
        padding: 56px 0 0 0;
        height: 104px
    }
    .banner-text-whtree h3 {
        font-size: 38px
    }
    .banner-text-whtree p {
        font-size: 12px
    }
    .banner-agile,
    .banner-w3ls-1,
    .banner-w3ls-2,
    .banner-w3ls-3,
    .banner-w3ls-4,
    .banner-w3ls-5 {
        min-height: 460px
    }
}

@media (max-width:480px) {
    .brands-w3ls ul li i {
        font-size: 37px
    }
    .conta-posi-w3ls {
        top: 36%;
        width: 54%
    }
    p {
        font-size: 14px
    }
    .subscribe-w3ls button[type=submit] {
        padding: 14px 32px;
        font-size: 14px
    }
    .subscribe-w3ls input[type=email] {
        font-size: 14px
    }
    .register-form input[type=submit] {
        margin-top: 20px
    }
    .w3l-agile-coming h3 {
        font-size: 32px;
        letter-spacing: 6px
    }
    span.simply-amount {
        font-size: 35px
    }
    .agile-info h3 {
        font-size: 10em
    }
    button.w3ls-button2 {
        padding: 13px 28px;
        font-size: 14px
    }
    .posts-grid-right {
        margin-top: 1.8em
    }
    .admin p {
        font-size: 13px
    }
    .comments-grid-left {
        padding-right: 0
    }
    .w3ls-cource-first h3 {
        font-size: 22px
    }
    .about_right h3 {
        font-size: 32px
    }
    .about_right h3 span {
        font-size: 40px
    }
    .left-img-agikes {
        margin-bottom: 4em
    }
    .ih-item.circle,
    .ih-item.circle .img {
        width: 180px;
        height: 180px
    }
    .ih-item.circle.effect16 .info h3 {
        padding: 50px 0 0 0;
        height: 96px
    }
    .banner-text-whtree h3 {
        font-size: 38px
    }
    a.button-agiles {
        padding: 13px 30px;
        font-size: 13px
    }
    .banner-text-posi-w3ls {
        left: 7%
    }
    .pager {
        left: 42%;
        bottom: 16px
    }
    .video iframe {
        width: 432px;
        height: 243px
    }
}

@media (max-width:440px) {
    .social-icons,
    .top-head-w3ls h1 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center!important
    }
    .social-icons {
        margin: 10px 0 5px
    }
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em
    }
    a.button-head-mow3 {
        padding: 13px 24px;
        font-size: 13px
    }
    a.logo {
        font-size: 37px
    }
    .top-head-w3ls h1 {
        font-size: 14px
    }
    .banner-agile-2 {
        min-height: 160px
    }
    .brands-w3ls ul li {
        margin: 0 1em
    }
    .brands-w3ls ul li i {
        font-size: 47px
    }
    .map iframe {
        height: 300px
    }
    .conta-posi-w3ls h5 {
        font-size: 26px
    }
    .conta-posi-w3ls {
        top: 34%
    }
    h2.contact-title,
    h4.contact-title {
        font-size: 30px;
        letter-spacing: 0
    }
    .subscribe-w3ls input[type=email] {
        width: 63%
    }
    label.switch {
        padding-left: 4em
    }
    span.simply-amount {
        font-size: 32px
    }
    .posts-grid-right {
        margin-top: 1em
    }
    .tags ul li a {
        font-size: 14px
    }
    .leave-coment-form textarea {
        min-height: 160px
    }
    .comments-grid-right p {
        font-size: 13px
    }
    .about-bottom ul li:nth-child(2) {
        margin: 0 2.5em
    }
    .ih-item.circle,
    .ih-item.circle .img {
        width: 150px;
        height: 150px
    }
    .ih-item.circle.effect16 .info h3 {
        padding: 40px 0 0 0;
        height: 79px;
        font-size: 16px
    }
    .ih-item.circle.effect16 .info p {
        margin: 0 15px;
        font-size: 11px
    }
    h6.small-heading {
        font-size: 22px
    }
    .banner-text-posi-w3ls {
        left: 4%
    }
    .banner-agile,
    .banner-w3ls-1,
    .banner-w3ls-2,
    .banner-w3ls-3,
    .banner-w3ls-4,
    .banner-w3ls-5 {
        min-height: 420px
    }
    .banner-text-whtree {
        padding-top: 6em
    }
    .video iframe {
        width: 392px;
        height: 221px
    }
}

@media (max-width:414px) {
    .wthree-text ul li a {
        font-size: 13px
    }
    .wthree-text ul li:nth-child(2) {
        float: none;
        margin-top: 12px
    }
    p.dont-do a {
        display: block
    }
    ul.list-unstyled.list-login li {
        float: none!important
    }
    .register-form input[type=email],
    .register-form input[type=text],
    select.category2 {
        padding: 10px 12px
    }
    .register-form form {
        padding: 5.5vw
    }
    h3.w3-head {
        font-size: 26px
    }
    .faq-w3agile .faq>li>a {
        font-size: 15px
    }
    .w3l-agile-coming h3 {
        letter-spacing: 4px
    }
    .simply-section {
        flex-basis: 49%;
        -webkit-flex-basis: 49%
    }
    span.simply-amount {
        font-size: 36px
    }
    .posts-grid-right {
        margin-top: 0
    }
    .w3ls-cource-first ul li {
        font-size: 15px
    }
    .about_right h3 {
        font-size: 27px
    }
    .about_right h3 span {
        font-size: 38px
    }
    .about_left-list ul li {
        font-size: 14px
    }
    .banner-text-whtree h3 {
        font-size: 34px
    }
    .banner-text-whtree p {
        font-size: 11px
    }
    .video iframe {
        width: 366px;
        height: 206px
    }
}

@media (max-width:384px) {
    .brands-w3ls ul li {
        margin: 0 .6em
    }
    .agile-addresmk p,
    p {
        font-size: 13px
    }
    h3.w3-head {
        font-size: 23px
    }
    h5.card-title a {
        font-size: 21px
    }
    h3.title {
        font-size: 37px
    }
    .agile-why-text {
        padding-right: 0
    }
    .about-bottom ul li:nth-child(2) {
        margin: 0 2em
    }
    .stats-grid-w3-agile p {
        font-size: 12px
    }
    .ih-item.circle,
    .ih-item.circle .img {
        width: 160px;
        height: 160px;
        margin: 0 auto
    }
    h6.small-heading {
        font-size: 22px;
        text-align: center!important;
        margin-top: 15px!important
    }
    .banner-text-whtree p {
        padding: 12px 10px!important
    }
    .banner-text-whtree h3 {
        font-size: 32px
    }
    .banner-agile,
    .banner-w3ls-1,
    .banner-w3ls-2,
    .banner-w3ls-3,
    .banner-w3ls-4,
    .banner-w3ls-5 {
        min-height: 380px
    }
    a.button-agiles {
        padding: 12px 28px;
        font-size: 12px
    }
    .banner-text-whtree {
        padding-top: 5em
    }
    .pager li {
        width: 12px;
        height: 12px
    }
    .video iframe {
        width: 100%;
        height: 190px
    }
}

@media (max-width:375px) {
    .sub-main-w3 form {
        padding: 5vw
    }
    .conta-posi-w3ls {
        top: 30%
    }
    li.nav-item a {
        font-size: 14px
    }
    .subscribe-w3ls button[type=submit] {
        padding: 14px 30px
    }
    label.switch {
        line-height: 2
    }
    div#simply-countdown-losange {
        margin: 6vw 5vw
    }
    .contact-form1 {
        margin-bottom: .2rem
    }
    .contact-form1 label {
        font-size: 15px
    }
    .contact-grid1 h4 {
        font-size: 22px
    }
    .buttons-w3ls a,
    .buttons-w3ls-2 a {
        font-size: 14px;
        padding: 9px 16px
    }
    .cource-list-agile-2 {
        margin: 2em 0
    }
    .buttons-w3ls,
    .buttons-w3ls-2 {
        margin-top: 1.2em
    }
    .about_right h3 {
        font-size: 26px
    }
    .about_right h3 span {
        font-size: 36px
    }
    .about_right p {
        font-size: 13px
    }
    .about_left-list h6 {
        letter-spacing: 0;
        font-size: 26px
    }
    .about_left-list ul li {
        font-size: 13px
    }
    .about-bottom ul li:nth-child(2) {
        margin: 0 1em
    }
    .about-bottom ul li h5 {
        font-size: 30px
    }
    .left-img-agikes {
        margin-bottom: 3em
    }
    .numscroller {
        font-size: 42px
    }
    .numscroller:before {
        bottom: -31%
    }
    .video iframe {
        height: 185px
    }
}

@media (max-width:320px) {
    .nav-middle {
        padding-right: 0
    }
    .nav-middle i {
        font-size: 21px;
        margin-right: 10px!important
    }
    .top-login-butt {
        padding: 0;
        margin-top: 12px
    }
    a.button-head-mow3 {
        padding: 12px 20px
    }
    .top-head-w3ls h1 {
        font-size: 13px
    }
    .social-icons ul li a {
        font-size: 11px;
        line-height: 2.8;
        width: 28px;
        height: 28px
    }
    .social-icons {
        margin: 6px 0 3px
    }
    .banner-agile-2 {
        min-height: 120px
    }
    li.breadcrumb-item {
        font-size: 14px
    }
    h3.title {
        font-size: 30px
    }
    .sub-main-w3 label {
        font-size: 13px;
        margin-bottom: 6px
    }
    .form-style-agile input[type=email],
    .form-style-agile input[type=password],
    .form-style-agile input[type=text] {
        font-size: 13px;
        padding: 11px 10px
    }
    .register-form input[type=submit],
    .sub-main-w3 input[type=submit] {
        padding: 10px 0;
        font-size: 14px
    }
    .brands-w3ls ul li {
        margin: 0 .5em
    }
    .brands-w3ls ul li i {
        font-size: 40px
    }
    .map iframe {
        height: 270px;
        width: 88%
    }
    .conta-posi-w3ls {
        top: 32%;
        width: 66%
    }
    .agile-addresmk p,
    p {
        font-size: 12px
    }
    .subscribe-w3ls button[type=submit] {
        padding: 14px 21px
    }
    .register-form input[type=email],
    .register-form input[type=text],
    select.category2 {
        padding: 8px 12px
    }
    .register-form input[type=submit] {
        margin-top: 10px
    }
    h3.w3-head {
        font-size: 24px;
        line-height: 1.4
    }
    span.simply-amount {
        font-size: 32px
    }
    .w3l-agile-coming h3 {
        letter-spacing: 2px;
        font-size: 29px
    }
    .sub-main-w3-2 p {
        font-size: 15px
    }
    .form-style-agile-2 input[type=email],
    .sub-main-w3-2 input[type=submit] {
        font-size: 13px
    }
    .agile-info h3 {
        font-size: 8em
    }
    .agile-info h4 {
        font-size: 2em
    }
    .proj_gallery_grid1_pos {
        padding: 1em .2em;
        left: 10%;
        width: 80%;
        bottom: 18px
    }
    .proj_gallery_grid1_pos h3 {
        font-size: 1.3em
    }
    .blog-gd-w3ls,
    .comments-grid-left,
    .comments-grid-right,
    .posts-grid-left,
    .posts-grid-right,
    .stats-grid-w3-agile {
        flex: 0 0 100%;
        max-width: 100%
    }
    .posts-grid-left {
        padding-right: 1em!important
    }
    .posts-grid-right {
        margin-top: 1em
    }
    .tags ul li a {
        padding: 8px 10px;
        margin: 0 4px 10px 0;
        font-size: 13px
    }
    h6.blog-first {
        font-size: 18px
    }
    ul.blog_list.my-3 li {
        font-size: 14px
    }
    a.blog-button {
        font-size: 13px
    }
    .categories ul li,
    .single-left2-left ul li {
        font-size: 13px
    }
    .admin p {
        font-size: 12px;
        line-height: 2
    }
    .comments-grid-left {
        text-align: center
    }
    h5.card-title a {
        font-size: 20px
    }
    .leave-coment-form input[type=email],
    .leave-coment-form input[type=text],
    .leave-coment-form textarea {
        padding: 11px;
        font-size: 14px
    }
    .leave-coment-form textarea {
        min-height: 130px
    }
    .leave-coment-form input[type=submit] {
        padding: 13px 19px;
        font-size: 14px
    }
    h6.details-heading {
        font-size: 28px
    }
    .w3ls-cource-first ul li {
        font-size: 14px
    }
    .right-abw3ls h4 {
        font-size: 30px
    }
    .blog-gd-w3ls:nth-child(2) {
        margin-top: 1em
    }
    .events-right h4 {
        font-size: 22px
    }
    .about_right h3 {
        font-size: 28px
    }
    .about_left-list ul li {
        font-size: 12px
    }
    .about-bottom ul li:nth-child(2) {
        margin: 0 .8em
    }
    .about-bottom ul li h5 {
        font-size: 28px
    }
    .about-bottom {
        bottom: -32%
    }
    .stats-grid-w3-agile:nth-child(2),
    .stats-grid-w3-agile:nth-child(3),
    .stats-grid-w3-agile:nth-child(4) {
        margin-top: 1em!important
    }
    .banner-text-whtree h3 {
        font-size: 30px;
        padding: 15px 20px!important
    }
    .banner-text-whtree p {
        padding: 12px 16px!important
    }
    .banner-text-whtree {
        max-width: 280px
    }
    .banner-agile,
    .banner-w3ls-1,
    .banner-w3ls-2,
    .banner-w3ls-3,
    .banner-w3ls-4,
    .banner-w3ls-5 {
        min-height: 370px
    }
    .pager {
        left: 40%;
        bottom: 10px
    }
    .video iframe {
        height: 154px
    }
}

.border-top {
    border-top: 1px solid #f9cc5d!important
}

.agile-course-main-2 img {
    margin-bottom: 10px;
    margin-top: 10px
}

.agile-course-main-3 img {
    margin-bottom: 10px;
    margin-top: 10px
}

.coursehead {
    padding-top: 45px
}

.ndbutton {
    background-color: #002a38;
    color: #f9cc5d!important;
    border: 1px solid #002a38
}

.ndbutton:hover {
    background-color: #f9cc5d;
    color: #002a38!important;
    border: 1px solid #f9cc5d
}

.stbutton {
    background-color: #f9cc5d;
    color: #002a38!important;
    border: 1px solid #f9cc5d
}

.product-info .stbutton {
    margin-right: 10px
}

.stbutton:hover {
    background-color: #002a38;
    color: #f9cc5d!important;
    border: 1px solid #002a38
}

.breadcrumtext {
    width: 100%;
    color: #343a40;
    font-weight: 700
}

.breadcrumtext span {
    color: #47a7f5
}

.menu_background_parallax {
    padding: 5vw 0;
    background-image: url(../images/aboutus.svg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.menu_background_parallax span {
    font-size: 5vw;
    color: #002a38
}

::-webkit-scrollbar-track {
    background-color: #f5f5f5
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5
}

::-webkit-scrollbar-thumb {
    background-color: #002a38;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #e4e5e7;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.panel-default>.panel-heading a {
    display: block;
    padding: 10px 15px;
    background-color: #f9cc5d;
    color: #002a38
}

.panel-default>.panel-heading a:after {
    content: "";
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: transform .25s linear;
    -webkit-transition: -webkit-transform .25s linear
}

.panel-default>.panel-heading a[aria-expanded=true]:after {
    content: "\2212";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.panel-default>.panel-heading a[aria-expanded=false]:after {
    content: "\002b";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.accordion-option {
    width: 100%;
    float: left;
    clear: both;
    margin: 15px 0
}

.accordion-option .title {
    font-size: 20px;
    font-weight: 700;
    float: left;
    padding: 0;
    margin: 0
}

.accordion-option .toggle-accordion {
    float: right;
    font-size: 16px;
    color: #6a6c6f
}

.accordion-option .toggle-accordion:before {
    content: "Expand All"
}

.accordion-option .toggle-accordion.active:before {
    content: "Collapse All"
}

.panel-title a {
    border: 1px solid #002a38;
    color: #002a38
}

.panel-default[_ngcontent-c1]>.panel-heading[_ngcontent-c1] a[aria-expanded=true][_ngcontent-c1] {
    background-color: #002a38;
    color: #f9cc5d
}

.panel-collapse {
    border: 1px solid #002a38;
    text-align: justify;
    border-top: none;
}

.panel-body {
    padding: 15px 30px;
}

.collapsed {
    background-color: transparent!important;
    color: #002a38!important;
}

.s-link .fab {
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 1.1vh 2px;
    height: 30px;
    border-radius: 4px;
    padding-top: 5px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 100!important
}

.fa-facebook-f {
    background: #3b5998
}

.fa-facebook-f:hover {
    border: 1px solid #3b5998!important;
    background: #fff;
    color: #3b5998!important
}

.fa-twitter {
    background: #55acee
}

.fa-twitter:hover {
    border: 1px solid #55acee!important;
    background: #fff;
    color: #55acee!important
}

.fa-google {
    background: #dd4b39
}

.fa-google:hover {
    border: 1px solid #dd4b39!important;
    background: #fff;
    color: #dd4b39!important
}

.fa-linkedin {
    background: #007bb5
}

.fa-linkedin:hover {
    border: 1px solid #007bb5!important;
    background: #fff;
    color: #007bb5!important
}

.fa-youtube {
    background: #b00;
    color: #fff
}

.fa-youtube:hover {
    border: 1px solid #b00!important;
    background: #fff;
    color: #b00!important
}

.fa-instagram {
    background: #125688
}

.fa-instagram:hover {
    border: 1px solid #125688!important;
    background: #fff;
    color: #125688!important
}

select {
    -webkit-appearance: button;
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    background-image: url(../images/down.png);
    background-size: 10px 10px;
    border: none;
    background-position: 95% 10px;
    background-repeat: no-repeat;
    border-bottom: 1px solid #7f7f7f;
    color: #555;
    font-size: inherit;
    margin: 0;
    overflow: hidden;
    padding-top: 2px;
    padding-bottom: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 30px;
    font-size: 14px;
    color: #909298
}

input {
    height: 30px
}

select:focus {
    background-image: url(../images/up.png);
    outline: 0
}

.navbar-nav.justify-content-center {
    margin: 0 auto
}

.sticky-logo {
    width: 12%;
    margin-left: 30px;
    display: none;
    cursor: pointer
}

.top-logo {
    position: absolute;
    width: 37%;
    left: 15px
}

.menu-right {
    text-align: right
}

@media screen and (max-width:992px) {
    .top-logo {
        width: 20%
    }
    .sticky-logo {
        display: none
    }
}

@media screen and (max-width:768px) {
    .top-logo {
        position: relative;
        width: 25%
    }
}

@media screen and (max-width:500px) {
    .top-logo {
        width: 50%
    }
    .menu-right {
        text-align: center
    }
}

.about-page p {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    letter-spacing: initial;
    line-height: 1.7;
    color: #002a38;
    font-weight: 400
}

.shadow {
    background-color: #fff
}

.coursehead p {
    color: #002a38
}

.product-image img {
    width: 100%
}

.description p {
    color: #002a38
}

.autocomplete {
    position: relative;
    display: inline-block
}

.autocomplete-items {
    max-height: 200px;
    overflow: auto;
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    text-align: left
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4
}

.autocomplete-items div:hover {
    background-color: #e9e9e9
}

.autocomplete-active {
    background-color: #1e90ff!important;
    color: #fff
}

button,
input {
    overflow: visible;
    outline: 0
}

.post-content p {
    color: #002a38
}

.p-t-50 {
    padding-top: 50px
}

.p-t-15 {
    padding-top: 15px!important
}

.mat-expansion-panel-content {
    border: 1px solid #002a38;
    border-top: 0
}

mat-expansion-panel-header.mat-expanded {
    background-color: #f9cc5d!important
}

.eachProd {
    border-bottom: 1px solid #002a38
}

.eachProd:last-of-type {
    border-bottom: 0 solid #002a38
}

.mat-form-field-label-wrapper {
    top: .15625em!important;
    padding-top: .84375em
}

.form-detail {
    width: 100%;
    margin: inherit!important
}

.mat-form-field {
    display: block!important
}

.static-btn {
    position: fixed;
    top: 40%;
    right: 0;
    background-color: #f9cc5d;
    border: 2px solid #002a38;
    border-right: 0
}

.static-btn a {
    padding: 10px 15px
}

.box14 {
    position: relative
}

.box15,
.box17,
.box18 {
    box-shadow: 0 0 5px #7e7d7d;
    text-align: center
}

.box14:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all .35s ease 0s;
    transition: all .35s ease 0s
}

.box14:hover:before {
    opacity: 1
}

.box14 img {
    width: 100%;
    height: auto
}

.box14 .box-content {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%
}

.box14 .box-content:after,
.box14 .box-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all .7s ease 0s;
    transition: all .7s ease 0s
}

.box14 .box-content:before {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, .5);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0
}

.box14 .box-content:after {
    border-left: 1px solid rgba(255, 255, 255, .5);
    border-right: 1px solid rgba(255, 255, 255, .5);
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 100% 0 0;
    transform-origin: 100% 0 0
}

.box14:hover .box-content:after,
.box14:hover .box-content:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.box14 .title {
    color: #fff;
    margin: 15px 0;
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
    -webkit-transition: -webkit-transform .5s ease 0s;
    transition: -webkit-transform .5s ease 0s;
    transition: transform .5s ease 0s;
    transition: transform .5s ease 0s, -webkit-transform .5s ease 0s
}

.box14:hover .title {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.box14 .post {
    font-size: 14px;
    color: #fff;
    padding: 10px;
    background: #d79719;
    opacity: 0;
    border-radius: 0 19px;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
    -webkit-transition: all .7s ease 0s;
    transition: all .7s ease 0s
}

.box14 .icon,
.box15 .icon {
    padding: 0;
    list-style: none
}

.box14:hover .post {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.box14 .icon {
    width: 100%;
    margin: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all .7s ease 0s;
    transition: all .7s ease 0s
}

.box14:hover .icon {
    bottom: 20px;
    opacity: 1;
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.box14 .icon li a {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 0 16px;
    color: #fff;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    padding: 7px 10px
}

.box14 .icon li a:hover {
    background: #d79719;
    border-color: #d79719
}

@media only screen and (max-width:990px) {
    .sticky-logo {
        display: none;
        margin-bottom: 15px;
        width: 25%;
        margin-top: 15px;
    }
    .box14 {
        margin-bottom: 30px
    }
}

.text-center {
    text-align: -webkit-center!important;
    text-align: -moz-center!important
}

.agile-addresmk {
    padding-top: 1.5vh;
    color: #002a38
}

.agile-addresmk i {
    font-size: 20px;
    margin-right: 10px
}

.phone:hover>.fa-phone-volume {
    -webkit-animation: shake 1s;
    animation: shake 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0);
        transform: translate(1px, 1px) rotate(0)
    }
    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg)
    }
    20% {
        -webkit-transform: translate(-3px, 0) rotate(1deg);
        transform: translate(-3px, 0) rotate(1deg)
    }
    30% {
        -webkit-transform: translate(3px, 2px) rotate(0);
        transform: translate(3px, 2px) rotate(0)
    }
    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg)
    }
    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg)
    }
    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0);
        transform: translate(-3px, 1px) rotate(0)
    }
    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg)
    }
    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg)
    }
    90% {
        -webkit-transform: translate(1px, 2px) rotate(0);
        transform: translate(1px, 2px) rotate(0)
    }
    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

@keyframes shake {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0);
        transform: translate(1px, 1px) rotate(0)
    }
    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg)
    }
    20% {
        -webkit-transform: translate(-3px, 0) rotate(1deg);
        transform: translate(-3px, 0) rotate(1deg)
    }
    30% {
        -webkit-transform: translate(3px, 2px) rotate(0);
        transform: translate(3px, 2px) rotate(0)
    }
    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg)
    }
    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg)
    }
    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0);
        transform: translate(-3px, 1px) rotate(0)
    }
    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg)
    }
    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg)
    }
    90% {
        -webkit-transform: translate(1px, 2px) rotate(0);
        transform: translate(1px, 2px) rotate(0)
    }
    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

.mail:hover>.fa-envelope-open {
    -webkit-animation: upDown 1s;
    animation: upDown 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes upDown {
    0% {
        -webkit-transform: translate(0, 1px) rotate(0);
        transform: translate(0, 1px) rotate(0)
    }
    10% {
        -webkit-transform: translate(0, -2px) rotate(0);
        transform: translate(0, -2px) rotate(0)
    }
    20% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0)
    }
    30% {
        -webkit-transform: translate(0, 2px) rotate(0);
        transform: translate(0, 2px) rotate(0)
    }
    40% {
        -webkit-transform: translate(0, -1px) rotate(0);
        transform: translate(0, -1px) rotate(0)
    }
    50% {
        -webkit-transform: translate(0, 2px) rotate(0);
        transform: translate(0, 2px) rotate(0)
    }
    60% {
        -webkit-transform: translate(0, 1px) rotate(0);
        transform: translate(0, 1px) rotate(0)
    }
    70% {
        -webkit-transform: translate(0, 1px) rotate(0);
        transform: translate(0, 1px) rotate(0)
    }
    80% {
        -webkit-transform: translate(0, -1px) rotate(0);
        transform: translate(0, -1px) rotate(0)
    }
    90% {
        -webkit-transform: translate(0, 2px) rotate(0);
        transform: translate(0, 2px) rotate(0)
    }
    100% {
        -webkit-transform: translate(0, -2px) rotate(0);
        transform: translate(0, -2px) rotate(0)
    }
}

@keyframes upDown {
    0% {
        -webkit-transform: translate(0, 1px) rotate(0);
        transform: translate(0, 1px) rotate(0)
    }
    10% {
        -webkit-transform: translate(0, -2px) rotate(0);
        transform: translate(0, -2px) rotate(0)
    }
    20% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0)
    }
    30% {
        -webkit-transform: translate(0, 2px) rotate(0);
        transform: translate(0, 2px) rotate(0)
    }
    40% {
        -webkit-transform: translate(0, -1px) rotate(0);
        transform: translate(0, -1px) rotate(0)
    }
    50% {
        -webkit-transform: translate(0, 2px) rotate(0);
        transform: translate(0, 2px) rotate(0)
    }
    60% {
        -webkit-transform: translate(0, 1px) rotate(0);
        transform: translate(0, 1px) rotate(0)
    }
    70% {
        -webkit-transform: translate(0, 1px) rotate(0);
        transform: translate(0, 1px) rotate(0)
    }
    80% {
        -webkit-transform: translate(0, -1px) rotate(0);
        transform: translate(0, -1px) rotate(0)
    }
    90% {
        -webkit-transform: translate(0, 2px) rotate(0);
        transform: translate(0, 2px) rotate(0)
    }
    100% {
        -webkit-transform: translate(0, -2px) rotate(0);
        transform: translate(0, -2px) rotate(0)
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.first-child {
    position: absolute;
    left: 0;
    top: 49px;
    text-align: left
}

.navbar-collapse ul li {
    display: block;
    position: relative;
    float: left;
    width: 100%
}

.navbar-collapse li ul {
    display: none
}

.navbar-collapse ul li a {
    display: block;
    padding: 1em;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 14px
}

.navbar-collapse ul li a:hover {
    background: #f9cc5d;
    color: #002a38!important
}

.navbar-collapse li:hover>ul {
    display: block;
    position: absolute
}

@media screen and (max-width:991px) {
    li:hover>ul {
        position: initial!important;
        text-align: center!important
    }
}

li:hover li {
    float: none
}

li:hover a {
    background: #002a38;
    color: #fff!important
}

.main-navigation li ul li {
    border-top: 0
}

.other-child {
    left: 100%;
    top: 0
}

ul:after {
    clear: both
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 900px;
        margin: 1.75rem auto
    }
}

.modal-body {
    padding: 0
}

.img-bkgrnd {
    background-color: #002a38
}

.modal-body.login h3 {
    padding: 40px 0 15px 0;
    text-align: center
}

.modal-body.login form {
    padding: 10px 10px 30px 10px
}

.modal-body.login .close {
    position: absolute;
    right: 2px;
    top: -2px
}

.modal-body.login form {
    display: none;
    min-height: 430px
}

.modal-body.login form.active {
    display: block
}

.forgot_pass {
    position: absolute;
    display: inline-block;
    bottom: 10px;
    right: 15px;
    top: -2px;
    font-size: 13px;
    color: #1767db!important;
    cursor: pointer
}

@media screen and (max-width:1300px) and (min-width:991px) {
    ul li a {
        display: block;
        padding: 1em 5px;
        text-decoration: none;
        white-space: nowrap;
        color: #fff;
        font-size: 10px
    }
}

.fa-stack[data-count]:after {
    position: absolute;
    right: 5%;
    top: 15%;
    content: attr(data-count);
    font-size: 30%;
    padding: .6em;
    border-radius: 999px;
    line-height: .75em;
    color: #fff;
    background: rgba(255, 0, 0, .85);
    text-align: center;
    min-width: 2em;
    font-weight: 700
}

.flex-container {
    width: 100%;
    display: -webkit-box;
    display: flex;
    overflow: hidden
}

@media screen and (max-width:768px) {
    .flex-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

.flex-title {
    color: #f1f1f1;
    position: relative;
    font-size: 7vh;
    margin: auto;
    text-align: center;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 25%;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

@media screen and (max-width:768px) {
    .flex-title {
        -webkit-transform: rotate(0)!important;
        transform: rotate(0)!important
    }
    .flex-about {
        background-color: transparent!important
    }
    .flex-about p {
        color: #000!important
    }
}

.flex-about {
    opacity: 0;
    color: #f1f1f1;
    position: relative;
    width: 70%;
    font-size: 2vw;
    padding: 5%;
    top: 25%;
    border: 0 solid #f1f1f1;
    line-height: 1.3;
    margin: auto;
    text-align: left;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    background-color: #002a3896
}

.flex-about p {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    text-align: center
}

@media screen and (max-width:768px) {
    .flex-about {
        padding: 0;
        border: 0 solid #f1f1f1
    }
}

.flex-slide {
    -webkit-box-flex: 1;
    flex: 1;
    cursor: pointer;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

@media screen and (max-width:768px) {
    .flex-slide {
        overflow: auto;
        overflow-x: hidden
    }
}

@media screen and (max-width:768px) {
    .flex-slide p {
        font-size: 18px
    }
}

@media screen and (max-width:768px) {
    .flex-slide ul li {
        font-size: 2em
    }
}

.flex-slide:hover {
    -webkit-box-flex: 3;
    flex-grow: 3
}

.home {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 229, 0, .2)), to(rgba(0, 0, 0, .5))), url(../images/s1.jpg);
    background: linear-gradient(rgba(255, 229, 0, .2), rgba(0, 0, 0, .5)), url(../images/s1.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed
}

.empower {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 229, 0, .2)), to(rgba(0, 0, 0, .5))), url(../images/s2.jpg);
    background: linear-gradient(rgba(255, 229, 0, .2), rgba(0, 0, 0, .5)), url(../images/s2.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed
}

.work {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 229, 0, .2)), to(rgba(0, 0, 0, .5))), url(../images/s3.jpg);
    background: linear-gradient(rgba(255, 229, 0, .2), rgba(0, 0, 0, .5)), url(../images/s3.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed
}

.about {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 229, 0, .2)), to(rgba(0, 0, 0, .5))), url(../images/s4.jpg);
    background: linear-gradient(rgba(255, 229, 0, .2), rgba(0, 0, 0, .5)), url(../images/s4.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed
}

.arrow a {
    color: #f9cc5d;
    text-decoration: none
}

.arrow {
    text-align: center;
    position: absolute;
    bottom: 3%;
    left: 50%
}

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite
}

@-webkit-keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.color {
    color: #002a38;
    text-align: justify
}

.btn-primary :hover {
    background-color: transparent;
    border-color: #47a7f5;
    color: #4fabf5;
    border-radius: 20px
}

.single_portfolio_text img {
    width: 100%
}

.portfolio_images_overlay {
    -webkit-transition: .6s
}

.c--anim-btn,
.c-anim-btn {
    -webkit-transition: .3s;
    transition: .3s
}

.tab-wrap {
    position: relative;
    display: -webkit-box;
    display: flex
}

input[type=radio][name=tabs] {
    position: absolute;
    z-index: -1
}

input[type=radio][name=tabs]:checked+.tab-label-content label {
    color: #002a38
}

input[type=radio][name=tabs]:checked+.tab-label-content .tab-content {
    display: block
}

input[type=radio][name=tabs]:nth-of-type(1):checked~.slide {
    left: calc((100% / 4) * 0)
}

input[type=radio][name=tabs]:nth-of-type(2):checked~.slide {
    left: calc((100% / 4) * 1)
}

input[type=radio][name=tabs]:nth-of-type(3):checked~.slide {
    left: calc((100% / 4) * 2)
}

input[type=radio][name=tabs]:nth-of-type(4):checked~.slide {
    left: calc((100% / 4) * 3)
}

input[type=radio][name=tabs]:first-of-type:checked~.slide {
    left: 0
}

label {
    color: #002a38;
    background-color: #fff;
    box-sizing: border-box;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    height: 56px;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    width: 100%;
    box-shadow: inset 0 0 35px 0 rgba(0, 0, 0, .75)
}

.slide {
    background: #f9cc5d;
    width: calc(100% / 4);
    height: 4px;
    position: absolute;
    left: 0;
    top: calc(100% - 4px);
    -webkit-transition: left .3s ease-out;
    transition: left .3s ease-out
}

.tab-label-content {
    width: 100%
}

.tab-label-content .tab-content {
    position: absolute;
    top: 70px;
    left: 16px;
    line-height: 130%;
    display: none
}

.bolditalic {
    font-weight: 600;
    font-size: 15px
}

.agile-why-text-2 p {
    color: #fff;
    text-transform: capitalize
}

#clients {
    display: block;
    margin-left: auto;
    margin-right: auto
}

#clients .clients-wrap {
    display: block;
    width: 70%;
    margin: 0 auto;
    overflow: hidden
}

#clients .clients-wrap ul {
    display: block;
    list-style: none;
    position: relative;
    margin-left: auto;
    margin-right: auto
}

#clients .clients-wrap ul li {
    display: block;
    float: left;
    position: relative;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    padding: 0 10px
}

#clients .clients-wrap ul li img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: 0 linear left;
    transition: 0 linear left;
    opacity: .65
}

#clients .clients-wrap ul li img:hover {
    opacity: 1
}

.feature-video {
    background: url(../images/video_back.jpg) no-repeat center fixed;
    padding: 60px 0;
    background-size: cover
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 40px;
    background: #000;
    background: rgba(0, 0, 0, .7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    border-radius: 35px;
    display: none;
    -webkit-transition: all .3s linear;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

#return-to-top:hover {
    background: rgba(0, 0, 0, .9)
}

#return-to-top:hover i {
    color: #fff;
    top: 5px
}

.quick_links ul {
    list-style-type: none;
    text-align: center
}

.quick_links ul li {
    padding-top: 6px;
    width: auto;
    display: inline-block;
    padding-right: 10px
}

.quick_links ul li a {
    color: #fff;
    font-size: 14px;
}

.quick_links ul li:not(:last-child)::after {
    content: ' |';
    color: #fff;
    padding-left: 3px;
    opacity: .5
}

.label-container {
    position: fixed;
    bottom: 48px;
    right: 105px;
    display: table;
    visibility: hidden
}

.label-text {
    color: #fff;
    background: rgba(51, 51, 51, .5);
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
    border-radius: 3px
}

.label-arrow {
    display: table-cell;
    vertical-align: middle;
    color: #333;
    opacity: .5
}

.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 80px;
    left: 40px;
    background-color: #f9cc5d;
    color: #002a38;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    -webkit-animation: bot-to-top 2s ease-out;
    animation: bot-to-top 2s ease-out;
    border: 1px solid #002a38
}

.course_fixed ul {
    position: fixed;
    left: 45px;
    padding-bottom: 20px;
    bottom: 110px;
    z-index: 100
}

.course_fixed ul li {
    list-style: none;
    margin-bottom: 5px
}

.course_fixed ul li a {
    background-color: #f9cc5d;
    color: #002a38;
    border-radius: 50px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: block;
    border: 1px solid #002a38
}

.course_fixed ul li a:hover {
    background-color: #002a38;
    color: #f9cc5d;
    border: 1px solid #f9cc5d
}

.course_fixed ul li a i {
    margin-top: 10px
}

.course_fixed ul:hover {
    visibility: visible!important;
    opacity: 1!important
}

.my-float {
    font-size: 20px;
    margin-top: 15px
}

.course_fixed a#menu-share+ul {
    visibility: hidden
}

.course_fixed a#menu-share:hover+ul {
    visibility: visible;
    -webkit-animation: scale-in .5s;
    animation: scale-in .5s
}

.course_fixed a#menu-share i {
    -webkit-animation: rotate-in .5s;
    animation: rotate-in .5s
}

.course_fixed a#menu-share:hover>i {
    -webkit-animation: rotate-out .5s;
    animation: rotate-out .5s
}

@-webkit-keyframes bot-to-top {
    0% {
        bottom: -40px
    }
    50% {
        bottom: 40px
    }
}

@keyframes bot-to-top {
    0% {
        bottom: -40px
    }
    50% {
        bottom: 40px
    }
}

@-webkit-keyframes scale-in {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scale-in {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes rotate-in {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate-in {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate-out {
    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes rotate-out {
    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

.pulse:hover {
    -webkit-animation: none;
    animation: none
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 1)
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px transparent
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 transparent
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 1)
    }
    70% {
        box-shadow: 0 0 0 10px transparent
    }
    100% {
        box-shadow: 0 0 0 0 transparent
    }
}

.tooltip {
    display: block;
    border-bottom: 0 dotted #000
}

.tooltip .tooltiptext {
    margin-top: 7px
}

.team-member {
    overflow: hidden
}

.team-member:hover .team-hover .desk {
    top: 35%
}

.team-member:hover .team-hover .s-link {
    bottom: 10%
}

.timetable table tr:nth-child(1) {
    background-color: #002a38;
    color: #fff;
    text-align: center;
    font-size: 20px
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #002a38
}

.ovrflw-auto {
    overflow: auto;
    margin-bottom: 30px
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: ''
}

.shadow {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .75);
}

.hover-shadow:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3) !important;
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3) !important;
    transition-duration: 0.35s;
}

.global-box-shadow {
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.58);
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.58);
    transition-duration: 0.35s;
}

.tile {
    margin: 60px auto
}

#tile-1 .tab-pane {
    padding: 15px
}

#tile-1 .nav-tabs {
    position: relative;
    border: none!important;
    background-color: #fff;
    border-radius: 6px
}

#tile-1 .nav-tabs li {
    margin: 0!important;
    background-color: #f9cc5d;
    border: 1px solid #002a38
}

#tile-1 .nav-tabs li a {
    position: relative;
    margin-right: 0!important;
    padding: 20px 40px!important;
    font-size: 16px;
    border: none!important;
    color: #333
}

#tile-1 .nav-tabs a:hover {
    background-color: #002a38;
    border: 1px solid #f9cc5d!important;
    color: #f9cc5d!important;
    border-radius: 0
}

#tile-1 .nav-tabs .active {
    background-color: #002a38;
    border: 1px solid #f9cc5d!important;
    color: #f9cc5d!important;
    border-radius: 0
}

#tile-1 .slider {
    display: inline-block;
    width: 200%;
    height: 4px;
    border-radius: 0;
    background-color: #f9cc5d;
    position: absolute;
    z-index: 1200;
    bottom: 0;
    transition: all .4s linear
}

.table td {
    text-align: center;
    font-size: 14px
}

.tab-content {
    height: 300px;
    overflow: auto
}

.term2 td {
    text-align: left
}

.t2result td {
    width: 100%;
    background-color: #f9cc5d;
    color: #002a38;
    font-weight: bolder;
    font-size: 20px!important;
    letter-spacing: 1px;
    border: 1px solid #002a38
}

.my-3 i {
    width: 30px
}

.tooltip {
    position: relative;
    opacity: 1;
    font-size: initial
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 10%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity .3s
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1
}

.imground {
    overflow: hidden;
    border-radius: 50%;
    padding: 2px 15px;
    background-color: #fff
}

.counter {
    border-radius: 0;
    padding: 0 5px;
    margin-top: 10px;
    display: inline-block;
    font-size: 12px;
    color: #002a38;
    margin-bottom: 10px
}

.cart-info h4 {
    margin-bottom: 2rem!important
}

.filterstatic {
    position: fixed;
    box-shadow: 3px 0 5px 0 rgba(0, 0, 0, .22);
    width: 220px;
    margin-left: 10px;
    padding: 5px 15px
}

@media (max-width:1200px) {
    .filterstatic {
        position: inherit;
        width: 100%
    }
}

.filterstatic a {
    font-size: 12px;
    padding: 1px 5px;
    margin-top: 5px
}

.filterstatic h5 {
    text-align: center;
    margin: 5px 0
}

.listofitem {
    margin-left: 20px;
    margin-bottom: 35px
}

.arpt {
    width: 70px;
    position: absolute;
    top: 0;
    right: 25px
}

.arpt img {
    border-radius: 50%
}

.course-det-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px
}

.course-det-p {
    text-align: justify;
    margin: 10px 0
}

.button {
    padding: 0 20px;
    margin: 10px 0
}

aside.widget ul li a {
    display: block;
    color: #002a38;
    position: relative;
    float: left
}

aside.widget ul li {
    padding: 10px 18px 10px 35px;
    border-bottom: 1px solid #e8e8e8;
    color: #002a38;
    list-style-type: none;
    padding: 15px 18px 15px 35px
}

aside.widget {
    background: #f9f9f9;
    margin-bottom: 30px;
    border-bottom: 1px solid #e8e8e8
}

aside.widget h5 {
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    margin-bottom: 10px;
    position: relative
}

.coures-reat i {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px)
}

.widget.widget_archive ul li,
.widget.widget_categories ul li {
    text-align: right
}

aside.widget.widget_archive ul li:last-child {
    border: transparent
}

.instruction-sidbar-img {
    float: left;
    margin-right: 18px
}

.diff {
    display: inline
}

.pad-20 {
    padding-top: 10px;
    padding-bottom: 40px;
    display: block
}

.bckgrndclr {
    background-color: #f9cc5d
}

.cartBtn {
    margin: 4vh 0
}

select {
    width: 100%;
    margin-top: 0;
    line-height: 20px
}

.btns {
    margin-top: 20px
}

.error {
    color: #dd4b39;
    font-size: 10px;
    display: block;
    font-weight: 600
}

.loading {
    margin-top: 90px
}

#generic_price_table[_ngcontent-c1] .generic_content[_ngcontent-c1] .generic_feature_list[_ngcontent-c1] ul[_ngcontent-c1] li[_ngcontent-c1] i {
    font-size: 12px;
    margin: 0 5px 0 5px
}

#generic_price_table .generic_content {
    background-color: #fff
}

#generic_price_table .generic_content .generic_head_price {
    background-color: #f6f6f6
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
    border-color: #e4e4e4 transparent transparent #e4e4e4
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
    color: #fff
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
    color: #414141
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
    color: #414141
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
    color: #414141
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
    color: #414141
}

#generic_price_table .generic_content .generic_feature_list ul li {
    color: #a7a7a7
}

#generic_price_table .generic_content .generic_feature_list ul li span {
    color: #414141
}

#generic_price_table .generic_content .generic_feature_list ul li:hover {
    background-color: #e4e4e4;
    border-left: 5px solid #f8cc5d
}

#generic_price_table .generic_content .generic_price_btn a {
    border: 1px solid #4cafc2;
    color: #4cafc2
}

#generic_price_table .generic_content.active .generic_head_price .generic_head_content .head_bg {
    border-color: #f3801b transparent transparent #f3801b;
    color: #fff
}

#generic_price_table .generic_content.active1 .generic_head_price .generic_head_content .head_bg {
    border-color: #223c27 transparent transparent #223c27;
    color: #fff
}

#generic_price_table .generic_content.active2 .generic_head_price .generic_head_content .head_bg {
    border-color: #c13301 transparent transparent #c13301;
    color: #fff
}

#generic_price_table {
    margin: 50px 0 50px 0
}

.row .table {
    padding: 28px 0
}

#generic_price_table .generic_content {
    overflow: hidden;
    position: relative;
    text-align: center;
    background-color: #f0eded
}

#generic_price_table .generic_content .generic_head_price {
    margin: 0 0 20px 0
}

#generic_price_table .generic_content .generic_head_price .generic_head_content {
    margin: 0 0 50px 0
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
    border-style: solid;
    border-width: 90px 1411px 23px 399px;
    position: absolute
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head {
    padding-top: 40px;
    position: relative;
    z-index: 1
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    text-transform: uppercase
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag {
    padding: 0 0 20px
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price {
    display: block
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
    display: inline-block;
    font-size: 28px;
    font-weight: 400;
    vertical-align: middle
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 60px;
    padding: 0;
    vertical-align: middle;
    display: block
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    vertical-align: bottom
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    vertical-align: middle;
    margin-right: 15px
}

#generic_price_table .generic_content .generic_feature_list ul {
    list-style: none;
    padding: 0;
    margin: 0
}

#generic_price_table .generic_content .generic_feature_list ul li {
    font-size: 18px;
    padding: 10px 0;
    transition: all .3s ease-in-out 0s;
    position: relative
}

#generic_price_table .generic_content .generic_feature_list ul li:hover {
    transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s
}

#generic_price_table .generic_content .generic_feature_list ul li .fa {
    padding: 0 10px
}

#generic_price_table .generic_content .generic_price_btn {
    margin: 20px 0 32px
}

#generic_price_table .generic_content .generic_price_btn a {
    border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-border-radius: 50px;
    display: inline-block;
    font-size: 18px;
    outline: medium none;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase
}

#generic_price_table .generic_content,
#generic_price_table .generic_content .generic_head_price .generic_head_content .head h2,
#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content .generic_price_btn a,
#generic_price_table .generic_content .price,
#generic_price_table .generic_content:hover,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head h2,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content:hover .generic_price_btn a,
#generic_price_table .generic_content:hover .price {
    transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s
}

@media (max-width:767px) {
    #generic_price_table .generic_content {
        margin-bottom: 75px
    }
    #generic_price_table[_ngcontent-c1] .generic_content[_ngcontent-c1] .generic_feature_list[_ngcontent-c1] ul[_ngcontent-c1] {
        margin-bottom: 65px
    }
}

@media (min-width:768px) and (max-width:991px) {
    #generic_price_table .col-md-3 {
        float: left;
        width: 50%
    }
    #generic_price_table .col-md-4 {
        float: left;
        width: 50%
    }
    #generic_price_table .generic_content {
        margin-bottom: 75px
    }
}

.text-center h1,
.text-center h1 a {
    font-size: 30px;
    font-weight: 300;
    text-decoration: none
}

.demo-pic {
    margin: 0 auto
}

.demo-pic:hover {
    opacity: .7
}

#generic_price_table_home ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: table
}

#generic_price_table_home li {
    float: left
}

#generic_price_table_home li+li {
    margin-left: 10px;
    padding-bottom: 10px
}

#generic_price_table_home li a {
    display: block;
    width: 50px;
    height: 50px;
    font-size: 0
}

#generic_price_table_home .blue {
    background: #3498db;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .emerald {
    background: #4cafc2;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .grey {
    background: #7f8c8d;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .midnight {
    background: #34495e;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .orange {
    background: #e67e22;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .purple {
    background: #9b59b6;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .red {
    background: #e74c3c;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .turquoise {
    background: #1abc9c;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .blue:hover,
#generic_price_table_home .emerald:hover,
#generic_price_table_home .grey:hover,
#generic_price_table_home .midnight:hover,
#generic_price_table_home .orange:hover,
#generic_price_table_home .purple:hover,
#generic_price_table_home .red:hover,
#generic_price_table_home .turquoise:hover {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    transition: all .3s ease-in-out 0s
}

#generic_price_table_home .divider {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px
}

#generic_price_table_home .divider span {
    width: 100%;
    display: table;
    height: 2px;
    background: #ddd;
    margin: 50px auto;
    line-height: 2px
}

#generic_price_table_home .itemname {
    text-align: center;
    font-size: 50px;
    padding: 50px 0 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    text-decoration: none;
    font-weight: 300
}

#generic_price_table_home .itemnametext {
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    text-transform: uppercase;
    display: inline-block
}

#generic_price_table_home .footer {
    padding: 40px 0
}

.totalposition {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 0)
}

.onetimetotal {
    background-color: #1e3422;
    color: #fff!important;
    border: 0!important;
    border-radius: 0!important;
    outline: 0!important
}

.annualtotal {
    background-color: #f3801b;
    color: #fff!important;
    border: 0!important;
    border-radius: 0!important;
    outline: 0!important
}

.parttotal {
    background-color: #c13301;
    color: #fff!important;
    border: 0!important;
    border-radius: 0!important;
    outline: 0!important
}

.gst[_ngcontent-c1] {
    position: absolute;
    transform: translate(-50%, 0);
    font-size: 10px;
    color: #fff;
    bottom: 17px
}

.due-date[_ngcontent-c1] {
    background-color: #f8cc5d;
    font-size: 11px;
    border-radius: 4px;
    width: 65px;
    height: 20px;
    color: #414141!important;
    line-height: 20px;
    float: right;
    margin-right: 15px
}

.product-image img {
    display: none
}

.product-image .active {
    display: block
}

.dots {
    list-style-type: none;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, -50%)
}

.dots li {
    width: 8px;
    height: 8px;
    margin-right: 2px;
    z-index: 999999;
    bottom: 17px;
    background-color: #f9cc5d;
    float: left;
    border-radius: 50px;
    border: 1px solid #002a38
}

.dots .active {
    background-color: #002a38;
    border: 1px solid #f9cc5d
}

.tagsale {
    position: absolute;
    top: 0;
    right: 25px;
    background-color: #f9cc5d;
    color: #002a38;
    padding: 2px 10px;
    border-radius: 20px;
    top: 20px;
    border: 1px solid #002a38
}

.py-lg-3 {
    margin-bottom: 20px;
    margin-top: 20px
}

.prod-info-main {
    -webkit-box-shadow: 15px 15px 20px 5px rgba(0, 0, 0, .26);
    -moz-box-shadow: 15px 15px 20px 5px rgba(0, 0, 0, .26);
    box-shadow: 15px 15px 20px 5px rgba(0, 0, 0, .26);
    padding: 10px;
    border-top: 1px solid #002a38;
    border-left: 1px solid #002a38;
    border-radius: 4px
}

.hidden {
    display: none
}

small {
    font-size: 10px;
    color: #666
}

.product-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.product-details .product-images {
    width: 50%
}

@media only screen and (max-width:959px) {
    .product-details .product-images {
        width: 100%
    }
}

.product-details .product-images>li {
    display: inline-block;
    width: 64px;
    height: product-dimenstions(64px);
    overflow: hidden;
    margin: 5px
}

.product-details .product-images>li.preview {
    width: 100%;
    height: auto;
    margin: 0
}

.product-details .product-images img {
    display: block;
    width: 100%
}

.product-details .product-info {
    width: 45%;
    margin-left: 5%
}

@media only screen and (max-width:959px) {
    .product-details .product-info {
        width: 100%;
        margin-left: 0
    }
}

.product-details .product-info>li {
    margin: 10px 0
}

.product-details .product-info .product-name {
    font-size: 20px;
    font-weight: 700
}

.product-details .product-info .product-price {
    font-size: 18px;
    color: #666
}

.product-details .product-info .product-attributes {
    width: 66%;
    margin-top: 40px
}

.product-details .product-info .product-addtocart {
    width: 66%;
    margin: 20px 0 40px
}

@media only screen and (max-width:959px) {
    .product-details .product-info .product-addtocart {
        width: 33%
    }
}

.product-details .product-info .product-addtocart button {
    width: 100%;
    cursor: pointer;
    background: #000;
    color: #fff;
    display: block;
    border: none;
    outline: 0;
    padding: 10px
}

.product-details .product-info .product-addtocart button:hover {
    background: #1a1a1a
}

.product-details .product-info .product-description {
    font-size: 12px
}

.product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.product .product-image {
    background: #eee
}

.product .product-image img {
    display: block;
    width: 100%
}

.product .product-name {
    font-weight: 700;
    margin: 10px 0 5px
}

a.product {
    color: #000;
    text-decoration: none
}

.fields>li {
    margin-bottom: 10px
}

.fields .field-name {
    display: block;
    font-weight: 700;
    margin-bottom: 5px
}

label {
    cursor: pointer;
    white-space: nowrap
}

nav>.nav.nav-tabs {
    border: none;
    color: #fff;
    background: #272e38;
    border-radius: 0
}

nav>div a.nav-item.nav-link,
nav>div a.nav-item.nav-link.active {
    border: none;
    padding: 10px 0;
    color: #fff;
    background: #1b2945;
    border-radius: 0;
    position: relative
}

nav>div a.nav-item.nav-link.active:after {
    content: "";
    position: absolute;
    border: 15px solid transparent;
    border-top-color: #f9cc5d;
    bottom: -30px;
    right: 45px
}

.tab-pane {
    padding: 0 20px;
    text-align: justify
}

.tab-content {
    background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
    border-top: 5px solid #f9cc5d;
    border-bottom: 5px solid #1b2945;
    padding: 30px 25px
}

nav>div a.nav-item.nav-link:focus,
nav>div a.nav-item.nav-link:hover {
    border: none;
    background: #f9cc5d;
    color: #1b2945;
    border-radius: 0;
    transition: background .2s linear
}

#minus,
#plus {
    background: #f9cc5d;
    color: #1b2945;
    border: 1px solid #1b2945;
    height: 30px;
    width: 30px;
    font-weight: 900
}

#qty {
    width: 50px;
    text-align: center;
    border: 2px solid #1b2945;
    border-left: 1px;
    border-right: 1px
}

.tiles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tile {
    position: relative;
    float: left;
    width: 33.333%;
    height: 100%;
    overflow: hidden
}

.photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform .5s ease-out
}

.cart-msg {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    position: fixed;
    background-color: rgba(0, 0, 0, .438)
}

.cart-info {
    position: absolute;
    z-index: 999999;
    background-color: #fff;
    border-radius: 4px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    text-align: center;
    padding: 20px 100px 20px 100px
}

.cart-info h4 {
    margin-bottom: 2rem!important
}

.single_portfolio_text img {
    width: 100%
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1050px
}

#caption {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1050px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.container .box {
    box-sizing: border-box;
    text-align: center;
    margin: 10px 0;
    overflow: hidden
}

.container .box .icon {
    width: 100%;
    height: 100%;
    background: #f9cc5d;
    transition: .5s;
    border: 1px solid #002a38
}

.container .box .icon .fa {
    font-size: 4em;
    line-height: 100px;
    color: #002a38
}

.container .box:hover .icon {
    transform: scale(0)
}

.container .box .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #002a38;
    transition: .5s;
    transform: scale(2);
    opacity: 0
}

.container .box:hover .details {
    transform: scale(1);
    opacity: 1
}

.container .box .details h3 {
    margin: 0;
    padding: 0;
    line-height: 100px;
    font-size: 24px;
    color: #f9cc5d
}

.container .box .details:nth-child(2) .details {
    background: #607d8b
}

.formBox {
    margin-top: 90px;
    padding: 50px
}

.formBox h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 48px
}

.results {
    border: 1px solid #000;
    padding: 30px;
    margin: 20px 0;
    text-align: center
}

.results h1 {
    font-size: 27px;
    margin-bottom: 20px
}

.team-member {
    overflow: hidden;
}

.team-member:hover .team-hover .desk {
    top: 35%
}

.desk,
.desk h4,
.team-hover .s-link a {
    text-align: center;
    color: #222
}

.team-member:hover .team-hover .s-link {
    bottom: 10%
}

table td {
    text-align: left!important
}

.single_portfolio_text img {
    width: 100%
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1050px
}

#caption {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1050px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.archive .stbutton {
    margin-top: 25px
}

.archive .shadow {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .75);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .75);
    padding: 30px 15px;
    border-radius: 4px
}

.archive .tile {
    margin: 60px auto;
    width: 100%
}

.archive #tile-1 .tab-pane {
    padding: 15px
}

.archive #tile-1 .nav-tabs {
    position: relative;
    border: none!important;
    background-color: #fff;
    border-radius: 6px
}

.archive #tile-1 .nav-tabs li {
    margin: 0!important;
    background-color: #f9cc5d;
    border: 1px solid #002a38
}

.archive #tile-1 .nav-tabs li a {
    position: relative;
    margin-right: 0!important;
    padding: 20px 40px!important;
    font-size: 16px;
    border: none!important;
    color: #333
}

.archive #tile-1 .nav-tabs a:hover {
    background-color: #002a38;
    border: 1px solid #f9cc5d!important;
    color: #f9cc5d!important;
    border-radius: 0
}

.archive #tile-1 .nav-tabs .active {
    background-color: #002a38;
    border: 1px solid #f9cc5d!important;
    color: #f9cc5d!important;
    border-radius: 0
}

.archive #tile-1 .slider {
    display: inline-block;
    width: 100%;
    height: 4px;
    border-radius: 0;
    background-color: #f9cc5d;
    position: absolute;
    z-index: 1200;
    bottom: 0;
    transition: all .4s linear
}

.archive .table td {
    text-align: center;
    font-size: 14px
}

.archive td {
    vertical-align: middle
}

.archive .term2 td {
    text-align: left
}

.archive .disabled {
    background-color: #9f9f9f;
    color: #000!important;
    border: 1px solid #000;
    cursor: default!important
}

.archive .disabled:hover {
    background-color: #9f9f9f;
    color: #000!important;
    border: 1px solid #000;
    cursor: default!important
}

.archive .avil_soon {
    display: block;
    font-size: 10px
}

.archive .min-height-download-btn {
    min-height: 80px
}

.archive .tab-content {
    height: auto;
    overflow: auto
}

.archive .btn.focus,
.archive .btn:focus {
    outline: 0;
    box-shadow: none
}

.mts .results {
    border: 1px solid #000;
    padding: 30px;
    margin: 20px 0;
    text-align: center
}

.mts .results h1 {
    font-size: 27px;
    margin-bottom: 20px;
    margin-top: auto
}

.error-page .error {
    color: #5a5c69;
    font-size: 7rem;
    position: relative;
    line-height: 1;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 100%)
}

.error-page .error:after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 #e74a3b;
    top: 0;
    color: #5a5c69;
    background: #f8f9fc;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;
    left: 50%;
    transform: translate(-50%, 0)
}

.error-page .error:before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 1px 0 #4e73df;
    top: 0;
    color: #5a5c69;
    background: #f8f9fc;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 3s infinite linear alternate-reverse;
    left: 50%;
    transform: translate(-50%, 0)
}

@-webkit-keyframes noise-anim-2 {
    0% {
        clip: rect(69px, 9999px, 53px, 0)
    }
    5% {
        clip: rect(37px, 9999px, 82px, 0)
    }
    10% {
        clip: rect(35px, 9999px, 22px, 0)
    }
    15% {
        clip: rect(97px, 9999px, 91px, 0)
    }
    20% {
        clip: rect(45px, 9999px, 56px, 0)
    }
    25% {
        clip: rect(82px, 9999px, 3px, 0)
    }
    30% {
        clip: rect(73px, 9999px, 70px, 0)
    }
    35% {
        clip: rect(70px, 9999px, 50px, 0)
    }
    40% {
        clip: rect(15px, 9999px, 87px, 0)
    }
    45% {
        clip: rect(78px, 9999px, 34px, 0)
    }
    50% {
        clip: rect(95px, 9999px, 21px, 0)
    }
    55% {
        clip: rect(82px, 9999px, 35px, 0)
    }
    60% {
        clip: rect(57px, 9999px, 30px, 0)
    }
    65% {
        clip: rect(21px, 9999px, 71px, 0)
    }
    70% {
        clip: rect(17px, 9999px, 42px, 0)
    }
    75% {
        clip: rect(69px, 9999px, 9px, 0)
    }
    80% {
        clip: rect(43px, 9999px, 54px, 0)
    }
    85% {
        clip: rect(39px, 9999px, 12px, 0)
    }
    90% {
        clip: rect(83px, 9999px, 34px, 0)
    }
    95% {
        clip: rect(57px, 9999px, 71px, 0)
    }
    100% {
        clip: rect(81px, 9999px, 41px, 0)
    }
}

@keyframes noise-anim-2 {
    0% {
        clip: rect(69px, 9999px, 53px, 0)
    }
    5% {
        clip: rect(37px, 9999px, 82px, 0)
    }
    10% {
        clip: rect(35px, 9999px, 22px, 0)
    }
    15% {
        clip: rect(97px, 9999px, 91px, 0)
    }
    20% {
        clip: rect(45px, 9999px, 56px, 0)
    }
    25% {
        clip: rect(82px, 9999px, 3px, 0)
    }
    30% {
        clip: rect(73px, 9999px, 70px, 0)
    }
    35% {
        clip: rect(70px, 9999px, 50px, 0)
    }
    40% {
        clip: rect(15px, 9999px, 87px, 0)
    }
    45% {
        clip: rect(78px, 9999px, 34px, 0)
    }
    50% {
        clip: rect(95px, 9999px, 21px, 0)
    }
    55% {
        clip: rect(82px, 9999px, 35px, 0)
    }
    60% {
        clip: rect(57px, 9999px, 30px, 0)
    }
    65% {
        clip: rect(21px, 9999px, 71px, 0)
    }
    70% {
        clip: rect(17px, 9999px, 42px, 0)
    }
    75% {
        clip: rect(69px, 9999px, 9px, 0)
    }
    80% {
        clip: rect(43px, 9999px, 54px, 0)
    }
    85% {
        clip: rect(39px, 9999px, 12px, 0)
    }
    90% {
        clip: rect(83px, 9999px, 34px, 0)
    }
    95% {
        clip: rect(57px, 9999px, 71px, 0)
    }
    100% {
        clip: rect(81px, 9999px, 41px, 0)
    }
}

.job-details {
    display: none
}

.floatright {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 40px;
    background-color: #f9cc5d;
    color: #002a38;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    -webkit-animation: bot-to-top 2s ease-out;
    animation: bot-to-top 2s ease-out;
    border: 1px solid #002a38
}

.pulse {
    display: block;
    box-shadow: 0 0 0 rgba(204, 169, 44, .4);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite
}

#stpt_form .tile {
    width: 100%;
    margin: 0 auto
}

#stpt_form .close {
    position: absolute;
    right: 15px;
    top: 15px
}

#stpt_form .tab-content {
    height: auto;
    border: 0!important;
    padding: 0!important
}

#stpt_form .tab-content {
    border: 0;
    border-top: 5px solid #f9cc5d;
    border-bottom: 0;
    padding: 30px 25px
}

#stpt_form #tile-1 .nav-tabs a:hover {
    border: 0!important
}

#stpt_form #tile-1 .nav-tabs .active {
    border: 0!important
}

#form_others .alert-danger,
#form_school .alert-danger,
#form_studentParent .alert-danger {
    color: red!important;
    background-color: transparent!important;
    border-color: transparent!important
}

#stpt_form .radio {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    font-size: 14px;
    margin: 0 15px 15px 15px
}

#stpt_form .radio .label {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #c8ccd4;
    border-radius: 100%;
    -webkit-tap-highlight-color: transparent
}

#stpt_form .radio .label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #002a38;
    transform: scale(0);
    transition: all .2s ease;
    opacity: .08;
    pointer-events: none
}

#stpt_form .radio:hover .label:after {
    transform: scale(3.6)
}

#stpt_form input[type=radio]:checked+.label {
    border-color: #002a38
}

#stpt_form input[type=radio]:checked+.label:after {
    transform: scale(1);
    transition: all .2s cubic-bezier(.35, .9, .4, .9);
    opacity: 1
}

#stpt_form label {
    width: auto;
    box-shadow: none
}

.rotate-x {
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-name: rotate-x;
    animation-name: rotate-x
}

@-webkit-keyframes rotate-x {
    from {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }
    to {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes rotate-x {
    from {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }
    to {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

.single_portfolio_text img {
    width: 100%
}

.c--anim-btn span {
    color: #f9cc5d;
    text-decoration: none;
    text-align: center;
    display: block;
    line-height: 20px;
    padding: 0 10px;
    font-size: 14px
}

.c--anim-btn,
.c-anim-btn {
    transition: .3s
}

.c--anim-btn {
    height: 70px;
    overflow: hidden;
    width: 250px;
    background-color: #002a38;
    color: #f9cc5d;
    vertical-align: middle;
    display: grid
}

.c-anim-btn {
    margin-top: 0
}

.c--anim-btn:hover .c-anim-btn {
    margin-top: -2.2em
}

.c--anim-btn h3 {
    text-align: center;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 25px
}

.padding-btm {
    padding-bottom: 30px;
    text-align: -webkit-center;
    text-align: -moz-center
}

.vision {
    background-image: url(../images/vision.svg);
    background-repeat: no-repeat;
    height: 350px;
    background-position: center;
    background-size: contain
}

.mission {
    background-image: url(../images/mission.png);
    background-repeat: no-repeat;
    height: 350px;
    background-position: center;
    background-size: contain
}

.vision .text p {
    position: absolute;
    top: 52%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    width: 35%;
    line-height: 20px;
    text-align: center
}

.mission .text p {
    position: absolute;
    top: 52%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-60%, -50%);
    color: #fff;
    width: 35%;
    line-height: 20px;
    text-align: center
}

.color-whte {
    color: #fff!important;
    text-align: center
}

.yllw {
    background-color: #3c9156
}

.yllw::before {
    content: '';
    background-image: url(../images/ocv/CreateHappiness.svg);
    height: 70px;
    width: 70px;
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: -40px;
    background-color: #3c9156;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid #fff;
    background-size: 30px
}

.red {
    background-color: #bf3825
}

.red::before {
    content: '';
    background-image: url(../images/ocv/BeInnovative.svg);
    height: 70px;
    width: 70px;
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: -40px;
    background-color: #bf3825;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid #fff;
    background-size: 30px
}

.blu {
    background-color: #0a2a37
}

.blu::before {
    content: '';
    background-image: url(../images/ocv/BeCustomerFocused.svg);
    height: 70px;
    width: 70px;
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: -40px;
    background-color: #0a2a37;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid #fff;
    background-size: 30px
}

.nil {
    background-color: #176a88
}

.nil::before {
    content: '';
    background-image: url(../images/ocv/ImproveContinuously.svg);
    height: 70px;
    width: 70px;
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: -40px;
    background-color: #176a88;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid #fff;
    background-size: 30px
}

.hol {
    background-color: #db7b25
}

.hol::before {
    content: '';
    background-image: url(../images/ocv/HaveIntegrity.svg);
    height: 70px;
    width: 70px;
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: -40px;
    background-color: #db7b25;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid #fff;
    background-size: 30px
}

.cyn {
    background-color: #1aa3b6
}

.cyn::before {
    content: '';
    background-image: url(../images/ocv/BeOwner.svg);
    height: 70px;
    width: 70px;
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: -40px;
    background-color: #1aa3b6;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid #fff;
    background-size: 30px
}

.ocv p:nth-child(1) {
    padding: 35px 0 10px 0;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase
}

.ocv p:nth-child(2) {
    padding: 20px;
    margin-bottom: 60px;
    min-height: 115px
}

.shadow {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}

.global-box-shadow {
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.58);
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.58);
}

.shadow .first {
    position: absolute;
    background-color: #fff;
    width: 50px;
    height: -webkit-fill-available;
    left: -20px;
    top: 0
}

.shadow .last {
    position: absolute;
    background-color: #fff;
    width: 50px;
    height: -webkit-fill-available;
    right: -20px;
    top: 0
}

h1 {
    color: #002a38
}

ul {
    list-style-type: none
}

.exp p {
    text-align: left
}

.display-4 {
    font-size: 16px
}

.shadow {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .75);
    padding: 30px 15px;
    border-radius: 4px
}

td {
    vertical-align: middle;
    text-align: left
}

tr td:nth-child(1) {
    text-align: center
}

b,
h1 {
    color: #002a38
}

p {
    padding: 0 20px
}

.team-member {
    overflow: hidden;
}

.team-member,
.team-member .team-img {
    position: relative;
    padding: 8px;
}

.team-hover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    border: 20px solid rgba(0, 0, 0, .1);
    background-color: rgba(255, 255, 255, .9);
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s
}

.team-member:hover .team-hover .desk {
    top: 35%
}

.team-hover .desk {
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    transform: translateY(-55%);
    -webkit-transition: all .3s .2s;
    transition: all .3s .2s
}

.desk,
.desk h4,
.team-hover .s-link a {
    text-align: center;
    color: #222
}

.team-member:hover .team-hover .s-link {
    bottom: 10%
}

.team-member:hover .team-hover,
.team-member:hover .team-hover .desk,
.team-member:hover .team-hover .s-link {
    opacity: 1
}

.team-hover .s-link {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    text-align: center;
    -webkit-transform: translateY(45%);
    -ms-transform: translateY(45%);
    transform: translateY(45%);
    -webkit-transition: all .3s .2s;
    transition: all .3s .2s;
    font-size: 35px
}

.desk,
.desk h4,
.team-hover .s-link a {
    text-align: center;
    color: #002a38;
    font-weight: 700
}

.team-member .s-link a {
    margin: 0 0;
    color: #fff;
    font-size: 16px
}

.team-title {
    position: static;
    padding: 20px 0;
    display: inline-block;
    letter-spacing: 2px;
    width: 100%
}

.team-title h5 {
    margin-bottom: 0;
    display: block;
    text-transform: uppercase
}

.team-title span {
    font-size: 12px;
    text-transform: uppercase;
    color: #a5a5a5;
    letter-spacing: 1px
}

.desk p {
    position: absolute;
    top: -120px;
    line-height: 20px;
    padding: 0 10px;
    color: #002a38;
    font-weight: 600;
}

table td {
    text-align: left!important
}

.clrd-font {
    background: linear-gradient(to right, #f9cc5d, #b3a41d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.btn-primary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 0
}

.btn-primary:hover {
    background-color: transparent;
    border-color: #47a7f5;
    color: #4fabf5;
    border-radius: 20px
}

.single_portfolio_text {
    display: inline-block;
    padding: 0;
    position: relative;
    overflow: hidden
}

.single_portfolio_text:hover .portfolio_images_overlay {
    top: 5%;
    left: 5%
}

.portfolio_images_overlay {
    width: 90%;
    height: 90%;
    background: rgba(27, 41, 69, .89);
    padding: 20px;
    margin: 0 auto;
    top: -100%;
    left: 5%;
    position: absolute;
    transition: .6s
}

.portfolio_images_overlay h6 {
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    border: 2px solid #fff;
    padding-top: 10px;
    padding-bottom: 10px
}

.portfolio_images_overlay .product_price {
    font-size: 35px;
    color: #fff;
    font-weight: 800;
    line-height: 30px
}

.portfolio_images_overlay .product_price i {
    margin-right: -10px
}

.zoom {
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -115px;
    right: -115px;
    border-radius: 50%;
    background-color: #002a38;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, .5);
    opacity: .9
}

.zoom:before {
    content: "\f00e";
    font-family: FontAwesome;
    color: #f8cc5d;
    font-size: 40px;
    padding-right: 20px;
    position: absolute;
    top: 30px;
    left: 40px
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #002a38
}

@media (min-width:769px) and (max-width:991px) {
    .portfolio_images_overlay {
        padding: 0
    }
}

@media (max-width:768px) {
    .portfolio_images_overlay {
        padding: 170px 20px
    }
}

@media (max-width:580px) {
    .portfolio_images_overlay {
        padding: 100px 20px
    }
}

@media (max-width:480px) {
    .portfolio_images_overlay {
        padding: 40px 20px
    }
}

@media (max-width:320px) {
    .portfolio_images_overlay {
        padding: 20px
    }
}

.overlay h2 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)!important
}

.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0
}

.hovereffect img {
    display: block;
    position: relative;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in
}

.hovereffect:hover img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
    filter: grayscale(1) blur(3px);
    -webkit-filter: grayscale(1) blur(3px);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.hovereffect h2 {
    text-transform: uppercase;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background: rgba(0, 0, 0, .6)
}

.hovereffect a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    border: 1px solid #fff;
    margin: 50px 0 0 0;
    background-color: transparent
}

.hovereffect a.info:hover {
    box-shadow: 0 0 5px #fff
}

.hovereffect a.info,
.hovereffect h2 {
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
    opacity: 0;
    color: #fff;
    text-transform: uppercase
}

.hovereffect:hover a.info,
.hovereffect:hover h2 {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0, 0, 0, .9);
    z-index: 99999;
    overflow: unset
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1050px
}

#caption {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1050px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px
}

#caption,
.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: .6s;
    animation-name: zoom;
    animation-duration: .6s
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.gallery_close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 700;
    transition: .3s
}

.gallery_close:focus,
.gallery_close:hover {
    color: #bbb;
    text-decoration: none;
    cursor: pointer
}

.gallery_prev {
    color: #fff;
    font-size: 42px;
    position: absolute;
    top: 3.5%
}

.gallery_next {
    color: #fff;
    font-size: 42px;
    position: absolute;
    top: 3.5%;
    right: 0
}

@media only screen and (max-width:700px) {
    .modal-content {
        width: 100%
    }
}

.floating-connector-top {
    position: absolute;
    z-index: 9999;
    top: 53%;
    right: 1%;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #002a38
}

.floating-connector ul {
    list-style-type: none
}

.floating-connector ul li {
    padding: 15px 30px;
    cursor: pointer;
    transition: .5s
}

.floating-connector ul li:hover {
    background-color: #002a38;
    color: #fff
}

.liactive {
    background-color: #002a38;
    color: #fff
}

.inputBox {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 30px
}

.inputBox .inputText {
    position: absolute;
    font-size: 14px;
    line-height: 25px;
    transition: .5s;
    opacity: .5
}

@media screen and (max-width:767px) and (min-width:576px) {
    .about-page .tab-font-size {
        font-size: 16px;
    }
}

@media screen and (max-width:575px) {
    .about-page .tab-font-size {
        font-size: 11px;
    }
}

.inputBox .input {
    position: relative;
    width: 100%;
    height: 30px;
    background: 0 0;
    border: none;
    outline: 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .5)
}

.focus .inputText {
    transform: translateY(-20px);
    font-size: 10px;
    opacity: 1;
    color: #878787
}

textarea {
    height: 100px!important
}

.button {
    width: 100%;
    height: 50px;
    border: none;
    outline: 0;
    background: #f9cc5d;
    color: #002a38
}

.about-page .container {
    min-height: auto
}

h1 {
    text-transform: uppercase;
    margin-top: 80px;
    margin-bottom: 30px
}

.right_bar {
    position: absolute;
    top: 50%;
    right: 2%;
    z-index: 999999;
    font-size: 30px;
    background-color: #002a38;
    color: #fff;
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
    line-height: 50px;
    display: none;
    cursor: pointer
}

@media screen and (max-width:1450px) and (min-width:1300px) {
    .floating-connector ul li {
        padding: 15px 5px;
        cursor: pointer;
        transition: .5s;
        text-align: center
    }
}

@media screen and (max-width:1299px) and (min-width:1000px) {
    .floating-connector ul li {
        padding: 15px 5px;
        cursor: pointer;
        transition: .5s;
        text-align: center;
        font-size: 11px
    }
}

@media screen and (max-width:1000px) and (min-width:250px) {
    .right_bar {
        display: inline
    }
    .floating-connector {
        display: none;
        top: 56%
    }
}

.delivered {
    background-color: #388953;
    color: #fff;
    font-weight: 700
}

.eachProd h3 {
    position: absolute;
    top: -15px;
    right: -8px;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.eachProd h3 .far.fa-times-circle {
    font-size: 20px;
}

.subs i,
.add i {
    font-size: 10px;
}

.subs {
    margin-right: 10px;
    background-color: #f9cc5d;
    text-align: center;
    padding: 0px 5px 3px 5px;
    color: #002a38;
    border: 1px solid #002a38;
    border-radius: 4px;
}

.add {
    margin-left: 10px;
    background-color: #f9cc5d;
    text-align: center;
    padding: 0px 5px 3px 5px;
    color: #002a38;
    border: 1px solid #002a38;
    border-radius: 4px;
}


/* -----------------------------start accordion-------------------------- */

#accordion .btn-link {
    font-weight: 400;
    color: #ffffff;
    background-color: #002a38;
    border-radius: 4px 4px 0px 0px;
}

#accordion .btn-link.collapsed:hover {
    background-color: #002a38!important;
    color: #fff!important;
}

#accordion .btn-link.collapsed:hover::after {
    color: #fff;
}

.card {
    width: 100%;
}


/* ----------------------------end accordion--------------------- */

.menu_blink_back {
    -webkit-animation: blink 1s infinite;
    /* Safari 4+ */
    -moz-animation: blink 1s infinite;
    /* Fx 5+ */
    -o-animation: blink 1s infinite;
    /* Opera 12+ */
    animation: blink 1s infinite;
    /* IE 10+, Fx 29+ */
}

@-webkit-keyframes blink {
    0%,
    49% {
        background-color: #002a38;
        color: #f9cc5d !important;
    }
    50%,
    100% {
        background-color: #f9cc5d;
        color: #002a38 !important;
    }
}


/* -----------------owl carousel------------------------ */

.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
    left: -3%;
}

.owl-nav button.owl-next {
    right: -3%;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: #000;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-nav button {
    position: absolute;
    top: 42%;
    transform: translateY(-42%);
    background: rgba(255, 255, 255, 0.38) !important;
}

.owl-nav span {
    font-size: 70px;
    position: relative;
    top: -5px;
}

.owl-nav button:focus {
    outline: none;
}


/* ---------------end owl carousel--------------------- */


/* ------------------------------Recruitment---------------------------- */

.recruitment .buttons-w3ls {
    position: absolute;
    bottom: -3%;
    right: 4%;
    left: unset;
}

.recruitment .buttons-w3ls a,
.recruitment .buttons-w3ls-2 a {
    font-size: 12px;
    border-radius: 0;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.recruitment .testimonial-card {
    box-shadow: -1px 3px 5px 1px rgba(0, 0, 0, .15);
}

.recruitment .job-card {
    box-shadow: -1px 3px 5px 1px rgba(0, 0, 0, .15);
}

.recruitment .job-icon-img {
    background: #d6d3cd;
    border: 2px solid #002a38;
    width: 60px;
}

.recruitment .about-job {
    padding: 30px 20px;
}

.recruitment .testimonial-section .testimonial-text p,
.recruitment .jobs-section .job-card .about-job p {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.7;
}

.recruitment .testimonial-card .emp-name p,
.recruitment .testimonial-card .emp-post p {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: unset;
}


/* ---------------------recrutment details------------------------ */

.fileUpload input.uploadfile {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 32%;
    height: 42px;
}


/*Chrome fix*/

input::-webkit-file-upload-button {
    cursor: pointer !important;
    height: 42px;
    width: 100%;
}


/* -----------------------------------school directory--------------------------------- */

.school-directory .filter-head {
    background-color: #EFEFEF;
}

.school-directory .filter-head .input-group input {
    height: 30px;
    border: none !important;
    border-radius: unset;
}


/* .school-directory .filter-head .filter-btn {
    padding: 12px;
    color: #002a38;
    background: #f8cc5d;
} */

.school-directory .filter-head .search-btn {
    background: #f8cc5d;
    color: #002a38;
    border: none;
    border-radius: unset;
    padding: 0px 10px;
}

.school-directory .filterstatic {
    position: absolute;
    right: 35%;
    transform: translate(18%, -3%);
    width: 50%;
    border-top: 5px solid #002a38;
    background: #f9f9f9;
    z-index: 999;
}

.school-directory .buttons-w3ls {
    right: 6%;
    bottom: -7%;
    left: unset;
}

.school-directory .school-img {
    border: 2px solid #f9f9f9;
    box-shadow: 3px 0 5px 0 rgba(0, 0, 0, .22);
    width: 80%;
}

.school-directory .page-link {
    font-size: 13px;
    color: #002a38;
}

.school-directory .page-item.active .page-link {
    z-index: 1;
    color: #002a38;
    background-color: #f9cc5d;
    border-color: #f9cc5d;
}

.menu_background_parallax .school-stats .auto-sizing {
    font-size: 24px;
    font-family: bell_mtbold;
}

.school-directory .collapsed {
    background-color: #f9cc5d!important;
    color: #002a38!important;
}

.school-directory .filter-btn .filter-btn-collapsed {
    border-radius: unset;
    padding: 2px 10px;
}

.school-directory .w3ls-cource-first {
    background-color: #efefef;
}

.school-directory .buttons-w3ls a,
.school-directory .buttons-w3ls-2 a {
    font-size: 15px;
    border-radius: 0;
    letter-spacing: 1px;
    padding: 5px 13px;
}

.school-directory .filter-head select#filter-board,
.school-directory .filter-head select#filter-state {
    height: 30px;
    font-size: 13px;
    background-position: 90% 10px;
    padding-left: 10px;
}

.school-directory .filter-counter {
    display: inline-block;
    font-size: 20px;
    color: #002a38;
}

.school-directory .resetfilter {
    border-radius: unset;
    font-size: 11px;
    padding: 6px 7px;
    letter-spacing: 1px;
}

.school-directory .filter-head.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 72px;
    z-index: 1020;
}


/* -----------------------------school directory details------------------------- */

.school-directory-details .school-img {
    border: 2px solid #f9f9f9;
    box-shadow: 3px 0 5px 0 rgba(0, 0, 0, .22);
}

.school-directory-details .phone-call:before {
    position: absolute;
    content: " ";
    z-index: -1;
    left: 15px;
    width: 77px;
    height: 38px;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.school-directory-details .phone-call .btn {
    border-radius: unset;
    padding: 5px 23px;
    font-size: 18px;
    box-shadow: 3px 0 5px 0 rgba(0, 0, 0, .22);
}

.school-directory-details .school-details p {
    line-height: 1.1;
}

.school-directory-details .nav-pills .nav-link.active:hover {
    color: #fff !important;
    background-color: #002a38;
}

.school-directory-details .nav-pills .nav-link.active {
    border-radius: 0em;
}

.school-directory-details .nav-pills .nav-link {
    border-radius: 0em;
}

.school-directory-details .gallery-img {
    border: 2px solid #f9f9f9;
    box-shadow: 3px 0 5px 0 rgba(0, 0, 0, .22);
}

.school-directory-details .near-schools-card,
.school-directory-details .other-schools-card {
    border: 10px solid #f9f9f9;
    box-shadow: 3px 0 5px 0 rgba(0, 0, 0, .22);
}

.school-directory-details .other-schools-card {
    border-color: #f9cc5d;
}

.school-directory-details .school-card-slider-btn {
    border-radius: 0em;
    padding: 4px 10px;
    font-size: 13px;
}

.school-directory-details-enquiry .floatright {
    width: 90px;
    height: 44px;
    bottom: 80px;
    right: 20px;
    border-radius: unset;
    z-index: 9999;
}

.school-directory-details-enquiry .floatright p {
    font-size: 20px;
    font-family: bell_mtbold;
}

#enquiry-form .tile {
    width: 100%;
    margin: 0 auto
}

#enquiry-form .close {
    position: absolute;
    right: 15px;
    top: 15px
}

#enquiry-form .tab-content {
    height: auto;
    border: 0!important;
    padding: 0!important
}

#enquiry-form .tab-content {
    border: 0;
    border-top: 5px solid #f9cc5d;
    border-bottom: 0;
    padding: 30px 25px
}

#enquiry-form #tile-1 .nav-tabs a:hover {
    border: 0!important
}

#enquiry-form #tile-1 .nav-tabs .active {
    border: 0!important
}

#form_others .alert-danger,
#form_school .alert-danger,
#form_studentParent .alert-danger {
    color: red!important;
    background-color: transparent!important;
    border-color: transparent!important
}

#enquiry-form .radio {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    font-size: 14px;
    margin: 0 15px 15px 15px
}

#enquiry-form .radio .label {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #c8ccd4;
    border-radius: 100%;
    -webkit-tap-highlight-color: transparent
}

#enquiry-form .radio .label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #002a38;
    transform: scale(0);
    transition: all .2s ease;
    opacity: .08;
    pointer-events: none
}

#enquiry-form .radio:hover .label:after {
    transform: scale(3.6)
}

#enquiry-form input[type=radio]:checked+.label {
    border-color: #002a38
}

#enquiry-form input[type=radio]:checked+.label:after {
    transform: scale(1);
    transition: all .2s cubic-bezier(.35, .9, .4, .9);
    opacity: 1
}

#enquiry-form label {
    width: auto;
    box-shadow: none
}

.school-directory-global-fixed-ad-banner {
    width: 160px;
    height: 40px;
    bottom: 40%;
    right: -60px;
    border-radius: unset;
    z-index: 9999;
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    background: #002a38;
}

.school-directory-global-fixed-ad-banner p {
    font-size: 20px;
    color: #f9cc5d;
}


/* ----------------------------------Global Star Ratings---------------------------------------- */

.star-rating {
    font-family: 'FontAwesome';
}

.star-rating>fieldset {
    border: none;
    display: inline-block;
}

.star-rating>fieldset:not(:checked)>input {
    position: absolute;
    top: -9999px;
    clip: rect(0, 0, 0, 0);
}

.star-rating>fieldset:not(:checked)>label {
    float: right;
    width: 1em;
    padding: 0 0.05em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 130%;
    color: #002a38;
    display: unset;
    height: auto;
    box-shadow: none;
}


/* .star-rating>fieldset:not(:checked)>label:before {
    content: '\f006  ';
} */

.star-rating>fieldset:not(:checked)>label:hover,
.star-rating>fieldset:not(:checked)>label:hover~label {
    color: #002a38;
}

.star-rating>fieldset:not(:checked)>label:hover:before,
.star-rating>fieldset:not(:checked)>label:hover~label:before {
    content: '\f005  ';
}


/* .star-rating>fieldset>input:checked~label:before {
    content: '\f005  ';
} */

.star-rating>fieldset>label:active {
    position: relative;
    top: 2px;
}

.star-rating .not-checked::before {
    content: '\f006  ';
}

.star-rating .checked::before {
    content: '\f005  ';
}

#enquiry-form .tile {
    width: 100%;
    margin: 0 auto
}

#enquiry-form .close {
    position: absolute;
    right: 15px;
    top: 15px
}

#enquiry-form .tab-content {
    height: auto;
    border: 0!important;
    padding: 0!important
}

#enquiry-form .tab-content {
    border: 0;
    border-top: 5px solid #f9cc5d;
    border-bottom: 0;
    padding: 30px 25px
}

#enquiry-form #tile-1 .nav-tabs a:hover {
    border: 0!important
}

#enquiry-form #tile-1 .nav-tabs .active {
    border: 0!important
}

#form_others .alert-danger,
#form_school .alert-danger,
#form_studentParent .alert-danger {
    color: red!important;
    background-color: transparent!important;
    border-color: transparent!important
}

#enquiry-form .radio {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    font-size: 14px;
    margin: 0 15px 15px 15px
}

#enquiry-form .radio .label {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #c8ccd4;
    border-radius: 100%;
    -webkit-tap-highlight-color: transparent
}

#enquiry-form .radio .label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #002a38;
    transform: scale(0);
    transition: all .2s ease;
    opacity: .08;
    pointer-events: none
}

#enquiry-form .radio:hover .label:after {
    transform: scale(3.6)
}

#enquiry-form input[type=radio]:checked+.label {
    border-color: #002a38
}

#enquiry-form input[type=radio]:checked+.label:after {
    transform: scale(1);
    transition: all .2s cubic-bezier(.35, .9, .4, .9);
    opacity: 1
}

#enquiry-form label {
    width: auto;
    box-shadow: none
}


/* -------------------------End Global Star Ratings------------------------ */

.menu_background_parallax .school-stats .auto-sizing {
    font-size: 24px;
    font-family: bell_mtbold;
}

.exam-instrction-page h3.title {
    font-size: 30px;
}


/* ------------------------discussion forum-------------------------------- */

.discussionforum .buttons-w3ls {
    position: absolute;
    bottom: -6%;
    right: 6%;
    left: unset;
}

.discussionforum .discuss-icon {
    background: #FEFDFB;
    border-radius: 50%;
    border: 2px solid #002a38;
    width: 35px;
    height: 35px;
}

.discussionforum .course-stat p span::after {
    content: '';
    border-right: 2px solid #002a38;
    margin-left: 5px;
    margin-right: 5px;
}

.discussionforum .course-stat p span:last-child::after {
    content: '';
    border-right: 0px solid #0083bf;
    margin-left: 5px;
    margin-right: 5px;
}

.discussionforum .card-fa-icon {
    font-size: 12px;
}

.discussionforum .card-tag {
    border-radius: 4px;
    padding: 4px 10px;
    display: inline-block;
    font-size: 11px;
    background: #002a38;
    color: #fff;
}

.discussionforum .w3ls-cource-first p {
    font-size: 12px;
}

.discussionforum .card-tag {
    border-radius: 3px;
    padding: 4px 10px;
    display: inline-block;
    font-size: 9px;
    background: #002a38;
    color: #fff;
}

.discussionforum .buttons-w3ls a,
.discussionforum .buttons-w3ls-2 a {
    font-size: 12px;
    border-radius: 0;
    letter-spacing: 1px;
    padding: 5px 15px;
}


/* ---------------------offerings-------------------- */

.offerings .offerings-tab {
    background: #0a2a38;
}

.offerings .offerings-tab .nav-tabs .nav-link {
    color: #fff;
}

.offerings .offerings-tab .nav-tabs .nav-link.active,
.offerings .offerings-tab .nav-tabs .nav-item.show .nav-link {
    color: #0a2a38 !important;
}

.offerings .offerings-tab .tab-content {
    height: 100%;
}

.offerings .offerings-tab .tab-content .card .card-body i,
.offerings .offerings-tab .tab-content .card .card-body .offered-features {
    font-size: 13px;
}

.offerings .features-available::before {
    content: "\f058";
    font-family: FontAwesome;
    margin-right: 8px;
    color: #009800;
}

.offerings .features-not-available::before {
    content: "\f057";
    font-family: FontAwesome;
    padding-right: 8px;
    color: #FF0014;
}

.offerings .program-price {
    font-size: 20px;
}

.offerings .tab-content .programs-select {
    height: 30px;
    font-size: 13px;
    background-position: 90% 10px;
    padding-left: 10px;
    color: #0a2a38;
    border: 1px solid #bbc4c7;
    border-radius: unset;
}

.offerings .tab-content .card .card-body .btn {
    font-size: 10px;
    border-radius: 0;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.platinum-gradient {
    background: #D2D2D2;
    background: linear-gradient(90deg, #D2D2D2 0%, #FFFFFF 100%);
}

.golden-gradient {
    background: #E6A927;
    background: linear-gradient(90deg, #E6A927 0%, #FBD064 100%);
}

.silver-gradient {
    background: #A7A8AA;
    background: linear-gradient(90deg, #A7A8AA 0%, #FCFCFC 100%);
}

.text-color-dark-blue {
    color: #002A3A;
}

.offerings .modal .modal-header .close {
    padding: 6px 10px;
    margin: -1rem -1rem -1rem auto;
}