/*FONTS*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');

body {
    color: #5f5d5d;
    font-size: 16px;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
}
main.page-content {
    flex: 1;
}
.bg-green-color {
    background-color: #94cb00;
}
.bg-blue-color {
    background-color: #01b1ce;
}
.bg-orange-color {
    background-color: #ff6600;
}
.bg-red-color {
    background-color: #cc0033;
}
.bg-violet-color {
    background-color: #9900cc;
}
.bg-yellow-color {
    background-color: #ffcc00;
}
.green-color {
    color: #3802d2 !important;
}
.blue-color {
    color: #1fc4dc !important;
}
.text-white {
    color: white !important;
}
.text-black {
    color: #414141 !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat' , sans-serif !important;
    font-weight: 500;
}
a {
    color: #1fc4dc;
    text-decoration: none;
}
a:hover, a:focus {
    color: #3802d2;
}
a:focus, a:active {
    text-decoration: none;
    outline: none;
    transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
}
p:last-child {
    margin-bottom: 25px;
}
img {
    max-width: 100%;
    height: auto;
}
figure {
    margin: 0;
}
hr {
    margin-bottom: 2rem;
}
.clear {
    clear: both;
}
.main {
    /*padding: 60px 0;*/
    position: relative;
}
main.page-content ul {
    text-indent: -23px;
    margin-left: 23px;
}

/*SCROLLBAR*/
.scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
.scrollbar-thumb {
    background-color: #00b0cd;
    background-image: -webkit-gradient(linear, 0 0, 0 100%,
    color-stop(.5, rgba(255, 255, 255, .2)),
    color-stop(.5, transparent), to(transparent));

}
.scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}


/*LOADER*/
.loader1 {
    overflow: hidden !important;
}
.loading-area {
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #000105;
    position: fixed;
    z-index: 999999;
}
.circle {
    width: 180px;
    height: 180px;
    border: 10px inset rgb(133,224,242);
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    margin-top: -100px;
    border-radius: 200px;
    -webkit-animation: rotate 5s infinite linear;
    animation: rotate 5s infinite linear;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.circle-small {
    width: 150px;
    height: 150px;
    border: 6px outset rgb(133,224,242);
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -85px;
    margin-top: -85px;
    border-radius: 156px;
    -webkit-animation: rotate-rev 3s infinite linear;
    animation: rotate-rev 3s infinite linear;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.circle-big {
    width: 210px;
    height: 210px;
    border: 4px dotted #94cb00;
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -114px;
    margin-top: -114px;
    border-radius: 214px;
    -webkit-animation: rotate-rev 10s infinite linear;
    animation: rotate-rev 10s infinite linear;
}
.circle-inner {
    width: 80px;
    height: 80px;
    background-color: rgb(133,224,242);
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -48px;
    margin-top: -50px;
    border-radius: 80px;
    -webkit-animation: pulse 1.5s infinite ease-in;
    animation: pulse 1.5s infinite ease-in;
    opacity: 1;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.circle-inner-inner {
    width: 100px;
    height: 100px;
    background-color: rgb(74,124,134);
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -58px;
    margin-top: -60px;
    border-radius: 100px;
    -webkit-animation: pulse 1.5s infinite ease-in;
    animation: pulse 1.5s infinite ease-in;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/*ANIMATIONS*/

/*rotate*/
@-webkit-keyframes rotate {
    0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}
}
@keyframes rotate {
    0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}

/*rotate-rev*/
@-webkit-keyframes rotate-rev {
    0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(-360deg);}
}
@keyframes rotate-rev {
    0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
    100% {-webkit-transform: rotate(-360deg);transform: rotate(-360deg);}
}

/*pulse*/
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.1);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(0.1);
        opacity: 0.2;
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.2;
    }
}
/*SCROLL TO TOP*/
.scroll-top-arrow {
    font-size: 18px;
    line-height: 40px;
    color: #fff !important;
    display: none;
    height: 40px;
    width: 40px;
    padding: 0;
    position: fixed;
    bottom: 50px;
    right: 50px;
    text-align: center;
    text-decoration: none;
    z-index: 99;
    background-color: #01b1ce;

}
.scroll-top-arrow:hover {
    background-color: #017fa9;
}

