@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

body {
    font-family: "Fira Sans", sans-serif;
}

.container {
    max-width: 1175px;
}

::selection {
    background: #111a2b;
    color: #f4a63a;
}

/* ************************************ */

/*RESPONSIVE NAVIGATION*/

.mobile-menu {
    display: none;
}

.mobile-menu .circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    background: #f4a63a;
    margin: 0 auto;
    font-size: 16px;
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.mobile-menu .mobile-cross {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    background: #f4a63a;
    margin: 0 auto;
    font-size: 16px;
    position: fixed;
    right: 10px;
    top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.mobile-menu .nveMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transform: translateX(-320px);
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    padding: 40px 20px;
}

.mobile-menu .nveMenu.is-opened {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/*.mobile-menu .nveMenu h1 {
  color: #000;
  font-weight: 700;
  }*/

.mobile-menu .overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 280px);
    height: 100%;
    background: rgba(0, 0, 0, 0.71);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-menu .overlay.is-on {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.mobile-menu .navlinks li {
    display: block;
    padding: 12px 0;
}

.mobile-menu .navlinks li a {
    color: #666;
    font-weight: 700;
}

.mobile-menu .navlinks li a:hover {
    text-decoration: none;
}

.mobile-menu .dropdown-menu {
    display: none;
    padding-left: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.mobile-menu .dropdown-menu li {
    padding: 10px;
}

.mobile-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.mobile-menu .dropdown.show .dropdown-menu {
    display: block;
}

/*RESPONSIVE NAVIGATION*/

.active-class {
    border: 2px solid #000;
}

/* ************************************ */

/* Button */

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
    background-color: #f4a63a;
    outline: 3px #f4a63a solid;
    outline-offset: -3px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 400ms;
}

.button .text {
    color: white;
    font-size: 1em;
    transition: 400ms;
}

.button:hover {
    background-color: transparent;
    color: #f4a63a;
    font-weight: 700;
}

.button:hover .text {
    color: #f4a63a;
}

.button-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
    background-color: transparent;
    outline: 3px #f4a63a solid;
    outline-offset: -3px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 400ms;
}

.button-2 .text {
    color: #f4a63a;
    font-size: 1em;
    transition: 400ms;
}

.button-2:hover {
    background-color: #f4a63a;
}

.button-2:hover .text {
    color: #fff;
}

.b-flex {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.b-flex p {
    margin-bottom: 0px !important;
}

/* Button */

/* Header */

.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-link {
    color: #000;
}

.navbar-expand-md .navbar-nav {
    align-items: center;
}

.nav-item:nth-child(1),
.nav-item:nth-child(2),
.nav-item:nth-child(3) {
    display: none;
}

/* Header */

/* Banner */

.banner {
    position: relative;
    padding: 100px 0px 80px;
    background: linear-gradient(90deg, #000000f0 0%, #ffffff00 100%), url(../images/banner.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 650px;
    display: flex;
    align-items: center;
}

.banner-content {
    margin: auto 0px;
}

.banner h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 15px;
    font-family: "Merriweather", serif;
}

.banner p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

.banner .b-flex p {
    margin-bottom: 0px;
}

.banner .slick-slide img {
    width: 70%;
    /* margin: 20px auto; */
    margin-top: 20px;
}

/* Banner */

/* Services */

.ourArmySec {
    background: #111a2b;
    padding: 3rem 0 2rem;
    position: relative;
}

.ourArmySec h2 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.ourArmySec h2 span {
    color: #f4a63a;
}

.ourArmySec p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 2rem;
}

.ourArmySec .category-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.ourArmySec .category-list .s_item {
    display: inline-block;
    /* width: 21.9%; */
    box-sizing: border-box;
    margin: 0px 5px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #f4a63a;
    padding: 20px 0;
    transition: 0.3s ease-in-out;
}

.ourArmySec .category-list .s_item:hover {
    transform: scale(1.05);
    background: #f4a63a;
    border-color: #fff;
}

.ourArmySec .category-list .s_item:hover h6 {
    color: #fff;
}

