body {

    place-items: center;
}

html {
    scroll-behavior: smooth;
}

@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100);

.feedback-button {
    height: 40px;
    border: solid 3px #000000;
    width: 100px;
    line-height: 32px;
    -webkit-transform: rotate(-90deg);
    font-weight: bold;
    color: white;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    text-align: center;
    font-size: 18px;
    position: fixed;
    right: -40px;
    top: 45%;
    font-family: "Roboto", helvetica, arial, sans-serif;
    z-index: 999;
}

@keyframes glowing {
    0% {
        background-color: #000000;
        
    }

    50% {
        background-color: #858585;
        
    }

    100% {
        background-color: #000000;
        
    }
}

.feedback-button {
    animation: glowing 800ms infinite;
}

.wrapper {
    display: flex;
    justify-content: space-around;
    margin: 25px;
    gap: 30px;


}

.box {
    width: 400px;
    height: auto;
    background: #FFFFFF;
    border: gray solid 2px;
    border-radius: 5px;
    margin-top: 100px;

}


.box ul li {

    margin-top: 10px;
}

.box ul li a {
    font-family: Arial, Helvetica, sans-serif;
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
    font-weight: bold;
}


.box ul li a:hover {
    color: aqua;
}

.box .title-area {
    display: block;
    padding: 20px 20px 15px 30px;
    border-bottom: 1px solid #d8d8d8;
    background: #414042;
    text-decoration: none;
}

.box .title-area h3 {

    color: #FFFFFF;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;

}

.newsbox {
    width: 90%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 5px 5px 5px 5px rgb(157, 158, 158);
    margin-top: 20px;
    overflow: hidden;
}

.newsbox img {
    width: 100%;


}

.newsbox img:hover {
    transition: .5s cubic-bezier(0.6, 0.03, 0.28, 0.98);
    transform: scale(1.2);
    filter: brightness(1.75);
}

.newsbox h1 {
    margin: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: blue;
}

.newsbox p {
    margin: 10px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 150%;
}

.tophead {

    height: 80px;
    width: 100%;
    background: #414042;
    display: block;
    padding-right: 20px;

}

.tophead h1 {

    color: white;
    text-align: center;
    font-size: 48px;
    font-family: Arial, Helvetica, sans-serif;
}



.navbar {
    min-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.navbar img {
    height: 70px;
    margin-left: 10px;


}

.nav-branding {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    background-color: white;


}

.nav-link {
    transition: 0.3s ease-out;
    color: black;
    text-decoration: none;
    font-family: arial;
    font-weight: bold;
}

.nav-link:hover {
    color: dodgerblue;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.navbar .nav-menu ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;

}


.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: black;
}

.showcase img {
    width: 90%;
    height: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#searchResults {

    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: 305px;
    z-index: 5;
    background-color: #ffffff;
    text-align: left;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 250%;
    padding-left: 20px;
    margin-left: 40px;
    text-decoration: none;
    margin-top: 5px;
}

#searchInput {

    width: 100%;
    height: 75px;
    border: 3px solid rgb(1, 102, 77);
    border-radius: 5px;
    margin: auto;
    display: grid;
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 10px;
}

/* Second Slide */
.mainSlides {
    display: none;
}

.mainSlides img {
    vertical-align: middle;
}

/* Slideshow container */
.slideing-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.slideing-container img {
    height: 250px;
}

/* Caption text */
.text {
    background-color: red;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    width: 100%;
    text-align: center;
}

