/********** Template CSS **********/
:root {
    --primary: #355efc;
    --secondary: #e93c05;
    --tertiary: #555555;
    --light: #dfe4fd;
    --dark: #011a41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.p-4 {
    padding: 12px !important;
}
h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}

.fixed-top {
    transition: 0.5s;
}
.bg-white {
    background-color: #fff !important;
}

.preloaderBg {
    position: fixed;
    z-index: 10;
    top: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
}
.preloader {
    margin: auto;
    background: url(../images/logo-loader.png) no-repeat center;
    background-size: 127px;
    width: 300px;
    height: 300px;
}
.preloader2 {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #f00;
    border-radius: 50%;
    width: 194px;
    height: 194px;
    animation: spin 1s ease-in-out infinite;
    position: relative;
    margin: auto;
    top: -249px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*** Button ***/
.btn {
    transition: 0.5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 26px;
    height: 26px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.fixed-top {
    transition: 0.5s;
}

.top-bar {
    height: 45px;
    background-color: #000;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 12px 15px;
    color: #fff;
    font-weight: 600;
    outline: none;
}
.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 1rem !important;
}
.no-margin {
    margin: 0 !important;
}
.donate {
    background-color: #d82674;
    font-size: 16px;
    color: #fff;
    border: none;
    padding: 3px 10px 3px 10px;
}
.donate:hover {
    background-color: #d82674;
    font-size: 16px;
    color: #000;
    border: none;
    padding: 3px 10px 3px 10px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #d82674;
}
.logo {
    width: 83%;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        background: #ffffff;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 0.5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background: url(../images/header.jpg) top left no-repeat;
    background-size: cover;
}
.page-header2 {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background: url(../images/about-banner.jpg) top left no-repeat;
    background-size: cover;
}
.who {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: url(../images/who.png) no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #e3e4e5;
}
.up {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background: url(../images/upcoming.png) top left no-repeat;
    background-size: cover;
}
.asi {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background: url(../images/asi.png) top left no-repeat;
    background-size: cover;
}
.reg {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background: url(../images/reg.png) top left no-repeat;
    background-size: cover;
}
.cont {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background: url(../images/cont.png) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--tertiary);
}

/*** Facts ***/
.facts {
    background: linear-gradient(rgb(216 38 116), rgb(227 64 135)),
        url(../img/bg.png);
}

/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(
            rgba(53, 94, 252, 0.95),
            rgba(53, 94, 252, 0.95)
        ),
        url(../img/bg.png);
    z-index: -1;
}

/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: 0.5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #ffffff !important;
}

/*** Service ***/
.service .nav .nav-link {
    transition: 0.5s;
}

.service .nav .nav-link.active {
    border-color: #d82674 !important;
    background: #d82674;
}

.service .nav .nav-link.active h5 {
    color: #ffffff !important;
    font-size: 18px;
}
.service .nav .nav-link.active h5 i {
    color: #ffffff !important;
}

/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: 0.5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: 0.5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: 0.5s;
}

.project-item:hover .project-title h4 {
    color: #ffffff;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: 0.5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}

/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: 0.5s;
}