/*CAROUSEL IMAGES AND FADE EFFECT*/
.background-carousal {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.carousel-fade .carousel-item {
    height: 100vh !important;
}
.carousel-item:nth-child(1) {
    background: url('../img/cosmolab-slide-1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.carousel-item:nth-child(2) {
    background: url('../img/cosmolab-slide-2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.carousel-item:nth-child(3) {
    background: url('../img/cosmolab-slide-3.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.carousel-fade .carousel-inner .item {
    opacity: 0;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
    opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-control {
    z-index: 2;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

#background-carousal .carousal-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.70);
    z-index: 1;
}

/*NAVBAR FOR LARGE SCREENS*/
header .navbar-light-vision {
    top: 0;
    height: 90px;
    width: 100%;
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
    z-index: 11;
    position: absolute;
    background-color: #000105 !important;
}
.navbar-nav li a {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
    margin-left: 40px;
}
.navbar-nav li a:hover, .navbar-nav li a:focus, .navbar-nav li a.active {
    color: #3dd0e0 !important;
}
.navbar .dropdown-menu {
    background-color: #000105;
    border: none;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.dropdown-toggle::after {
    content: "\f107";
    border: none;
    vertical-align: baseline;
    width: auto;
    height: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free", serif;
    font-weight: 900;
    display: inline-block;
    margin-left: 0.255em;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navbar .dropdown:hover .dropdown-toggle::after {
    transform: scaleY(-1);
}
.navbar-nav li a.dropdown-item {
    margin-left: 17px;
    margin-right: 15px;
    font-weight: 500;
    width: auto;
}
.navbar-nav li a.dropdown-item:focus,
.navbar-nav li a.dropdown-item:hover {
    background-color: transparent;
}
.logo img {
    height: 100%;
    width: 100%;
}
.my-tog-btn {
    display: none;
    width: 25px;
    cursor: pointer;
}
.my-tog-btn span {
    background-color: white;
    margin-bottom: 5px;
    height: 2px;
    width: 100%;
    display: block;
}
.navbar-btn {
    background-color: #00b0cd;
    border-color: #00b0cd;
    cursor: pointer;
    padding: 9px 25px 9px 25px;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.navbar-btn:hover {
    background-color: #94cb00;
    border-color: #94cb00;
}
a.navbar-btn {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;;
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
}

@media screen and (min-width: 992px) {
    .navbar-nav .dropdown {
        position: static;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0.4;
        visibility: hidden;
        min-width: 260px;
        transform: scale(1, 0);
        transform-origin: 0 0;
        margin: 0;
    }

    .dropright .dropdown-menu {
        display: block;
        opacity: 0.4;
        visibility: hidden;
        transform: scale(0, 1);
        transform-origin: 0 0;
    }

    .navbar-nav .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

/**************************NAVBAR AFTER SCROLL*******************/
nav ul li a,
nav ul li a:after,
nav ul li a:before {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

nav ul li a:hover {
    color: #555;
}


/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
    position: relative;
}

nav.stroke ul li a:after,
nav.fill ul li a:after {
    position: absolute;
    bottom: 59px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    content: '.';
    color: transparent;
    background: #3dd0e0;
    height: 6px;
}

nav.stroke ul li a:hover:after,
nav.stroke ul li a.active:after {
    width: 100%;
}

nav.fill ul li a {
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}

nav.fill ul li a:after {
    text-align: left;
    content: '.';
    margin: 0;
    opacity: 0;
}

nav.fill ul li a:hover,
nav.fill ul li a.active {
    color: #fff;
    z-index: 1;
}

nav.fill ul li a:hover:after,
nav.fill ul li a.active:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;important.navbar-nav li a
}

.navbar.fixed-menu .navbar-btn {
    border: 2px solid white;
}
.navbar.fixed-menu .navbar-btn:hover,
.navbar.fixed-menu .navbar-btn:focus {
    border: 2px solid #94cb00;
    background-color: #94cb00 !important;
}
.navbar.fixed-menu {
    z-index: 11;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000105 !important;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .50);
    box-shadow: 0 0 10px rgba(0, 0, 0, .50);
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* MAIN CONTENT ON BACKGROUND IMAGE */
.main-content .main-heading {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.1;
    text-align: left;
    letter-spacing: -3px;
    color: white;
}
.detail-sec h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}
.margin-sub-heading {
    color: white;
    margin-bottom: 20px;
    margin-top: 20px;
}

.main-content .sub_heading {
    font-size: 15px;
    font-family: 'Montserrat' , sans-serif;
    line-height: 2;
    text-align: left;
}
.slider-news {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.col-height {
    height: 100vh;
}
.blue-btn {
    background-color: #01b1ce;
    border: 1px solid #01b1ce;
    cursor: pointer;
    padding: 9px 35px 9px 35px;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.green-btn {
    background-color: #94cb00;
    border: 1px solid #94cb00;
    cursor: pointer;
    padding: 9px 35px 9px 35px;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.blue-btn:hover, 
.blue-btn:not(:disabled):not(.disabled).active, 
.blue-btn:not(:disabled):not(.disabled):active, 
.show > .blue-btn.dropdown-toggle {
    background-color: #017fa9;
    border: 1px solid #017fa9;
}
.green-btn {
    background-color: #3802d2;
    border: 1px solid #3802d2;
    cursor: pointer;
    padding: 9px 35px 9px 35px;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.green-btn:hover,
.green-btn:not(:disabled):not(.disabled).active, 
.green-btn:not(:disabled):not(.disabled):active, 
.show > .green-btn.dropdown-toggle {
    background-color: #29019c;
    border: 1px solid #29019c;
}
a.btn {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;;
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
    line-height: 1.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-box {
    padding: 0 37px;
    min-height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}
.custom-box h1 {
    margin-bottom: 0;
}
.custom-box .box-text {
    font-size: 28px;
    font-family: 'Montserrat' , sans-serif;
    font-weight: 600;
    line-height: 1.143;
    text-align: left;
    letter-spacing: 0;
    position: relative;
    color: #ffffff;
}

/*****************BOXES AND ARROW BOX HOVER***************/
.arrow-box {
    position: absolute;
    background-color: #444;
    opacity: 0.6;
    font-size: 30px;
    padding: 10px 11px;
    right: 0;
    bottom: 0;
    visibility: visible;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    -webkit-animation: 0.5s fadeInUp;
    animation: 0.5s fadeInUp;
}
.arrow-box.arrow-box-hidden {
    visibility: hidden;
    -webkit-transition: ease;
    -o-transition: ease;
    transition: ease;
    -webkit-animation: 0.5s fadeInDown;
    animation: 0.5s fadeInDown;
}
.arrow-box .las{
    color: #ffffff !important;
    visibility: visible;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}
.arrow-box .las.las-hidden{
    visibility: hidden;
    -webkit-transition: ease;
    -o-transition: ease;
    transition: ease;
}
.arrow-box1 {
    position: absolute;
    background-color: #067284;
    font-size: 30px;
    padding: 10px 11px;
    right: 0;
    bottom: 0;
    visibility: hidden;
    -webkit-transition: ease;
    -o-transition: ease;
    transition: ease;
    -webkit-animation: 1s fadeInUp;
    animation: 1s fadeInUp;
}
.arrow-box1.arrow-box1-display {
    visibility: visible;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    -webkit-animation: 0.5s fadeInDown;
    animation: 0.5s fadeInDown;
}
.arrow-box1 .las {
    color: #ffffff !important;
    visibility: hidden;
    -webkit-transition: ease;
    -o-transition: ease;
    transition: ease;
}
.arrow-box1 .las.las-visible {
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    visibility: visible;
}
.custom-box:hover .arrow-box1 i {
    -webkit-animation: 1.5s rubberBand;
    animation: 1.5s rubberBand;
}
.bg-campus-icon {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}
.bg-campus-icon i {
    position: absolute;
    color: #068ba1;
    top: 15px;
    font-size: 200px;
    font-weight: 800;
    line-height: 1;
    text-transform: capitalize;
    opacity: 0;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    -webkit-animation: scale .6s alternate infinite linear both;
    animation: scale .6s alternate infinite linear both;
}
@-webkit-keyframes scale {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}
@keyframes scale {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}


.custom-box.bg-blue-color:hover {
    background: #017fa9;
}
.custom-box.bg-green-color:hover {
    background: #508c00;
}
.custom-box.bg-orange-color:hover {
    background: #bb4b01;
}
.custom-box.bg-red-color:hover {
    background: #900124;
}
.custom-box.bg-violet-color:hover {
    background: #720197;
}
.custom-box.bg-yellow-color:hover {
    background: #d49b00;
}

.custom-box:hover .arrow-box i {
    -webkit-animation: 1s rubberBand;
    animation: 1s rubberBand;
}

.bg-study-icon {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.bg-study-icon i {
    position: absolute;
    color: #6b9300;
    top: 15px;
    font-size: 200px;
    font-weight: 800;
    line-height: 1;
    text-transform: capitalize;
    opacity: 0;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    -webkit-animation: scale .6s alternate infinite linear both;
    animation: scale .6s alternate infinite linear both;
}
@keyframes scale {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

/*************************SOCIAL ICONS*********************/

.social-icon-holder {
    position: absolute;
    right: 4%;
    top: 35%;
}
main.page-content ul.social-icon {
    text-indent: 0;
    margin-left: 0;;
}
ul.social-icon li {
    list-style: none;
}
ul.social-icon li a {
    width: 40px;
    height: 40px;
    background-color: transparent;
    text-align: center;
    padding: 5px 0 0 0;
    margin: 5px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
}

ul.social-icon li a i {
    position: relative;
    color: #ffffff;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 3;
}
ul.social-icon li a:hover i {
    color: #fff;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

ul.social-icon li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 2;
}

ul.social-icon li a:hover:before {
    top: 0;
}

ul.social-icon li a:hover {
    border: 2px solid white;
    border-radius: 50px;
}

ul.social-icon li.fb a:before{
    background: #3b5999;
}

ul.social-icon li.twit a:before{
    background: #55acee;
}

ul.social-icon li.linkedin a:before {
    background: #0077b5;
}
ul.social-icon li.youtube a:before {
    background: #FF0000;
}
ul.social-icon li.insta a:before {
    background: #dd4b39;
}







/*******************MINI CAROUSEL****************/

.image-div{
    width: 100%;
    height: 216px;
    overflow: hidden;
}
.mini-slider .carousel .animation1{
    -webkit-animation: 0.6s fadeInUp;
    animation: 0.6s fadeInUp;
}
.mini-slider .carousel .animation2{
    -webkit-animation: 0.6s fadeInDown;
    animation: 0.6s fadeInDown;
}


/********************NAVBAR FOR SMALL SCREEN****************/
.outer-window{
    background-color: rgba(0, 0, 0, 0.70);
    display: none;
    color: white;
    position: fixed;
    top:0;
    right: 0;
    bottom: 0;
    z-index: 1111111;
}

.inner-window{
    display: block;
    left: 0;
    -webkit-animation: 0.5s fadeInRightFirst;
    animation: 0.5s fadeInRightFirst;
}

.navbar1{
    display: none;
}
.navbar1.nav-visible{
    display: block;
}
@-webkit-keyframes fadeInRightFirst {
    from{
        left: 100%;
    }
    to{
        left: 0;
    }
}
@keyframes fadeInRightFirst {
    from{
        left: 100%;
    }
    to{
        left: 0;
    }
}

.navbar-content{
    background-color: #000105;
    position: fixed;
    top:0;
    right: 0;
    bottom: 0;
    z-index: 111111111;
}

.middle-window{
    display: block;
    left: 25%;
    -webkit-animation: 0.5s fadeInRightcustom;
    animation: 0.5s fadeInRightcustom;
}
@-webkit-keyframes fadeInRightcustom {
    from{
        left: 100%;
    }
    to{
        left: 25%;
    }
}
@keyframes fadeInRightcustom {
    from{
        left: 100%;
    }
    to{
        left: 25%;
    }
}
.outer-window .navbar {
    position: relative;
    background-color: transparent !important;
}
.outer-window .navbar-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    padding: 20px 15px;
    display: block;
}
.outer-window .navbar-nav a.active {
    color: #3dd0e0;
}
.outer-window .nav-item a {
    
}
.outer-window .navbar-nav {
    margin-top: 20px;
}
.outer-window .close-outerwindow {
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 1111;
}
.logo-small-nav {
    margin-top: 80px;
    margin-left: 15px;
}
.outer-window .close-outerwindow i {
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
}

/*****************FEATURES SECTION START*************/
#features {
    padding-top: 125px;
    padding-bottom: 125px;
}
.main-heading {
    font-size: 45px;
    font-family: 'Montserrat' , sans-serif;
    letter-spacing: -2px;
    font-weight: normal;
}
.sub-heading {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}
.feature-icon {
    font-size: 55px;
    margin-bottom: 13px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.feature-card .card {
    border: none;
}
.feature-card .card-title {
    font-size: 20px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.feature-card .card-body {
    padding: 2rem;
}
.box {
    display: inline-block;
    float: left;
    width: 100%;
    position: relative;
    height: 100%;
    border: 1px solid #000;
    z-index: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
    margin-right: -1px;
}
.box:hover {
    z-index: 10;
}
.box:before, .box:after {
    content: "";
    display: block;
    position: absolute;
    background: white;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 1;
}
.box:before {
    width: calc(100% + 1px);
    height: 100%;
    z-index: 1;
    -webkit-transition: height 1s ease, opacity .8s ease;
    -o-transition: height 1s ease, opacity .8s ease;
    transition: height 1s ease, opacity .8s ease;
}
.box:after {
    height: calc(100% + 1px);
    width: 100%;
    z-index: 1;
    -webkit-transition: width 1s ease, opacity .8s ease;
    -o-transition: width 1s ease, opacity .8s ease;
    transition: width 1s ease, opacity .8s ease;
}
.box:hover:before, .box:focus:before {
    -webkit-transition: height .2s ease , opacity .3s ease;
    -o-transition: height .2s ease , opacity .3s ease;
    transition: height .2s ease , opacity .3s ease;
    height: 85%;
    opacity: .7;
    border: 1px solid #3802d2;
}
.box:hover:after, .box:focus:after {
    -webkit-transition: width .2s ease,  opacity .3s ease;
    -o-transition: width .2s ease,  opacity .3s ease;
    transition: width .2s ease,  opacity .3s ease;
    width: 85%;
    opacity: .8;
    border: 1px solid #00b0cd;
}
.box:hover .box__image .card-title {
    color: #1fc4dc;
}
.box:hover .box__image .card-text {
    color: #5f5d5d;
}
.box:hover .feature-icon {
    color: #94cb00;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}
.box__image {
    color: #5f5d5d;
    text-decoration: none;
    fill: #000;
    width: 100%;
    will-change: width;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 2;
}
.col-height-features{
    height: 270px;
}

/******************GET ADMISSION SECTION STARTS***************/

.bg-admission-img {
    background-image: url('../img/planetarij-bg.jpg');
    position: relative;
    min-height: 300px;
}

#get-admission .overlay-admission {
    display: block;
    position: absolute;
    left:0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.70);

}

#get-admission  .admission-text{
    margin-top: 150px;
    margin-bottom: 150px;
}

/******************PORTFOLIO SECTION START****************/
.overlay-portfolio{
    position: absolute;
    min-height: 350px;
    z-index: 999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00b0cdd1;
}

.col-height-portfolio{
    height: 100%;
}


/*****************OUR STUFF SECTION START**************/
#teachers{
    background: #f6f6f6;
    padding-top: 125px;
    padding-bottom: 125px;
}
.quotes{
    position: absolute;
    font-size: 12rem;
    z-index: 2;
    display: inline-block;
    right: 11%;
    bottom: 37%;
    -webkit-transform: rotate(33deg);
    -ms-transform: rotate(33deg);
    transform: rotate(33deg);
    color: #f6f6f6;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.testimonial-owl{
    cursor: pointer;
}
.testimonial-owl:hover .quotes{
    color: #94cb00 !important;
    opacity: 0.4;
}

.team-box,
.team-box .team-content,
#ourteachers-slider .center .team-box .team-content{
    -webkit-transition: all .3s ease-in .1s;
    -o-transition: all .3s ease-in .1s;
    transition: all .3s ease-in .1s;
}
.team-box {
    position: relative;
    padding: 20px 20px 50px 20px;
    overflow: hidden;
}
.team-box .team-content {
    background: #00b0cd;
    padding: 30px 1.25rem;
    bottom: 0;
    left: 20px;
    right: 20px;
    text-align: center;
}
.team-box .team-content a {
    color: #3802d2;
}
.team-box .team-content a:hover, .team-box .team-content a:focus {
    color: #eee;
}
#ourteachers-slider .center .team-box .team-content {
    background: #94cb00;
    padding: 30px 1.25rem;
    bottom: 0;
    left: 20px;
    right: 20px;
    text-align: center;
}

.team-box .team-content h3 {
    font-weight: normal;
    font-size: 1.75rem;
    font-family: 'Montserrat' , sans-serif;
    margin-bottom: 0;
    line-height: 1.3;
}

.team-box .team-content p, .team-box .team-content p:last-child {
    font-size: 12px;
    font-family: 'Open Sans' , sans-serif;
    margin-bottom: 0 !important;
}

#ourteachers-slider .owl-dots{
    margin-top: 70px !important;
    text-align: center;
}

#ourteachers-slider .owl-dots .owl-dot.active span, .owl-testimonial .owl-dots .owl-dot:hover span{
    background: #00b0cd;
}

#ourteachers-slider .owl-dots .owl-dot span{
    background: white;
    border: 2px solid #00b0cd;
    border-radius: 50px;
    font-size: 0;
    padding: 5px;
    margin: 3px;
    text-align: center;
}

/****************Progress Bars**************8*/
.progress-bars .progress {
    position: relative;
    overflow: visible;
    height: 8px;
    border-radius: 3px;
    opacity: 1;
    background-color: #e2f0f3a1;
}

.progress-bars .progress + .progress {
    margin-top: 40px;
}

.progress-bars .progress p {
    margin-bottom: 10px;
    position: relative;
    left: 0;
    display: inline-block;
}

.progress-bars .progress p,
.progress-bars .progress .progress-bar span {
    top: -28px;
}

.progress-bars .progress .progress-bar {
    width: 60%;
    float: none;
    position: absolute;
    height: 100%;
    border-radius: 3px;
    -webkit-transition: width 1s ease-in-out .3s;
    -o-transition: width 1s ease-in-out .3s;
    transition: width 1s ease-in-out .3s;
    background-color: #ffffff;
    border: 1px solid white;
}

.progress-bars .progress .progress-bar span {
    display: block;
    position: absolute;
    right: 0;
    width: 40px;
    padding: 0;
}

/*********************TESTIMONIAL********************/
#testimonial{
    margin-bottom: 125px;
}

.bg-video-img {
    background-image: url('../img/video-bg.jpg');
    position: relative;
    min-height: 450px;
}

.overlay-testimonial {
    display: block;
    position: absolute;
    left:0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #000000b8;
}

.video-container{
    padding-top: 5%;
    padding-bottom: 4%;
    text-align: center;
}
.testimonial-owl{
    background-color: #ffffff;
    margin-bottom: 5%;
    margin-top: 5%;
}
.testimonial-owl .item .student-img{
    border: 3px solid #94cb00;
    width: 125px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    border-radius: 100px;
    padding: 6px;
    -webkit-box-shadow: 1px 1px 14px #94cb00;
    box-shadow: 1px 1px 14px #94cb00;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    font-size: 53px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover{
    font-size: 53px;
    color: #00b0cd;
}
.owl-carousel .owl-prev span{
    position: absolute;
    left: 8%;
    top: 48%;

}
.owl-carousel .owl-next span{
    position: absolute;
    right: 8%;
    top: 48%;
}
.testimonial-owl .item .student-img img{
    border-radius: 100px;
}
.testimonial-owl .item .description .width-text{
    margin-left: 20%;
    margin-right: 20%;
}

/*******************BLOG SECTION**************/
#blog {
    padding-top: 125px;
    padding-bottom: 125px;
}
.blog-text {
    margin-top: 35px;
}
.blog-text .info-blog {
    letter-spacing: 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.blog-text .blog-description {
    line-height: 1.5;
    letter-spacing: 0;
}
.blog-item {
    cursor: pointer;
    padding: 40px 30px;
    margin: 5px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.blog-item:hover {
    -webkit-box-shadow: 1px 1px 14px #e1e1e1;
    box-shadow: 1px 1px 14px #e1e1e1;
    -webkit-transform: translateY(-16px);
    -ms-transform: translateY(-16px);
    transform: translateY(-16px);
}
.blog-item:hover .hover-heading {
    color: #94cb00;
}
.blog-item:hover .sub-heading {
    color: #00b0cd;
}
.hover-heading, .sub-heading {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
#blog-carousal .center .navbar-btn {
    background-color: #94cb00;
    border-color: #94cb00;
    cursor: pointer;
    padding: 9px 25px 9px 25px;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
#blog-carousal .center .navbar-btn:hover {
    background-color: #00b0cd;
    border-color: #00b0cd;
}
#blog-carousal .owl-dot {
    margin-top: 50px !important;
    text-align: center;
}

#blog-carousal .owl-dots .owl-dot.active span, .owl-testimonial .owl-dots .owl-dot:hover span {
    background: #00b0cd;
}

#blog-carousal .owl-dots .owl-dot span {
    background: white;
    border: 2px solid #00b0cd;
    border-radius: 50px;
    font-size: 0;
    padding: 5px;
    margin: 3px;
    text-align: center;
}

.owl-carousel .owl-dots.disabled {
    display: block;
}

/* FOOTER */
.footer {
    background-color: #000105;
    color: #bbb;
    font-size: 15px;
    padding-top: 30px;
    padding-bottom: 50px;
    margin-top: 60px;
}
.portal .footer {
    margin-top: 0;
}
.footer .footer-container {
    border-bottom: solid 1px #012c58;
    padding-bottom: 20px;
}
.footer .footer-content {
    padding-top: 20px;
}
ul.footer_ul {
    list-style: none;
    display: inline-block;
}
li.footer_list {
    display: inline-block;
    margin-right: 15px;
    font-size: 19px;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.footer h4 {
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding-top: 33px;
    margin-bottom: 23px;
}
.footer .logo-footer {
    margin-bottom: 25px;
}
.footer p {
    margin: 0;
}
.footer ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0px;
}
.footer a {
    color: #01b1ce;
    text-decoration: none;
}
.footer a:hover, .footer a:focus {
    color: #fff;
}
.footer ul li a {
    color: #bbb;
    text-decoration: none;
}
.footer ul li a:hover, .footer ul li a:focus {
    color: #01b1ce;
}
.logo-footer {
    margin-bottom: 25px;
}
.footer-icon {
    margin-bottom: 10px;
}
.footer_text {
    text-align: center;
}
ul.footer-icon li a:hover i {
    color: #fff;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
ul.footer-icon li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 2;
}

ul.footer-icon li a:hover:before {
    top: 0;
}
ul.footer-icon li a:hover {
    border: 2px solid white;
    border-radius: 50px;
}
.social-icons-simple li {
    display: inline-block;
    padding: 15px 0px 15px 0px;
    color: #000000;
}
.fa-facebook-f {
    color: #3b5999;
}
.fa-twitter {
    color: #00acee;
}
.fa-linkedin-in {
    color: #0e76a8;
}
.fa-youtube-square {
    color: #FF0000;
}
.fa-instagram {
    color: #dd4b39;
}

ul.footer-icon li:nth-child(1) a:before{
    background: #3b5999;
}
ul.footer-icon li:nth-child(2) a:before{
    background: #55acee;
}
ul.footer-icon li:nth-child(3) a:before {
    background: #ff0000;
}
ul.footer-icon li:nth-child(4) a:before {
    background: #dd4b39;
}

ul.footer-icon li a {
    width: 50px;
    height: 50px;
    background-color: transparent;
    text-align: center;
    padding: 10px 0 0 0;
    margin: 5px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
}

ul.footer-icon li a i {
    position: relative;
    /*color: #ffffff;*/
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 3;
}

ul.footer-icon li{
    list-style: none;
}

/* TEXT PAGE, SUBPAGE */
.sub-content h2 {
    margin-bottom: 30px;
}
.area-image {
    margin-bottom: 50px;
}
.textgrey {
    background-color: #eee;
    padding: 30px 30px 5px;
    margin-bottom: 50px;
}
.minimal-image {
    margin-bottom: 40px;
}
.pim-text {
    margin-bottom: 40px;
}
/*.pim-text p, .textgrey p {
    margin-bottom: 0;
}*/
.subtit-h2 h2 {
    font-weight: 500;
    color: #3802d2;
    font-size: 24px;
    margin-bottom: 15px;
}
.subtit-h3 h3 {
    font-weight: 500;
    color: #3802d2;
    font-size: 18px;
    margin-bottom: 15px;
}

/* CONTACT US */
.bg-contact-img{
    background-image: url('../img/contact-us/contact-header.png');
    position: relative;
}
.overlay-contact{
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.70);
}
.row-height{
    height: 50vh;
}

#contactus-header .main-heading{
    font-size: 46px;
    font-family: 'Montserrat' , sans-serif;
    font-weight: 500;
}
#contact-content{
    padding-top: 125px;
    padding-bottom: 125px;
}
.contact-card.card{
    border: none;
    cursor: pointer;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
}
.contact-card.card:hover.contact-card .location-icon{
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}
.contact-card .location-icon{
    font-size: 60px;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}
