@font-face {
    font-family: "Filson Soft";
    src: url("../fonts/web-fonts/Filson-Soft.eot");
    src: url("../fonts/web-fonts/Filson-Soft.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/web-fonts/Filson-Soft.woff") format("woff"),
        url("../fonts/web-fonts/Filson-Soft.woff2") format("woff2"),
        url("../fonts/web-fonts/Filson-Soft.otf") format("orf"),
        url("../fonts/web-fonts/Filson-Soft.ttf") format("truetype");
}
@font-face {
    font-family: "FilsonSoft-Light";
    src: url("../fonts/web-fonts/FilsonSoft-Light.eot");
    src: url("../fonts/web-fonts/FilsonSoft-Light.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/web-fonts/FilsonSoft-Light.woff") format("woff"),
        url("../fonts/web-fonts/FilsonSoft-Light.woff2") format("woff2"),
        url("../fonts/web-fonts/FilsonSoft-Light.otf") format("orf"),
        url("../fonts/web-fonts/FilsonSoft-Light.ttf") format("truetype");
}
@font-face {
    font-family: "FilsonSoft-Regular";
    src: url("../fonts/web-fonts/FilsonSoft-Regular.woff") format("woff"),
        url("../fonts/web-fonts/FilsonSoft-Regular.woff2") format("woff2"),
        url("../fonts/web-fonts/FilsonSoft-Regular.otf") format("orf"),
        url("../fonts/web-fonts/FilsonSoft-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "FilsonSoft-Medium";
    src: url("../fonts/web-fonts/FilsonSoft-Medium.woff") format("woff"),
        url("../fonts/web-fonts/FilsonSoft-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "FilsonSoft-Bold";
    src: url("../fonts/web-fonts/FilsonSoft-Bold.woff") format("woff"),
        url("../fonts/web-fonts/FilsonSoft-Bold.woff2") format("woff2");
}
@font-face {
    font-family: "FilsonSoft-Black";
    src: url("../fonts/web-fonts/FilsonSoft-Black.woff") format("woff"),
        url("../fonts/web-fonts/FilsonSoft-Black.woff2") format("woff2");
}
@font-face {
    font-family: "Sirenia";
    src: url("../fonts/web-fonts/Sirenia-Semibold.woff2") format("woff2"),
        url("../fonts/web-fonts/Sirenia-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lilita One';
    src: url('../fonts/web-fonts/LilitaOne.woff2') format('woff2'),
        url('../fonts/web-fonts/LilitaOne.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* Common CSS Starts */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "FilsonSoft-Regular";
    font-weight: 400;
    color: #1e1e1e;
}

body.overflow-hidden {
    overflow: hidden;
    height: 100%;
}
a:not([href]) {
    cursor: pointer;
}

h1 {
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Lilita One';
    margin-bottom: 10px;
    letter-spacing: -1.9px;
}

h2 {
    font-size: 64px;
    font-weight: 400;
    font-family: 'Lilita One';
    letter-spacing: -1.5px;
}

h3 {
    font-size: 40px;
    font-weight: 500;
    color: #000;
}

h4 {
    font-size: 24px;
    font-family: "FilsonSoft-Regular";
}

h4 strong {
    font-weight: 500;
    font-family: "Filson Soft", sans-serif;
}

p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 24px;
    font-family: "FilsonSoft-Regular";
}
p strong {
    font-weight: 500;
    font-family: "Filson Soft";
}

p:last-child {
    margin-bottom: 0;
}

p a,
li a {
    color: #AC068F;
    text-decoration: none;
}

p a:hover,
li a:hover {
    text-decoration: underline;
}

ol {
    counter-reset: li;
    list-style: none;
}

ol > li {
    position: relative;
    margin-bottom: 32px;
}

ol > li:last-child {
    margin-bottom: 0;
}

ol > li:before {
    counter-increment: li;
    content: counter(li) ".";
    position: absolute;
    left: -30px;
    top: 1px;
}

ol > li > ol {
    counter-reset: sub-li;
    padding-left: 40px;
}

ol > li > ol > li {
    position: relative;
    margin-bottom: 24px;
}

ol > li > ol > li:before {
    counter-increment: sub-li;
    content: counter(li) "." counter(sub-li) ".";
    position: absolute;
    top: 4px;
    left: -40px;
}

ul {
    list-style-type: disc;
}

img {
    max-width: 100%;
}

.container-fluid {
    width: 2014px;
    max-width: 100%;
    margin: 0 auto;
}

.main-button-wrapper {
    display: table;
    z-index: 1;
}

.main-button {
    font-size: 16px;
    font-weight: 500;
    font-family: "FilsonSoft-Bold";
    color: #000;
    text-decoration: none;
    min-width: 192px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border: solid 2px #AC068F;
    background-color: #fff;
    filter: drop-shadow(0px 2px 0px #000);
    transition: 300ms ease-out;
    border-radius: 26px;
    display: table;
    padding-left: 16px;
    padding-right: 16px;
}

.main-button.hovered svg path {
    fill: #fff;
}

.colored-text {
    background: -webkit-linear-gradient(
        45deg,
        #FCF4F4,
        #FCF4F4 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    position: relative;
    z-index: 1;
}

.colored-text.outlined {
    position: absolute;
    transform: translate(0, 4px);
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 0;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #e0dada;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #AC068F;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #AC068F;
    border-radius: 10px;
}

.link-text {
    font-size: 13px;
    font-style: normal;
    font-family: "FilsonSoft-Bold";
    letter-spacing: 0.26px;
    color: #033C5C;
    text-decoration: none;
    min-width: 286px;
    display: inline-block;
    margin-top: 64px;
    text-align: center;
    position: relative;
    padding: 8px;
}

.link-text:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    background-color: #033C5C;
    width: 0;
    height: 2px;
    transition: 400ms width;
}

.link-text:hover:after {
    width: 100%;
}

/* Common CSS Ends */

/* Header CSS Starts */

header {
    padding: 16px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 8;
}

.header-holder {
    position: relative;
    z-index: 6;
}

.header-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    width: 280px;
    position: relative;

    /* z-index: 6; */
}

.menu-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #033C5C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid #fff;
    background: #fff;
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    position: relative;
    margin-left: 172px;
    /* z-index: 6; */
}

.header-btn {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(90deg, #007DAC 0%, #C8308A 100%);
    text-decoration: none;
    padding: 0 56px;
    height: 74px;
    line-height: 74px;
}

/* Hamburger Menu Design Starts*/

.nav-icon {
    width: 20px;
    height: 16px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: 2px;
    width: 100%;
    background-color: #033C5C;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 1px;
}

.nav-icon span:nth-child(2) {
    top: 7px;
}

.nav-icon span:nth-child(3) {
    top: 13px;
}

.menu-btn:hover .nav-icon span:nth-child(2) {
    width: 12px;
}

.menu-btn.open .nav-icon span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.menu-btn.open .nav-icon span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-btn.open .nav-icon span:nth-child(3) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.menu-btn.open:hover .nav-icon {
    transform: scale(0.7);
}

/* Hamburger Menu Design Starts*/

.header-menu {
    /* background: linear-gradient(
        180deg,
        rgb(255, 251, 165) 0%,
        rgba(255, 255, 255, 1) 100%
    ); */
    background-image: url(../images/menu-bkg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 100%;
    width: 100%;
    z-index: 5;
    height: 100vh;
    transition: 400ms bottom;
}

.header-menu.show {
    bottom: 0;
}

.header-menu-in {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.header-menu-holder {
    width: 100%;
    padding: 130px 0 100px;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-menu:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44px;
    width: 100%;
    background: linear-gradient(270deg, #4FA452 0%, #007DAC 100%);
}

.header-menu-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    max-width: 1220px;
    margin: 0 auto;
}

.header-menu-wrap.hasAd {
    justify-content: space-between;
}

.header-menu-left {
    width: 575px;
    transition-delay: 300ms;
    transition-duration: 700ms;
    transform: translateY(200px);
    padding: 20px 0;
}

.header-menu.show .header-menu-left {
    transform: translateY(0px);
}

.header-menu-left figure {
    margin-bottom: 24px;
}

.header-menu-left figure img {
    margin: 0 auto;
    display: table;
}

.header-menu-left p {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #033C5C;
}

.header-menu-left p strong {
    font-family: 'Lilita One';
}

.header-menu-left .main-button-wrapper {
    margin: 0 auto;
    font-size: 16px;
}

.header-menu-left .main-button {
    font-size: 16px;
}

.header-menu-right {
    padding: 20px 0;
    /* max-width: calc(100% - 697px); */
}

ul.nav-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 72px;
}

ul.nav-menu li {
    margin-bottom: 48px;
}

ul.nav-menu li:last-child {
    margin-bottom: 0;
}

ul.nav-menu li a.main-button {
    font-size: 40px;
    font-weight: 700;
    height: 74px;
    line-height: 70px;
    border-radius: 45px;
    padding: 0 40px;
    box-shadow: 0px 6px 0px 0px #000;
}

ul.nav-menu li a.main-button:hover {
    text-decoration: none;
}

ul.nav-menu li .main-button-wrapper {
    transition-timing-function: cubic-bezier(0, 0, 0.09, 1.34);
    opacity: 0;
}

ul.nav-menu li:first-child .main-button-wrapper {
    transition-delay: 600ms;
    transition-duration: 200ms;
    transform: translateX(-168px);
}

ul.nav-menu li:nth-child(2) .main-button-wrapper {
    transition-delay: 650ms;
    transition-duration: 300ms;
    transform: translateX(-194px);
}

ul.nav-menu li:nth-child(3) .main-button-wrapper {
    transition-delay: 750ms;
    transition-duration: 300ms;
    transform: translateX(-267px);
}

ul.nav-menu li:nth-child(4) .main-button-wrapper {
    transition-delay: 800ms;
    transition-duration: 500ms;
    transform: translateX(-512px);
}

.header-menu.show ul.nav-menu li .main-button-wrapper {
    transform: translateX(0px);
    opacity: 1;
}

ul.second-menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    transition-delay: 900ms;
    transition-duration: 500ms;
    transform: translateX(-650px);
    opacity: 0;
}

.header-menu.show ul.second-menu {
    transform: translateX(0px);
    opacity: 1;
}

ul.second-menu li a {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    padding: 8px 16px;
    position: relative;
}

ul.second-menu li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: 400ms width;
}

ul.second-menu li a:hover:after {
    width: 100%;
}

/* Header CSS Ends */

/* Fixed Button Section Starts */

.fixed-button-section {
    position: fixed;
    right: 0;
    bottom: 24px;
    width: 100%;
    background-color: transparent;
    z-index: 8;
    /* padding: 24px 0 0; */
}

.fixed-button-wrap {
    position: relative;
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 40%; */
}

.left-button {
    position: absolute;
    /* left: calc(50% - 96px); */
    left: 0;
    bottom: 0;
    filter: blur(0px);
    transition: 400ms filter;
}

.fixed-button-section .main-button {
    font-size: 16px;
}

.share-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 26px;
    border: 1px solid #fff;
    background: #fff;
    backdrop-filter: blur(4px);
    color: #000;
    padding: 8px 16px;
    gap: 12px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.share-button {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.share-button svg {
    margin-left: 4px;
}

ul.social-icons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 0;
    margin: 0;
    list-style: none;
    max-width: 0;
    max-height: 24px;
    -webkit-transition: max-width 1s, max-height 1s;
    transition: max-width 1s, max-height 1s;
    white-space: nowrap;
    overflow: hidden;
}

ul.social-icons li a:hover svg path {
    fill: #AC068F;
}

.share-block:hover ul.social-icons {
    max-width: 112px;
}

.share-block.clicked ul.social-icons {
    max-width: 112px !important;
}

/* Fixed Button Section Ends */

/* Banner CSS Starts */

.banner {
    background: linear-gradient(90deg, #007DAC 0%, #4FA452 60%);
    position: relative;
    z-index: 0;
    color: #fff;
}

.banner-img {
    width: 37%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.banner-img figure {
    height: 100%;
    margin: 0;
    /* border-left: 16px solid rgba(255, 115, 71, 1); */
}

.banner-img figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.banner-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 100vh;
    color: #fff;
    padding-left: 85px;
    position: relative;
    padding-top: 130px;
    padding-bottom: 100px;
}

.one .banner-content h1 {
    text-transform: uppercase;
}

.banner.two-point-five h1 {
    font-size: 86px;
}

.banner-content h1 i {
    font-style: normal;
}

.banner-content h1 i > span {
    margin-left: -20px;
}

.banner-content p {
    font-size: 32px;
    font-family: "FilsonSoft-Bold";
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
    padding-right: 50px;
}

.banner-text {
    max-width: 920px;
}

.colored-text-animation {
    display: inline;
    font-family: "sirenia", sans-serif;
    position: relative;
    z-index: 1;
    font-size: 94px;
}

#changing-text {
    background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 121, 0, 1),
        rgba(255, 237, 0, 1) 100%
    );
    background-clip: border-box;
    text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    position: relative;
    z-index: 2;
}

