#paddock_hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 530px;
    background: rgba(43, 15, 87, 0.81);
    background-blend-mode: multiply;
}
#paddock_hero .dots{
    position: absolute;
}
#paddock_hero .dots_left{
    left: 0;
    bottom: 0;
}
#paddock_hero .dots_right{
    right: 0;
    top: 0;
}
#paddock_hero .buttons{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
#paddock_hero .btn{
    width: 202px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.12);
    margin: 0 10px;
    color: #FFF;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
#paddock_hero .btn-one{
    border: 2.5px solid #EEA676;
}
#paddock_hero .btn-two{
    border: 2.5px solid #E63312;
}
#paddock_hero .btn-one:hover{
    background: #EEA676;
}
#paddock_hero .btn-two:hover{
    background: #E63312;
}
#paddock_hero_bottom .top{
    background: #0D0B0C;
    padding: 16px 0;
    color: #fff;
}
#paddock_hero_bottom .top h1{
    color: #FFF;
    text-align: center;
    font-family: 'AvenirHeavy05';
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}
#paddock_hero_bottom .top p{
    color: #FFF;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#paddock_hero_bottom .bottom{
    padding: 50px 0;
}
#paddock_hero_bottom .bottom p{
    color: #333;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media(max-width: 767px){
    #paddock_hero .buttons {
        flex-direction: column;
        align-items: center;
        margin: 20px 0 0;
    }
    #paddock_hero .buttons .btn{
        margin: 10px 0;
    }
    #paddock_hero .hero_logo{
        width: 300px;
        position: relative;
        z-index: 4;
    }
}
/* What to expect */
#what_to_expect {
    background: #251B35;
}
#what_to_expect .top {
    background: #0D0B0C;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#what_to_expect .top h2 {
    margin: 0;
    color: #FFCEAE;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
#what_to_expect .bottom {
    padding: 50px 200px;
    position: relative;
}
#what_to_expect .bottom .slider {
    position: relative;
    z-index: 3;
}
#what_to_expect .bottom .slider .inner {
    padding: 5px;
    position: relative;
}
#what_to_expect .bottom .slider .inner img {
    width: 100%;
}
#what_to_expect .bottom .slider .inner .inner_bottom {
    background: #0D0B0C;
    padding: 30px;
    display: flex;
    min-height: 250px;
    flex-direction: column;
}
#what_to_expect .bottom .slider .inner .inner_bottom h3 {
    color: #FFF;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
#what_to_expect .bottom .slider .inner .inner_bottom p {
    color: #E6E6E6;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
#what_to_expect .bottom .slider .inner .inner_bottom .btn {
    border-radius: 5px;
    border: 2.5px solid #EEA676;
    color: #FFF;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin: 20px auto 0;
}
#what_to_expect .bottom .slider .inner .inner_bottom .btn:hover {
    background: #EEA676;
}
#what_to_expect .bottom .slider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
#what_to_expect .bottom .slider .slick-dots li {
    width: 20px;
    height: 20px;
    padding: 1px;
    margin: 0 2px;
    border: 1px solid #FFCEAE;
    display: flex;
    justify-content: center;
    align-items: center;
}
#what_to_expect .bottom .slider .slick-dots li button {
    background: transparent;
    width: 14px;
    height: 14px;
}
#what_to_expect .bottom .slider .slick-dots .slick-active button {
    background: #FFCEAE;
}
#what_to_expect .arrows img{
    position: absolute;
    z-index: 3;
    cursor: pointer;
}
#what_to_expect .arrows .arrow_left{
    left: 100px;
    top: 50%;
    transform: translatey(-50%);
    border-radius: 5px;
    border: 1px solid #FFCEAE;
    padding: 10px;
}
#what_to_expect .arrows .arrow_right{
    right: 100px;
    top: 50%;
    transform: translatey(-50%);
    border-radius: 5px;
    border: 1px solid #FFCEAE;
    padding: 10px;
}
#what_to_expect .dots {
    position: absolute;
    z-index: 2;
}
#what_to_expect .dots_left {
    bottom: 0;
    left: 0;
}
#what_to_expect .dots_right {
    top: 0;
    right: 0;
}
@media(max-width: 1440px){
    #what_to_expect .bottom {
        padding: 50px 100px;
    }
    #what_to_expect .arrows .arrow_left{
        left: 50px;
    }
    #what_to_expect .arrows .arrow_right{
        right: 50px;
    }    
}
@media(max-width: 767px){
   #what_to_expect .bottom {
        padding: 50px 20px;
    } 
    #what_to_expect .arrows .arrow_left, #what_to_expect .top img, #what_to_expect .arrows .arrow_right{
       display: none !important;
    }
    #what_to_expect .top h2{
        text-align: center;
    }
    #what_to_expect .top{
        justify-content: center;
        padding: 20px;
    }
}

