 /* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
}

.container {
    width: 1286px;
    max-width: 100%;
}

.gradiantcl {
    background: radial-gradient(circle,rgba(194, 148, 60, 1) 0%, rgba(252, 234, 149, 1) 45%, rgba(197, 153, 72, 1) 100%);
    display: block;
    height: 4px;
    margin: 0 0 30px;
}

header {
    padding: 40px 0 30px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transition: all 0.5s ease;
}

.fixed-menu header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 10px 0 16px;
    background: #000;
    z-index: 9999;
}


.head-main {
    display: flex;
    justify-content: space-between;
}

.logo-box img {
    width: 250px;
}

.menu-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.menu-bar {
  display: none;
}

.menu-items ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.close-menu {
  display: none;
}

.menu-box .call-box {
    width: 100%;
    text-align: right;
    margin: 0 0 10px;
}

.menu-items {
    width: 100%;
}

.menu-box .call-box a {
    font-size: 14px;
    color: #fff;
}

.menu-box .call-box img {
    margin-right: 13px;
    margin-top: 6px;
}

.menu-items ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.menu-items ul li {
    list-style: none;
}

.menu-items ul li a {
    font-size: 14px;
    color: #e8c950;
    text-transform: uppercase;
    padding-left: 24px;
    border-left: 0px solid #e8c950;
    margin-left: 24px;
    position: relative;
    transition: all 0.5s ease;
}

.menu-items ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.menu-items ul li:first-child a::before {
    visibility: hidden;
}

.menu-items ul li a::before {
    content: '';
    width: 1px;
    height: 11px;
    position: absolute;
    left: 0;
    top: 50%;
    background: #e8c950;
    transform: translateY(-50%);
}

.banner-box {
    background: url(../images/Banner-bg.jpg) no-repeat;
    background-size: cover;
    padding: 280px 0 140px;
    text-align: center;
}

.banner-box h2 {
    font-family: 'Anton';
    font-size: 75px;
    background: linear-gradient(90deg, #cfa851, #fae792);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    letter-spacing: 5px;
    margin: 0;
}

.date-box {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 4px 30px;
    position: relative;
}

.date-box::before {
    content: '';
    width: 100%;
    height: 6px;
    background: radial-gradient(circle,rgba(194, 148, 60, 1) 0%, rgba(252, 234, 149, 1) 45%, rgba(197, 153, 72, 1) 100%);
    position: absolute;
    left: 0;
    bottom: -1px;
}

.date-box p {
    font-family: 'Gotham';
    font-weight: 900;
    letter-spacing: 5px;
    font-size: 36px;
    margin: 0;
}

.banner-box h3 {
    font-size: 25px;
    color: #fff;
    margin: 12px 0 0;
    font-family: 'Gotham Book';
    letter-spacing: 4px;
}

/* BANNER CONTAINER */
.countdown-banner {
   width: 100%;
    background-color: #151515;
    color: white;
    padding: 15px 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* LEFT TEXT: "COUNTDOWN BEGINS..." */
.countdown-title {
    font-size: 41px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* TIMER WRAPPER */
.timer-wrapper {
    display: flex;
    align-items: flex-start; /* Aligns boxes to top, labels flow down */
    gap: 10px;
}

/* INDIVIDUAL TIME BLOCK (Number + Label) */
.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* THE CARD DESIGN FOR NUMBERS */
.time-card {
    background: linear-gradient(to bottom, #2a2a2a 50%, #202020 50%);
    width: 70px;
    height: 67px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

/* The horizontal line in the middle of the card */
.time-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
    top: 50%;
    opacity: 0.4;
}

/* The Number Text */
.time-card span {
    font-size: 48px;
    font-weight: 100; /* Very thin */
    color: #fff;
    z-index: 1;
    line-height: 1;
}

/* THE LABELS (Days, Hours, etc) */
.label {
    margin-top: 10px;
    font-size: 10px;
    color: #cda557; /* Gold/Orange color from image */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* THE COLON SEPARATOR */
.separator {
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    margin-top: 15px; /* Align with center of cards */
}


.event-box {
    background: #f4efe7;
    padding: 40px 0 50px;
}

.abt-sub-title {
    font-size: 27px;
    color: #000000;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.abt-title-m {
    font-size: 54px;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.abt-sec p {
    font-size: 16px;
    color: #000;
    margin: 0 0 22px;
    line-height: 30px;
}

.abt-sec {
    padding-right: 50px;
}

.abt-sec p.sub-cont {
    font-size: 20px;
    color: #000;
}

.golden-ttl {
    font-size: 26px;
    color: #000000;
    background: url('../images/Golden-strip.png') no-repeat;
    text-transform: uppercase;
    text-transform: uppercase;
    padding: 4px 42px;
    background-size: cover;
    display: inline-block;
    min-width: 194px;
}

.abt-main-ttl {
    font-size: 56px;
    font-family: 'Gotham';
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: baseline;
}

h2.abt-main-ttl img {
    margin-right: 14px;
}

.theme-sub-ttl {
    font-family: 'Gotham Book';
    font-size: 21px;
    color: #000;
    margin: 8px 0 15px;
}

ul.feature-list {
    margin: 0;
    padding: 0;
}

ul.feature-list li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 17px;
    margin: 0 0 6px;
}

ul.feature-list li::before {
    background: url('../images/star-icon.png') no-repeat;
    width: 15px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
}

.sec-img-bx {
    position: relative;
    z-index: 1;
}

.sec-img-bx::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 14px;
    width: 100%;
    height: 100%;
    background: #e8e3db;
    z-index: -1;
}

.location-box {
    padding-left: 30px;
}

.location-box h2 {
    font-size: 37px;
    color: #bb8931;
    margin: 40px 0 0;
    font-family: 'Gotham';
    font-weight: 500;
    position: relative;
}

.location-box h2 img {
    position: absolute;
    left: -42px;
}

.location-box h3 {
    font-size: 22px;
    color: #000;
    font-family: 'Gotham';
    font-weight: 500;
}

.location-box p {
    font-size: 22px;
    color: #000;
    font-family: 'Gotham Book';
}

.speaker-section {
    background: url(../images/Speaker-bg.jpg) no-repeat;
    background-size: cover;
    padding: 50px 0 50px;
}

.speaker-title-box {
    display: block;
    width: 100%;
    position: relative;
    padding-left: 58px;
    margin: 0 0 40px;
}

.speaker-title-box::before {
    content: '';
    width: 46px;
    height: 86px;
    position: absolute;
    left: 0;
    top: 12px;
    background: url(../images/mice-spker.png) no-repeat;
}

.speaker-title-box h3 {
    color: #fff;
    font-family: Georgia;
    font-size: 34px;
    font-style: italic;
    margin: 0;
}

.speaker-title-box h2 {
    color: #fff;
    font-size: 66px;
    margin: 0;
    font-family: 'Gotham';
    font-weight: bold;
    text-transform: uppercase;
}

.speakers-main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.speakers-main .spekaers-items {
    width: 49%;
    display: flex;
    margin: 0 0 50px;
}

.speakers-main .spekaers-items img.speaker-img {
    width: 203px;
    height: 203px;
    border-radius: 100%;
    margin-right: 26px;
}

.speakers-main .spekaers-items .content-box {
    padding-right: 50px;
}

.content-box h2 {
    font-size: 22px;
    color: #e6bf65;
    font-weight: 500;
    margin: 0;
}

.content-box h3 {
    font-size: 16px;
    color: #fff;
    margin: 4px 0 12px;
}

.content-box p {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 6px;
}

.int-content-box {
    padding-left: 71px;
}

.content-box .icon-box {
    display: block;
    width: 100%;
    margin: 12px 0 0;
}

.content-box  .icon-box a {
    margin-right: 18px;
}

.intertainment-sec {
    background: #000;
    padding: 75px 0 60px;
}

.int-content-box h2 {
    font-size: 27px;
    color: #fff;
    margin: 40px 0 25px;
}

.int-content-box p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    line-height: 30px;
    text-align: justify;
}

.rotate-text {
    position: absolute;
    left: -368px;
    top: 312px;
    font-size: 86px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    transform: rotate(-90deg);
}

.Agenda-section {
    padding: 0;
}

.agenda-main {
    display: flex;
    justify-content: space-between;
}

.agenda-main .items-box {
    width: 50%;
    position: relative;
}

.agenda-main .items-box.left-box {
    background: url(../images/Agenda-bg.jpg) no-repeat;
    background-size: cover;
    height: 820px;
}

.agenda-main .items-box.left-box .rotate-txt {
    color: transparent;
    -webkit-text-stroke: 3px white;
    transform-origin: center;
    white-space: nowrap;
    font-size: 111px;
    font-weight: 900;
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

/* --- DROPDOWN CONTAINER --- */
.dropdown-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

/* The clickable button */
.date-pill {
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 280px;
    user-select: none;
}

.date-pill .arrow {
    margin-left: 15px;
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

/* Rotate arrow when open */
.dropdown-container.active .arrow {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

/* The hidden list */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 5px;
    z-index: 10;
    overflow: hidden;
}

.dropdown-container.active .dropdown-menu {
    display: block;
}

.dropdown-option {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-option:hover {
    background-color: #f0f0f0;
}

/* --- AGENDA ITEMS STYLING --- */
.agenda-item {
    margin-bottom: 18px;
    max-width: 600px;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.agenda-title {
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    color: #000;
}

.pricing {
    margin: 40px 0 0;
}

.time-row {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

.clock-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.details {
    margin-left: 30px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.details ul { list-style: none; padding: 0; margin: 0; }
.details li { margin-bottom: 6px; }

.items-box.right-box {
    background: #f6c768;
    border-left: 1px solid #fff;
    padding: 40px 40px 0;
}

.price-section {
    background: #f4efe7;
    padding: 0 0 50px;
}

.pricing-title,
.sponser-title {
    color: #000;
    font-size: 54px;
    font-weight: 900;
}

.pricing-box-main {
    display: flex;
    justify-content: space-between;
}

.pricing-box-main .price-items {
    width: 32%;
    background: url(../images/price-bg.png) no-repeat;
    background-size: cover;
    border-radius: 14px;
}

.price-head {
    text-align: center;
    padding: 40px 0 20px;
}

.price-head h2 {
   background: linear-gradient(90deg, #cfa851, #fae792);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 45px;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.price-head h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    margin: 0 0 4px;
}

.price-head p {
    color: #fff;
    font-size: 37px;
    font-family: 'Gotham';
    font-weight: 900;
    margin: 0;
}

.golden-title {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    background: url(../images/Golden-strip.png) no-repeat;
    padding: 8px 19px;
    display: inline-block;
    width: 231px;
    background-size: 201px;
}

.red-title {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    background: url(../images/Red-strip.png) no-repeat;
    padding: 8px 19px;
    display: inline-block;
    width: 231px;
    background-size: 201px;
    margin: 20px 0 0px;
}

.shape-title {
    margin: 30px 0 23px;
    display: block;
}

.shape-title h3 {
    display: inline-block;
    margin: 0;
    background: url(../images/Golden-strip.png) no-repeat;
    padding: 5px 0px;
    width: 189px;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
}

.pricing-box-main ul.list-style1 {
    margin: 20px 0 0;
    padding: 0;
    margin-left: 20px;
}

.pricing-box-main ul.list-style1 li {
    list-style: none;
    font-size: 14px;
    color: #fff;
    margin: 0 0 8px;
    padding-left: 25px;
    position: relative;
}

.pricing-box-main ul.list-style1 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/list-style1.png) no-repeat;
    width: 20px;
    height: 20px;
}

.pricing-box-main ul.list-style1.stl2 li::before {
    background: url(../images/list-style2.png) no-repeat;
}

.pricing-box-main .btn-box {
    width: 90%;
    display: block;
    margin: 20px auto 30px;
    color: #fff;
    border-top: 1px solid #fff;
    padding: 20px 15px 0;
    text-align: center;
}

.pricing-box-main .btn-box a {
    font-size: 19px;
    background: #ab8821;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 30px;
    display: inline-block;
    border-radius: 11px;
    margin: 13px 0 12px;
    transition: all 0.5s ease;
}

.pricing-box-main .btn-box a:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
}

.document-sec {
    background: #000;
    padding: 50px 0 60px;
}

.document-sec h2.doc-title {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.doc-cnt .golden-title {
    width: 350px;
    background-size: 251px;
}

.doc-content ol {
    margin-left: 16px;
    margin-top: 22px;
}

.doc-content ol li {
    color: #fff;
    margin: 0 0 8px;
}

.doc-content.left {
    border-right: 1px solid;
    padding-right: 80px;
    padding-bottom: 30px;
}

.doc-cnt.right {
    padding-left: 80px;
}

.sponsers-main {
    background: #f4efe7;
    padding: 30px 0 20px;
}

.spr-list1 {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin: 0 0 50px;
    flex-wrap: wrap;
}

.spr-list1 .spr-items {
    width: 32%;
    height: 134px;
   
}

footer {
    background: #e1ddd6;
    padding: 40px 0 60px;
    position: relative;
}

footer::before {
    content: '';
    width: 100%;
    background: radial-gradient(circle,rgba(194, 148, 60, 1) 0%, rgba(252, 234, 149, 1) 45%, rgba(197, 153, 72, 1) 100%);
    display: block;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.foo-menu {
    display: flex;
    justify-content: space-between;
}

.foo-menu p {
    margin: 0 0 13px;
}

.foo-menu p a {
    font-size: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.quick-connect h2 {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    margin: 0 0 14px;
}

.quick-connect a.connect-btn {
    background: #000;
    color: #fff;
    display: flex;
    padding: 10px 38px;
    border-radius: 30px;
    align-items: center;
    width: 253px;
    margin: 0 0 16px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.quick-connect {
    padding-left: 45px;
}

.quick-connect a.connect-btn:hover {
    background: #ab8821;
    color: #fff;
}

.quick-connect a.connect-btn img {
    margin-right: 16px;
}

.quick-connect p {
    font-size: 15px;
    color: #000;
}

.quick-connect p a {
    color: #000;
}

.menu-foo-left {
    border-right: 2px solid #e7b854;
    padding-top: 10px;
    padding-bottom: 40px;
}

/****** mobile responsive *****/

@media(max-width: 1199px) {

    .abt-main-ttl {
        font-size: 40px;
    }

    h2.abt-main-ttl img {
        width: 42px;
    }

    .theme-sub-ttl {
        font-size: 18px;
    }

    .abt-sec p {
        font-size: 14px;
    }

    ul.feature-list li {
        font-size: 15px;
    }

    ul.feature-list li::before {
        top: 4px;
    }

    .location-box h2 img {
        width: 27px;
    }

    .location-box h2 {
        font-size: 30px;
    }

    .location-box h3 {
        font-size: 18px;
    }

    .location-box p {
        font-size: 19px;
    }

    .speakers-main .spekaers-items img.speaker-img {
        width: 163px;
        height: 163px;
    }

    .menu-bar {
        display: block;
        text-align: right;
        margin-top: -18px;
        margin-right: -12px;
        cursor: pointer;
    }

    header {
        overflow-x: hidden;
    }
    
    header .menu-items {
        position: fixed;
        width: 420px;
        height: 100%;
        background: #07153a;
        z-index: 999;
        box-shadow: rgba(0,0,0,0.8) 0 0 16px;
        right: -430px;
        top: 0;
        padding: 90px 0 0;
        transition: all 0.5s ease;
    }

    .activeMenu header .menu-items {
        right: 0;
    }

    header .menu-items ul {
        flex-wrap: wrap;
    }

    header .menu-items ul li {
        width: 100%;
    }

    .menu-items ul li a {
        font-size: 18px;
        text-transform: uppercase;
        border-left: 0px solid #e8c950;
        margin-left: 0;
        position: relative;
        transition: all 0.5s ease;
        border-bottom: 1px solid;
        width: 100%;
        display: inline-block;
        padding: 12px 22px;
    }

    .menu-items ul li a::before {
        opacity: 0;
    }

    .close-menu {
        display: block;
    }

    .close-menu svg {
        width: 43px;
        position: absolute;
        top: 10px;
        left: 11px;
    }

    .rotate-text {
        left: -188px;
        top: 282px;
        font-size: 56px;
    }

    .int-content-box {
        padding-left: 131px;
    }

}

@media(max-width: 1024px) {

    .speakers-main .spekaers-items {
        width: 48%;
        flex-wrap: wrap;
    }

    .speakers-main .spekaers-items .content-box {
        margin: 20px 0 0;
    }

    .speaker-title-box::before {
        width: 34px;
        height: 65px;
        background-size: 31px;
    }

    .speaker-title-box {
        padding-left: 47px;
    }

    .speaker-title-box h3 {
        font-size: 25px;
    }

    .speaker-title-box h2 {
        font-size: 47px;
    }

}

@media(max-width: 991px) {

    .sec-img-bx {
    margin: 30px 0 0;
    }

    .agenda-main .items-box.left-box {
        height: 660px;
    }

    .pricing-title,
    .sponser-title {
        font-size: 38px;
    }

    .shape-title h3 {
        font-size: 22px;
    }

    .spr-list1 .spr-items {
        width: 21%;
    }

    .price-head h2 {
        font-size: 32px;
    }

    .price-head h3 {
        font-size: 18px;
    }

    .price-head p {
        font-size: 24px;
    }

    .doc-cnt.right {
        padding-left: 15px;
    }

    .quick-connect {
        padding-left: 0;
    }

    .banner-box h2 {
        font-size: 48px;
    }

    .date-box p {
        font-size: 22px;
    }

    .banner-box {
        padding: 230px 0 90px;
    }

    .banner-box h3 {
        font-size: 18px;
    }

    .countdown-title {
        font-size: 28px;
    }

    .separator {
        margin-top: 0;
    }

    .time-card span {
        font-size: 26px;
    }

    .time-card {
        width: 47px;
        height: 49px;
    }

    .int-img-box {
        padding-left: 130px;
        margin: 30px 0 0;
    }

    .int-img-box img {
        width: 100%;
    }

}

@media(max-width: 768px) {

    .agenda-main {
        flex-wrap: wrap;
    }

    .agenda-main .items-box {
        width: 100%;
    }

    .items-box.right-box {
        padding: 40px 40px 40px;
    }

    .countdown-banner {
        gap: 10px;
    }

    .intertainment-sec {
        padding: 10px 0 40px;
    }

}

@media(max-width: 599px) {

    .abt-sub-title {
        font-size: 21px;
    }

    .abt-title-m {
        font-size: 38px;
        margin: 0 0 12px;
    }

    .abt-sec p.sub-cont {
        font-size: 18px;
        margin: 0 0 14px;
    }

    .abt-sec p {
        margin: 0 0 6px;
    }

    .abt-main-ttl {
        font-size: 26px;
    }

    h2.abt-main-ttl img {
        width: 24px;
    }

    .sec-img-bx img {
        width: 100%;
    }

    .abt-sec {
        padding-right: 15px;
    }

    .speakers-main .spekaers-items {
        width: 100%;   
        margin: 0 0 20px;
        justify-content: center;
    }

    .agenda-main .items-box.left-box {
        height: 450px;
    }

    .agenda-main .items-box.left-box .rotate-txt {
        font-size: 81px;
    }

    .dropdown-container {
        margin-bottom: 22px;
    }

    .agenda-title {
        font-size: 18px;
    }

    .time-row {
        font-size: 16px;
    }

    .details li {
        font-size: 13px;
    }

    .pricing-title {
        font-size: 38px;
        text-align: center;
    }

    .pricing-box-main {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-box-main .price-items {
        width: 90%;
        margin: 0 0 30px;
    }

    .document-sec h2.doc-title {
        font-size: 22px;
    }

    .foo-menu {
        flex-wrap: wrap;
    }

    .logo-box img {
        width: 150px;
    }

    .menu-box .call-box a {
        font-size: 13px;
    }

    .menu-box .call-box a span {
        font-size: 0;
    }

    .banner-box h2 {
        font-size: 38px;
    }

    .date-box p {
        font-size: 16px;
    }

    .menu-bar svg {
        width: 50px;
        height: 34px;
    }

    .menu-bar {
        margin-top: -21px;
    }

    header {
        padding: 21px 0 30px;
    }

    header .menu-items {
        width: 100%;
    }

    .location-box {
        padding-left: 42px;
    }

    .speakers-main .spekaers-items .content-box {
        margin: 20px 0 0;
        padding-right: 0;
        text-align: center;
    }

    .spr-list1 .spr-items {
        width: 47%;
    }

    .spr-list1 {
        gap: 15px;
    }

    .rotate-text {
        left: -107px;
        top: 282px;
        font-size: 36px;
    }

    .int-content-box {
        padding-left: 91px;
    }

    .int-img-box {
        padding-left: 90px;
    }

    .int-content-box h2 {
        font-size: 22px;
    }

    .int-content-box p {
        font-size: 14px;
        line-height: 25px;
    }

}