.contact-card .card-text{
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.contact-card .card-title{
    margin-top: 20px;
    margin-bottom: 6px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.form-outer{
    -webkit-box-shadow: 0 0 7px rgba(0,0,0,.50);
    box-shadow: 0 0 7px rgba(0,0,0,.50);
    background: white;
    padding: 3% 4%;
    position: absolute;
    bottom: 6.5%;
    right: 9%;
    z-index: 10;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    text-align: center;
    margin-bottom: 10px;
}

.contact-btn{
    background-color: #00b0cd;
    border: 1px solid #00b0cd;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.contact-btn:hover{
    background-color: #94cb00;
    border: 1px solid #94cb00;
}

.form-control{
    font-family: 'Montserrat' , sans-serif;
}
#contact-description{
    padding-top: 125px;
}
/*!*****MAP SECTION/*/
#map{
    overflow: hidden !important;
}
.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
}
.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:100%;
    width:100%;
}

/******************ABOUT US PAGE START***********/
header .navbar-dark-vision {
    top: 0;
    overflow: hidden;
    height: 90px;
    width: 100%;
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
    /*z-index: 11;*/
    position: relative;
    background-color: #00b0cd !important;
}
header .navbar-dark-vision .navbar-btn{
    border: 2px solid white;
}
header .navbar-dark-vision .navbar-btn:hover{
    border: 2px solid #94cb00;
}
.bg-about-img{
    background-image: url('../img/about-header.png');
    position: relative;
}
#about-header .main-heading{
    font-size: 46px;
    font-family: 'Montserrat' , sans-serif;
    font-weight: 500;
}
.width-heading{
    width: 393px;
    margin-right: auto;
}
.about-heading{
    font-size: 22px;
    font-family: 'Montserrat' , sans-serif;
}
.about-content span{
    font-size: 40px;
}
.text-width{
    width: 499px;
    margin-left: auto;
    margin-right: auto
}
.bg-counter-img{
    background-image: url('../img/testimonial2.png');
    position: relative;
}
.counter-heading{
    margin-left: auto;
    text-align: center;
    margin-right: auto;
}