/* Featured Races */
#featured_races {
    background: #EEE;
    margin: 50px 0 0;
}
#featured_races .top {
    background: #0D0B0C;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#featured_races .top h2 {
    margin: 0;
    color: #FFCEAE;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
#featured_races .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 150px;
}
#featured_races .fr_card {
    width: 25%;
    padding: 8px;
}
#featured_races .fr_card .inner {
    background: #fff;
}
#featured_races .fr_card .inner_top {
    position: relative;

}
#featured_races .fr_card .inner_top .date {
    position: absolute;
    top: 12px;
    left: 10px;
    padding: 3px 11px;
    background: rgba(230, 51, 18, 0.78);
    color: #FFF;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
#featured_races .fr_card .inner_top img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}
#featured_races .fr_card .inner_bottom {
    padding: 15px;
}
#featured_races .inner_bottom h3 {
    color: #000;
    font-family: 'AvenirRoman12';
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: 21px;
    /* 123.529% */
    text-transform: uppercase;
    margin-bottom: 10px;
}
#featured_races .inner_bottom p {
    color: #434343;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#featured_races .btn {
    color: #251B35;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 5px;
    border: 2.5px solid #EEA676;
}
#featured_races .btn:hover {
    background: #EEA676;
}

#featured_races .btn-two {
    background: #EEA676;
}
#featured_races .btn-two:hover {
    background: #fff;
}


@media(max-width: 1400px) {
    #featured_races .bottom {
        padding: 50px;
    }
}
@media(max-width: 1200px) {
    #featured_races .bottom {
        padding: 50px 20px;
    }
    #featured_races .fr_card {
        width: 33%;
    }
}
@media(max-width: 991px) {
    #featured_races .fr_card {
        width: 50%;
    }
    #featured_races .top img{
        display: none !important;
    }
    #featured_races .top h2{
        text-align:center;
    }
    #featured_races .top{
        padding: 15px;
    }
}
@media(max-width: 767px) {
    #featured_races .fr_card {
        width: 100%;
    }
}

/* #enquire_now */

#enquire_now {
    background: #0D0B0C;
    position: relative;
    padding: 75px 0;
    overflow: hidden;
}
#enquire_now .inner {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}
#enquire_now .dots {
    position: absolute;
    z-index: 2;
}
#enquire_now .dots_left {
    bottom: 0;
    left: 0;
}
#enquire_now .dots_right {
    bottom: 0;
    right: 0;
}
#enquire_now .row {
    display: flex;
    justify-content: center;
    z-index: 4;
    position: relative;
}

#enquire_now .text h2 {
    color: #FFF;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