.ourArmySec .category-list .s_item img {
    height: 70px;
    width: 70px;
    margin: 0px auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.ourArmySec .category-list .s_item h6 {
    font-size: 14px;
    color: #f4a63a;
    font-weight: 400;
}

.ourArmySec .slick-track {
    margin: 30px 0px;
}

.c_box {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #f4a63a;
    padding: 10px 5px;
    transition: 0.5s ease-in-out;
    position: absolute;
    left: 0;
    top: 50%;
    background: #fff;
    color: #f4a63a;
    transform: translateY(-50%);
    display: none;
}

.c_box p {
    color: #000000;
    margin-bottom: 0px;
    font-size: 14px;
}

.ourArmySec .category-list .s_item:hover .c_box {
    display: inline-block;
}

.ourArmySec .slick-dots li.slick-active button:before {
    opacity: 0.8;
    color: #f4a63a;
    background: #f4a63a;
}

.ourArmySec .slick-dots li button:before {
    font-size: 18px;
    background: transparent;
    border: 1px solid #f4a63a;
    display: flex;
    width: 12px;
    height: 7px;
    content: "";
    border-radius: 0px;
    opacity: 0.8;
    color: transparent;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ourArmySec .slick-dots {
    bottom: -12px;
}

/* Services */

/* Why Choose */

.bookSec {
    padding: 4rem 0 2rem;
    position: relative;
}

.bookSec h2 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
}

.bookSec h2 span {
    color: #f4a63a;
}

.bookSec p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 2rem;
}

.bookBox {
    background: #fff;
    box-shadow: 0 0 20px #0000001f;
    padding: 2rem 3rem;
    margin: 1rem 0;
    border-radius: 0;
    transition: all 0.3s ease;
    height: 430px;
    border: 2px solid #f4a63a;
}

.bookBox:hover {
    background: #f4a63a;
    border-color: #000;
}

.bookBox h3 {
    font-size: 28px;
    margin-top: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.bookBox p {
    margin: 1.25rem 0 2rem;
    font-size: 16px;
}

.bookBox:hover img {
    filter: invert(1) brightness(30.5);
}

.bookBox:hover h3,
.bookBox:hover p {
    color: #fff;
}

/* Why Choose */

/* CTA-1 */

.cta-1 {
    padding: 2rem 0 2rem;
    background: #111a2b;
}

.cta-1-2 {
    background: #fff;
    padding: 4rem 0 2rem;
}

.cta-1 img {
    border-radius: 20px;
}

.cta-1-2 img {
    border-radius: 0px;
}

.cta-1 h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #f4a63a;
    margin-bottom: 20px;
}

.cta-1 p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-1-2 p {
    color: #000000;
}

.cta-1-2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 2rem;
    justify-content: space-between;
}

.cta-1-2 ul li {
    flex: 0 0 80%;
    font-weight: 500;
}

/* CTA-1 */

/* Reviews */