.team-item:hover .team-text h4 {
    color: #ffffff;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #ffffff;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #ffffff transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000b1c;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

/*--about-starts--*/
.about-info {
    margin: 105px 0px 0 200px;
}

.about-info h3 {
    font-size: 36px;
    /*margin:0 0 40px 0;*/
    color: #e47b33;
    font-family: "SourceSansPro-Bold";
}

.services-left {
    float: left;
    height: 383px;
    margin: 4px 0;
    padding: 13px;
    width: 25%;
}

.them {
    background: #f8b425 none repeat scroll 0 0;
    height: 273px;
    margin: 0;
    padding: 14px;
    width: 100%;
}

.them span {
    color: #fff;
    float: left;
    font-size: 1em;
    margin: 0;
    text-align: left;
    width: 100%;
}
.f-left {
    float: left;
}
.red {
    color: #d01c5f !important;
}
.white {
    color: #fff;
}
.more {
    background-color: #ca094d;
    color: #fff;
    font-size: 15px;
    padding: 6px 15px 6px 15px;
}
.more:hover {
    color: #000;
}
.btn-primary {
    color: #fff;
    background-color: #d82674;
    border-color: #d82674;
}
.btn-primary:hover {
    color: #fff;
    background-color: #d82674;
    border-color: #d82674;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #d82674;
    border-color: #d82674;
    box-shadow: 0 0 0 0.25rem #d82674;
}
.mt-6 {
    margin-top: 8%;
}
.about-info p {
    color: #000;
    margin: 0 0 20px 0;
    font-family: myriad pro;
    font-size: 16px;
    line-height: 1.8em;
}

.about-info p:nth-child(3) {
    margin: 0 0 54px 0;
}

.about-info a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    background: rgb(220, 98, 38); /* Old browsers */
    background: -moz-linear-gradient(
        -45deg,
        rgba(220, 98, 38, 1) 1%,
        rgba(220, 98, 38, 1) 28%,
        rgba(83, 94, 100, 1) 74%,
        rgba(83, 94, 100, 1) 86%,
        rgba(83, 94, 100, 1) 100%
    ); /* FF3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        right bottom,
        color-stop(1%, rgba(220, 98, 38, 1)),
        color-stop(28%, rgba(220, 98, 38, 1)),
        color-stop(74%, rgba(83, 94, 100, 1)),
        color-stop(86%, rgba(83, 94, 100, 1)),
        color-stop(100%, rgba(83, 94, 100, 1))
    ); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(
        -45deg,
        rgba(220, 98, 38, 1) 1%,
        rgba(220, 98, 38, 1) 28%,
        rgba(83, 94, 100, 1) 74%,
        rgba(83, 94, 100, 1) 86%,
        rgba(83, 94, 100, 1) 100%
    ); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(
        -45deg,
        rgba(220, 98, 38, 1) 1%,
        rgba(220, 98, 38, 1) 28%,
        rgba(83, 94, 100, 1) 74%,
        rgba(83, 94, 100, 1) 86%,
        rgba(83, 94, 100, 1) 100%
    ); /* Opera 11.10+ */
    background: -ms-linear-gradient(
        -45deg,
        rgba(220, 98, 38, 1) 1%,
        rgba(220, 98, 38, 1) 28%,
        rgba(83, 94, 100, 1) 74%,
        rgba(83, 94, 100, 1) 86%,
        rgba(83, 94, 100, 1) 100%
    ); /* IE10+ */
    background: linear-gradient(
        135deg,
        rgba(220, 98, 38, 1) 1%,
        rgba(220, 98, 38, 1) 28%,
        rgba(83, 94, 100, 1) 74%,
        rgba(83, 94, 100, 1) 86%,
        rgba(83, 94, 100, 1) 100%
    ); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dc6226', endColorstr='#535e64',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    padding: 12px 30px;
}

.about-info a:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#535e64+0,535e64+31,dc6226+54,dc6226+100 */
    background: rgb(83, 94, 100); /* Old browsers */
    background: -moz-linear-gradient(
        -45deg,
        rgba(83, 94, 100, 1) 0%,
        rgba(83, 94, 100, 1) 31%,
        rgba(220, 98, 38, 1) 54%,
        rgba(220, 98, 38, 1) 100%
    ); /* FF3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        right bottom,
        color-stop(0%, rgba(83, 94, 100, 1)),
        color-stop(31%, rgba(83, 94, 100, 1)),
        color-stop(54%, rgba(220, 98, 38, 1)),
        color-stop(100%, rgba(220, 98, 38, 1))
    ); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(
        -45deg,
        rgba(83, 94, 100, 1) 0%,
        rgba(83, 94, 100, 1) 31%,
        rgba(220, 98, 38, 1) 54%,
        rgba(220, 98, 38, 1) 100%
    ); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(
        -45deg,
        rgba(83, 94, 100, 1) 0%,
        rgba(83, 94, 100, 1) 31%,
        rgba(220, 98, 38, 1) 54%,
        rgba(220, 98, 38, 1) 100%
    ); /* Opera 11.10+ */
    background: -ms-linear-gradient(
        -45deg,
        rgba(83, 94, 100, 1) 0%,
        rgba(83, 94, 100, 1) 31%,
        rgba(220, 98, 38, 1) 54%,
        rgba(220, 98, 38, 1) 100%
    ); /* IE10+ */
    background: linear-gradient(
        135deg,
        rgba(83, 94, 100, 1) 0%,
        rgba(83, 94, 100, 1) 31%,
        rgba(220, 98, 38, 1) 54%,
        rgba(220, 98, 38, 1) 100%
    ); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#535e64', endColorstr='#dc6226',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
