<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
    font-family: OpenSans, Helvetica, Arial, sans-serif;
    color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Energy, Helvetica, Arial, sans-serif;
}

* {
    scroll-behavior: smooth !important;
}

.btn-power-up {
    background: #ff4e5f;
    border-color: #ffffff;
    border-width: 3px;
    padding: 10px 40px;
    border-radius: 13px;
    position: relative;
}

.btn-power-up:hover {
    color: #fff;
    background-color: #ec4757;
    border-color: #cb3d4b;
}

.btn-hero-cta {
    background: linear-gradient(#fff, #fff, #fff);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    color: #e57f3a;
    padding: 20px 40px;
    position: relative;
}

.btn-hero-cta:after:hover {
    box-shadow: inset 0 0 10px 10px white;
    bottom: 0;
    content: " ";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.btn-hero-cta:hover {
    animation: cta-pulse 3s infinite;
    background: linear-gradient(#eee, #fff, #ddd);
    text-shadow: 1px 1px 0 #fff;
}

.mono-nav-secondary {
    background-color: #197fa9;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mono-nav-secondary a {
    text-transform: uppercase;
    color: #636466;
    padding: 10px 5px;
}

@media (min-width: 992px) {
    .mono-nav-secondary a {
        padding: 10px 20px;
    }
}

@media (min-width: 1200px) {
    .mono-nav-secondary a {
        padding: 10px 20px;
    }
}

@media (max-width: 767px) {
    .hero-bg-mobile {
        background-attachment: scroll;
    }
    
    .full-width-uae {
        width: 85% !important;
    }
}

.mono-nav-secondary .register {
    align-items: center;
    background: #27aae1;
    color: white;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.mono-countdown {
    background-color: #f99d1c;
    background-image: linear-gradient(to right, #f99d1c, #912d61);
    color: white;
    font-size: 2em;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
}

.mono-nav-mobile {
    bottom: 0;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
}

.navicon {
    background: white;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: inline-block;
    font-size: 0;
    margin: 10px;
    padding: 15px;
    pointer-events: auto;
    position: absolute;
}

.mono-nav-slide {
    background: white;
    border-right: 1px solid #ccc;
    height: 100%;
    left: -100%;
    padding: 5px 0 0;
    pointer-events: auto;
    position: relative;
}

.mono-nav-slide::before {
    content: "×";
    position: absolute;
    right: 10px;
    top: 10px;
}

.mono-nav-slide .nav-site {
    height: 2em;
    padding-left: 10px;
}

.mono-nav-slide .nav-event {
    height: 1em;
    margin: 20px 0 10px;
    padding-left: 10px;
}

.mono-nav-slide .child-links {
    display: flex;
    flex-direction: column;
}

.mono-nav-slide .child-links a {
    color: #636466;
    padding: 5px 20px;
}

.section-heading {
    font-weight: 400;
    padding: 35px;
}

/* footer */
#footer {
    background-color: #2c2c2c;
    color: #f4f4f4;
}

.navigation ul li a {
    text-transform: uppercase;
}

#footer a {
    color: #f4f4f4;
}

.btn-scroll-top.show {
    right: 1.25rem;
    opacity: 1;
}

.btn-scroll-top {
    display: block;
    position: fixed;
    right: -4.125rem;
    bottom: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    transition: right 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s, background-color 0.25s ease-in-out;
    border-radius: 50%;
    background-color: rgba(43, 52, 69, 0.25);
    color: #fff;
    text-align: center;
    opacity: 0;
    z-index: 1025;
}

.btn-scroll-top .btn-scroll-top-tooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.btn-scroll-top&gt;.btn-scroll-top-icon {
    font-size: .875rem;
    font-weight: bold;
    line-height: 2.625rem;
}

[class^='ci-'],
[class*=' ci-'] {
    display: inline-block;
    font-family: "cartzilla-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}

/* scrolling chevrons */
.scrollchevron {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

.chevron {
    position: absolute;
    width: 3.5rem;
    height: 0.8rem;
    opacity: 0;
    transform: scale(0.3);
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
    animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #fff;
}

.chevron:before {
    left: 0;
    transform: skewY(30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        transform: translateY(3.8rem);
    }

    66.6% {
        opacity: 1;
        transform: translateY(5.2rem);
    }

    100% {
        opacity: 0;
        transform: translateY(8rem) scale(0.5);
    }
}

/* ambition 2024 CSS V1.0.0 20230504.1
Style for Main Ambition Page */
.button1 {
    background-color: #27AAE1;
    color: white;
    font-size: 1.9em;
    border-radius: 10px;
}

.button1:hover {
    background-color: #249bce;
    color: white !important;
}

.button2 {
    background-color: #F36012;
    color: white;
    font-size: 1.9em;
    border-radius: 10px;
}

.button2:hover {
    background-color: #dd570f;
    color: white !important;
}

.button3 {
    background-color: #ff4e5f;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
}

.button3:hover {
    color: #fff;
    background-color: #ec4757;
    border-color: #cb3d4b;
}

.button4 {
    background-color: #fea427;
    border: 2px solid #E36B02;
    border-radius: 8px;
}

.button4:hover {
    color: #fff;
    background-color: #0c0000;
    border-color: #fe9706;
}

.button5 {
    background-color: #ff4e5f;
    border: 2px solid #da4352;
    border-radius: 8px;
}

.button5:hover {
    color: #fff;
    background-color: #ec4757;
    border-color: #cb3d4b;
}

.off-wht-bg {
    background-color: #fcfcfc;
}

.f2 {
    font-size: 1.4rem;
}

.f3 {
    font-size: 1.2rem;
}

.f5 {
    font-size: 1.1rem;
}

h2 {
    font-size: 2.5rem;
    color: #454648;
}

#nav a,
.mono-nav-secondary a {
    color: #FFFFFF !important;
}
.section-title-heading {
    padding-bottom: 35px; 
}
/* End of Style for Main Ambition Page */

/* Style for Registration Page */
.bg-gradient-border {
    background-image: linear-gradient(to top right, #FD9900 0 14.28%, #E93034 14.28% 28.56%, #FD6012 28.56%  42.84%, #009ADA 42.84% 57.12%, #0A5A5B 57.12% 71.40%, #E93034 71.40% 85.68%, #88C389 85.68% 100%);
}

.registration-card-radius {
    border-radius: 27px;
    padding: .65rem;
}

.registration-bg {
    background-image: url(https://cdn.ambitenergy.com/images/events-center/ambition-2024/registration-striped-bg.jpg);
    background-size: cover;
    background-position: center;
}

.card-main-body, .card-footer {
    border-radius: 20px !important;
}

.first-timer {
    color: #27AAE1;
    font-weight: 500;
    font-size: 3rem;
}

.early-bird {
    color: #F36012;
    font-weight: 500;
    font-size: 3rem;
}

.early-bird-discount {
    color: #F36012;
    font-size: 2rem;
}

.price-bold {
    font-weight: 600; 
    font-size: 6rem;
    letter-spacing: -4px;
}

.dollar-size {
    font-size: 5.1rem;
}

/* For mobile card title size */
@media (max-width: 912px) {
    .first-timer, .early-bird  {
        font-size: 2.29rem;
    }
}
/* End of Style for Registration Page */

/* Start of Style for Testiomonials */
#videoCarousel .carousel-control-prev,
#videoCarousel .carousel-control-next {
    bottom: auto;
    display: inline-block;
    position: static;
    top: auto;
    width: auto;
}

#videoCarousel .carousel-control-prev-icon,
#videoCarouselSingle .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23019ADB' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

#videoCarousel .carousel-control-next-icon,
#videoCarouselSingle .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23019ADB' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

 /* Override Vimeo player styles */
 .video-border-radius iframe {
    border-radius: 15px !important;
    box-sizing: border-box;
    padding: 7px;
}

.mobile-center {
    padding-left: 20%;
}

iframe {
    border: none;
}
/*End of Style for Testiomonials */

/* Start of A Powerful Value */
.a-powerful-value {
    background: url(https://cdn.ambitenergy.com/images/events-center/ambition-2024/a-powerful-value-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;

}

.border-top-div {
    background-image: linear-gradient(to right, #FD9900 0 14.28%, #E93034 14.28% 28.56%, #FD6012 28.56%  42.84%, #009ADA 42.84% 57.12%, #0A5A5B 57.12% 71.40%, #E93034 71.40% 85.68%, #88C389 85.68% 100%);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.svg-element {
    animation: rotate 3s linear;
}
/* End of A Powerful Value */

/* Style for Ultimate AMBITION Experience Page */
.ultimate-experience {
    background-image: url(https://cdn.ambitenergy.com/images/events-center/ambition-2024/ultimate-experience-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.transparent-box {
    background-color: rgba(255, 255, 255, 0.685);
}
  
.uae-tc {
    color: #23a8a6;
}

.uae-tc:hover {
    color: #1f9290;
}
/* End of Style for Ultimate AMBITION Experience Page */

/* Start of Hotel section */
.hotel {
    background-image: url(https://cdn.ambitenergy.com/images/events-center/ambition-2024/host-hotel-bg.jpg);
    background-size: cover;
}
/* End of Hotel section */

/* Start of Style for Recognition Page */
.recognition {
    background-image: url(https://cdn.ambitenergy.com/images/events-center/ambition-2024/recognition-bg.jpg);
    background-size: cover;
    background-position: center right;
}

.transparent-box-recognition {
    background-color: rgba(255, 255, 255, 0.801);
  }
/* End of Style for Recognition Page */

/* Style for EC Power Team */
.ec-power-team-bg {
    background-image:
        url('https://cdn.ambitenergy.com/images/events-center/ambition-2024/ec-power-bg.png'),
        linear-gradient(rgba(255, 255, 255, 0.695), rgba(255, 255, 255, 0.24)),
        url('https://cdn.ambitenergy.com/images/events-center/ambition-2021/ecpowerteam/ec-powerteam-background.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.ec-transparent-box {
    background-color: rgba(255, 255, 255, 0.76);
}

.font-weight-semi {
    font-weight: 600;
}

.table-ec-powerteam thead th {
    background-color: #26aae1;
    /* Ambit blue */
    border: 1px solid #26aae1;
    /* Ambit blue */
    color: white;
}

.table-ec-powerteam thead th:first-child {
    text-align: center;
}

/* default tbody text color and first column center */
.table-ec-powerteam tbody td {
    color: #636466;
    /* Ambit Gray */
}

.lower-rank-color, .lower-rank-color:hover {
    color: #636466;
}

.table-ec-powerteam tbody td:first-child {
    text-align: center;
}

/* first ten: custom text color and make first td (rank) bold */
.table-ec-powerteam tbody tr:nth-child(-n+10) td,
a,
a:hover  {
    color: #f47920;
    /* Ambit Orange */
}

.table-ec-powerteam tbody tr:nth-child(-n+10) td:first-child {
    font-weight: bold;
}

.ec-logo-size {
    width: 65%;
}

@media (max-width: 767px) {
    .table-ec-powerteam td,
    .table-ec-powerteam th {
        padding: 0.3rem;
    }
    
    .ec-logo-size {
        width: 75%;
    }
}

/* -- background-attachment fixed not supported ios mobile, switching to default scroll -- */
/* @media (max-width: 767px) {
    .ec-power-team-bg {
        background-attachment: scroll !important;
        background-image: url('https://cdn.ambitenergy.com/images/events-center/ambition-2021/ecpowerteam/ec-powerteam-background.png') !important;
    }
} */
/* End of style for EC Power Team */

/* Styles for Guest Tickets */
.guest-tickets-background {
    background-image: url('https://cdn.ambitenergy.com/images/events-center/ambition-2024/guest-tickets-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* End of styles for Guest Tickets */

/* Start of Empowered Women Speaker section */
.empowered-speaker-background {
    background-image: url('https://cdn.ambitenergy.com/images/events-center/ambition-2024/empowered-speaker-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.half-width {
    width: 70%;
}

@media (max-width: 991px) {
    .full-width {
        width: 100%;
    }
}
/* End of Empowered Women Speaker section */

/* Style for Schedule Page */
.schedule-background {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2024/schedule-bg.jpg");
    background-size: cover;
    background-position: center;
}

.border-table-bg-1 {
    background-color: #0287c0;
}

.border-table-bg-2 {
    background-color: #31476A;
}

.border-table-bg-3 {
    background-color: #045A5B;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #f4f4f4;
    background-color: #f17013!important;
}

#nav-two-tab,
#nav-three-tab,
#nav-one-tab {
    color: #f4f4f4;
}

#nav-two-tab,
#nav-three-tab,
#nav-one-tab {
    color: #f4f4f4;
}
/* End of Style for Schedule Page */

/* Start of Style for 20K Challenge */
.head-table {
    background-color: #26aae1;
}

.twenty-thousand-bg {
    background-image: url('https://cdn.ambitenergy.com/images/events-center/ambition-2024/20k-challenge-bg.jpg');
    background-size: cover;
    background-position: center right;
}

.prizes {
    font-size: 1.3em;
    font-weight: 600;
}

.off-wht-text {
    color: #fcfcfc
}
/* End of Style for 20K Challenge */

/* Start of Know Before You Go */
.red-outline {
    text-shadow: 1px 1px #e930338b;
}

.border-radius-kbyg {
    border-radius: 27px;
}

.white-bg-radius {
    border-radius: 24px;
}

.border-left {
    border-left: 3px solid #FD9900 !important;
}

.kbyg-fs {
    font-size: 1.1rem;
}

.kbyg-fs-btn {
    font-size: 1.2rem;
}
/* End of Know Before You Go */</pre></body></html>