:root {
    --color1: #32cd7e;
    --font1: 'Outfit', sans-serif;
    --font2: 'hey_augustregular';
}

@font-face {
    font-family: 'hey_augustregular';
    src: url('../fonts/hey_august.woff2') format('woff2'),
        url('../fonts/hey_august.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: var(--font1);
    background: #fff;
}

.font1 {
    font-family: var(--font1);
}

.font2 {
    font-family: var(--font2);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ddd;
    padding: 0 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color1);
    border-radius: 40px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.heading {
    font-size: 50px;
    font-family: var(--font2);
}

.logo {}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin: 0;
    color: var(--color1);
    font-size: 29px;
    line-height: 40px;
    font-weight: bold;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marqueediv {
    text-align: center;
}

@keyframes animate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        color: orange;
    }

    100% {
        transform: scale(1);
    }
}

html,
body {
    height: 100%;
}

.wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.header {
    flex-shrink: 0;
}

main {
    flex-grow: 1;
    overflow: auto;
    min-height: 2em;
}

.footer {
    flex-shrink: 0;
}

.marqueediv p {
    font-size: 20px;
}

.blink {
    animation: animate 2s linear infinite;
    color: var(--color1);
}

.topright li {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 0;
}

.topright li a {
    display: block;
    border-radius: 50%;
    background: #007eee;
    color: #fff;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
}

.topright li:last-child {
    margin-right: 0;
}

.topright li:last-child a {
    background: #1ad737;
}

.topheader {
    padding: 10px 0;
}

.midheader {
    background-color: #fff;
    padding: 5px 0;
    border-bottom: 2px solid var(--color1);
}

.menubtn a {
    color: #000;
    font-size: 30px;
    display: block;
    line-height: 1;
    padding: 5px 0;
}

.radiobtnlist {
    flex-wrap: wrap;
}

.radiobtnlist label {
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    margin: 0;
    margin-bottom: 0px;
    position: relative;
    padding-left: 25px;
    vertical-align: middle;
}

.radiobtnlist label::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 3px;
    width: 10px;
    opacity: 0;
    height: 10px;
    z-index: 1;
    background: var(--color1);
    top: 7px;
    border-radius: 50%;
    transition: all 0.3s;
    transform: scale(0);
    visibility: hidden;
}

.radiobtnlist input:checked+label::before {
    opacity: 1;
    transition: all 0.3s;
    transform: scale(1);
    visibility: visible;
}

.radiobtnlist input:checked+label::after {
    border-color: var(--color1);
}

.radiobtnlist label::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    width: 16px;
    top: 4px;
    height: 16px;
    border: 1px solid #acacac;
    border-radius: 50%;
}

.radiobtnlist input {
    display: none;
}

.input-box>label {
    font-size: 14px;
    color: #4d4d4d;
    display: block;
    margin: 0 0 5px;
    min-height: 21px;
}

.input-box input[type="text"],
.input-box input[type="password"],
.input-box input[type="file"],
.input-box input[type="email"],
.input-box input[type="tel"],
.input-box select {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    outline: none;
    padding: 0 10px;
}

.input-box button,
.input-box input[type="submit"],
.mainbtn {
    background-color: var(--color1);
    display: inline-block;
    color: #fff;
    border: none;
    outline: none;
    padding: 8px 20px;
}

.input-box button:hover,
.input-box input[type="submit"]:hover,
.mainbtn:hover {
    color: #fff;
}

.mainbtn1 {
    border: 1px solid var(--color1);
    display: inline-block;
    color: var(--color1);
    outline: none;
    padding: 7px 20px;
}

.mainbtn1:hover {
    color: var(--color1);
}

.formbotbox {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    text-align: center;
}

.formbotbox p {
    font-weight: 500;
    font-size: 20px
}

.footer {
    background: #333;
}

.topfooter {
    padding: 5px 0;
}

.footsearch {}

.footsearch input[type="text"] {
    width: 100%;
    height: 40px;
    border: 1px solid #fff;
    outline: none;
    padding: 0 10px;
    background: #fff;
}

.footmenubtn a {
    color: #fff;
    font-size: 30px;
}

.footrightmenu li {
    display: inline-block;
    margin-right: 20px;
}

.footrightmenu li:last-child {
    margin-right: 0px;
}

.footrightmenu a {
    display: block;
    color: #fff;
}

.sideiframe {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    position: relative;
    border: 4px solid #fff;
}

.sideiframe img {
    width: 100%;
    border-radius: 20px;
}

