* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.main-body {
    overflow-x: hidden;
}

.heading h1 {
    color: #1241cd;
    text-transform: capitalize;
    font-size: 3rem;
    font-weight: 700;
}

@media only screen and (max-width:500px) {
    .heading h1 {
        font-size: 2.3rem !important;
    }
}

/* ========================== scroll bar change ========= */
::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #1241cd;
    border-radius: 10px;
}

/* cursor change */

.cursor {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #1241cd;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1061;
}



.cursor .cursor1 {
    position: absolute;
    width: 5px;
    height: 5px;
    top: 10px;
    left: 10px;
    background-color: #1241cd;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1051;
}

.cursor-hover {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    background-color: #1241cd !important;
    border-radius: 50%;
    -webkit-animation: cursorAnimate1 1s infinite 0.5s;
    animation: cursorAnimate1 1s infinite 0.5s;
}

.cursor-hover-footer {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    border: 2px solid #000000 !important;
    border-radius: 50%;
    -webkit-animation: cursorAnimate1 1s infinite 0.5s;
    animation: cursorAnimate1 1s infinite 0.5s;
}

.cursor-click {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    background-color: #1241cd;
    border-radius: 50%;
    -webkit-animation: cursorAnimate 1s;
    animation: cursorAnimate1 1s infinite;
}



@-webkit-keyframes cursorAnimate {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    to {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0.5;
    }
}

@keyframes cursorAnimate {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    to {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0.5;
    }
}

@-webkit-keyframes cursorAnimate1 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes cursorAnimate1 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@media only screen and (max-width:991px) {
    .cursor {
        display: none;
    }
}

/* ------ */

/* navbar start */

.header.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
}

.header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    position: sticky;
    -webkit-transition: 1s;
    transition: 1s;
    box-shadow: 0 .2rem 1rem rgba(0, 0, 0, .30) !important;
    align-items: center;
    padding: 0.5rem 3rem !important;
    background-color: #ffffff;
    z-index: 999;
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* .logo img {
    width: 200px;
} */


.logo img {
    width: 110px;
}

.nav-item a {
    color: rgb(0, 0, 0) !important;
    font-weight: 700;
    font-size: 1.6rem !important;
    text-transform: capitalize;
    margin: 0 1rem;
}



.nav-dropitem {
    margin-right: 2rem;
}

.nav-dropitem a {
    color: black !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem !important;
}



.nav-item a::after {
    content: '';
    display: block;
    width: 0px;
    height: 3px;
    background: #1241cd;
    margin: 0 auto;
    transition: 0.5s all;
}

.nav-item a:hover {
    color: #1241cd !important;
}

.nav-item a:hover::after {
    width: 100%;
    margin: 0 auto;

}

.nav-dropitem .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    border: 2px solid rgb(228, 228, 228) !important;
}

