/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.championship-item-inner2 a {
	display: inline;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: "Montserrat", serif;
    font-size: 16px;
    font-weight: 400;    
	background: #f9f0ec;
	color: #333333;	
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: #A10A19; 
    text-align: center; 
    font-size: 16px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid #A10A19;
    z-index: 8888;    
}

.scrolltotop i {
    color: #ffff;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #A10A19; 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.button {
    font-size: 13px; 
    font-weight: 700;
    color: #010000;
    padding: 12.3px 44px;
    border-radius: 30px;
    border: 1px solid #000000;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.button span {
    color: #A10A19;
    margin-left: 4px;
}

.button:hover {
    color: #fff;
    background: #000000;
}

.button:hover span {
    color: #fff;
}

/*=== Header area start ===*/

.header-area {
    padding: 32px 0;
    background: #a10a19;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.fixed-header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
	box-shadow: 8px 8px 24px 0px #eee2db;
}

.header-area .container {
    max-width: 1850px;
}

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

.header-item-inner {
    margin-right: 40px;
}

.header-item-inner img {
    max-width: 100%;
}

.header-item-inner2 {
    margin-left: auto;
}

.header-item-inner2 ul {
    display: flex;
    align-items: center;
}

.header-item-inner2 ul li a {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    margin-left: 30px;
    position: relative;
}

.header-item-inner2 ul li a:hover {
    color: #D9AA92;
}

.header-item-inner2 ul li a:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background: #D9AA92;
    bottom: -9px;
    left: 15%;
    transform: scale(0);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header-item-inner2 ul li a.active:after,
.header-item-inner2 ul li a:hover:after {
    transform: scale(1);
}

.header-item-inner3 {
    position: relative;
}

.header-item-inner3:after {
    content: '';
    position: absolute;
    width: 50000000px;
    height: 150px;
    left: 0;
    top: -70px;
    background: #d9aa92;
    z-index: -1;
}

.header-item-inner3 ul li a:after {
    background: #a10a19;
}

.header-item-inner3 ul li a:hover {
    color: #a10a19;
}

.header-item-inner4 {
    cursor: pointer;
    margin-left: auto;
}

.header-item-inner4 span {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    display: block;
    background: #fff;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header-item-inner4 span:nth-of-type(2) {
    margin: 6px 0;
}

.header-item-inner4:hover span {
    background: #D9AA92;
}

.header-area .promo_mobile a { font-size:12px; color:#fff; margin-right:15px; }
.header-area .promo_mobile img { max-height:20px; margin-bottom:15px; }


/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: #a10a19;
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 130px;
}

.side-menu-inner img {
    max-width: 160px;
}

.side-menu-inner .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-inner .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: #fff;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-inner .close:hover span {
    background: #D9AA92;
}

.side-menu-inner .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-inner .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-inner2 ul {
    flex-direction: column;
    align-items: start;
}

.side-menu-inner2 ul li a {
    margin: 0 0 15px;
}

/*=== banner area start ===*/

.banner-area {
    padding-top: 69px;
}

.banner-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/*=== championship area start ===*/

.championship-area {
    padding: 90px 0;
}

.championship-item-inner {
    text-align: center;
    margin-bottom: 20px;
}

.championship-item-inner h2 {
    font-size: 45px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 40px;
}

.championship-item-inner h2 span {
    font-weight: 700;
    color: #A10A19;
    display: block;
}