.text a {
    color: white;
    text-decoration: none;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The points/bullets/indicators */
.point {
    height: 15px;
    width: 15px;
    margin: 0 2px;

}

.active {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


.animate {

    height: 120px;
    margin: auto;
    position: relative;
    width: 90%;
    display: grid;
    place-items: center;
    overflow: hidden;
    height: 210px;
}

.slide-animate {

    display: flex;
    width: calc(250px * 18);
    animation: scroll 20s linear infinite;

}

@keyframes scroll {
    0% {
        transform: translateX(0);

    }

    100% {

        transform: translateX(calc(-250px*9))
    }
}

.slide-image {
    padding: 5px;
}

.slide-image img {
    width: 300px;
    height: 200px;
    transition: 1s cubic-bezier(0.6, 0.03, 0.28, 0.98);
    border-radius: 5px;
}

.slide-image img:hover {
    transform: scale(1.2);
    transition: 1s cubic-bezier(0.6, 0.03, 0.28, 0.98);
    filter: brightness(1.75);

}

.about-heading {

    margin-left: 60px;
    line-height: 200%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.about {
    width: 90%;
    height: auto;
    margin: auto;
    background-color: #e7e6e6;
    margin-top: 10px;
}

.about p {
    margin: auto;
    padding: 10px;
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 200%;
}

/* ........ Contact Us........... */

#contact {
    padding: 5rem 0 0 0;
    background: rgb(226, 226, 226);

}

.contact-container {
    display: flex;
    background: #fff;
}

.contact-details h1 {
    text-align: center;
    color: #2b2d2e;
    margin-top: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

.contact-details p {

    color: #58595B;
    margin-left: 20px;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
}


#wrapper2 {
    font-family: verdana;
    margin: 30px auto;
    padding: 30px;
    background: #0097C1;
    /* You can change the main color of thew form here. */
    font-size: 14px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

label {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    padding: 13px 0;
    color: #fff;
    text-shadow: 1px 1px 1px #666;
}

#form input {
    height: 18px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 10px #444;
    -moz-box-shadow: 0 0 10px #444;
    box-shadow: 0 0 10px #444;
    border: 1px solid #fff;
    font-size: 18px;
}

textarea {
    height: 150px;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #fff;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 10px #444;
    -moz-box-shadow: 0 0 10px #444;
    box-shadow: 0 0 10px #444;
}

input[type="text"]:hover,
textarea:hover {
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25) inset,
        0 0 5px rgba(255, 255, 255, 0.4);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25) inset,
        0 0 5px rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25) inset,
        0 0 5px rgba(255, 255, 255, 0.4);
}

input#submit {
    text-align: center;
    color: #fff;
    height: 50px;
    padding: 0;
    text-shadow: 1px 1px 1px #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 50px;
    border: 1px solid #000;
    background: #000;
    background-image: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(0%, #3b3b3b),
            color-stop(100%, #000000));
    background: -webkit-linear-gradient(top, #3b3b3b 0%, #000000 100%);
    background: -moz-linear-gradient(top, #3b3b3b 0%, #000000 100%);
    background: -o-linear-gradient(top, #3b3b3b 0%, #000000 100%);
    background: -ms-linear-gradient(top, #3b3b3b 0%, #000000 100%);
    background: linear-gradient(top, #3b3b3b 0%, #000000 100%);
    opacity: 0.5;
}

input#submit:hover {
    color: #ccc;
    cursor: pointer;
    opacity: 0.8;
}



* {
    box-sizing: border-box;
}


.footer-section {
    background: #151414;
    position: relative;
    margin-top: 20px;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #ff5e14;
    font-size: 30px;
    float: left;
    margin-top: 15px;
    margin-left: 10px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;

}

.footer-logo img {
    max-width: 100px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
    margin-left: 10px;
}

.footer-social-icon a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    margin-left: 10px;

}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    text-align: center;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.top {
    --offset: 50px;

    position: sticky;
    bottom: 10px;
    margin-right: 10px;
    place-self: end;


    /* visual styling */
    text-decoration: none;
    padding: 20px;
    font-family: sans-serif;
    color: #231F20;
    background: #6b6d6c6b;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 25px;
    float: right;

}


::placeholder {
    color: rgb(3, 119, 28);
    opacity: 50%;
    font-size: 24px;
    font-family: arial;
    font-weight: bold;
}

.thankyou {
    width: 80%;
    height: 350px;
    margin: auto;
    background-color: #bee9f5;
    margin-top: 10%;
}

.thankyou h1 {
    text-transform: capitalize;
    font-family: 'Lucida Sans';
    text-align: center;
    color: rgb(2, 69, 95);
    line-height: 200%;

}

/* media query............/// */

@media (max-width: 768px) {

    .wrapper {
        flex-direction: column;
        margin: 0 20px 0 20px;

    }

    .box {
        width: 100%;
        margin-top: 30px;

    }


    .tophead h1 {
        padding-top: 15px;
        font-size: 24px;

    }

    .hamburger {
        display: block;
        margin-right: 20px;


    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        display: none;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        display: none;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;


    }

    .nav-item {
        margin: 16px 0;
        list-style: none;

    }

    .nav-menu.active {
        left: 0;
        background-color: white;
        z-index: 1;
    }

    .nav-branding {
        font-size: 1rem;
    }

    .showcase img {
        height: 250px;
        width: 100%;
    }

    div#slider {
        height: 300px;
        width: 100%;
    }

    div#slider figure img {
        height: 300px;
    }

    .about-heading {
        margin-left: 20px;
    }



}