* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.header {
    min-height: 10vh;
    width: 100%;
    background-color: rgb(255, 255, 255);
    background-position: center;
    background-size: cover;
    position: relative;
}

/*-----------nav Start----------*/

nav {
    display: flex;
    padding: 1% 6%;
    justify-content: space-between;
    align-items: center;
    background: rgb(158, 6, 6);
}

nav img {
    width: 150px;
}

/*-----------nav End----------*/

/*-----------first navbar start--------------*/
.contact {
    text-align: right;
    background: #fff;
}

.contact ul li {
    list-style: none;
    display: inline;
    font-size: 15px;
    word-spacing: 20px;
    margin-inline-end: 15px;
}

.contact .fa {
    margin-right: 5px;
}

/*-----------first navbar end--------------*/

@media(max-width: 700px) {

    /*--------responsive first navbar------*/
    .contact {
        text-align: center;
        background: #fff;
    }

    .contact ul li {
        list-style: none;
        display: inline;
        font-size: 8px;
    }

    .contact .fa {
        margin-right: 5px;
    }
}


/*---------------------body start-----------*/

.nav-links {
    flex: 1;
    text-align: center;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

/*---------------------body end-----------*/


/*---------------------dropdown start------------------*/
ul li ul.dropdown li a {
    display: block;
    text-align: center;
    font-size: 12px;
    width: 150px;
}

ul li ul.dropdown {
    background: rgb(189, 2, 2);
    position: absolute;
    z-index: 999;
    padding: 1% 10%;
    display: none;
}

ul li:hover ul.dropdown {
    display: block;
}

/*--------------dropdown End---------------------*/


@media(max-width: 700px) {
    /*-----responsive dropdown slidenav-----*/

    ul li ul.dropdown li a {
        display: block;
        text-align: left;
        font-size: 12px;
        width: 120px;
        margin-right: -10px;
    }

    ul li ul.dropdown {
        background: rgb(189, 2, 2);
        position: absolute;
        z-index: 999;
        padding: 1% 5%;
        display: none;
    }

    ul li:hover ul.dropdown {
        display: block;
    }

}


nav .fa {
    margin-right: 5px;
}

.side-bar .fa {
    display: none;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 1px;
    background: green;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}


@media(max-width: 700px) {

    /*-----------Responsive slidenav-------*/
    .text-box h1 {
        font-size: 25px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: green;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    .side-bar .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }

}

/*----------offer----------*/
.offer {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

.p1 {
    color: #777;
    font-size: 12px;
    font-weight: 300;
    line-height: 180%;
    padding: 10px;
    text-align: justify;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.service-col {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.p-offer {
    font-size: 14px;
    text-align: center;
    color: #777;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    color: #e91e63;
}

.service-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media(max-width: 700px) {

    /*--------service col responsive-----*/
    .row {
        flex-direction: column;
    }
}

/*----------footer start-----*/
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer .f1 {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    background: #fff;
    font-size: 10px;
}
.footer .tc{
    font-size: 10px;
    color: red;
}

.footer .f2 {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 5px;
    background: green;
    font-size: 8px;
    font-style: Times;
}

/*----------footer end-----*/


/*-------slide show------*/

* {
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    height: 600px;
    overflow: hidden;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: green;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #696565;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: green;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}


/*------text-box start here---------*/

.text-box {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
    background: green;
}

.text-box h1 {
    font-size: 62px;
    color: #f2f2f2;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 16px;
    color: #330606;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #7a0e0e;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-bottom: 3%;
}

.hero-btn:hover {
    border: 1px solid white;
    background: rgb(172, 15, 15);
    transition: 1s;

}

@media(max-width: 700px) {
    .text-box {
        width: 90%;
        margin: auto;
        text-align: center;
        padding-top: 30px;
        background: green;
    }

    .text-box h1 {
        font-size: 60px;
        color: #f2f2f2;
    }
}


/*-----advisor----*/
.comments {
    width: 100%;
    background:green;
}
.comments-col{
    display: flex;
    flex-direction: row;
}

.comments-col img {
    width: 100px;
    height: 150px;
    margin-bottom: 10%;
    border-radius: 15%;
    margin-left: 20%;
}
.comments-title{
    margin-left: 50px;
    color:#ffffff ;
}
.p2 {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    margin-left: 20px;
    width: 700px;
}

.name {
    font-size: 12px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(82, 3, 3);
}

@media(max-width: 700px) {
    .comments {
        width: 100%;
        text-align: center;
    }
    .p2{
        width: 60%;
    }
}


/*------------newsletter-----------*/
.footer-1 {
    background-color: #011035;
    padding: 30px 10%;
    margin-bottom: -30px;
}

.footer-col {
    width: 25%;
}

.footer-col-i {
    width: 20%;
    margin-left: -100px;
}

@media(max-width: 700px) {
    .footer-col-i {
        width: 70%;
        margin-left: -0px;
    }
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.address {
    color: #bbbbbb;
}