.championship-item-inner p {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

.championship-item-inner2 ul {
    display: flex;
    align-items: center;
}

.championship-item-inner2 ul li {
    width: 412px;
}

.championship-item-inner3 {
    background-image: url(../images/championship-01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 21px 40px;
    padding-right: 15px!important;
    border-radius: 25px;
    position: relative;
}

.championship-item-inner3 > span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 85px;
    height: 27px;
    background: #A10A19;
    margin-left: -7px;
    margin-bottom: 6px;
}

.championship-item-inner3 h2 {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 100%;
    margin-bottom: 10px;
}

.championship-item-inner3 h2 span {
    font-weight: 700;
}

.championship-item-inner3 p {
    font-size: 17px;
    font-weight: 700;
    color: #A10A19;
}

.championship-item-inner4 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.championship-item-inner4 img {
    max-width: 100%;
}

.championship-item-inner2 ul li:nth-of-type(2) {
    width: 423px;
    transform: translateX(-96px);
    margin-right: -96px;
}

.championship-item-inner2 ul li:nth-of-type(2) .championship-item-inner3 {
    background-image: url(../images/championship-02.png);
    padding: 51px 40px;
}

.championship-item-inner2 ul li:nth-of-type(2) .championship-item-inner3 h2 {
    margin-bottom: 0;
}

.championship-item-inner3 h5 {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.championship-item-inner2 ul li:nth-of-type(2) .championship-item-inner3 p,
.championship-item-inner2 ul li:nth-of-type(4) .championship-item-inner3 p {
    color: #FFFFFF;
}

.championship-item-inner2 ul li:nth-of-type(3) {
    transform: translateX(-69px);
    margin-right: -69px;
}

.championship-item-inner2 ul li:nth-of-type(3) .championship-item-inner3 {
    background-image: url(../images/championship-03.png);
}

.championship-item-inner2 ul li:nth-of-type(4) {
    width: 475px;
    transform: translateX(-145px);
    margin-right: -145px;
}

.championship-item-inner2 ul li:nth-of-type(4) .championship-item-inner3 {
    background-image: url(../images/championship-04.png);
    padding-top: 28px;
    padding-bottom: 23px;
}

.championship-item-inner3  h6 {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.championship-item-inner5 {
    padding-top: 70px;
    text-align: center;
}

.championship-item-inner5 h2 {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 22px;
}

.championship-item-inner5 h2 span {
    width: 73px;
    height: 18px;
    display: inline-block;
    text-align: center;
    background: #EFDCC7;
    border-radius: 10px;
}

.championship-item-inner5 h2 strong {
    font-weight: 600;
    display: block;
    color: #A10A19;
}

.championship-item-inner5 a.button {
    padding-top: 14.8px;
    padding-bottom: 14.8px;
	background:#A10A19;
	border-color:#A10A19;
	color:#fff;
	font-size:30px;
	animation: blinker 1s infinite;
}

    @keyframes blinker {
        from { opacity: 1.0; }
        50% { opacity: 0.6; zoom: 102%; }
        to { opacity: 1.0; }
    }
	
.championship-item-inner5 a.button:hover {
	background:#000;
	border-color:#000;
}
.championship-item-inner5 a.button span {
	color:#fff
}

/*=== makeup area start ===*/

.makeup-area {
    padding-top: 120px;
    overflow: hidden;
}

.makeup-item {
    background-image: url(../images/makeup-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 86px 90px 110px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 25px;
}

.makeup-item-inner {
    width: 580px;
}

.makeup-item-inner h2 {
    font-size: 34px;
    font-weight: 300;
    color: #A10A19;
    margin-bottom: 25px;
}

.makeup-item-inner h2 span {
    font-weight: 600;
}

.makeup-item-inner p {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 25px;
}

.makeup-item-inner2 {
    width: calc(100% - 580px);
    padding-left: 76px;
}

.makeup-item-inner2 p {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 30px;
}

.makeup-item-inner2 p span {
    font-weight: 500;
}

.makeup-item-inner2 p:last-of-type {
    margin-bottom: 0;
}

/*=== category area start ===*/

.category-area {
    padding-top: 110px;
    overflow: hidden;
}

.category-area .row {
    --bs-gutter-x: 28px;
}

.category-item {
    text-align: center;
    margin-bottom: 50px;
}

.category-item h2 {
    font-size: 70px;
    font-weight: 700;
    color: #A10A19;
}

.category-item h2 span {
    font-size: 40px;
    font-weight: 300;
    color: #D9AA92;
    display: block;
}

.category-item2 p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}

.category-item2 p strong {
    margin: 0 15px;
	text-transform:uppercase;
}

.category-item2 p span {
    width: 285px;
    height: 1px;
    display: block;
    background: #EBD3C8;
}

.category-item3 {
    margin-bottom: 84px;
}

.category-item3 img {
    width: 100%;
}

/*=== chance area start ===*/

.chance-area {
    padding-top: 54px;
    overflow: hidden;
}

.chance-item {
    background-image: url(../images/chance-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 68px 120px 70px;
    border-radius: 25px;
}

.chance-item h2 {
    font-size: 26px;
    font-weight: 600;
    color: #E4B39B;
    text-align: center;
    margin-bottom: 46px;
}

.chance-item h2 span {
    font-size: 50px;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
}

.chance-item ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.chance-item ul li {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.chance-item ul li span {
    font-weight: 600;
}

.chance-item ul li img {
    max-width: 100%;
}

.chance-item-inner {
    padding-top: 30px;
    text-align: center;
}

.chance-item-inner a {
    color: #E4B39B;
    border-color: #E4B39B;
    width: 297px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.chance-item-inner a span {
    color: #FFFFFF;
}

.chance-item-inner a:hover {
    background: #E4B39B;
}

/*=== organizer area start ===*/

.organizer-area {
    padding: 50px 0 134px;
    overflow: hidden;
}

.organizer-item h2 {
    font-size: 250px;
    font-weight: 700;
    color: #EBDCD4;
    text-align: center;
}

.first-carousel {
    transform: translateY(-90px);
    margin-bottom: -90px;
}

.organizer-item2-inner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 300px 15px 13px;
    border-radius: 25px;
    text-align: center;
}

.organizer-item2-inner2 {
    margin-bottom: 38px;
}

.organizer-item2-inner h2 {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
	text-transform:uppercase;
}

.organizer-item2-inner h2 span {
    font-weight: 300;
    display: block;
}

.organizer-item2-inner3 {
    background-image: url(../images/organizer-02.png);
}

.first-carousel .owl-nav button.owl-next, .first-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 147px;
    color: transparent;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.first-carousel .owl-nav button.owl-next {
    background-image: url(../images/slider-right.png);
    right: -114px;
}

.first-carousel .owl-nav button.owl-prev {
    background-image: url(../images/slider-left.png);
    left: -114px;
}

/*=== result area start ===*/

.result-area {
    padding: 66px 0 56px;
    background: #ffffff;
    overflow: hidden;
}

.result-item ul {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.result-item ul li div:nth-of-type(1) {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.result-item ul li img {
    max-width: 100%
}

.result-item ul li p {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-align: center;
}

/*=== speaker area start ===*/

.speaker-area {
    padding: 85px 0 110px;
    background: #EFE5E0;
    overflow: hidden;
}
.speaker-area img { margin-bottom:30px; }

.speaker-area .row {
    --bs-gutter-x: 30px;
}

.speaker-item {
    text-align: center;
    margin-bottom: 27px;
}

.speaker-item h2 {
    font-size: 40px;
    font-weight: 700;
    color: #A10A19;
    margin-bottom: 40px;
}

.speaker-item h2 span {
    font-size: 32px;
    font-weight: 300;
    color: #000000;
    display: block;
}

.speaker-item h6 {
    font-size: 20px;
    font-weight: 700;
    color: #D9AA92;
}

.speaker-item h6 span {
    font-weight: 300;
    display: block;
}

.speaker-item2 {
    background-image: url(../images/speaker-02.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 25px;
    margin-bottom: 30px;
}

.speaker-item2-inner {
    width: 195px;
}

.speaker-item2-inner img {
    width: 100%;
    border-radius: 25px 0 0 25px;
}

.speaker-item2-inner2 {
    width: calc(100% - 195px);
    padding: 0 18px;
    position: relative;
}

.speaker-item2-inner3 {
    position: absolute;
    top: 0;
    left: -18px;
    transform: translate(0%, -35%);
}

.speaker-item2-inner4 {
    transform: translate(30%, -35%);
}

.speaker-item2-inner3 span {
    font-size: 50px;
    font-weight: 700;
    color: #FFFFFF;
}

.speaker-item2-inner2 h2 {
    font-size: 15px;
    font-weight: 700;
    color: #070707;
    margin-bottom: 20px;
}

.speaker-item2-inner2 p {
    font-size: 14px;
    font-weight: 300;
    color: #502D1B;
}

/*=== schedule area start ===*/

.schedule-area {
    background-image: url(../images/schedule-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 93px 0 105px;
}

.schedule-item h2 {
    font-size: 50px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 45px;
}

.schedule-item h2 span {
    font-size: 20px;
    display: block;
}

.schedule-item ul {
    max-width: 930px;
    margin: 0 auto;
}

.schedule-item ul li {
    padding: 16px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #D9AA92;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
}

.schedule-item ul li:nth-of-type(1) {
    font-size: 18px;
    font-weight: 700;
}

.schedule-item ul li div:nth-of-type(1) {
    width: 145px;
    text-align: right;
}

.schedule-item ul li div:nth-of-type(2) {
    width: calc(100% - 145px);
    padding-left: 90px;
}

/*=== footer area start ===*/

.footer-area-inner {
    padding: 100px 0 80px;
    background: #ffffff;
    overflow: hidden;
}

.footer-area-inner .row {
    --bs-gutter-x: 30px;
}

.footer-item {
    margin-bottom: 30px;
}

.footer-item h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.footer-item-inner {
    margin-bottom: 40px;
}

.footer-item-inner p {
    font-size: 18px;
    font-weight: 700;
    color: #A10A19;
    display: flex;
    align-items: center;
}

.footer-item-inner p img {
    max-width: 100%;
    margin-right: 12px;
}

.footer-item-inner p a {
    color: #A10A19;
}

.footer-item-inner p a:hover {
    color: #D9AA92;
}

.footer-item-inner2 {
    margin-bottom: 24px;
}

.footer-item-inner2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.footer-item-inner2 h4 {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.footer-item-inner2 h4 a {
    color: #000;
}

.footer-item-inner2 h4 a:hover {
    color: #A10A19;
}

.footer-item-inner3 ul {
    padding-top: 25px;
    display: flex;
    align-items: center;
}

.footer-item-inner3 ul li a {
    font-size: 22px;
    color: #000;
    margin-right: 12px;
}

.footer-item-inner3 ul li a:hover {
    color: #A10A19;
}

.footer-item-inner4 {
    padding: 10px 0 55px;
}

.footer-item-inner4 p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.footer-item-inner5 h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.footer-item-inner5 p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.footer-item-inner6 {
    margin-left: -5px;
}

.footer-item-inner7 input,
.footer-item-inner7 textarea,
.footer-item-inner7 select {
    font-size: 15px;
    font-weight: 400;
    color: #94918F;
    width: 100%;
    height: 51px;
    display: flex;
    align-items: center;
    border: none;
    padding: 0 20px;
    border-radius: 30px;
    background: #EFE5E0;
    margin-bottom: 15px;
}

.footer-item-inner7 input::placeholder,
.footer-item-inner7 textarea::placeholder {
    opacity: 1;
    color: #94918F;
}

.footer-item-inner7 textarea {
    height: 136px;
    resize: none;
    padding: 18px 20px;
    margin-bottom: 10px;
    border-radius: 20px;
}

.form-group {
    display: block;
    margin-bottom: 17px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    color: #959595;
    display: flex;
    align-items: center;
}

.form-group label a {
    color: #959595;
    text-decoration: underline;
}

.form-group label a:hover {
    color: #A10A19;
}

.form-group label:before {
  content:'';
    -webkit-appearance: none;
    width: 22.2px;
    height: 22.5px;
    flex: 0 0 22.5px;
    border-radius: 50%;
    background: #DDCEC6;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5.5px;
}

.form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 6px;
    width: 10.5px;
    height: 10.5px;
    background: #959595;
    border-radius: 50%;

}

.footer-item-inner8 button {
    font-size: 13px;
    font-weight: 700;
    color: #E4B39B;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 227.5px;
    height: 55px;
    background: #A10A19;
    border-radius: 30px;
    margin: 0 auto;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.footer-item-inner8 button span {
    color: #FFFFFF;
    margin-left: 8px;
}

.footer-item-inner8 button:hover {
    color: #fff;
    background: #000;
}

.footer-area-inner2 {
    padding: 30px 0 50px;
    background: #f9f0ec;
}

.footer-area-inner2 .container {
    max-width: 1510px;
}

.footer-item2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}

.footer-item2-inner2 ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-item2-inner2 ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.footer-item2-inner2 ul li span {
    font-size: 14px;
    font-weight: 400;
    color: #ACA9A7;
    margin: 0 16px;
}

.footer-item2-inner2 ul li a:hover {
    color: #A10A19;
}

.footer-item2-inner3 img {
    max-width: 100%;
}

.footer-item2-inner4 {
    padding-top: 30px;
    text-align: center;
}

.footer-item2-inner4 p {
    font-size: 13px;
    font-weight: 400;
    color: #ABA5A2;
}
.footer-item2-inner4 a {
    color: #ABA5A2;
	text-decoration:underline;
}

/** Contact form **/
.contact-form .form__result {
    display: none;
    padding: 15px;
    color: #fff;
}

.contact-form .form__result--active {
    display: block;
    margin: 40px 0 20px 0;
    font-weight: 500;
}

.contact-form .form__result--success {
    background: #A10A19;
}

.contact-form .form__result--error {
    background: #c8a3a7;
}

.contact-form.contact-form--loading {
    position: relative;
}
.contact-form.contact-form--loading::before {
    content: '';
    background: rgba(249, 249, 249, 0.65);
    position: absolute;
    z-index: 11;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    left: -15px;
    top: -15px;
    box-sizing: border-box;
}

.contact-form label.error-label {
    color: #b23f6b;
    margin-bottom: 20px;
    display: block;
    cursor: pointer;
}

.contact-form label.error-label:not([for="privacyPolicy"]) {
    margin-top: -10px;
}
.contact-form label.error-label[for="privacyPolicy"] {
    margin-top: -15px;
}

/* added */
.topbar { border-radius:20px; padding:20px; color:#fff; margin-bottom:20px; text-align:center; font-size:19px; letter-spacing:1px;
background: linear-gradient(-45deg, #a10a19, #977255, #d9aa92, #a10a19);
    background-color: rgba(0, 0, 0, 0);
    background-size: auto;
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}