/* #changing-text-outlined {
    position: absolute;
    left: 0;
    transform: translate(2px, 4px);
    background: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    z-index: 0;
} */

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.worth-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 32px;
    gap: 18px;
}

.worth-block {
    text-align: center;
    width: calc(33.33% - 12px);
    min-width: 270px;
}

.worth-block .icon {
    margin: 0 auto 18px;
}

.worth-block .icon .icon-holder {
    display: table;
    position: relative;
    margin: 0 auto;
}

.worth-block .icon .icon-holder .num {
    position: absolute;
    bottom: -10px;
    left: -10px;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    font-style: italic;
    width: 63px;
    height: 63px;
    line-height: 63px;
    border-radius: 50%;
    background: radial-gradient(103.75% 1812% at 0% 15%, #ED38A7 0%, #860070 100%);
}

.worth-block .icon img {
    width: 180px;
    height: 150px;
    object-fit: contain;
}

.price-details {
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-style: italic;
    font-weight: normal;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    display: table;
    margin: 0 auto;
    text-align: left;
    font-family: "FilsonSoft-Black";
}

.price span {
    padding: 0 4px 0 0;
}

.worth-block:last-child .price span br {
    display: none;
}

.worth-block:first-child .price {
    font-size: 64px;
}

.worth-block .content {
    display: table;
    margin: 0 auto;
}

.price small {
    font-size: 32px;
    margin-right: 10px;
}

.price-details .number {
    font-size: 40px;
    font-style: italic;
    font-weight: 500;
    display: block;
}

.price-details .text {
    display: block;
    line-height: 1.3;
    font-size: 20px;
    font-weight: 400;
    font-family: "FilsonSoft-Regular";
}

.info {
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    display: table;
    margin: 8px 0 0;
}

.info strong {
    font-size: 32px;
}

.info .info-details {
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    display: block;
}
.worth-block:first-child .info .info-details:last-child {
    text-indent: 60px;
}

.worth-block:nth-child(2) .info {
    display: table;
    min-width: 174px;
    margin-left: auto;
    margin-right: auto;
}

/* .info .info-details strong {
    font-size: 34px;
} */

.info span {
    padding: 0 4px 0 0;
    background: -webkit-linear-gradient(45deg, #FCF4F4, #FCF4F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    position: relative;
    z-index: 1;
    text-align: left;
    line-height: 0.95;
    font-family: "FilsonSoft-Black";
    font-weight: normal;
}

.info span.outlined {
    position: absolute;
    transform: translate(0, 3px);
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 0;
}

/* Banner CSS Ends */

/* Process Section CSS Starts */

.process-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(200, 48, 138, 0.1) 0%, rgba(200, 48, 138, 0.01) 61.06%);
    text-align: center;
    color: #033C5C;
}