.playbtn {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.54);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.playbtn i {
    color: #fff;
    font-size: 40px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots button {
    outline: none;
    margin: 0 5px;
}

.owl-dots span {
    display: block;
    width: 15px;
    height: 15px;
    background: #eee;
    border-radius: 50%;
}

.owl-dots .active span {
    background: var(--color1);
}



.servicebox {
    border: 1px solid #eee;
}

.proimagebox a {
    display: block;
    position: relative;
}

.serviceimg {
    overflow: hidden;
}

.serviceimg img {
    width: 100%;
    transition: all 0.3s;
}

.servicebox:hover .proimageboxinn {
    opacity: 1;
    transition: all 0.5s
}

.servicebox:hover .serviceimg img {
    transition: all 0.5s;
    transform: scale(1.1);
}

.servicedata {
    padding: 10px;
}

.servicedata h5 {
    margin: 0;
    color: #000;
}

.servicedata h5 a {
    color: #000;
}

.menusidebar {
    background: #fff;
    width: 300px;
    position: fixed;
    top: 0;
    transition: all 0.5s;
    z-index: 40;
    height: 100%;
}

.leftbar {
    left: -300px;
}

.botleftbar {
    left: -300px;
}

.menusidebar.rightbar {
    width: 300px;
}

.rightbar {
    right: -300px;
}

.leftbar.open {
    left: 0px;
    transition: all 0.5s;
}

.botleftbar.open {
    left: 0px;
    transition: all 0.5s;
}

.rightbar.open {
    right: 0px;
    transition: all 0.5s;
}

.bgoverlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 39;
    height: 100%;
    cursor: url(../images/close.svg) 4 12, auto;
}

.sidebarmap {}

.sidebarmap iframe {
    width: 100%;
    height: 400px;
}

.rightsidelinks li {
    margin-bottom: 10px;
}

.rightsidelinks li:last-child {
    margin-bottom: 0px;
}

.rightsidelinks li a {
    border: 1px solid var(--color1);
    display: block;
    color: var(--color1);
    outline: none;
    padding: 7px 20px;
}

.rightsidelinks li a:hover {
    background: var(--color1);
    color: #fff;
}

.menusidebar.rightbar .rightsidelinks li {
    display: inline-block;
}


.testimonial_box {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 5px;
}

.author_wrap {}

.author_img {
    margin-bottom: 10px;
}

.author_img img {
    border-radius: 5px;
    border: 1px solid #eee;
    width: 100%;
}

.author_name {
    -ms-flex: 1;
    flex: 1;
}

.testirate {
    margin-bottom: 5px;
}

.testistarrate i {
    font-size: 16px;
    color: #eaeaea;
}

.testistarrate {
    display: inline-block;
    margin-right: 10px;
}

.testidate {
    display: inline-block;
}

.testimaindata p {
    margin: 0 0 7px;
    font-style: italic;
}

.testidate span {
    font-size: 13px;
    font-style: italic;
}

.testimaindata h6 {
    font-family: var(--font1);
    margin: 0;
    font-size: 13px;
}

.banner {
    position: relative;
}

.bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.bannertext {
    z-index: 0;
    padding: 100px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.bannertext h3 {
    font-size: 67px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: bolder;
}

.bannertext h3 span {
    font-size: 180px;
    display: block;
}

.bannertext h5 {
    font-size: 30px;
    font-family: var(--font1);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 40px;
}

.container {
    position: relative;
    z-index: 2;
}

.bg:after {
    content: '';
    display: block;
    background: rgb(0 0 0 / 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.menubarclose {
    position: absolute;
    top: 0;
    z-index: 100;
    color: #fff;
    font-size: 30px;
    display: none;
    line-height: 1;
    padding: 10px;
    pointer-events: none;
    cursor: pointer;
}

.menubarclose:hover {
    color: #fff;
}

.leftbar .menubarclose {
    transform: translateX(100%);
    right: 0;
}

.rightbar .menubarclose {
    transform: translateX(-100%);
    left: 0;
}

.botleftbar .menubarclose {
    transform: translateX(100%);
    right: 0;
}

.menusidebar.open .menubarclose {
    display: block;
}

.sidebarscroll {
    height: 100%;
    overflow: auto;
}

.bannerbotcity {
    pointer-events: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 30;
}

hr {
    margin: 40px 0;
    border-top: 2px dashed #fff;
}

.proimagebox {
    overflow: hidden;
}

.proimagebox a {
    display: block;
    position: relative;
}

.proimageboxinn {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.54);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
}

.proimageboxinn i {
    color: #fff;
    font-size: 30px;
}

.proimagebox img {
    width: 100%;
    transition: all 0.3s;
}

.proimagebox:hover .proimageboxinn {
    opacity: 1;
    transition: all 0.5s
}

.proimagebox:hover img {
    transition: all 0.5s;
    transform: scale(1.1);
}


.sidemenuinn>ul>li {
    position: relative;
}

.sidemenuinn>ul>li>a {
    display: block;
    color: #000;
    padding: 10px 0px;
}

.sidemenuinn>ul>li>a>i {
    display: inline-block;
    font-weight: 900;
    position: absolute;
    pointer-events: none;
    right: 0;
    font-size: 15px;
    top: 0;
    padding: 14px 0;
}

.sidemenuinn ul ul {
    display: none;
}

.sidemenuinn ul ul li a {
    display: block;
    color: #000;
    padding: 10px 20px;
}

.sidemenuinn a:hover {
    color: var(--color1);
}

.bgpattern {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    height: 100%;
    pointer-events: none;
    transform: scale(1.08, 1.24);
}

.bgpattern img {
    width: 100%;
    height: 100%;
}

.detailheading {}

.detailheading h1 {}

.detailmap {
    width: 100%;
    height: 500px;
}

.detailmap iframe {
    width: 100%;
    height: 100%;
}

.detailcounters {}

.detailcounters li {
    display: inline-block;
}

.detailcounters li:not(:first-child) {
    background: var(--color1);
    margin-left: 10px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.mapfloatmenu {
    background: #fff;
    box-shadow: 0px 0px 5px #00000075;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    top: 10px;
    display: none;
}

.mapfloatmenu.left {
    left: 10px;
}

.mapfloatmenu.right {
    right: 10px;
}

.mapfloatmenu li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.mapfloatmenu a {
    display: block;
    color: #000;
    padding: 10px 30px;
    font-size: 14px;
}

.mapfloatmenu a:hover {
    background: var(--color1);
    color: #fff;
}

.container-box {
    position: relative;
    width: 900px;
    height: 400px;
    margin: auto;
    background-image: url('../independence\ day\ image\ for\ website\ 4.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100vh;
}

.bank-card {
    position: absolute;
    display: block;
    height: 190px;
    width: 350px;
    bottom: 20px;
    right: 20px;
    /* left: 0px; */
    background: #ffffff;
}

.container-box input {
    height: 40px;
    width: 100%;
    outline: none;
    border: none;
    background-color: rgb(240, 239, 239);
    margin-bottom: 5px;
    border-radius: 5px;
}

.container-box p {
    margin-bottom: 0px;
}

.bank-card-form {
    margin: 20px 10px;
}

.container-box button {
    background-color: #007eee;
    color: #fff;
    border: none;
    outline: none;
    width: 100%;
    height: 40px;
    border-radius: 5px;
}

.information {
    border: 1px solid rgb(226, 226, 226);
    width: 850px;
    margin: 20px auto;
}

.innformation-form {
    display: flex;
    margin: 15px 30px;
    justify-content: space-between;
}

.innformation-form input {
    width: 380px;
    height: 35px;
    border: 1px solid rgb(201, 199, 199);
    border-radius: 5px;
    padding-left: 10px;
}

.innformation-form input::placeholder {
    color: #acacac;
    font-weight: 100;
}

.box-wrapper {
    /* border: 2px solid red; */
    /* width: 400px; */
    margin: auto;
    display: flex;
    width: 900px;
    justify-content: space-between;
}

.intent-box,
.demand-box {
    position: relative;
    width: 435px;
    border: 1px solid rgb(226, 226, 226);
}

.box-wrapper input[type="checkbox"] {
    margin-left: 5px;
    margin-bottom: 25px;
}


.box-wrapper label {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

.btn-wrapper {
    position: relative;
    width: 900px;
    margin: 15px auto;
}

.btn-wrapper input[type="submit"] {
    border: none;
    background-color: #32cd7e;
    outline: none;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    color: #ffffff;
    font-weight: 200;
}

.demand-form,
.intent-form {
    position: relative;
    margin: 60px 20px;
    z-index: 0;
    /* width: 100%; */
}

.demand-box,
.intent-box {
    position: relative;
}

.demand-heading,
.intent-heading {
    font-size: 22px;
    position: absolute;
    top: -78px;
    border-bottom: 1px solid rgb(226, 226, 226);
    color: #0e8a20;
    background: #ffffff;
}

@media (max-width:500px) {
    .heading {
        font-size: 40px;
    }

    .container-box 
    {
        position: relative;
        width: 90vw;
        height: 90vh;
        margin: auto;
        background-position: center;
        /* background-position: 100vh ; */
        background-position: left 40px;
    }
    .bank-card {
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #ffffff;
    }


    .innformation-form
    {
        flex-direction: column;
    }

    .information {
        border: 1px solid rgb(226, 226, 226);
        width: 90vw;
        margin: 20px auto;
    }
    .innformation-form input
    {
        margin-bottom: 5px;
    }
    .box-wrapper {
        /* border: 2px solid red; */
        /* width: 400px; */
        width: 90vw;
        margin: 10px auto;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .intent-box
    {
        margin-bottom: 20px;
    }
    .footer
    {
        width: 100vw;
    }
}