body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    margin: 0;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none !important;
    color: inherit
}

a:hover {
    color: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

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

p {
    margin: 0
}

:root {
    --container-width: 1230px;
    --container-padding: calc((100vw - var(--container-width)) / 2)
}

.container {
    max-width: 1230px;
    padding: 0;
}

#wrap {
    float: left;
    width: 100%;
}

#middle {
    float: left;
    width: 100%;
}




header {
    display: flex;
    padding: 0;
}

header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-main .logo {
    width: auto;
    padding: 12px 0;
}

header .header-main .logo a img {
    width: 100%;
    height: auto;
}

header .header-main .menu_sec {
    display: flex;
    align-items: center;
}

header .header-main ul.menu {
    display: flex;
    grid-gap: 40px;
}

header .header-main ul.menu li {
    display: block;
}

header .header-main ul.menu li:last-child {
    margin-right: 0;
}

header .header-main ul.menu li a {
    position: relative;
    display: block;
    padding: 18px 0;
    border-bottom: 4px solid transparent;
    font-size: 13px;
    line-height: 20px;
    color: #021a24;
    font-weight: 900;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

header .header-main ul.menu>li>a::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    border: 7px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    transition: all .3s ease-in-out;
}

header .header-main ul.menu>li>a:hover,
header .header-main ul.menu>li:hover>a,
header .header-main ul.menu>li.current_page_item>a {
    border-bottom-color: #f89924;
}

header .header-main ul.menu>li>a:hover::after,
header .header-main ul.menu>li:hover>a::after,
header .header-main ul.menu>li.current_page_item>a::after {
    border-bottom-color: #f89924;
}

header .header-main .menu_sec ul.menu>li:hover>ul.sub-menu {
    display: block;
}

header .header-main .menu_sec ul.menu li ul.sub-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    float: left;
    width: 250px;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    display: none;
}

header .header-main .menu_sec ul.menu li ul.sub-menu li {
    float: left;
    width: 100%;
    padding: 0 0px;
}

header .header-main .menu_sec ul.menu li ul.sub-menu li a {
    padding: 10px 12px;
    border-radius: 0px;
    font-size: 16px;
    color: #1a1a1a;
    text-transform: none;
    cursor: pointer;
}

header .header-main .menu_sec .menu_sec ul.menu li ul.sub-menu li a:hover,
header .header-main .menu_sec .menu_sec ul.menu li ul.sub-menu li:hover>a,
header .header-main .menu_sec .menu_sec ul.menu li ul.sub-menu li.current_page_item>a {
    background-color: #e9650d;
    color: #ffffff;
    text-decoration: none;
}

header .header-main .menu_sec .menu_sec ul.menu li ul.sub-menu li.menu-item-has-children>a:after {
    content: "\f125";
    right: 10px;
}

header .header-main .menu_sec .menu_sec ul.menu li ul li ul.sub-menu {
    top: 0;
    left: 100%;
    display: none;
}

header .header-main .menu_sec .menu_sec ul.menu>li>ul>li:hover>ul.sub-menu {
    display: block;
}

header .header-main .login-btn {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    border-radius: 50px;
    padding: 8px 35px;
    margin-left: 50px;
    background-color: #f89924;
    transition: all .5s ease-in-out;
}

header .header-main .login-btn:hover {
    background-color: #021a24;
}

/* hamburger menu */
header .header-main .hamburger {
    position: relative;
    float: left;
    width: auto;
    display: none;
}

header .header-main .hamburger #nav-btn,
header .header-main .hamburger #nav-btn+label {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    z-index: 99;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    justify-content: center;
}

header .header-main .hamburger #nav-btn {
    position: relative;
    opacity: 0;
    z-index: 100;
}

header .header-main .hamburger #nav-btn+label span {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #4f2916;
    position: relative;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

header .header-main .hamburger #nav-btn+label span::before,
header .header-main .hamburger #nav-btn+label span::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #4f2916;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

header .header-main .hamburger #nav-btn+label span::before {
    width: 20px;
    top: -10px;
}

header .header-main .hamburger #nav-btn+label span::after {
    bottom: -10px;
}

header .header-main .hamburger #nav-btn:checked+label span {
    transform: rotate(135deg);
    background-color: #ffffff;
    border-radius: 2px;
    width: 20px;
}

header .header-main .hamburger #nav-btn:checked+label span::before,
header .header-main .hamburger #nav-btn:checked+label span::after {
    width: 20px;
    top: 0;
    max-width: 100%;
    transform: rotate(90deg);
    background-color: #ffffff;
}

header .header-main .hamburger #nav-btn:checked+label span::after {
    opacity: 0;
}

header .header-main .hamburger #nav-btn:checked~nav {
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    overflow: hidden;
}

header .header-main .hamburger #nav-btn:checked+label {
    border: 1px solid #ffffff;
}