.process-section h2 {
    margin-bottom: 80px;
    text-transform: uppercase;
}

.homeOnePointFive .process-section h3, .homeTwoPointFive .process-section h3, .homeTwo .process-section h3 {
    font-weight: 700;
}

.process-section .accordion-head {
    display: none;
}

.process-section .accordion-head.active span {
    transition: 400ms ease-in-out;
}

.process-section .accordion-head.active span {
    transform: rotate(180deg);
}

.process-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}

.process-block {
    max-width: 360px;
}

.process-block .icon {
    display: flex;
    width: 72px;
    height: 72px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border-bottom: 3px solid #033C5C;
    background: #fff;
    margin: 0 auto 26px;
}

.process-block p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 16px;
}

.process-block p strong {
    font-weight: 500;
}

.process-section .link-text {
    min-width: 235px;
}

.photos-section {
    background: linear-gradient(270deg, #4FA452 0%, #007DAC 100%);

}

.photos-heading {
    color: #fff;
    text-align: center;
    padding: 110px 0;
}

.photos-heading h2 {
    margin-bottom: 0;
    padding: 0 197px;
    display: table;
    margin: 0 auto;
    position: relative;
    text-transform: uppercase;
}

.photos-heading h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 4px;
    width: 165px;
    background: linear-gradient(90deg, #fff 0%, #fff 84%);
    filter: drop-shadow(0px 3px 0px #000);
}

.photos-heading h2:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 4px;
    width: 165px;
    background: linear-gradient(90deg, #fff 0%, #fff 84%);
    filter: drop-shadow(0px 3px 0px #000);
}

.photos-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.photos-wrap figure {
    width: calc(20% - 12px);
    margin-bottom: 0;
    position: relative;
    background: transparent url("../images/loading-loop.svg") center no-repeat;
}

.photos-wrap figure a {
    display: block;
    text-decoration: none;
}

.photos-wrap figure a[data-fancybox],
.first-position-img figure a[data-fancybox] {
    pointer-events: none;
    display: block;
    height: 100%;
}

.photos-wrap figure img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.photos-content {
    background-color: #fff;
    border-radius: 32px 32px 0 0;
    position: relative;
}

.photos-content:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #fff;
    height: 28px;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
}

.photos-tag {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    padding: 6px 12px;
    top: 2px;
    right: 2px;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    background: transparent;
    transition: 400ms all;
    border-radius: 8px;
    overflow: hidden;
}

.photos-tag i {
    margin-right: 4px;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-indent: -99px;
    transition: 200ms text-indent;
    overflow: hidden;
}

.photos-wrap figure:hover .photos-tag i {
    text-indent: 0;
}

.photos-tag:hover {
    background: #fff;
    color: #1e1e1e;
}

.filter-menu {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 0;
}

.filter-item {
    padding: 8px 16px 8px 16px;
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 350;
    text-decoration: none;
    position: relative;
    transition: 400ms font-weight, 400ms letter-spacing;
}

.filter-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    background-color: #ff7900;
    height: 2px;
    transition: 400ms width;
}

.filter-item.active {
    color: #ff7900;
    font-weight: 500;
}

.filter-item:not(.active):hover {
    font-weight: 500;
    letter-spacing: -0.009em;
}

.filter-item:not(.active):hover:after {
    width: 100%;
}

.photos-holder {
    padding: 0 16px;
    max-width: 1920px;
    margin: 0 auto;
}

.filter-block {
    position: relative;
}

.show-all {
    background-color: #fff;
    padding: 0 165px;
    display: table;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: -20px;
    z-index: 2;
}

.show-all.show-less {
    position: relative;
    bottom: 0;
}

.photos-content .link-text {
    width: 160px;
    min-width: inherit;
    display: table;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
}

/* Process Section CSS Ends */

/* Pagination CSS Starts */
.pagination {
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.page-link {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    color: #000;
    text-decoration: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: 400ms padding, 400ms border-color;
}

.page-link:hover {
    background-color: transparent;
    color: #ff7900;
    text-decoration: none;
}

.page-link:focus {
    color: inherit;
    outline: none;
    background-color: transparent;
    box-shadow: none;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.active > .page-link,
.page-link.active {
    background-color: transparent;
    color: #000;
    color: #ff7900;
    font-size: 40px;
    font-weight: 500;
    width: 80px;
    height: 80px;
    padding: 4px;
    border-radius: 56px !important;
    border-bottom: 3px solid #ff8000;
}

.pagination-block {
    margin-top: 62px;
    position: relative;
    z-index: 1;
}

.active-prev .page-link,
.active-next .page-link {
    font-size: 36px;
    font-weight: 300;
}

.active-one-but-prev .page-link,
.active-one-but-next .page-link {
    font-size: 24px;
    font-weight: 300;
}

.pagination-block nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.pagination-block nav .page-item.previous,
.pagination-block nav .page-item.next {
    width: calc((100% - 560px) / 2);
    margin-top: 20px;
}

.pagination-block nav .page-item.previous .page-link {
    padding: 42px 30px;
    display: block;
    border-radius: 56px 0px 0 56px;
    border-bottom: 3px solid #ff701f;
    border-top: 3px solid #fff;
}

.pagination-block nav .page-item.previous .page-link:hover {
    padding-right: 150px;
    border-left: 3px solid #ff701f;
    border-top: 3px solid #ff701f;
}

.pagination-block nav .page-item.next .page-link {
    padding: 42px 30px;
    display: block;
    border-radius: 0px 56px 56px 0;
    border-bottom: 3px solid #ff701f;
    border-top: 3px solid #fff;
}

.pagination-block nav .page-item.next .page-link:hover {
    padding-left: 150px;
    border-right: 3px solid #ff701f;
    border-top: 3px solid #ff701f;
}

.pagination-block nav .page-item .page-link.disabled {
    display: none;
}

.page-link img,
.page-link svg {
    display: table;
    margin: 0 auto;
    transition: 400ms all;
    max-width: 100%;
}

.page-link:hover svg path {
    fill: #ff701f;
}

/* Pagination CSS Ends */

/* Online Section CSS Starts */
.online-section {
    padding: 120px 0;
    color: #033C5C;
    background-image: url(../images/menu-bkg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background: linear-gradient(
        180deg,
        rgba(255, 251, 165, 0.5) 0%,
        rgba(255, 251, 165, 0.25) 100%
    ); */
}

.online-section h2 {
    margin-bottom: 80px;
    text-align: center;
    text-transform: uppercase;
}

.online-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 990px;
    margin: 0 auto;
}

.online-section figure {
    width: 468px;
}

.online-section .content {
    width: calc(100% - 508px);
}

.online-section p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
}

.online-section p strong {
    font-weight: 500;
}

.online-button {
    position: relative;
}

/* Online Section CSS Ends */

/* Footer CSS Starts */

footer {
    padding: 40px 0;
    background: linear-gradient(270deg, #4FA452 0%, #007DAC 100%);
    color: #fff;
}

footer p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

footer p a {
    color: #fff;
    text-decoration: none;
}

.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-left .logo {
    width: 180px;
    margin-bottom: 96px;
}

.footer-middle ul {
    display: flex;
    flex-wrap: wrap;
    gap: 96px;
    list-style: none;
    margin-top: 50px;
    padding-left: 0;
}

.footer-middle ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 8px;
    display: block;
    position: relative;
}

.footer-middle ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    margin: 0 auto;
    text-align: center;
    height: 2px;
    background-color: #fff;
    transition: 400ms width;
}

.footer-middle ul li a:hover:after {
    width: 100%;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 40px;
    padding-bottom: 16px;
}

.footer-right figure {
    margin-bottom: 0;
}

.footer-right figure a {
    display: block;
}

/* Footer CSS Ends */

/* Maintenance Page CSS Starts */

body.maintenance .logo {
    width: 223px;
}

.maintenance-section {
    min-height: calc(100vh - 110px);
    background: linear-gradient(
        180deg,
        rgb(255, 251, 165) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    background-image: url(../images/menu-bkg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 136px 0 40px;
}

.maintenance-holder {
    width: 100%;
}

.maintenance-section h1 {
    font-size: 75px;
    font-family: "FilsonSoft-Bold";
    margin-bottom: 32px;
}

.maintenance-left p {
    font-size: 32px;
    font-weight: 400;
}

.maintenance-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.maintenance-left {
    width: calc(100% - 608px);
}

.maintenance-right {
    width: 574px;
}

.maintenance-right p {
    font-size: 18px;
    text-align: center;
    color: #033C5C;
}

.maintenance-right p strong {
    font-family: 'Lilita One';
}

.maintenance-button .main-button-wrapper {
    margin: 0 auto;
}

.maintenance-right .main-button-wrapper {
    margin: 0 auto;
    font-size: 16px;
}

body.maintenance footer {
    padding: 22px 0;
}

body.maintenance footer .footer-right figure:first-child {
    width: 44px;
}

body.maintenance footer .footer-right figure:last-child {
    width: 66px;
}

body.maintenance footer .footer-right figure img {
    object-fit: cover;
}

/* Maintenance Page CSS Ends */

/* Inside Page Banner CSS Starts */

.banner.inside-page {
    padding: 170px 0 105px;
}

.banner.inside-page h1 {
    font-size: 75px;
}

.inside-banner-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 60px;
}

.inside-banner-wrap .img-block {
    width: 300px;
    position: relative;
    height: 230px;
}

.inside-banner-wrap .img-block figure {
    margin-bottom: 0;
    position: absolute;
    height: 254px;
    width: 152px;
    /* border-bottom: 10px solid #860070; */
}

.inside-banner-wrap .img-block figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inside-banner-wrap .img-block figure:first-child {
    transform: rotate(-10deg);
    left: 0;
    z-index: 1;
}

.inside-banner-wrap .img-block figure:last-child {
    transform: rotate(10deg);
    right: 0;
    top: -30px;
}

.inside-banner-wrap h1 {
    width: calc(50% + 100px);
}

/* Inside Page Banner CSS Ends */

/* Contact Page CSS Starts */

.contact-section {
    padding: 120px 0 160px;
    text-align: center;
}

.contact-section h5 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 34px;
}

.contact-section h2 {
    /* font-size: 126px; */
    font-size: clamp(40px, 11.4vw, 126px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
}

.contact-section h2 a {
    background: linear-gradient(270deg, #C8308A 0%, #007DAC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 10px;
    text-decoration: none;
    font-weight: 400;
    font-family: "FilsonSoft-Bold";
}

.contact-section h2 a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    height: 4px;
    width: 0;
    background: linear-gradient(270deg, #C8308A 0%, #007DAC 100%);
    transition: 400ms width;
}

.contact-section h2 a:hover:after {
    width: 100%;
}

.contact-section h2 a:focus,
.contact-section h2 a:hover {
    text-decoration: none;
    outline: none;
}

/* Contact Page CSS Ends */

/* Reglement Page CSS Starts */

.regulations-section {
    padding: 120px 0 160px;
    color: #000;
}

.regulations-holder {
    max-width: 880px;
    width: 100%;
    margin: 0 auto 80px;
}

.regulations-holder:last-child {
    margin-bottom: 0;
}

.regulations-section h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
}

.regulations-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.regulations-section p,
.regulations-section ul li,
.regulations-section ol li {
    font-size: 18px;
    font-weight: 300;
}

.regulations-section ol li:before {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.regulations-section ol li ol li:before {
    font-size: 18px;
    font-weight: 300;
}

.regulations-section ol ul {
    margin-top: 12px;
}

.regulations-section  table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border: 1px solid #1e1e1e;
}

.regulations-section table th,
.regulations-section table td {
    border: 1px solid #1e1e1e;
    padding: 8px 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

.regulations-section table th {
    font-weight: 700;   
}

.regulations-section table td strong {
    font-weight: 700;
}

/* Reglement Page CSS Ends */

/* Protection Page CSS Starts */

.protection-section {
    padding: 120px 0 160px;
}

.protection-holder {
    max-width: 880px;
    width: 100%;
    margin: 0 auto 80px;
}

.protection-holder:last-child {
    margin-bottom: 0;
}

.protection-section h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 16px;
}

.protection-section p {
    font-size: 18px;
    font-weight: 300;
}

.protection-section p a {
    word-break: break-word;
}

/* Protection Page CSS Ends */

/* Sticky Popup Section CSS Starts */

.sticky-popup-section {
    max-width: 426px;
    width: 100%;
    position: fixed;
    bottom: 20px;
    left: -430px;
    z-index: 9;
    transform: translateY(0);
    transition: 400ms left;
}

.sticky-popup-section.cookie {
    max-width: 570px;
    left: -574px;
}

.sticky-popup-section.ad {
    transition-delay: 600ms;
}

.sticky-popup-section.show {
    left: 0;
}

.sticky-popup-block {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* background: linear-gradient(0deg, #fff1bf 0%, #fff1bf 100%), #fff; */
    border-radius: 0px 20px 20px 0px;
    padding: 12px;
    background-color: #fff;
    background-image: url(../images/menu-bkg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sticky-popup-block figure {
    width: 142px;
    margin-bottom: 0;
    animation: MoveUpDown 1s linear infinite;
}

@keyframes MoveUpDown {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.sticky-popup-block .content {
    width: calc(100% - 152px);
    padding: 31px 25px 19px 0;
    text-align: center;
}

.sticky-popup-block h6 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.sticky-popup-block h6 strong {
    font-family: 'Lilita One';
    font-weight: 400;
    color: #033C5C;
}

.sticky-popup-block h6 i {
    font-style: normal;
}

.sticky-popup-block p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
}

.sticky-popup-block .main-button-wrapper {
    margin: 0 auto;
}

.sticky-popup-section.cookie .sticky-popup-block {
    display: block;
    padding: 32px 40px 32px 56px;
}

.sticky-popup-section.cookie .sticky-popup-block p {
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

.sticky-popup-section.cookie .sticky-popup-block p:last-child {
    margin-bottom: 0;
}

.sticky-popup-section.cookie .sticky-popup-block p a {
    color: #AC068F;
    font-weight: 600;
}

.sticky-popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

/* Sticky Popup Section CSS Ends */

/* Casting process and Prizes Section CSS Starts */

.casting-process-and-prizes-section {
    background: linear-gradient(
        90deg,
        rgba(0, 125, 172, 1) 0%,
        rgba(200, 48, 138, 1) 84%
    );
    padding: 24px 0;
}

.casting-process-and-prizes-inner {
    position: relative;
    z-index: 0;
    background-color: #fff;
}

.casting-process-and-prizes-inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(180deg, rgba(200, 48, 138, 0.1) 0%, rgba(200, 48, 138, 0.01) 61.06%)
}

.casting-process-and-prizes-inner:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg, #4FA452 0%, #007DAC 100%);;
}

.casting-process-and-prizes-section h3 {
    font-size: 54px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 40px;
    color: #212529;
    font-family: 'Lilita One';
}

.casting-process-and-prizes-holder {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.casting-process-and-prizes-wrap {
    width: 50%;
    padding: 120px 48px 120px 0;
}

.casting-process-and-prizes-wrap:last-child {
    color: #fff;
    padding: 120px 0 120px 48px;
}

.casting-process-and-prizes-wrap:last-child h3 {
    color: #fff;
}

.casting-process-and-prizes-block {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 40px;
}

.casting-process-and-prizes-block:last-child {
    margin-bottom: 0;
}

.casting-process-and-prizes-block .icon {
    display: flex;
    width: 102px;
    height: 102px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border-bottom: 3px solid #033C5C;
    background: #fff;
}

.casting-process-and-prizes-block .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.casting-process-and-prizes-block .content {
    width: calc(100% - 138px);
    padding: 10px 0;
}

.casting-process-and-prizes-block h4 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 15px;
}

.casting-process-and-prizes-block h4 br {
    display: none;
}

.casting-process-and-prizes-block p {
    font-size: 26px;
}

.casting-process-and-prizes-block p strong {
    font-weight: 500;
}

.casting-process-and-prizes-block p span.colored-text {
    /* font-size: 18px; */
    /* font-weight: 800; */
    display: inline;
    font-family: "FilsonSoft-Bold";
    background: -webkit-linear-gradient(
        45deg,
        #FEED00,
        #FF7900 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Casting process and Prizes Section CSS Ends */

/* Report Section CSS Starts */

.back-btn-section {
    margin-top: 132px;
    margin-bottom: 18px;
}

.back-btn {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    gap: 8px;
}

.back-btn span {
    position: relative;
}

.back-btn span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 0;
    text-align: center;
    margin: 0 auto;
    bottom: 0;
    transition: 400ms width;
    height: 1px;
    background-color: #000;
}

.back-btn:hover span:after {
    width: 100%;
}

.report-section {
    padding: 0 0 168px;
    background: linear-gradient(180deg, #ffffff 70%, #ffffff 100%);
}

.report-section h2 {
    font-size: 26px;
    font-family: "FilsonSoft-Medium";
    font-weight: 500;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

/* .report-section h2:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: linear-gradient(90deg, rgba(255, 121, 0, 1) 0%, rgba(255, 237, 0, 1) 84%);
    filter: drop-shadow(0px 3px 0px #000);
    z-index: 0;
}

.report-section h2 span {
    display: table;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    max-width: calc(100% - 80px);
} */

.report-heading-mobile {
    display: none;
}

.report-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.report-wrap figure {
    width: 28%;
    position: relative;
    z-index: 0;
}

.report-wrap figure img {
    width: 100%;
}

.report-wrap .content {
    width: calc(72% - 40px);
    max-width: 690px;
    padding-top: 20px;
}

::-webkit-input-placeholder {
    /* Edge */
    color: rgba(30, 30, 30, 0.5);
    font-size: 16px;
    font-weight: 300;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(30, 30, 30, 0.5);
    font-size: 16px;
    font-weight: 300;
}

::placeholder {
    color: rgba(30, 30, 30, 0.5);
    font-size: 16px;
    font-weight: 300;
}

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 300;
}

.form-group h4,
.form-group p {
    color: #000;
    text-align: center;
}

.form-group p a {
    color: #000;
    font-weight: 500;
    text-decoration: underline;
}

.form-control {
    padding: 16px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 8px;
    border: 1px solid #AC068F;
}

textarea.form-control {
    height: 145px;
}

.form-control:hover {
    box-shadow: 0 0 0 2px #AC068F;
    border-color: #AC068F;
}

.form-control:focus {
    border-color: #c51984;
    box-shadow: none;
}

.form-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.form-btns:has(> div:nth-child(2)) {
    justify-content: space-between;
}

.cancel-btn button {
    background-color: transparent;
    border: none;
    min-width: 192px;
    height: 40px;
    position: relative;
}

.cancel-btn button:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    margin: 0 auto;
    text-align: center;
    height: 2px;
    background-color: #1e1e1e;
    transition: 400ms width;
}

.cancel-btn button:hover:after {
    width: 100%;
}

.share-link {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    padding: 6px 12px;
    top: 40px;
    right: 4px;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    background: transparent;
    transition: 400ms all;
    border-radius: 8px;
    overflow: hidden;
}

.share-link i {
    margin-right: 4px;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-indent: -99px;
    transition: 200ms text-indent;
    overflow: hidden;
}

.photos-wrap figure:hover .share-link i {
    text-indent: 0;
}

.share-link:hover {
    background: #fff;
    color: #1e1e1e;
}

.share-link:hover svg path {
    fill: #1e1e1e;
}

/* Report Section CSS Ends */

/* Participation Section CSS Starts */

.participation-section {
    background: linear-gradient(
        90deg,
        rgba(0, 125, 172, 1) 0%,
        rgba(200, 48, 138, 1) 84%
    );
    padding: 24px 0 0;
}

.participation-holder {
    background-color: #fff;
}

.participation-inner {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(200, 48, 138, 0.1) 0%, rgba(200, 48, 138, 0.01) 61.06%);
}

.participation-section h2 {
    margin-bottom: 58px;
}

.participation-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 56px;
}

.participation-block {
    width: 430px;
}

.participation-block .icon {
    display: flex;
    width: 102px;
    height: 102px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border-bottom: 3px solid #033C5C;
    background: #fff;
    margin: 0 auto 26px;
}

.participation-block .icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.participation-block p {
    font-size: 26px;
    font-weight: 300;
}

.participation-block p strong {
    font-weight: 500;
}

.participation-section .link-text {
    min-width: 235px;
}

.upload-file {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 32px 40px;
    gap: 16px;
    max-width: 458px;
    width: 100%;
    border-radius: 16px;
    border: 2px solid #AC068F;
    box-shadow: 0px 6px 0px 0px #000;
    transition: 300ms ease-out;
    cursor: pointer;
}

.upload-file:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 0px 0px #000;
    border: solid 2px white;
    background-color: #AC068F;
}

.upload-file span {
    font-size: 65px;
    color: #AC068F;
}

.upload-file:hover span {
    color: #fff;
}

.upload-file .upload-file-text {
    width: calc(100% - 81px);
}

.upload-file .upload-file-text p {
    text-align: left;
}

.upload-file:hover .upload-file-text p {
    color: #fff;
}

.upload-file p {
    margin-bottom: 8px;
}

.upload-file p:last-child {
    margin-bottom: 0;
}

.upload-file p strong {
    font-weight: 500;
}

.form-group input[type="file"] {
    display: none;
}

.photos-upload-section {
    padding: 88px 0 136px;
}

.photos-upload-section h2 {
    margin-bottom: 80px;
    text-align: center;
}

.photos-upload-section .form-group {
    margin-bottom: 0;
    padding: 8px 0;
}

.photos-upload-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 964px;
    width: 100%;
    margin: 0 auto;
    gap: 48px;
}

.photos-upload-wrap > div {
    width: calc(50% - 24px);
}

.photos-upload-block {
    display: none;
}

.photos-upload-block.show {
    display: block;
}

.photos-upload-block > div.hide {
    display: none;
}

.photos-upload-block label {
    margin-bottom: 0;
}

.uploaded-file-name-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #AC068F;
}