.reviews {
    padding: 3rem 0 1rem;
    background: linear-gradient(90deg, #00000017 0%, #00000005 100%), url(../images/testi-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reviews h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: bold;
    color: #f4a63a;
    margin-bottom: 15px;
}

.reviews .item {
    box-shadow: 2px 2px 17px 6px #efefef;
    height: 340px;
    display: flex;
    align-items: center;
}

.review-image {
    width: 150px !important;
    margin: 0px auto;
}

.reviews .item p {
    color: #000000;
    margin-bottom: 20px;
    font-size: 16px;
}

.reviews .item i {
    color: #f4a63a;
}

.reviews .owl-theme .owl-dots .owl-dot span {
    background: #5b7099;
}

.reviews .owl-theme .owl-dots .owl-dot.active span {
    background: #f4a942;
}

/* Reviews */

/* Footer */

.foot {
    background-color: #1a2131;
    color: #28303b;
    padding: 0px 0;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .foot {
        padding: 0;
    }
}

.foot h5 {
    color: #f4a63a;
    margin-bottom: 1rem;
}

.foot .nav {
    display: block;
    column-count: 2;
}

.foot-nav .nav-link {
    color: #28303b;
}

.foot-nav .nav-link:hover {
    color: #28303b;
    opacity: 0.8;
}

.foot-quick-links li {
    margin-bottom: 8px;
}

.foot-quick-links li a {
    color: #ffffff;
    text-decoration: none;
}

.foot-quick-links li a:hover {
    /* color: #111a2b; */
    opacity: 1;
}

.foot-nav li:hover {
    opacity: 1 !important;
}

.foot hr {
    background-color: #f4a63a;
}

.copy {
    font-size: 13px;
    color: #fff;
}

.social-ul {
    list-style-type: none;
}

.social-ul i {
    color: #f4a63a;
    margin-right: 5px;
    font-size: 14px;
}

.foot-text {
    width: 80%;
    margin: 0px auto 0px 0px;
    color: #fff;
}

.footer {
    padding: 3rem 0rem 2rem;
}

.terms {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.terms li {
    color: #f4a63a;
}

.terms li a {
    font-size: 14px;
    color: #f4a63a;
    padding: 0px 5px;
}

.terms li a:hover {
    color: #fff;
}

.terms li a i {
    font-size: 16px;
}

.terms.social-ul {
    justify-content: flex-end;
}

/* Footer */

/* Process */

.process {
    background: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
}

.process .heading {
    font-size: 40px;
    line-height: 1.3;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.proBox {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    height: 250px;
    padding: 10px 15px;
    border-radius: 15px;
    transition: 0.5s;
    border: 2px solid transparent;
}

.proBox h6 {
    color: #f4a63a;
    text-align: center;
    padding: 10px;
    border: 1px solid #f4a63a;
    margin: 0px auto 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: #fff;
    position: relative;
    z-index: 9;
}

.proBox h4 {
    color: #000;
    font-size: 22px;
    margin-bottom: 15px;
}

.proBox h4 span {
    color: #f4a63a;
}

.proBox p {
    color: #000;
    font-size: 16px;
}

.proBox:hover {
    /* border: 2px solid #f4a63a; */
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    /* height: 350px; */
}

.proBox:hover h6 {
    color: #111a2b;
    border: 1px solid #111a2b;
    background: #f4a63a;
}

.pb-container {
    position: relative;
}

/* Process */

/* Hire */

.hire {
    padding: 4rem 0 0rem;
    background: url(../images/hire-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.hire h4 {
    font-size: 20px;
    font-weight: 600;
    color: #f4a63a;
    margin-bottom: 15px;
}

.hire h2 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
}

.hire p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 2rem;
}

/* Hire */

/* Form Section */

.form-sec {
    padding: 1rem 0px;
    position: relative;
    z-index: 99;
}

.form-main-heading {
    font-size: 30px;
    line-height: 1.3;
    font-weight: bold;
    color: #f4a63a;
    margin-bottom: 20px;
    text-align: center;
}

.banner .form-main-para {
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.form-container {
    background: linear-gradient(90deg, #ffffffe8 50%, #ffffff 100%), url(../images/form-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 50%) 0px 0px 55px, rgba(0 0 0 / 50%) 0px -12px 30px, rgba(0 0 0 / 50%) 0px 4px 6px, rgba(0 0 0 / 55%) 0px 12px 13px, rgba(0 0 0 / 60%) 0px -3px 5px;
}

.form-sec .form-control {
    padding: 0.775rem 0.75rem;
    color: #000000;
    border: 1px solid #f4a63a;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.form-container button {
    padding: 0.775rem 0.75rem;
    border-radius: 40px;
    color: #111a2b;
}

/* Form Section */

/* Marquee */

.marquee-sec {
    --space: 2rem;
    --gap: 0px;
    display: grid;
    align-content: center;
    overflow: hidden;
    gap: var(--space);
    width: 100%;
    font-family: "Corben", system-ui, sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    min-height: 100vh;
    background: #111a2b;
}

.marquee {
    --duration: 60s;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    transform: skewY(-3deg);
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
}

/* @media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
} */

.marquee__group img {
    /* max-width: clamp(17rem, 1rem + 28vmin, 20rem); */
    width: 260px;
    height: 360px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
}

.marquee__group p {
    background-image: linear-gradient(75deg, hsl(34.84deg 89.42% 59.22%) 0%, hsl(0, 0%, 100%) 11%, hsl(32.07deg 93.13% 54.31%) 22%, hsl(0, 0%, 100%) 33%, hsl(34.84deg 89.42% 59.22%) 44%, hsl(0, 0%, 100%) 56%, hsl(32.22deg 92.31% 54.12%) 67%, hsl(0, 0%, 100%) 78%, hsl(34.84deg 89.42% 59.22%) 89%, hsl(0, 0%, 100%) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 800;
}

.marquee--borders {
    border-block: 3px solid #f4a63a;
    padding-block: 0.75rem;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: calc(var(--duration) / -2);
}

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

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* Marquee */

/* Modal Popup */

.modal {
    background: #000000a8;
    backdrop-filter: blur(5px);
}

.modal-dialog {
    min-width: 46rem;
}

.modal-body {
    border: 2px solid #f4a63a;
    border-radius: 15px;
    padding: 15px;
}

.modal-content {
    background: url(../images/popup-bg.webp) no-repeat;
    border-radius: 20px;
    padding: 15px;
    position: relative;
}

.modal-body h2 {
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.4;
    font-size: 35px;
}

.modal-body h2 span {
    color: #fff;
    animation: blinker 1s infinite;
}

.modal-content .btn-close {
    position: absolute;
    color: #000000;
    right: 10px;
    top: 5px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    z-index: 99;
    background: #f4a63a;
    opacity: 1;
    height: 25px;
    width: 25px;
}

.modal-content .form-control {
    color: #000000;
    border-radius: 12px;
}

.modal-content textarea.form-control {
    min-height: 90px;
}

.modal-content .button {
    border-radius: 25px;
    margin: 0px auto;
    width: 100%;
    font-weight: 700;
}

.modal-content .button:hover {
    color: #f4a63a;
}

@keyframes blinker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Modal Popup */

/* Contact */

.c_ban {
    height: 400px;
}

.contact {
    padding: 3rem 0 0rem;
}

.c_form p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.c_form p span {
    font-size: 22px;
    color: #f4a63a;
    font-weight: 600;
    display: inline-block;
}

.c_form .form-control {
    padding: 0.65rem 0.75rem;
    color: #000000;
    border: 1px solid #f4a63a;
    border-radius: 0rem;
    box-shadow: rgb(245 146 32 / 20%) 0px 7px 29px 0px;
}

.c_form textarea.form-control {
    min-height: 110px;
}

.c_form .button {
    width: 100%;
    border-radius: 0px;
    font-weight: 700;
    font-size: 20px;
    margin: 3px auto 20px;
    background: #f4a63a;
    color: #1a2131;
    outline: 2px solid #fff;
}

.c_form .button:hover {
    background: #f4a63a;
    color: #000000;
    outline: 3px #000000 solid;
}

/* Contact */

/* FAQ */

.faq {
    padding: 3rem 0 2rem;
    background: url(../images/faq-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq-head {
    font-size: 40px;
    line-height: 1.3;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.faq .accordion-item {
    background-color: #ffe4c4;
    margin-bottom: 10px;
    border-radius: 20px;
}

.faq .accordion-button {
    background-color: #ffe4c4;
    color: #000;
}

.faq .accordion-flush .accordion-item .accordion-button {
    border-radius: 20px 20px 0px 0px;
}

.accordion-button:focus {
    border-color: #86b7fe00;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}

/* FAQ */

/* Privacy */

.p_ban {
    background: linear-gradient(90deg, #f4a63a1c 0%, #0000007a 100%), url(../images/privacy-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

.content-page {
    padding: 3rem 0 7rem;
}

.content-page .sub-heading {
    margin-top: 20px;
    color: #f4a63a;
}

.content-page ul {
    padding-left: 20px;
}

.content-page a {
    color: #f4a63a;
}

.content-page p {
    margin-bottom: 5px;
}

/* Privacy */

/* Side Form */

.floatbutton {
    transition: 0.4s;
    position: fixed;
    right: -370px;
    top: 16%;
    font-size: 0;
    width: 420px;
    z-index: 99999;
}

.floatbutton .btns_wrap {
    position: fixed;
    right: -6px;
}

.floatbutton .btns_wrap a:hover {
    text-decoration: none !important;
    right: 0;
    background: #fff;
}

.floatbutton .btns_wrap .chat_wrap {
    display: block;
    top: 40px;
    border-radius: 0;
    -webkit-transition: 0.3s;
    transition: 0.7s;
}

.floatbutton .btns_wrap .call_wrap {
    top: 120px;
    border-radius: 0;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.floatbutton .btns_wrap .call_wrap,
.floatbutton .btns_wrap .chat_wrap {
    right: -225px;
    width: 280px;
    box-shadow: 0 0 40px #00000026 !important;
    position: absolute;
    padding: 0;
    overflow: hidden;
    border-radius: 0px;
}

.floatbutton .btns_wrap .call_wrap span.icoo,
.floatbutton .btns_wrap .chat_wrap span.icoo {
    color: #000;
    font-size: 18px;
    padding: 18px 16px 16px;
    border-right: none;
    vertical-align: middle;
    display: inline-block;
    border-radius: 0;
    background: linear-gradient(90deg, #ffaa47 0%, #f6921e 100%);
}

.icoo i {
    color: #111a2b;
}

.floatbutton .btns_wrap .chat_wrap span,
.floatbutton .btns_wrap .call_wrap span {
    color: #111a2b;
    font-size: 20px;
    vertical-align: middle;
    background: #fff;
    padding: 15px 30px 15px 15px;
}

.floatbutton .clickbutton {
    border-radius: 0;
    width: 50px;
    z-index: 9;
    box-shadow: -20px 7px 18px -7px rgba(87, 184, 151, 0.09);
    padding-top: 0;
    background: linear-gradient(90deg, #f4a63a 0%, #f6921e 100%);
    margin-top: 198px;
    font-size: 14px;
    position: relative;
    -ms-box-shadow: 0 0 40px #00000026;
    -o-box-shadow: 0 0 40px #00000026;
}

.floatbutton .clickbutton,
.floatbutton2 .clickbutton2 {
    height: 270px;
    display: inline-block;
    vertical-align: top;
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0px;
}

.borderOnly {
    border-left: 2px solid #111a2b;
}

.floatbutton .clickbutton .crossplus {
    transition: 0.4s;
    position: absolute;
    display: block;
    transform: rotate(-90deg);
    font-size: 20px;
    color: #111a2b;
    left: -153%;
    white-space: pre;
    bottom: 122px;
    font-weight: 500;
    font-family: "Fira Sans", sans-serif;
}

.floatbutton .banner-form,
.floatbutton2 .banner-form {
    background: linear-gradient(90deg, #f4a63a 0%, #f6921e 100%);
    padding: 30px;
    position: relative;
    z-index: 9;
    border-radius: 0px;
    margin: 110px 0 0;
    width: 370px;
    display: inline-block;
    box-shadow: 0 0 30px #0000001f;
    z-index: 9999;
}

.banner-form {
    top: 35px;
    right: 0;
}

.floatbutton .banner-form button,
.floatbutton2 .banner-form button {
    padding: 0;
    background: #111a2b !important;
    opacity: 1;
    color: #f4a63a;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    z-index: 11;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
}

.floatbutton .banner-form h3,
.floatbutton2 .banner-form h3 {
    color: #111a2b;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.floatbutton .banner-form .ban-form input,
.floatbutton2 .banner-form .ban-form input {
    width: 100%;
    margin: 0 0 15px;
    border: 1px solid #111a2b !important;
    background: 0 0;
    padding: 10px 15px;
    color: #000000;
    font-size: 16px;
    border-radius: 25px;
    height: 45px;
    font-weight: 400;
    outline: 0 !important;
}

.floatbutton .banner-form .ban-form input::placeholder,
.floatbutton2 .banner-form .ban-form input::placeholder {
    color: #111a2b;
}

.floatbutton .banner-form .ban-form input[type="submit"],
.floatbutton2 .banner-form .ban-form input[type="submit"] {
    color: #fff;
    font-weight: 600;
    background: #111a2b;
    text-align: center;
    padding: 10px 15px;
    margin: 0px 0 0;
    border-radius: 25px;
    border: transparent;
}

.floatbutton.active {
    right: 0;
    z-index: 11;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#cross-side-bar-btn span {
    position: absolute;
    top: 1%;
    left: 27%;
}

/* Side Form */


.navbar-brand img {
    width: 10rem;
    position: absolute;
    top: 14px;
}

.footer img {
    width: 10rem;
    padding: 0 0 10px;
}

.text-white{
    color: #ffffff;
}