header .header-main .hamburger nav.hamburger_menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 1;
    z-index: 98;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
    transition: transform 0.5s, visibility 0s 0.5s;
    overflow: hidden;
}

header .header-main .hamburger .hamburger_menu ul.menu {
    flex-direction: column;
    grid-gap: 0;
}

header .header-main .hamburger .hamburger_menu ul.menu li {
    width: 100%;
    position: relative;
}

header .header-main .hamburger .hamburger_menu ul.menu li:last-child {
    margin-right: 0;
}

header .header-main .hamburger .hamburger_menu ul.menu li a {
    padding: 10px 0;
    font-size: 18px;
    line-height: 35px;
    color: #ffffff;
    text-align: center;
}

/* banner-section */
.banner-section {
    width: 100%;
    float: left;
    background-color: #f4f4f4;
    padding: 100px 0 90px;
}

.banner-section .left-col {
    width: 100%;
    float: left;
}

.banner-section .left-col h1 {
    font-size: 61px;
    line-height: 62px;
    color: #f89924;
    font-weight: 900;
    margin-bottom: 30px;
}

.banner-section .left-col h1 strong {
    color: #021a24;
}

.banner-section .left-col p {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    margin-bottom: 40px;
}

.banner-section .left-col .started-btn {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    padding: 13px 39px;
    border-radius: 50px;
    background-color: #f89924;
    box-shadow: none;
    transition: all .5s ease-in-out;
}

.banner-section .left-col .started-btn:hover {
    background-color: #021a24;
}

.banner-section .right-col {
    position: relative;
    display: flex;
    align-items: center;
    width: calc(100% + var(--container-padding) - 10px);
    overflow: hidden;
}

.banner-section .right-col::before {
    content: '';
    max-width: 710px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/banner-design.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.banner-section .right-col img {
    max-width: 648px;
    width: 100%;
    height: auto;
    z-index: 1;
}

/* fuelkad-sec */
.fuelkad-sec {
    width: 100%;
    float: left;
    padding: 100px 0;
}

.fuelkad-sec h2 {
    font-size: 48px;
    line-height: 62px;
    color: #f89924;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.fuelkad-sec h2 strong {
    color: #021a24;
    font-weight: 700;
}

.fuelkad-sec p {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    margin-bottom: 80px;
}

.fuelkad-sec .left-col h3 {
    font-size: 40px;
    line-height: 62px;
    color: #f89924;
    font-weight: 700;
}

.fuelkad-sec .right-col p {
    margin-bottom: 20px;
}

.fuelkad-sec h3 {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 700;
    margin-bottom: 20px;
}

.fuelkad-sec ul {
    margin-bottom: 40px;
}

.fuelkad-sec ul li {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    padding-left: 30px;
}

.fuelkad-sec ul li::before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 20px;
    content: '';
    background-image: url(../images/benefits-icons.png);
    background-size: cover;
    background-repeat: no-repeat;
}

/* footer */
footer {
    width: 100%;
    float: left;
    background-color: #1e1d1b;
}

footer .top-footer {
    width: 100%;
    padding: 70px 0;
    float: left;
}

footer .top-footer .footer-logo {
    width: 100%;
    float: left;
    margin-bottom: 35px;
}

footer .top-footer .footer-logo img {
    max-width: 196px;
    width: 100%;
    height: auto;
}

footer .top-footer .footer-content {
    width: 100%;
    float: left;
}

footer .top-footer .footer-content h3 {
    font-size: 20px;
    line-height: 30px;
    color: #f89924;
    font-weight: 700;
    margin-bottom: 15px;
}