#enquire_now .text h2 strong {
    color: #FFCEAE;
}
#enquire_now .text p {
    color: #D9D9D9;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#enquire_now .text {
    margin-bottom: 30px;
}
#enquire_now .form {
    min-height: 400px;
    color: #fff;
    position: relative;
    z-index: 3;
}
#enquire_now::after {
    content: '';
    width: 1109.412px;
    height: 83.141px;
    transform: rotate(45deg);
    background: #EEA676;
    position: absolute;
    top: 0;
    right: -550px;
    background: linear-gradient(0deg, #EEA676 -25.26%, #473020 100%);
}
#enquire_now::before {
    content: '';
    width: 1109.412px;
    height: 83.141px;
    transform: rotate(-45deg);
    background: #EEA676;
    position: absolute;
    top: 0;
    left: -550px;
    background: linear-gradient(0deg, #EEA676 -25.26%, #473020 100%);
}
#enquire_now .inner::after {
    content: '';
    width: 1109.412px;
    height: 5px;
    transform: rotate(45deg);
    background: #EEA676;
    position: absolute;
    top: 0;
    right: -500px;
    background: linear-gradient(0deg, #EEA676 -25.26%, #473020 100%);
}
#enquire_now .inner::before {
    content: '';
    width: 1109.412px;
    height: 5px;
    transform: rotate(-45deg);
    background: #EEA676;
    position: absolute;
    top: 0;
    left: -500px;
    background: linear-gradient(0deg, #EEA676 -25.26%, #473020 100%);
}
@media(max-width: 767px) {
    #enquire_now {
        padding: 50px 15px;
    }
    #enquire_now::before,
    #enquire_now::after,
    #enquire_now .inner::before,
    #enquire_now .inner::after {
        display: none!important;
    }

}
/* Book */
#book {
    background: #2C1D34;
    margin-top: 50px;
}
#book .top {
    background: #0D0B0C;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#book .top h2 {
    margin: 0;
    color: #FFCEAE;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
#book .bottom {
    padding: 50px 200px;
}
#book .bottom .inner {
    display: flex;
    justify-content: space-between;
}
#book .book_post {
    padding: 15px;
}
#book .book_inner {
    border: solid 1px #FFCEAE;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    height: 100%;
}
#book .book_post h3 {
    color: #FFF;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin: 20px 0 15px;
}
#book .book_post p {
    color: #FFF;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 21px;
    /* 131.25% */
}
#book .btn {
    color: #FFF;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 5px;
    border: 2.5px solid #EEA676;
    background: rgba(0, 0, 0, 0.12);
    display: block;
    margin: 30px auto 0;
    max-width: 200px;
}
#book .btn:hover {
    background: #EEA676;
}
@media(max-width: 1400px) {
    #book .bottom {
        padding: 50px;
    }
}
@media(max-width: 991px) {
    #book .bottom {
        padding: 50px 20px;
    }
    #book .bottom .inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}
@media(max-width: 767px) {
    #book .top img {
        display: none !important;
    }
    #book .top {
        padding: 15px;
    }
    #book .top h2 {
        text-align: center;
    }
}
/* WOCS */
#wocs {
    margin-top: 50px;
}
#wocs .top {
    background: #0D0B0C;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#wocs .top h2 {
    margin: 0;
    color: #FFCEAE;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
#wocs .trust_pilot{
    padding: 50px 0;
}

@media(max-width: 767px) {
    #wocs .top img {
        display: none !important;
    }
    #wocs .top {
        padding: 15px;
    }
    #wocs .top h2 {
        text-align: center;
    }
}
/* FAQS */
#faqs {
    margin-top: 50px;
}
#faqs .top {
    background: #0D0B0C;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#faqs .top h2 {
    margin: 0;
    color: #FFCEAE;
    text-align: center;
    font-family: 'AvenirRoman12';
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
#faqs .faqs {
    padding: 50px 0;
}
#faqs .faqs .accordion-item {
    margin-bottom: 10px;
}
#faqs .faqs button {
    background: #251B34;
    height: 53px;
    color: #FFF;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
#faqs .faqs .accordion-body {
    color: #0D0B0C;
    font-family: 'AvenirRoman12';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}
.accordion-button{
    position: relative;
}
.accordion-button::before{
    content: '';
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    position: absolute;
    filter: brightness(0) invert(1);
    right: 15px;
    transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed)::before{
    content: '';
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    position: absolute;
    transform: rotate(-180deg);
    right: 15px;
    filter: brightness(0) invert(1);
    transition: transform .2s ease-in-out;
}
@media(max-width: 767px) {
    #faqs .top img {
        display: none !important;
    }
    #faqs .top {
        padding: 15px;
    }
    #faqs .top h2 {
        text-align: center;
    }
}


@media(min-width: 768px){
    .footer-right-inner-right {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-right-inner-right-menu ul li {
        width: 50% !important;
    }
}