/*--slide---*/
.ia-container {
    width: 73%;
    margin: 20px auto;
    overflow: hidden;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.08);
    border: 7px solid rgba(255, 255, 255, 0.6);
}

.ia-container figure {
    position: absolute;
    top: 0;
    margin: 0;
    left: 50px; /* width of visible piece */
    width: 408px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ia-container > figure {
    position: relative;
    left: 0 !important;
    margin: 0;
}

.ia-container img {
    display: block;
    width: 100%;
}

.ia-container input {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px; /* just cover visible part */
    height: 100%;
    cursor: pointer;
    border: 0;
    padding: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 100;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ia-container input:checked {
    width: 5px;
    left: auto;
    right: 0px;
}

.ia-container input:checked ~ figure {
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    left: 85%;
    margin: 0;
}

.ia-container figcaption {
    width: 100%;
    height: 100%;
    background: rgba(87, 73, 81, 0.1);
    position: absolute;
    top: 0px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ia-container figcaption span {
    position: absolute;
    top: 40%;
    margin-top: -15px;
    right: 20px;
    left: 13px;
    overflow: hidden;
    text-align: justify;
    background: rgb(202 9 77);
    line-height: normal;
    font-size: 14px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    text-transform: capitalize;
    /* letter-spacing: 4px; */
    font-weight: 400;
    padding: 16px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.ia-container figcaption span2 {
    position: absolute;
    top: 40%;
    margin-top: -15px;
    right: 20px;
    left: 15px;
    overflow: hidden;
    text-align: center;
    background: rgba(220, 98, 38, 0.65);
    line-height: 20px;
    font-size: 18px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    padding: 20px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.ia-container input:checked + figcaption,
.ia-container input:checked:hover + figcaption {
    background: rgba(87, 73, 81, 0);
}

.ia-container input:checked + figcaption span {
    -webkit-transition: all 0.4s ease-in-out 0.5s;
    -moz-transition: all 0.4s ease-in-out 0.5s;
    -o-transition: all 0.4s ease-in-out 0.5s;
    -ms-transition: all 0.4s ease-in-out 0.5s;
    transition: all 0.4s ease-in-out 0.5s;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
    filter: alpha(opacity=99);
    opacity: 1;
    top: 21%;
    width: 79%;
    left: 3%;
}
.ia-container #ia-selector-last:checked + figcaption span {
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.ia-container input:hover + figcaption {
    background: rgba(87, 73, 81, 0.03);
}

.ia-container input:checked ~ figure input {
    z-index: 1;
}

@media screen and (max-width: 720px) {
    .ia-container {
        width: 540px;
    }

    .ia-container figure {
        left: 40px;
        width: 260px;
    }

    .ia-container input {
        width: 40px;
    }

    .ia-container input:checked ~ figure {
        left: 260px;
    }

    .ia-container figcaption span {
        font-size: 16px;
    }
}

@media screen and (max-width: 520px) {
    .ia-container {
        width: 320px;
    }

    .ia-container figure {
        left: 20px;
        width: 180px;
    }

    .ia-container input {
        width: 20px;
    }

    .ia-container input:checked ~ figure {
        left: 180px;
    }

    .ia-container figcaption span {
        font-size: 12px;
        letter-spacing: 2px;
        padding: 10px;
        margin-top: -20px;
    }
}
/*--about-end--*/

/*--testimonials-starts--*/
.test {
    background: #fff;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    -moz-background-size: cover;
    overflow: hidden;
    height: 470px;
}
.flex-control-nav {
    position: absolute;
    margin-left: 0px;
    top: 100% !important;
    left: 12% !important;
}
.test-top {
    margin-top: 5%;
}

.test-1 {
    width: 18%;
    float: left;
}

.test-2 {
    width: 64%;
    float: right;
    text-align: left;
    margin-top: 3.7%;
}
.font-37 {
    font-size: 37px;
}
.test-2 p {
    color: #000;
    font-size: 15px;
    line-height: 1.2em;
    margin-top: 1%;
}

.test-2 h4 {
    color: #000;
    font-size: 1.5em;
    margin-top: 1%;
}

.test-2 span {
    font-size: 2.2em;
    color: #000;
}
/*--testimonials-end--*/

/*--news--starts-*/
.news {
    padding-bottom: 6em;
}

.news-top {
    text-align: center;
}

.news-bottom {
    margin-top: 4%;
}

.view-fifth img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.view-fifth .mask {
    background-color: #d82674;
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
    -o-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.view-fifth h2 {
    background: rgba(255, 255, 255, 0.5);
    color: #000;
    -webkit-box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
    -moz-box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
    box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
}

.view-fifth p {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    color: #333;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.view-fifth:hover .mask {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    width: 100%;
}

.view-fifth:hover img {
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    -o-transform: translateX(300px);
    -ms-transform: translateX(300px);
    transform: translateX(300px);
}

.view-fifth:hover p {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

.view {
    width: 372px;
    height: 292px;
    margin: 0;
    float: left;
    border: 10px solid #fff;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    background: #fff url(../images/bgimg.html) no-repeat center center;
}

.view .mask,
.view .content {
    width: 296px;
    height: 235px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}

.view img {
    display: block;
    position: relative;
    width: 100%;
}

.view h2 {
    text-transform: uppercase;
    color: #000;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background: #fff;
    margin: 35px 0 0 0;
}

.view p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 14px;
    position: relative;
    color: #fff;
    padding: 37px 20px 20px;
    text-align: center;
}

.mask a {
    color: #000;
}

.mask a:hover {
    color: #ca094c;
}

/*--news-end--*/

.connect-with-us-section {
    padding: 1rem 0;
    background: #d82674;
    font-family: "Fira Sans Condensed", sans-serif;
    clear: both;
}
.connect-with-us-section h2 {
    text-align: center;
    color: #fff;
}
.connect-with-us-section .connect-form {
    width: 70%;
    margin: 0 auto;
}
.connect-form .form-group {
    margin-bottom: 0.5rem;
}
.connect-with-us-section .connect-form .form-control {
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
}
onnect-with-us-section .connect-form button {
    background: #2e2e2e;
    border-radius: 0;
    color: #fff;
}
.social-area {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.social-item {
    display: inline-block;
    margin: 0 5px;
    width: 35px;
    height: 35px;
    text-align: center;
    color: #e4701d;
    background: #fff;
    border-radius: 50%;
    line-height: 35px;
}
.connect-with-us-section address {
    color: #000;
    font-size: 18px;
    line-height: 1.3;
}
.connect-with-us-section .phone {
    background: #000;
    width: max-content;
    padding: 3px 15px;
    margin-bottom: 10px;
    width: 64%;
}
.connect-with-us-section .email {
    background: #7a0831;
    width: max-content;
    padding: 3px 15px;
    margin-bottom: 10px;
    width: 64%;
}
.connect-with-us-section .email a {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.connect-with-us-section .email i {
    width: 25px;
    height: 25px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    margin: 0 27px 0 0px;
}
.connect-with-us-section .phone a {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.display-4 {
    font-size: 3.5rem;
    color: #000;
}
.bg-footer {
    background-color: #2e2e2e;
    padding-top: 0px;
    padding-bottom: 0px;
    overflow: hidden;
}
img.footer-logo {
    width: 51%;
    margin: 15px 0 0 0;
}
ul.ft {
    text-align: right;
    color: #fff;
    font-size: 12px;
    margin-top: 9px;
    line-height: normal;
}
ul.ft li {
    list-style: none;
}
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #000;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
}

button#btnSubmit {
    width: 100%;
    background-color: #000;
    border-radius: 0;
    color: #fff;
}
.text-black {
    color: #000;
    font-size: 32px;
}
.connect-with-us-section .phone i {
    width: 25px;
    height: 25px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    margin: 0 27px 0 0px;
}
input:not([type="range"]):not([type="color"]) {
    writing-mode: horizontal-tb !important;
    color: #000 !important;
}
.img-box {
    width: 100%;
}
.img-box img {
    width: 100%;
}
.img-box2 {
    width: 100%;
}
.img-box2 img {
    width: 100%;
}
.img-box3 {
    width: 100%;
}
.img-box3 img {
    width: 100%;
}
.content {
    padding: 10px;
    background-color: #fce8ed;
    width: 100%;
}
.content h3 {
    color: #c51654;
    font-size: 16px;
    font-weight: normal;
}
.content2 {
    padding: 10px;
    background-color: #fce8ed;
    width: 100%;
}
.content2 h3 {
    color: #c51654;
    font-size: 16px;
    font-weight: normal;
}
.content p {
    font-size: 14px;
}
.content2 p {
    font-size: 14px;
}
.content3 p {
    font-size: 14px;
}
.btn-light {
    color: #000;
    background-color: #d82674 !important;
    border-color: #d82674 !important;
}
.content3 {
    padding: 10px;
    background-color: #fce8ed;
    width: 100%;
}
.content3 h3 {
    color: #c51654;
    font-size: 16px;
    font-weight: normal;
}
.mt-17 {
    margin-top: 17%;
}
.justify {
    text-align: justify;
}
.text-red {
    color: #d82674 !important;
}
.brd {
    border: 1px solid #d82674 !important;
}
.bg-primary {
    background-color: #d82674 !important;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #ca094d;
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    background-color: #ca094d;
}
.border-light {
    border-color: #ca094d !important;
}
.cmng {
    font-size: 16px !important;
    font-weight: bold;
}
.join {
    padding: 5px 0 6px 12px;
    margin: 10px 0px 10px 0;
    background-color: #ddd4d7;
    color: #000;
    border-radius: 20px;
}
.join2 {
    padding: 5px 14px 6px 12px;
    margin: 10px 0px 10px 40px;
    background-color: #ddd4d7;
    color: #000;
    border-radius: 0px 50px 50px 0px;
    width: auto;
}
.form-control:disabled,
.form-control:read-only {
    background-color: #fff;
    opacity: 1;
    line-height: 44px;
}
.form-control:disabled,
.form-control:read-only {
    background-color: #fff;
    opacity: 1;
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem !important;
}
.form-control:focus {
    color: #555;
    background-color: #fff;
    border-color: #cb0a4d;
    outline: 0;
    box-shadow: none;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dfe4fd;
    appearance: auto;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.navbar-brand img {
    color: rgba(0, 0, 0, 0.9);
    width: 73%;
}

.auto {
    margin: 0 auto;
}

@media (max-width: 1920px) {
    .who {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/who.png) no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: auto;
        padding: 64px 0 64px 0;
    }
    .up {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/upcoming.png) no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: auto;
        padding: 64px 0 64px 0;
    }
    .asi {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/asi.png) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
    .reg {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/reg.png) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
    .page-header {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/header.jpg) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
    .cont {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/cont.png) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
}
@media (max-width: 1366px) {
    .who {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/who.png) no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
    .up {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/upcoming.png) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
    .asi {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/asi.png) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
    .reg {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/reg.png) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
    .page-header {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/header.jpg) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
    .cont {
        padding-top: 0;
        padding-bottom: 0;
        background: url(../images/cont.png) top left no-repeat;
        background-size: contain;
        background-position: bottom right;
        background-color: #e3e4e5;
        margin: 70px 0 0 0;
        height: 172px;
        padding: 0px 0 0px 0;
    }
}

.slt1 {
    display: inline-block;
    width: 27%;
    margin: 25px 0 25px 0;
}
.mem {
    text-align: center;
    padding: 6px 0 0 27px;
    font-size: 19px;
    color: #fff;
}
.pointer {
    width: 24%;
    height: 40px;
    position: relative;
    background: #ca094d;
    margin-right: 7%;
}
.pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}
.pointer:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #ca094d;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.slt2 {
    display: inline-block;
    width: 28%;
    margin: 25px 50px 25px 0px;
}
.chk {
    margin: 7px 0 0 70px;
    color: #fff;
    font-size: 17px;
}
.icn {
    margin: -2px 0 0 29px;
    float: left;
    color: #fff;
    font-size: 29px;
}
.pointer2 {
    width: 28%;
    height: 40px;
    position: relative;
    background: #ca094d;
    margin-right: 6%;
}
.pointer2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}
.pointer2:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #ca094d;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}
.slt3 {
    display: inline-block;
    width: 28%;
    margin: 25px 50px 25px 0px;
    background-color: #ccc;
}

.form-check-input:checked {
    background-color: #f90823;
    border-color: #f90823;
}