footer .top-footer .footer-content p,
footer .top-footer .footer-content a {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #9e9e9e;
    font-weight: 400;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

footer .top-footer .footer-content a:hover {
    color: #f89924;
}

footer .top-footer .footer-links h3 {
    font-size: 20px;
    line-height: 30px;
    color: #f89924;
    font-weight: 700;
    margin-bottom: 30px;
}

footer .top-footer .footer-links ul.fast-col {
    margin-bottom: 50px;
}

footer .top-footer .footer-links ul li a,
footer .top-footer .footer-links ul li p {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #9e9e9e;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

footer .top-footer .footer-links ul li a:hover {
    color: #f89924;
}

footer .top-footer .contact-info h3 {
    font-size: 20px;
    line-height: 30px;
    color: #f89924;
    font-weight: 700;
    margin-bottom: 30px;
}

footer .top-footer .contact-info ul {
    margin-bottom: 20px;
}

footer .top-footer .contact-info ul li a,
footer .top-footer .contact-info ul li p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #9e9e9e;
    padding-left: 30px;
    transition: all 0.3s ease-in-out;
}

footer .top-footer .contact-info ul li a:hover {
    color: #f89924;
}

footer .top-footer .contact-info ul li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

footer .top-footer .contact-info ul li.phone a::before {
    background-image: url(../images/phone.png);
    width: 17px;
    height: 17px;
}

footer .top-footer .contact-info ul li.email a::before {
    background-image: url(../images/email.png);
    width: 18px;
    height: 12px;
}

footer .top-footer .contact-info .social-icons {
    width: 100%;
    float: left;
}

footer .top-footer .contact-info .social-icons ul {
    display: flex;
    margin: 0;
}

footer .top-footer .contact-info .social-icons ul li a {
    padding: 0;
}

footer .bottom-footer {
    width: 100%;
    float: left;
    background-color: #2d2d2c;
    padding: 24px 0;
}

footer .bottom-footer p {
    font-size: 16px;
    line-height: 30px;
    color: #9e9e9e;
    font-weight: 400;
    text-align: center;
}

/* About Us Page */
.inner-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 350px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-banner .caption {
    width: 100%;
    float: left;
}

.inner-banner .caption h1 {
    font-size: 48px;
    line-height: 62px;
    color: #f89924;
    font-weight: 700;
}

.inner-banner .caption h1 strong {
    color: #ffffff;
    font-weight: 700;
}

.about-us-sec {
    width: 100%;
    float: left;
    padding: 80px 0;
}

.about-us-sec .about-us-img img {
    width: 100%;
    max-width: 565px;
    height: auto;
}

.about-us-sec .about-us-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}

.about-us-sec .about-us-info h2 {
    font-size: 48px;
    line-height: 62px;
    color: #f89924;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-us-sec .about-us-info p {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
}

/* how-it-works Page */
.works-sec {
    width: 100%;
    float: left;
    padding: 80px 0 50px;
}

.works-sec h2 {
    font-size: 48px;
    line-height: 62px;
    color: #f89924;
    font-weight: 700;
    text-align: center;
    margin-bottom: 100px;
}

.works-sec h3 {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 700;
    margin-bottom: 20px;
    min-height: 60px;
}

.works-sec ul li {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    padding-left: 30px;
}

.works-sec ul li::before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 20px;
    content: '';
    background-image: url(../images/benefits-icons.png);
    background-size: cover;
    background-repeat: no-repeat;
}

/* getting-started-sec */
.getting-started-sec {
    width: 100%;
    float: left;
    background-color: #f4f4f4;
    padding: 80px 0;
}

.getting-started-sec h2 {
    font-size: 48px;
    line-height: 62px;
    color: #f89924;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.getting-started-sec h2 strong {
    color: #021a24;
    font-weight: 700;
}