.wrapper{
    margin-top: 80px;
    margin-bottom: 80px;
    cursor: pointer;
}

.counter {
    padding: 0;
    border-radius: 5px;
    text-align: center;
}
.counter_plus{
    font-size: 25px;
    font-weight: bold;
}
.count-title {
    font-size: 30px;
    font-family: 'Montserrat' , sans-serif;
    color: #94cb00;
    font-weight: bold;
    line-height: 1.333;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}
.wrapper:hover .counter_icon{
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

.count-text {
    font-family: 'Montserrat' , sans-serif;
    margin: 0;
    text-align: center;
}
.counter_icon {
    margin: 0 auto;
    float: none;
    display: table;
    font-size: 60px;
    padding-bottom: 5px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
/*#counter{*/
/*    padding-top: 125px;*/
/*}*/

/*************COURSES PAGE START***************/
.bg-courses-img{
    background-image: url('../img/courses/courses-header.png');
    position: relative;
}
#content-courses{
    padding-bottom: 125px;
}
.courses .main-heading{
    font-size: 23px;
    font-family: 'Montserrat' , sans-serif;
    letter-spacing: -1px;
    font-weight: 400;
    margin-top: 15px;
}
.courses .course-text{
    border-top: 1px solid #e1e1e1;
}
.courses .sub-heading{
    font-size: 13px;
    font-family: 'Open Sans' , sans-serif;
    margin-bottom: 15px;
}
.courses .navbar-btn{
    background-color: #94cb00;
    border-color: #94cb00;
    cursor: pointer;
    padding: 6px 20px 6px 20px;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.courses .navbar-btn:hover{
    background-color: #00b0cd;
    border-color: #00b0cd;
}
.course-link{
    text-decoration: none;
    font-family: 'Montserrat' , sans-serif;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.course-link:hover{
    color: #94cb00;
    margin-left: 12px;
}

/***IMAGE HOVER EFFECT***/
.snip1295 {
    position: relative;
    overflow: hidden;
    padding: 8px;
    width: 100%;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: .8s ease;
    -o-transition: .8s ease;
    transition: .8s ease;
}
.snip1295 img {
    max-width: 100%;
    vertical-align: top;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -webkit-transition: .8s ease;
    -o-transition: .8s ease;
    transition: .8s ease;
}
.border {
    border: 0 solid #dee2e6 !important;
}
.snip1295 .border {
    position: absolute;
    opacity: 0.6;
}
.snip1295 .border:before,
.snip1295 .border:after
{
    background-color: #00b0cd;
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.snip1295 .border div:before,
.snip1295 .border div:after {
    background-color: #94cb00;
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.snip1295 .border:before,
.snip1295 .border:after {
    width: 0;
    height: 1px;
}
.snip1295 .border div:before,
.snip1295 .border div:after {
    width: 1px;
    height: 0;
}
.snip1295 .border.one {
    left: 0;
    top: 0;
    right: 12px;
    bottom: 12px;
}
.snip1295 .border.one:before,
.snip1295 .border.one div:before {
    left: 0;
    top: 0;
}
.snip1295 .border.one:after,
.snip1295 .border.one div:after {
    bottom: 0;
    right: 0;
}
.snip1295 .border.two {
    left: 12px;
    top: 12px;
    right: 0;
    bottom: 0;
}
.snip1295 .border.two:before,
.snip1295 .border.two div:before {
    right: 0;
    top: 0;
}
.snip1295 .border.two:after,
.snip1295 .border.two div:after {
    bottom: 0;
    left: 0;
}
.snip1295 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}
.snip1295:hover .border:before,
.snip1295.hover .border:before,
.snip1295:hover .border:after,
.snip1295.hover .border:after {
    width: 100%;
}
.snip1295:hover .border div:before,
.snip1295.hover .border div:before,
.snip1295:hover .border div:after,
.snip1295.hover .border div:after {
    height: 100%;
}
.snip1295:hover img{
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
}

/*************COURSE DETAIL PAGE START*************/

#detail-content{
    padding-top: 125px;
}
.bg-course-detail-img{
    background-image: url('../img/courses/course-detail-header.png');
    position: relative;
}
.left-menu .main-heading {
    font-size: 25px;
    margin-top: 30px;
    letter-spacing: -1px;
}
.main-heading-detail{
    font-size: 38px;
    letter-spacing: -2px;
    font-weight: normal;
}
ul.stars{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    color: yellow;
}
span.text-star{
    font-size: 15px;
    margin-left: 30px;
}
.border-bottom{
    border-bottom: 1px solid #e1e1e1;
}
.left-menu .sub-heading {
    font-size: 18px;
    margin-top: 25px;
}
.instructor{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
span.sub-heading.text-white{
    margin-left: 20px;
    margin-top: 10px;
}
.img-instrc{
    border-radius: 50%;
    width: 55px;
    height: auto;
}
.enroll-btn{
    background-color: #94cb00;
    border: 2px solid #94cb00;
    cursor: pointer;
    padding: 9px 35px 9px 35px;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.enroll-btn:hover {
    background-color: #00b0cd;
    border: 2px solid #ffffff;
}
/****CIRUCULLUM SECTION START*****/
.accordion {
    background-color: #fefffa;
    margin-top: 15px;
    margin-bottom: 50px;
    line-height: 1.6;
}
.accordion__item {
    border-bottom: 1px solid #dce7eb;
}
.accordion__item:last-child {
    border-bottom: none;
}
.accordion__title {
    font-size: 1.25rem;
    font-family: 'Montserrat' , sans-serif;
    font-weight: 500;
    line-height: 1.2;
    padding: 15px 15px 15px 40px;
    display: block;
    position: relative;
}
.accordion__title:before {
    content: '+';
    font-size: 25px;
    position: absolute;
    left: 15px;
    top: 12px;
    color: #94cb00;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.accordion__title h5 {
    display: inline-block;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.accordion__title:hover, .accordion__title:focus {
    cursor: pointer;
    outline: none;
}
.accordion__title:hover h5 {
    display: inline-block;
    color: #00b0cd;
}
.is-expanded .accordion__title:before {
    content: "+";
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;

}
.accordion__content-inner {
    padding: 0 40px 10px 40px;
}
.accordion__content {
    -webkit-transition: height 0.3s ease-out;
    -o-transition: height 0.3s ease-out;
    transition: height 0.3s ease-out;
    height: 0;
    overflow: hidden;
}

/*******************BLOG PAGE START*******************/
.sub-title {
    padding: 150px 0 50px;
}
.sub-title h1 {
    font-size: 45px;
    color: #3802d2;
    letter-spacing: -2px;
    font-weight: normal;
}
.bg-blog-img{
    background-image: url('../img/blog/blog-header.png');
    position: relative;
}
.grey_bg{
    background-color: #f6f6f6;
}
/*..............SEARCH...........*/
.pt-lg-10{
    padding-top: 7rem;
}
.btn.focus, .btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem transparent;
    box-shadow: 0 0 0 0.2rem transparent;
}
.search_outerbox{
    background-color: #f6f6f6;
    width: auto;
    height: auto;
}
.input-group{
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 35px;
    padding-right: 38px;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #94cb00;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem transparent;
    box-shadow: 0 0 0 0.2rem transparent;
}
.form-control{
    font-family: 'Montserrat', sans-serif;
}
.btn-search {
    background-color: #94cb00;
    border-radius: 0;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #94cb00;
    -webkit-animation: 0.5s ease;
    animation: 0.5s ease;
}
.btn-search:link, .btn-search:visited, .btn-search:focus {
    color: #fff;
}
.btn-search:active, .btn-search:hover {
    background-color: #00b0cd;
    color: white;
    border-color: #00b0cd;
}

/*............TOPIC..............*/
.topic-outerbox {
    height: auto;
    width: auto;
    background-color: #f6f6f6;
    padding-bottom: 15px;
}
.topic-outerbox h2 {
    font-size: 26px;
    padding: 30px 30px 10px;
    letter-spacing: -1px;
}
.topic-outerbox ul {
    list-style: none;
    padding: 0;
    margin: 0 !important;
    text-indent: 0 !important;
}
.topic-outerbox ul li {
    text-decoration: none;
    padding-top: 7px;
    padding-bottom: 7px;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden !important;
    font-family: 'Montserrat', sans-serif;
}
.topic-outerbox ul li a {
    text-decoration: none;
    color: #5f5d5d;
}
.topic-outerbox ul ul {
    margin-left: 15px !important;
}
.topic-outerbox ul li ul li {
    padding-bottom: 0;
}
.topic-outerbox ul li ul li a {
    font-size: 14px;
}
.topic-outerbox ul li a:hover, .topic-outerbox ul li a.active {
    color: #00b0cd;
}

.dots {
    letter-spacing: 6.5px;
    font-size: 16px;
    font-weight: normal;
}
.inner-box {
    margin-left: 13%;
    margin-right: 13%;
    text-align: center
}
.inner-box1 {
    padding: 0 30px;
}
.image {
    height: 100%;
    width: 100%;
}
/*.............POPULAR POST..............*/
.post-content hr {
    margin-top: 40px;
}
.post-content h3 {
    font-weight: 500;
    color: #3802d2;
    font-size: 18px;
    margin-bottom: 15px;
}
.post-content a.btn {
    margin-top: 50px;
}
.outer_popular {
    height: auto;
    width: auto;
    background-color: #f6f6f6;
    padding-bottom: 35px;
}
.outer_popular h2 {
    font-size: 26px;
    padding-left: 42px;
    padding-top: 30px;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.pt-lg-4 {
    padding-top: 2rem;
}
.popular_image {
    height: 100%;
    width: 35%;
}
.outer {
    margin-right: 13%;
    margin-left: 13%;
}
.text_post {
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: auto;
}
.main {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    line-height: 18px;
    letter-spacing: 0;
    font-family: 'Montserrat' , sans-serif;
}
.date {
    color: gray;
    font-size: 14px;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}
.text_post span {
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    letter-spacing: 0;
    font-family: 'Montserrat', sans-serif;
}
.main:hover {
    color:#00b0cd;
}
.text_post span:hover {
    color: #00b0cd;
}
/*..............TAGS.................*/
.outer_tag {
    height: auto;
    width: auto;
    background-color: #f6f6f6;
    padding-bottom: 30px;
}
.main_tag {
    font-size: 26px;
    padding-left: 42px;
    padding-top: 30px;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
span {
    display: unset;
}
.inner_tag {
    margin-left: 13%;
    margin-right: 13%;
}
.tag_text a:hover {
    color: white;
    background-color: #00b0cd;
    border: solid 1px transparent;
}
.tag_text a {
    text-decoration: none;
    color: #333333;
    font-size:14px;
    border: solid 1px #ced4da;
    padding: 5px 12px 5px 12px;
    margin-top: 9px;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}
.sale_img {
    width: 100%;
    height: 100%;
}
.img-area img {
    height: 100%;
    width: 100%;
}
/*..............MINIMAL POST.................*/
.text_minimal {
    padding-bottom: 40px;
    margin-bottom: 40px;
    letter-spacing: 0;
}
.text_minimal a {
    text-decoration: none;
}
.text_minimal h2 {
    font-size: 25px;
    color: #5f5d5d;
    font-weight: 500;
    font-family: 'Montserrat' , sans-serif;
    letter-spacing: 0;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    cursor: pointer;
}
.text_minimal h2:hover {
    color: #00b0cd;
}
.display .date {
    color: #3802d2;
    font-size: 15px;
    font-family: 'Montserrat' , sans-serif;
    margin-top: 0;
}
.verticle_line {
    height: 25px;
    width: 2px;
    background-color: #ccc;
}
.margin_1 {
    margin-left: 20px;
}
.display span {
    margin-left: 18px;
    font-size: 15px;
    font-family: 'Montserrat' , sans-serif;
}
.post-content .display {
    margin-bottom: 40px;
}
.post-content .minimal-image {
    margin-bottom: 15px;
}
.minimal-image a img {
    filter: grayscale(0%);
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}
.minimal-image a img:hover {
    filter: grayscale(50%);
}
.subpages {
    margin-top: 50px;
}
.subpages h3 {
    font-size: 20px;
    color: #5f5d5d;
    font-weight: 500;
    font-family: 'Montserrat' , sans-serif;
    letter-spacing: 0;
    margin-bottom: 0;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    cursor: pointer;
}
.subpages h3:hover {
    color: #00b0cd;
}
.text_dummy {
    font-family: 'Open Sans' , sans-serif;
    margin-top: 15px;
    letter-spacing: 0.2px;
}
.display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.divider {
    border: 0.1px solid #dbdbdb;
    margin-top: 3.5rem;
}
.divider1 {
    border: 0.5px solid #dbdbdb;
    margin-top: 3rem;
}
.mt-sm-10 {
    margin-top: 30px;
}
.list-flash {
    margin-bottom: 25px;
}

/* project navigation */
.project-navigation {
    padding-top: 0;
    padding-bottom: 60px;
}

.project-navigation .nav-left {
    width: 90%;
    text-align: left;
}

.project-navigation .nav-right {
    width: 90%;
    text-align: right;
}

.project-navigation a.left-row,
.project-navigation a.right-row {
    display: flex;
    align-items: center;
}

.project-navigation .left-row .left-arr-d,
.project-navigation .right-row .right-arr-d {
    transition: .8s ease-in-out;
}

.project-navigation .left-row .left-arr-d {
    padding-left: 15px;
}

.project-navigation .left-row:hover .left-arr-d {
    padding-left: 5px;
}

.project-navigation .right-row .right-arr-d {
    padding-right: 15px
}

.project-navigation .right-row:hover .right-arr-d {
    padding-right: 5px;
}

.project-navigation a {
    color: #000;
}

.project-navigation h5 {
    transition: .3s ease;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.project-navigation a:hover h5 {
    color: #0292e2;
    text-decoration: none;
}

.project-navigation a .links,
.project-navigation a:hover .links {
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
    opacity: .8;
}

.project-navigation a .project-arrow-1 {
    text-align: center;
    transition: .3s ease;
}

.project-navigation a .project-arrow-1 i {
    color: #FFBF00;
    font-size: 42px;
}

.project-navigation a:hover .project-arrow-1 i {
    color: #0292e2;
}

.project-navigation a .project-arrow-2 {
    color: #222;
}

.project-navigation a:hover .project-arrow-2 {
    color: #0292e2;
}


/* Pagination */
.pagination {
    border-radius: 0;
    text-indent: 0px !important;
}

.page-link {
    margin-left: -1px;
    color: #0292e2;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    color: #0292e2 !important;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6 !important;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff !important;
    background-color: #666;
    border-color: #666;
    margin-left: 0;
    margin-right: 1px;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

/*************BLOG DETAIL PAGE START******************/
.bg-blog-detail-img{
    background-image: url('../img/blog/blog-detail-header.png');
    position: relative;
}

.blog_detail-heading{
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;
}
.text_minimal ul{
    color: #333333;
}
.mt-40{
    margin-top: 70px;
}
.mejs__controls:not([style*='display: none']) {
    background: black;
}
.quote_text .quote{
    font-style: italic;
    font-size: 24px;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    cursor: pointer;
    width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    text-align: right;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}
.quote_text:hover .quote{
    color: #00b0cd;
}
.quote_text:hover .verticle_lineQ{
    background-color: #94cb00;
}
.quote_text{
    margin-bottom: 20px;
}
.verticle_lineQ {
    width: 2.3px;
    height: 75px;
    background-color:#33c9dd;
    text-align: right;
    margin-top: -87px;
    margin-left: 38.7rem;
}
.blogN_images img{
    height: 100%;
    width: 100%;
}
.pt-6{
    padding-top: 40px;
}
.written_outerbox{
    height: auto;
    width: auto;
    background-color: #f6f6f6;
}
.written_outerbox .written_img {
    width: 20%;
    border-radius: 50%;
    border: 1px solid transparent;
    margin-left: 60px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.written_text {
    margin-top: auto;
    margin-left: 20px;
    margin-bottom: auto;
}
.main_written{
    font-size: 24px;
    font-family: 'Montserrat' , sans-serif;
}
.comment_text{
    font-size: 24px;
    text-align: center;
}
.user_icon{
    color: white;
    font-size: 60px;
    background: #00b0cd;
    width: 90px;
    height: 90px;
    padding-top: 13px;
    padding-bottom: 15px;
    border-radius: 50px;
    padding-left: 19px;
    padding-right: 15px;
}
.icon_text{
    margin-bottom: auto;
    margin-top: auto;
    padding-left: 20px;
}
.height{
    line-height: 25px;
    font-size: 17px;
    padding-top: 10px;
}
.font{
    font-size: 21px;
}
.icon_comment{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
}
.margin_days {
    font-size: 18px;
    margin-bottom: 10px;
}
.mt-6{
    margin-top: 70px;
}



.height1{
    height: 285px;
}
.height2{
    height: 255px;
}

/******************************GALLERY PAGE START******************************/
.bg-gallery-img{
    background-image: url('../img/gallery-header.png');
    position: relative;
}

/*filters*/
.cbp {
    margin-top: 25px;
}
.cbp-l-filters .cbp-filter-item {
    cursor: pointer;
    margin: 15px;
    display: inline-block;
}
.cbp-l-filters .cbp-filter-item span {
    font-size: 16px;
    font-family: 'Montserrat' , sans-serif;
    display: inline-block;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.cbp-l-filters .cbp-filter-item-active {
    cursor: default;
}
.cbp-l-filters .cbp-filter-item:hover span {
    color: #94cb00;
}
.cbp-l-filters .cbp-filter-item-active span,
.cbp-l-filters .cbp-filter-item:focus span {
    color: #00b0cd;
    cursor: pointer;
}
.portfolio-xe{
    padding-top: 125px;
    padding-bottom: 125px;
}

/********PORTFOLIO HOVER EFFECT*******/
.portfolio-xe .flat-pictures .cbp-item .overlay{
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    top:15px;
    background:-o-linear-gradient(45deg, rgba(0, 176, 205, 0.50) 20%, rgba(148, 203, 0, 0.50) 100%);
    background:linear-gradient(45deg, rgba(0, 176, 205, 0.50) 20%, rgba(148, 203, 0, 0.50) 100%);
    z-index: 111;
    opacity: 0;
    -webkit-transition: .8s ease;
    -o-transition: .8s ease;
    transition: .8s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.portfolio-xe .flat-pictures .cbp-item:hover .overlay{
    opacity: 1;
}
.portfolio-xe .flat-pictures .cbp-item .overlay .plus-gallery{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    /*display: flex;*/
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: solid 2px #fff;
    background-color: transparent;
    display: none;
}
.portfolio-xe .flat-pictures .cbp-item .overlay .plus-gallery i{
    color: #fff;
    font-size: 30px;
}
.portfolio-xe .flat-pictures .cbp-item:hover .overlay .plus-gallery{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation:1s fadeInUp;
    animation:1s fadeInUp;
}

/*inputs*/
input, select, textarea {
    outline: none;
    appearance: unset !important;
    -moz-appearance: unset !important;
    -webkit-appearance: unset !important;
    -o-appearance: unset !important;
    -ms-appearance: unset !important;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    -o-appearance: none !important;
    -ms-appearance: none !important;
    margin: 0;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -o-box-shadow: none !important;
    -ms-box-shadow: none !important;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 30px white inset;
    -moz-box-shadow: 0 0 0 30px white inset;
    -webkit-box-shadow: 0 0 0 30px white inset;
    -o-box-shadow: 0 0 0 30px white inset;
    -ms-box-shadow: 0 0 0 30px white inset;
}
.form-tittle {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-family: 'Montserrat' , sans-serif;
    font-size: 25px;
    margin-bottom: 20px;
}
.appointment-form {
    padding: 30px 30px 50px 30px;
}
input, select {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 2px solid #ebebeb;
    padding: 5px 0;
    color: #222;
    margin-bottom: 23px;
    font-family: 'Montserrat' , sans-serif;
}
input:focus, select:focus {
    color: #222;
    border-bottom: 2px solid #94cb00;
}
input[type=checkbox]:not(old) {
    width: 2em;
    margin: 0;
    padding: 0;
    font-size: 1em;
    display: none;
}
input[type=checkbox]:not(old) + label {
    display: inline-block;
    margin-top: 7px;
    margin-bottom: 25px;
}
input[type=checkbox]:not(old) + label > span {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 15px;
    margin-bottom: 3px;
    border: 1px solid #ebebeb;
    background: white;
    background-image: -o-linear-gradient(white, white);
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
    background-image: linear-gradient(white, white);
    vertical-align: bottom;
}
input[type=checkbox]:not(old):checked + label > span {
    background-image: -o-linear-gradient(white, white);
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
    background-image: linear-gradient(white, white);
}

#confirm_type {
    margin-bottom: 20px;
}

.form-group-2 {
    margin-top: 15px;
    margin-bottom: 30px; }

.form-check {
    margin-bottom: 20px; }

.select-list {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}

.list-item {
    position: absolute;
    width: 100%;
}


/* X icon hack */
.fa-twitter::before {
    display: inline-block;
    content: "";
    /* Dimenzije prilagodite po potrebi, običajno 1em */
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    /* Ikona bo iste barve kot besedilo */

    /* Uradna SVG oblika logotipa X */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}