.nav-dropitem:hover .dropdown-menu {
    top: 120%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.nav-dropitem.show .dropdown-menu {
    top: 120%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.menu-icon {
    display: none;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 30px;
    height: 25px;
}

.menu-icon span {
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background-color: black;
}

.menu-icon span:nth-child(1) {
    top: 0px;
    left: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: center;
    transform-origin: center;
}


.menu-icon span:nth-child(2) {
    width: 20px;
    top: 10px;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.menu-icon span:nth-child(3) {
    width: 30px;
    top: 20px;
    left: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.menu-icon span .animateline {
    position: absolute;
    background-color: white;
    top: 0;
    width: 0;
    bottom: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.menu-icon {
    display: none;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 22px;
    cursor: pointer;
}

.close-icon {
    display: none;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 22px;
}

@media screen and (max-width: 992px) {
    .header .menu-section {
        position: absolute;
        background-color: rgb(255, 255, 255);
        width: 100%;
        top: 110px;
        left: 0;
        text-align: center;
        height:0;
        -webkit-transition: 1s;
        transition: 1s;
        overflow: auto;
        z-index: 9999;
    }
   
    .header ul li {
        border-bottom: 1px solid rgb(0, 0, 0);
    }

    .header ul {
        display: block;
    }

    .menu-icon {
        display: block;
    }

    .nav-item a:hover::after {
        width: 0%;
    }

    .nav-item {
        margin-right: 0rem;
    }

    .nav-dropitem {
        margin-right: 0rem;
    }

    .menu-icon {
        display: block !important;
    }

    .header ul li {
        padding: 5px 20px;
    }

    .nav-dropitem .dropdown-menu {
        display: none;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        border: 2px solid rgb(0, 0, 0) !important;
    }

    .nav-dropitem.show .dropdown-menu {
        display: block;
        top: 120%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .dropdown-menu {
        margin: 1rem;
    }

    .header {
        padding: 0.5rem 0.8rem !important;
        height: 110px;
    }
}



/* navbar end */

/* hero section start */
.hero-part {
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    
}

.hero-part::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to left, black 70%, white 10%, black 30%);
    opacity: 0.7;
}

.carousel-caption {
    top: 5px;
}

.hero-body-text {
    position: relative;
    z-index: 1;
}

.hero-part img {
    height: calc(100vh - 100px);
    object-fit: cover;
}

.hero-body-text h1 {
    font-weight: 700;
    font-size: 4rem;
    width: 85%;
    margin: 0 auto;
    text-transform: capitalize;
    text-shadow: 2px 2px 4px #000000;
}

.hero-body-text a {
    color: white;
    text-transform: capitalize;
    border-radius: 50px;
    font-size: 1.6rem;
    background-color: #ffffff31;
    font-weight: 700;
    color: rgb(255, 255, 255);
    border: 4px solid #ffffff;
    padding: 0.5rem 5rem;
    transition: 0.5s all;
}

.hero-body-text a:hover {
    transition: 0.5s all;
    background-color: #ffffff00;
    border: 4px solid #ffffff;
    box-shadow: 0px 0px 10px white;
    transform: scale(0.9);
    color: white;
}

@media only screen and (min-width:1200px) and (max-width:1400px) {
    .hero-body-text h1 {
        width: 95%
    }
}

@media only screen and (min-width:992px) and (max-width:1200px) {
    .hero-body-text h1 {
        width: 100%;
        font-size: 3.6rem;
    }
}

@media only screen and (min-width:769px) and (max-width:991px) {
    .hero-body-text h1 {
        width: 100%;
        font-size: 3rem;
    }
}

@media only screen and (min-width:501px) and (max-width:768px) {
    .hero-body-text h1 {
        width: 100%;
        font-size: 2.5rem;
    }
}

@media only screen and (min-width:321px) and (max-width:500px) {
    .hero-body-text h1 {
        width: 100%;
        font-size: 2rem;
    }

    .hero-body-text a {
        padding: 0.3rem 2rem;
        font-size: 1.1rem;
    }

    .hero-part img {
        height: 50vh;
        object-fit: cover;
    }
}

@media only screen and (min-width:280px) and (max-width:320px) {
    .hero-body-text h1 {
        width: 100%;
        font-size: 1.5rem;
    }

    .hero-body-text a {
        padding: 0.3rem 1.5rem;
        font-size: 1.1rem;
    }

    .hero-part img {
        height: 50vh;
        object-fit: cover;
    }
}

/* hero section end */

/* about us  start */
.about-us {
    padding-top: 7rem;
    padding-bottom: 7rem;
    scroll-margin-top: 80px;
}

.about-img {
    display: flex;
    justify-content: center;
}

.about-img img {
    border-radius: 20px;
    width: 400px;
    height: 500px;
    object-fit: cover;
}

.about-us-text h1 {
    position: relative;
    font-weight: 700;
    font-size: 3rem;
    color: #1241cd;
}

.about-us-text h1:after {
    content: '';
    top: 50%;
    position: absolute;
    background-color: #1241cd;
    width: 400px;
    height: 4px;
}


.about-us-text p {
    font-weight: 600;
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
    text-align: justify;
}

.about-box p {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0 !important;
}

.about-col-box {
    border: 2px solid #1241cd;
    background-color: #1241cd;
    padding: 1rem;
    text-align: center;
    border-radius: 20px;
}

.about-col-box h1 {
    margin-bottom: 0rem;
    font-size: 5rem;
    font-weight: 700;
    color: white;
}

.about-col-box h6 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: capitalize;
    color: white;
}

.about-col-text i {
    padding-right: 0.4rem;
}

.about-col-text p {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.1rem;
    color: black !important;
    text-transform: capitalize;
}
.about-us-text{
    padding-bottom: 2rem;
}
.about-us-text a {
    
    border: 2px solid black;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    color: white;
    background-color: #1241cd;
    border: 2px solid #1241cd;
    font-weight: 600;
    text-transform: capitalize;
    transform: scale(0.9);
    transition: all 0.5s ease;
}
.about-us-text a:hover{
    transition: all 0.5s ease;
    background-color: transparent;
    color: #1241cd;
    border: 2px solid #1241cd;
    transform: scale(1.0);
}
@media only screen and (min-width:1200px) and (max-width:1400px) {
    .about-img img {
        border-radius: 20px;
        width: 400px;
        height: 450px;
        object-fit: cover;
    }

    .about-col-box h1 {
        font-size: 4rem;
    }

    .about-col-box h6 {
        font-size: 1.8rem;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .about-img img {
        border-radius: 20px;
        width: 300px;
        height: 500px;
        object-fit: cover;
    }

    .about-us-text h1:after {
        margin-left: 0.5rem;
        width: 250px;
    }

    .about-col-box {
        padding: 0.8rem;
    }

    .about-col-box h1 {
        font-size: 3.5rem;
    }

    .about-col-box h6 {
        font-size: 1.5rem;
    }
}

@media only screen and (min-width:769px) and (max-width:991px) {
    .about-img img {
        border-radius: 20px;
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .about-us-text {
        margin-top: 2rem;
    }

    .about-us-text h1:after {
        content: '';
        width: 400px;
        height: 4px;
        margin-left: 0.5rem;
    }
}

@media only screen and (min-width:550px) and (max-width:768px) {
    .about-img img {
        border-radius: 20px;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .about-us-text {
        margin-top: 2rem;
    }

    .about-us-text h1:after {
        content: '';
        width: 250px;
        height: 4px;
        margin-left: 0.5rem;
    }
}

@media only screen and (min-width:321px) and (max-width:549px) {
    .about-img img {
        border-radius: 20px;
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

    .about-us-text {
        margin-top: 2rem;
    }

    .about-us-text h1:after {
        width: 150px;
        height: 4px;
        margin-left: 0.5rem;
    }

    .about-col-text {
        margin-top: 1rem;
    }
}

@media only screen and (min-width:280px) and (max-width:320px) {
    .about-img img {
        border-radius: 20px;
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

    .about-us {
        padding-bottom: 6rem;
    }

    .about-us-text {
        margin-top: 2rem;
    }

    .about-us-text h1:after {
        width: 60px;
        height: 4px;
        margin-left: 0.5rem;
    }

    .about-col-text {
        margin-top: 1rem;
    }

    .about-col-box h1 {
        font-size: 2.5rem;
    }

    .about-col-box h6 {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width:992px){
    .about-us {
        padding-top:3rem;
        padding-bottom: 5rem;
    }
    .about-us .col-lg-5{
        order: 2;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .about-us .col-lg-7{
        order: 1;
    }
} 

/* about us end */

/* gallery start */
.gallery {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #dcf7ff;
    position: relative;
    scroll-margin-top: 80px;

}

.gallery-circle {
    position: absolute;
    z-index: 1;
    bottom: -100px;
    left: -100px;
}

.gallery-circle img {
    width: 200px;
    animation: round1 10s infinite cubic-bezier(1, 1, 1, 1);
}

.gallery-circle-right {
    position: absolute;
    z-index: 1;
    top: -100px;
    right: -100px;
}

.gallery-circle-right img {
    width: 200px;
    animation: round1 10s infinite cubic-bezier(1, 1, 1, 1);
}
.gallery-circle-right {
    position: absolute;
    z-index: 1;
    top: -100px;
    right: -100px;
}

@keyframes round1 {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.gallery-row {
    margin-top: 2rem;
    display: flex;
    justify-content: center !important;
}

.gallery-img {
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 500px;
    border-radius: 20px 20px 0px 0px;
    transform: scale(0.9);
    background-color:white;
    padding: 1rem;
}

.gallay-img-title p {
    border-radius: 0 0 20px 20px;
    width: 90%;
    padding: 0.5rem;
    margin: -1.5rem auto 0;
    position: relative;
    z-index: 1;
    background-color: #1241cd;
    color: white;
    text-align: center;
    font-size: 1.3rem;
    text-transform: capitalize;
    font-weight: 700;
}

@media only screen and (max-width:768px) {
    .gallery-img img {
        width: 100%;
        height: 400px;
        transform: scale(0.9);
    }
    .gallery-circle {
        position: absolute;
        z-index: 1;
        bottom: -90px;
        left: -80px;
    }
    .gallery-circle-right {
        position: absolute;
        z-index: 1;
        top: -90px;
        right: -80px;
    }
    
    .gallery-circle img {
        width: 180px;
        animation: round1 10s infinite cubic-bezier(1, 1, 1, 1);
    }
    .gallery-circle-right img {
        width: 180px;
        animation: round1 10s infinite cubic-bezier(1, 1, 1, 1);
    }

}


/* gallery end */

/* contact start */
.contact-us {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    scroll-margin-top: 80px;
}


.contact-title h1 {
    text-align: center;
    text-transform: capitalize;
    font-size: 3rem;
    font-weight: 700;
}

.contact-us {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.contact-heading h1 {
    font-size: 3rem;
    font-weight: 500 !important;
    position: relative !important;
    z-index: 2;
}

.contact-left-part {
    padding-top: 2rem;
}

.contact-box {
    margin-top: 1rem;
    display: flex;

}

.contact-box input {
    font-weight: 600;
    color: black;
    font-size: 1.1rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.contact-area {
    width: 100%;
    font-weight: 600;
    color: black;
    font-size: 1.1rem;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    width: 80%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.form-control {
    display: block;
    width: 100%;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #000000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    margin-top: 0.5rem;
    display: flex;
}

.contact-btn button {
    width: 80%;
    border: none;
    background-color: #1241cd;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.5rem;
    color: white;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    transition: all 0.9s ease;
}

.contact-btn button:hover {
    transition: all 0.9s ease;
    box-shadow: 0px 0px 10px #1241cd;
    background-color: white;
    border: 2px solid #1241cd;
    color: #1241cd;

}

@media only screen and (min-width:321px) and (max-width:575px) {

    .contact-box input {
        font-weight: 600;
        color: black;
        font-size: 1.1rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-area {
        width: 100%;
        font-weight: 600;
        color: black;
        font-size: 1.1rem;
        border-radius: 10px;
        padding: 1rem 0.75rem;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-btn button {
        width: 100%;
        border: none;
        background-color: #1241cd;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 10px;
        padding: 0.5rem;
        color: white;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

@media only screen and (min-width:280px) and (max-width:320px) {
    .contact-box input {
        font-weight: 600;
        color: black;
        font-size: 1.1rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-area {
        width: 100%;

        font-weight: 600;
        color: black;
        font-size: 1.1rem;
        border-radius: 10px;
        padding: 1rem 0.75rem;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-btn button {
        width: 100%;
        border: none;
        background-color: #1241cd;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 10px;
        padding: 0.5rem;
        color: white;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

@media only screen and (max-width:768px) {
    .contect-right {
        order: 1;
    }

    .contect-left {
        order: 2;
        margin-top: 1rem;
    }

    .contact-us {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media only screen and (max-width:320px) {
    .contact-us {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
}

/* contact us end */
/* footer start */
.footer {
    background-color: #dcf7ff;
    padding-bottom: 2rem;
}

.footer-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.left-part img {
    width: 200px;
    margin-left: -2rem;
}

.left-part h1 {
    color: black;
    text-transform: uppercase;
    font-weight: 700;
}

.left-part p {
    color: black;
    padding-top: 0rem;
    padding-bottom: 0.5rem;
    text-align: justify;
    width: 80%;
    font-size: 1.2rem;
    font-weight: 600;
}

.link-a i {
    color: #1241cd;
    background-color: rgb(255, 255, 255);
    font-size: 1.4rem;
    margin-right: 1rem;
    padding: 0.5rem;
    border-radius: 50px;
    border: 2px solid white;
    box-shadow: 0px 0px 5px #646464;
}

.link-a i:hover {
    border: 2px solid #1241cd;
    background-color: white;
    color: #1241cd;
}

.instagram {
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
}

.middle-part {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.middle-part h4 {
    color: black;
}

.middle-part ul {
    padding-top: 2rem !important;
}

.middle-part ul li a {
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}

.footer-content {
    border-bottom: 5px solid black
}

.right-part {
    padding-top: 2rem;
}

.right-part i {
    padding-right: 0.5rem;
}

.right-part p {
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
}

.right-part h4 {
    color: black;
}

.right-part p a {
    color: black;
}

.footer-link p {
    font-weight: 600;
    color: black;
}

.footer-link a {
    color: black;
}

.footer-link a:hover {
    color: rgb(59, 59, 59);
}

.footer-bg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #c4f1fe;
}

@media only screen and (max-width:768px) {
    .footer-row {
        padding-top: 5rem;
        padding-bottom: 2rem;
    }

    .left-part img {
        margin-top: -3rem;
        margin-left: -0.9rem;
    }

    .left-part p {
        text-align: justify;
        width: 100%;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .middle-part {
        display: flex;
        justify-content: start;
        padding-top: 2rem;
    }

    .middle-part ul {
        padding-top: 0.5rem !important;
    }

    .footer-link {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width:320px) {
    .left-part img {
        width: 200px;
        margin-left: -0.9rem;

    }
}
@media only screen and (max-width:400px){
    .copyright-text{
        font-size: 0.8rem;
    }
    
}

/* footer end */