.upload-file-image {
    padding: 12px 0;
}

.upload-file-name-img {
    max-width: 278px;
    margin: 0 auto;
}

.upload-file-name-img figure {
    margin: 0;
    position: relative;
    padding-bottom: 145.5%;
}

.uploaded-file-name {
    padding: 12px 0;
}

.upload-file-name-img figure img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uploaded-file-name .file-name {
    display: block;
    margin-right: 4px;
    width: calc(100% - 80px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size-close-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.uploaded-file-name .file-size {
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
}

.uploaded-file-name .file-reset-btn {
    color: #AC068F;
    background-color: transparent;
    padding: 0;
    border: none;
    line-height: 1;
}

.file-input-error-box {
    padding: 8px 0;
    display: none;
}

.file-input-error-box.show {
    display: block;
}

.file-input-error {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 31px 10px;
    border-radius: 8px;
    border: 1px solid #e00000;
    color: #e00000;
}

.file-input-error span {
    max-width: calc(100% - 25px);
    font-size: 14px;
    font-weight: 300;
}

.file-input-error svg {
    margin-right: 4px;
}

.participation-uploaded-image-section {
    padding: 130px 0;
    background: linear-gradient(180deg, rgba(200, 48, 138, 0.025) 75%, rgba(200, 48, 138, 0.175) 100%)
}

.participation-uploaded-image-heading {
    position: relative;
}

.participation-uploaded-image-section h2 {
    font-size: 26px;
    font-weight: 500;
    font-family: "FilsonSoft-Medium";
    position: relative;
    margin: 0 auto 30px;
    text-align: center;
    max-width: 736px;
}

.participation-uploaded-image-section h2:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: radial-gradient(
        circle at center,
        #860070 0%,
        #ED38A7 92%
    );
    filter: drop-shadow(0px 3px 0px #000);
    z-index: 0;
}

.participation-uploaded-image-section h2 span {
    display: table;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    max-width: calc(100% - 80px);
}

.participation-uploaded-image-section .back-btn {
    position: absolute;
    left: 0;
    top: 4px;
}

.participation-uploaded-image-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.participation-uploaded-image-wrap figure {
    width: 278px;
    margin: 0;
    height: 404px;
}

.participation-uploaded-image-wrap figure img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.participation-thank-you-content {
    text-align: center;
}

.participation-thank-you-content {
    padding: 24px 0 44px;
}

.participation-uploaded-image-section .cancel-btn {
    text-align: center;
}

.personal-information-section {
    /* background: linear-gradient(180deg, #2fb9c6 0%, #0c3061 100%), #d9d9d9; */
    background: linear-gradient(270deg, #4FA452 0%, #007DAC 100%);
}

.personal-information-heading {
    color: #fff;
    text-align: center;
    padding: 110px 0;
}

.personal-information-heading h2 {
    margin-bottom: 0;
    padding: 0 197px;
    display: table;
    margin: 0 auto;
    position: relative;
}

.personal-information-heading h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 4px;
    width: 165px;
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 84%
    );
    filter: drop-shadow(0px 3px 0px #000);
}

.personal-information-heading h2:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 4px;
    width: 165px;
    background: linear-gradient(90deg, #fff 0%, #fff 84%);
    filter: drop-shadow(0px 3px 0px #000);
}

.personal-information-content {
    background-color: #fff;
    border-radius: 32px 32px 0px 0px;
    padding: 100px 0 150px;
    overflow: hidden;
}

.personal-information-content .form-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.form-group-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.form-group-wrap .form-group {
    width: calc(50% - 10px);
}

.form-check-group {
    margin-bottom: 50px;
}

.form-check {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    margin-bottom: 40px;
    cursor: pointer;
}

.form-check:last-child {
    margin-bottom: 0;
}

.form-check label {
    cursor: pointer;
}

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

.form-check a:hover {
    text-decoration: underline;
}

.form-check-input {
    border: 2px solid #AC068F;
}

.form-check-input[type="checkbox"] {
    border-radius: 0;
}

.form-check-input:hover {
    border-color: #c51984;
}

.form-check-input:checked {
    background-color: #c51984;
    border-color: #c51984;
}

.form-check-label strong {
    font-weight: 500;
}

.form-check-input:focus {
    box-shadow: none;
}

.error-msg {
    display: block;
    color: #e00000;
    font-size: 14px;
    font-weight: 300;
}

.error-msg:not(:empty) {
    margin-top: 16px;
}

.error-msg svg {
    margin-right: 4px;
}

/* Participation Section CSS Starts */

/* Error Page CSS Starts */

.error-page-section {
    /* padding: 235px 0 260px; */
    /* background: linear-gradient(
        180deg,
        #fffba5 0%,
        rgba(255, 251, 165, 0) 100%
    ); */
    background: linear-gradient(180deg, rgba(200, 48, 138, 0.1) 0%, rgba(200, 48, 138, 0.01) 61.06%);
    text-align: center;
    padding: 130px 0 70px;
}

.error-page-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 440px);
    position: relative;
    z-index: 0;
    background-image: url(../images/404-both-side-space.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.error-text {
    position: absolute;
    letter-spacing: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.error-page-wrap {
    width: 100%;
    position: relative;
    z-index: 1;
}

.error-page-section .main-button-wrapper {
    margin: 0 auto;
}

.error-page-section h1 {
    margin-bottom: 64px;
    font-size: 75px;
    font-family: "FilsonSoft-Regular";
}

/* Error Page CSS Ends */

/* One Point Five Phase Design Starts */

.homeOnePointFive .photos-heading h2,
.homeTwoPointFive .photos-heading h2 {
    padding: 0 320px;
}

.homeOnePointFive .photos-heading h2:before,
.homeOnePointFive .photos-heading h2:after,
.homeTwoPointFive .photos-heading h2:before,
.homeTwoPointFive .photos-heading h2:after {
    width: 281px;
}

.homeTwoPointFive .no-ad-section {
    background: #2fb9c6;
    height: 48px;
}

.form-validation {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    margin: 0 auto;
    z-index: 9;
    max-width: 826px;
    width: calc(100% - 24px);
}

.form-validation-wrap {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
    border-radius: 8px;
}

.form-validation.warning .form-validation-wrap {
    border: 2px solid #AC068F;
    background: linear-gradient(274deg, #fff 60.46%, #f6c462 99.52%);
}

.form-validation.error .form-validation-wrap {
    border: 2px solid #e00000;
    background: linear-gradient(274deg, #fff 60.46%, #ffb7b7 99.52%);
}

.form-validation.success .form-validation-wrap {
    border: 2px solid #01c714;
    background: linear-gradient(274deg, #fff 60.46%, #8fff9a 99.52%);
}

.form-validation-wrap figure {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.form-validation-wrap .content {
    width: calc(100% - 102px);
}

.form-validation-wrap h2 {
    font-size: 16px;
    /* font-weight: 700; */
    color: #1e1e1e;
    margin-bottom: 8px;
    letter-spacing: 0;
}

.form-validation-wrap p {
    font-size: 16px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 0;
}

.form-validation .close-btn {
    color: #1e1e1e;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.form-validation .close-btn span {
    font-size: 30px;
}

/* One Point Five Phase Design Ends */

/* Two Phase Design Starts */

.homeTwo .photos-heading h2 {
    padding: 0 170px;
}

.homeTwo .photos-heading h2:before,
.homeTwo .photos-heading h2:after {
    width: 140px;
}

.homeTwo .photos-content:after {
    height: 48px;
}

.homeTwo .online-section {
    padding-top: 175px;
}

.homeTwo .photos-wrap figure {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
}

.voter-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3px 8px;
    color: #1e1e1e;
    border-radius: 12px;
    border: 1px solid #AC068F;
    background: #fff;
    transition: 400ms ease-in-out;
    font-size: 16px;
}

.vote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    background-color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    color: #1e1e1e;
}

.vote span {
    font-size: 20px;
}

.photos-wrap figure:hover .voter-details {
    background: linear-gradient(270deg, #C8308A 0%, #007DAC 100%);
    color: #fff;
}

.photos-wrap figure:hover .photos-tag:hover ~ .voter-details,
.photos-wrap figure:hover .share-link:hover ~ .voter-details {
    border-color: #ff7900;
    background: #fff;
}

.share-btns-form .main-button-wrapper {
    width: 100%;
}

.share-btns-form .main-button-wrapper .main-button {
    width: 100%;
    position: relative;
    height: 56px;
    line-height: 54px;
    padding: 0 52px;
}

.share-btns-form .main-button svg {
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    margin: auto 0;
}

.share-btns-form .main-button-wrapper .main-button .link {
    font-weight: 300;
    font-size: 14px;
    width: 100%;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.share-btns-form .main-button-wrapper .main-button .copy {
    font-size: 16px;
    font-weight: 500;
    padding: 0 12px;
    line-height: 32px;
    height: 32px;
    border-radius: 40px;
    background-color: #AC068F;
    display: block;
    color: #fff;
}

.copy-div {
    position: absolute;
    right: 2px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 10px;
    background-color: #fff;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.share-btns-form .main-button-wrapper .main-button:hover .copy-div {
    background-color: transparent;
}

.share-btns-form .main-button-wrapper .main-button.hovered svg path {
    fill: #fff;
}

.share-btns-form .main-button-wrapper .main-button.hovered .copy {
    background-color: #fff;
    color: #AC068F;
}

.share-btns-form .form-btns {
    justify-content: center;
}

/* Two Phase Design Ends */

/* Two Point Five Phase Design Starts */

.homeTwoPointFive .photos-heading h2 {
    padding: 0 320px;
}

.homeTwoPointFive .photos-heading h2:before,
.homeTwoPointFive .photos-heading h2:after {
    width: 281px;
}

.homeTwoPointFive .online-section {
    padding-top: 175px;
}

.homeTwoPointFive .photos-content {
    position: relative;
    padding-bottom: 0;
    padding-top: 56px;
}

.homeTwoPointFive .photos-content:after {
    height: 48px;
}

/* #voting_gallery .photos-wrap figure a[data-fancybox] {
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    overflow: hidden;
} */

/* Two Point Five Phase Design Ends */

/* Three Phase Design Starts */

.homeThree .no-ad-section {
    background: #2fb9c6;
    height: 48px;
}

.homeThree .banner-content {
    /* padding-bottom: 16px;
    display: block; */
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 42px;
}

.homeThree .banner-content p {
    margin-bottom: 24px;
    font-family: "FilsonSoft-Regular";
    font-weight: 400;
}

.homeThree .photos-content {
    position: relative;
    padding-bottom: 0;
}

.homeThree .photos-content:after {
    height: 0;
}

.first-position-block {
    /* display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    justify-content: flex-end; */
    position: relative;
    width: 27.5%;
    height: 610px;
    max-width: calc(100% - 900px);
}

.first-position-icon {
    /* width: 40%; */
    position: absolute;
    left: -204px;
    bottom: -32px;
    z-index: 2;
    width: 304px;
    height: 345px;
    transform: rotate(4deg);
}

/* .first-position-icon .icon img {
    width: 118%;
    max-width: inherit;
} */

.first-position-img figure .position {
    display: none;
}

.first-position-img {
    height: 100%;
    overflow: hidden;
}

/* .first-position-img {
    width: 60%;
} */

.first-position-img figure {
    margin-bottom: 0;
    position: relative;
    height: 100%;
}

.first-position-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeThree .banner-text {
    padding-top: 72px;
}

.homeThree .filter-block {
    counter-reset: section 1;
}

.homeThree .photos-wrap {
    counter-reset: sub-section 1;
}

.position {
    width: 44px;
    height: 44px;
    background-image: url(../images/Union-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 8px;
    top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.homeThree .photos-wrap figure {
    border-radius: 0;
}

/* .homeThree .photos-wrap figure:first-child,
.homeThree .photos-wrap figure:nth-child(2) {
    width: calc(50% - 8px);
}

.homeThree .photos-wrap figure:first-child img,
.homeThree .photos-wrap figure:nth-child(2) img {
    height: 416px;
}
*/
.first-position-img figure .position,
.homeThree .photos-wrap figure:first-child .position,
.homeThree .photos-wrap figure:nth-child(2) .position {
    width: 84px;
    height: 96px;
    background-image: url(../images/Union.png);
    text-align: center;
    padding-bottom: 20px;
}
/* 
.homeThree .photos-wrap figure .position .colored-text.outlined {
    transform: translate(2px, 2px);
} */

.position .colored-text {
    font-size: 24px;
    font-style: italic;
    font-weight: 900;
}

.first-position-img figure .position .colored-text:after {
    content: "1";
}

.homeThree .photos-wrap figure .position .colored-text:after {
    counter-increment: section;
    content: counter(section);
    color: #860070;
}

/* .first-position-img figure .position .colored-text,
.homeThree .photos-wrap figure:first-child .position .colored-text,
.homeThree .photos-wrap figure:nth-child(2) .position .colored-text {
    font-size: 50px;
} */

.homeThree .photos-wrap figure .position .colored-text.outlined:after {
    counter-increment: sub-section;
    content: counter(sub-section);
}

.homeThree .photos-wrap figure .position .position-text {
    display: block;
}

.homeThree .photos-wrap figure .position .position-text:after {
    counter-increment: sub-section;
    content: counter(sub-section);
    font-size: 24px;
    font-weight: 400;
    color: #860070;
    font-family: 'Lilita One';
    background: -webkit-linear-gradient(#ED38A7, #860070);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.homeThree .photos-wrap figure:first-child .position .position-text:after,
.homeThree .photos-wrap figure:nth-child(2) .position .position-text:after {
    font-size: 36px;
}

.homeThree .photos-holder {
    padding-top: 16px;
    padding-bottom: 16px;
    background: linear-gradient(180deg, rgba(200, 48, 138, 0.1) 0%, rgba(200, 48, 138, 0.01) 61.06%)
}

.homeThree .photos-content {
    border-radius: 0;
}

.homeThree .colored-text.outlined {
    transform: translate(1px, 3px);
}

/* Three Phase Design Ends */

.no_show {
    display: none;
}

.fancybox-button--zoom,
.fancybox-button--play,
.fancybox-button--thumbs {
    display: none !important;
}

.fancybox-navigation .fancybox-button svg {
    display: none;
}

.fancybox-navigation .fancybox-button > div {
    background-image: url(../images/Loro_RentoCasting_LightboxChevron.svg);
    background-size: contain;
    background-position: center;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left > div {
    transform: rotate(180deg);
}

.first-position-img figure .position a,
.homeThree .photos-wrap figure:first-child .position a,
.homeThree .photos-wrap figure:nth-child(2) .position a {
    text-decoration: none;
}

.report-wrap .content .content-inside {
    position: relative;
}

.report-wrap .content.new_content .form-btns {
    margin-top: 120px;
}

.report-wrap .new-form-group {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.report-wrap .new-form-group button {
    background-color: transparent;
    border: none;
    font-size: inherit;
    color: inherit;
}

h2.report-heading-desktop {
    display: flex;
}
.report-section h2:before,
.report-section h2:after {
    content: "";
    height: 4px;
    margin: auto 0;
    background: linear-gradient(90deg, #ED38A7 0%, #860070 84%);
    filter: drop-shadow(0px 3px 0px #000);
    flex-grow: 1;
    display: table;
}

.report-section h2 span {
    display: table;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    max-width: calc(100% - 80px);
    /* min-width: fit-content; */
}
.loader_start {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    z-index: 99;
}
.loader_start h4 {
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    padding: 0 24px;
}
.loader_start img {
    display: table;
    margin: 30px auto 0;
}
.loader_off {
    display: none;
}

.report-heading-wrap-mobile {
    display: none;
}

.disabled > .page-link,
.page-link.disabled {
    background: transparent !important;
}
.Typewriter__cursor {
    opacity: 0 !important;
}
.banner-img figure img.banner-mobile {
    display: none;
}