.getting-started-sec p {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

.getting-started-sec .getting-box {
    width: 100%;
    float: left;
    border-radius: 10px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.getting-started-sec .getting-box .getting-img {
    width: 100%;
    float: left;
}

.getting-started-sec .getting-box .getting-img img {
    width: 100%;
    height: auto;
}

.getting-started-sec .getting-box .getting-info {
    position: relative;
    width: 100%;
    float: left;
    padding: 15px;
    background-color: #ffffff;
}

.getting-started-sec .getting-box .getting-info h3 {
    font-size: 20px;
    line-height: 32px;
    color: #021a24;
    font-weight: 600;
}

/* complete-form-sec */
.complete-form-sec {
    width: 100%;
    float: left;
    padding: 80px 0;
}

.complete-form-sec h2 {
    font-size: 48px;
    line-height: 62px;
    color: #f89924;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.complete-form-sec h2 strong {
    color: #021a24;
    font-weight: 700;
}

.complete-form-sec form .form-group {
    margin-bottom: 40px;
    padding: 0 20px;
}

.complete-form-sec form .form-group label {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
}

.complete-form-sec form .form-group .form-control {
    height: 54px;
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    background-color: #ffffff;
    border: 2px solid #f4f4f4;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.complete-form-sec form .sent-btn {
    display: inline-block;
    font-size: 17px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    padding: 13px 75px;
    margin-left: 20px;
    border-radius: 50px;
    border: none;
    background-color: #f89924;
    box-shadow: none;
    transition: all .5s ease-in-out;
}

.complete-form-sec form .sent-btn:hover {
    background-color: #021a24;
}

/* Features Page */
.features-sec {
    width: 100%;
    float: left;
    background-color: #f4f4f4;
    padding: 125px 0;
    margin-bottom: 120px;
}

.features-sec .features-box {
    width: 100%;
    float: left;
    border-radius: 10px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.features-sec .features-box .img-box {
    width: 100%;
    float: left;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.features-sec .features-box .img-box img {
    width: 100%;
    height: auto;
}

.features-sec .features-box .info-box {
    position: relative;
    width: 100%;
    float: left;
    padding: 45px;
    flex: 1;
}

.features-sec .features-box .info-box h3 {
    font-size: 24px;
    line-height: 30px;
    color: #021a24;
    font-weight: 700;
    margin-bottom: 60px;
    min-height: 60px;
}

.features-sec .features-box .info-box p {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    margin-bottom: 45px;
}

.features-sec .features-box .info-box .listening1,
.features-sec .features-box .info-box .listening2,
.features-sec .features-box .info-box .listening3 {
    display: none;
}

.features-sec .features-box .info-box ul li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #021a24;
    font-weight: 400;
    padding-left: 30px;
    margin-bottom: 15px;
}

.features-sec .features-box .info-box ul li::before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 20px;
    content: '';
    background-image: url(../images/benefits-icons.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.features-sec .features-box .info-box .read-more-btn {
    position: absolute;
    bottom: -20px;
    left: auto;
    display: inline-block;
    font-size: 17px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    padding: 13px 48px;
    border: none;
    outline: none;
    border-radius: 50px;
    background-color: #f89924;
    box-shadow: none;
    z-index: 1;
    transition: all .5s ease-in-out;
}

.features-sec .features-box .info-box .read-more-btn:hover {
    background-color: #021a24;
}

/* Contact Us Page */
.get-in-touch-sec {
    width: 100%;
    float: left;
    padding: 80px 0 60px;
}

.get-in-touch-sec h2 {
    font-size: 48px;
    line-height: 62px;
    color: #f89924;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.get-in-touch-sec h2 strong {
    color: #021a24;
    font-weight: 700;
}

.get-in-touch-sec p {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-family: "Raleway";
    text-align: center;
    margin-bottom: 35px;
}

.get-in-touch-sec .get-in-col {
    width: 100%;
    float: left;
    background-color: #f4f4f4;
    padding: 60px 15px 40px;
    border-radius: 20px;
}

.get-in-touch-sec .contact-detail {
    width: 100%;
    float: left;
    margin-bottom: 60px;
}

.get-in-touch-sec .contact-detail .get-in-col .get-in-icons {
    width: 112px;
    height: 112px;
    background-color: #f89924;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 35px;
}

.get-in-touch-sec .contact-detail .get-in-col .get-in-icons img {
    width: 55px;
    height: auto;
}

.get-in-touch-sec .contact-detail .get-in-col .get-in-info {
    width: 100%;
    float: left;
}

.get-in-touch-sec .contact-detail .get-in-col .get-in-info h3 {
    font-size: 20px;
    line-height: 25px;
    color: #021a24;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

.get-in-touch-sec .contact-detail .get-in-col .get-in-info p,
.get-in-touch-sec .contact-detail .get-in-col .get-in-info a {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    text-align: center;
    min-height: 60px;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.get-in-touch-sec .contact-detail .get-in-col .get-in-info a:hover {
    color: #f89924;
}

.get-in-touch-sec .contact-form {
    width: 100%;
    float: left;
}

.get-in-touch-sec .contact-form form {
    width: 100%;
    float: left;
}

.get-in-touch-sec .contact-form form .form-row .form-group {
    margin-bottom: 45px;
}

.get-in-touch-sec .contact-form form .form-row .form-group:first-child {
    padding-right: 15px;
}

.get-in-touch-sec .contact-form form .form-row .form-group:last-child {
    padding-left: 15px;
}

.get-in-touch-sec .contact-form form .form-group label {
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
}

.get-in-touch-sec .contact-form form .form-group .form-control {
    height: 54px;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    line-height: 30px;
    color: #021a24;
    font-weight: 400;
    background-color: #ffffff;
    border: 2px solid #f4f4f4;
}

.get-in-touch-sec .contact-form form .form-group textarea.form-control {
    height: 140px;
    resize: none;
}

.get-in-touch-sec .contact-form form .send-btn {
    display: inline-block;
    font-size: 17px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    padding: 13px 75px;
    margin-top: 50px;
    border-radius: 50px;
    border: none;
    background-color: #f89924;
    box-shadow: none;
    transition: all .5s ease-in-out;
}

.get-in-touch-sec .contact-form form .send-btn:hover {
    background-color: #021a24;
}
.terms-condition-page
{
    padding:80px 0;
}
.terms-condition
{
    width: 100%;
}
.terms-condition p
{
    font-size: 16px;
    line-height: 30px;
    color: #003333;
    font-weight: 400;
}
.terms-condition ul
{
    margin:40px 0 0;
}
.terms-condition ul li
{
    color: #003333;
    margin-bottom:40px;
}
.terms-condition h6
{
    font-size: 20px;
    color: #f89924;
    font-weight: 700;
    margin:30px 0;
}


.send-btn-tw{
    display: inline-block;
    font-size: 17px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    padding: 13px 75px;
    margin-top: 50px;
    border-radius: 50px;
    border: none;
    background-color: #f89924;
    box-shadow: none;
    transition: all .5s ease-in-out;
}
