@font-face {
    font-family: 'arial';
    src: url('../font/arial.TTF') format('woff2');
}

@font-face {
    font-family: 'HelveticaNeue-Bold';
    src: url('../font/HelveticaNeueBold.ttf') format('truetype');
}

@font-face {
    font-family: 'HelveticaNeue-Italic';
    src: url('../font/HelveticaNeueItalic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeue-Light';
    src: url('../font/HelveticaNeueLight.ttf') format('truetype');
}

@font-face {
    font-family: 'HelveticaNeue-Medium';
    src: url('../font/HelveticaNeueMedium.ttf') format('truetype');
}

@font-face {
    font-family: 'HelveticaNeue-MediumItalic';
    src: url('../font/HelveticaNeueMediumItalic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeue-Roman';
    src: url('../font/HelveticaNeueRoman.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'arial';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'arial';
}

.container {
    position: relative;
}

:root {
    --black: #000;
    --white: #fff;
    --darkblue: #12248f;
    --maroon: #a30050;
    --orange: #f77f6d;
    --lightorange: #fef2f0;
    --lightblack: #190d0b;
}

.blueBg {
    background: var(--darkblue);
}

.lightOrange {
    background: var(--lightorange);
}

/* Banner CSS */
.bannerBg {
    height: auto;
}

.bannerImg {
    width: 56%;
    height: auto;
    padding: 260px 0;
    object-fit: cover;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../image/banner-bg.png") no-repeat center center;
    background-size: cover;
}

.bannerText {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 35px;
}

.leftText {
    text-align: right;
    line-height: 0.95;
}

.powered {
    font-size: 68px;
    padding-right: 3%;
    color: var(--darkblue);
    font-family: 'HelveticaNeue-Bold';
}

.by {
    font-size: 36px;
    color: var(--white);
    font-family: 'HelveticaNeue-Light';
}

.line2 {
    font-size: 76px;
    font-family: 'HelveticaNeue-Bold';
}

.divider {
    width: 1px;
    height: 220px;
    background: var(--white);
}

.rightText {
    font-size: 24px;
    line-height: 1.2;
    color: var(--white);
    font-family: 'HelveticaNeue-Roman';
}

.headerFerringLogo {
    position: absolute;
    top: 54px;
    right: 10px;
}

.headerFerringLogo img {
    max-width: 140px;
    height: auto;
}

.webinarWrapper {
    padding: 40px 0;
}

.heading {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--maroon);
    font-family: 'HelveticaNeue-Bold';
}

.iconWrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px auto;
}

.iconWrapper img {
    width: 140px;
    height: auto;
}

.datetime {
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 70px;
    font-family: 'HelveticaNeue-Bold';
}

.description {
    font-size: 22px;
    line-height: 1.3;
    font-family: 'HelveticaNeue-Roman';
}

.note {
    font-size: 22px;
    line-height: 1.3;
    font-family: 'HelveticaNeue-Roman';
    margin: 30px auto;
}

.objectivesIntro {
    font-size: 22px;
    margin-bottom: 3px;
    font-family: 'HelveticaNeue-Roman';
}

.objectives {
    font-size: 22px;
    list-style: none;
    padding-left: 35px;
    margin: 0;
}

.objectives li {
    position: relative;
    margin-bottom: 5px;
    text-indent: -36px;
    font-family: 'HelveticaNeue-Roman';
}

.objectives li::before {
    content: "●";
    position: relative;
    left: 0;
    top: 2px;
    color: var(--maroon);
    font-size: 26px;
    line-height: 1;
    margin-right: 20px;
}

.informationImg {
    width: 100%;
    height: auto;
    background: url("../image/information-bg.png") no-repeat center center;
    background-size: cover;
    padding: 50px 0 200px;
}

.informationText {
    color: var(--white);
    font-size: 30px;
    line-height: 1.25;
    font-family: 'HelveticaNeue-Bold';
    margin: 0;
}

.speakerWrapper {
    padding: 40px 0 60px;
}

.speakerHeading {
    font-size: 32px;
    color: var(--maroon);
    margin-bottom: 8px;
    margin-top: 20px;
    font-family: 'HelveticaNeue-Bold';
}

.buttonWrapper {
    display: flex;
    justify-content: flex-end;
}

.registerButton {
    padding: 16px 50px;
    text-decoration: none;
    border-radius: 16px;
    font-size: 28px;
    line-height: 1.3;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.3s ease;
    font-family: 'HelveticaNeue-Bold';
}

.speakarRegister {
    margin: 20px 0 0;
}

.registerButton:hover {
    color: #fff;
}

.speakarRegister {
    background: var(--darkblue);
    color: var(--white);
}

.headingLine {
    height: 3px !important;
    background: var(--maroon);
    border: none;
    margin: 10px 0 25px 0;
    width: 100%;
    opacity: 1;
}

.commonTitle {
    color: var(--darkblue);
    border-bottom: 3px solid var(--darkblue);
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 8px;
    font-size: 28px;
    font-family: 'HelveticaNeue-Bold';
}

.profileWrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.speakerImage img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
}

.speakerDetails {
    flex: 1;
}

.profileWrapper:not(:last-of-type) .speakerDetails::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin: 40px 0;
    background: var(--darkblue);
}

.speakerName {
    color: var(--darkblue);
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 6px;
    font-family: 'HelveticaNeue-Bold';
}

.speakerDetails p {
    font-size: 22px;
    line-height: 1.35;
    margin: 0;
    font-family: 'HelveticaNeue-Roman';
}

.detailsLine {
    margin-top: 40px;
    height: 2px !important;
    background: var(--darkblue);
    border: none;
    opacity: 1;
}

.tableWrapper {
    padding: 60px 0 0;
}

.agendaTable thead th {
    text-align: left;
    color: var(--darkblue);
    font-size: 22px;
    padding: 12px 27px;
    border-bottom: 3px solid var(--darkblue);
    font-family: 'HelveticaNeue-Bold';
}

.agendaTable tbody td {
    color: var(--darkblue);
    font-size: 22px;
    padding: 22px 27px;
    vertical-align: top;
    font-family: 'HelveticaNeue-Bold';
}

.agendaTable th:nth-child(1) {
    width: 12%;
}

.agendaTable th:nth-child(2) {
    width: 53%;
}

.agendaTable th:nth-child(3) {
    width: 35%;
}

.agendaTable tbody tr:last-child {
    border-bottom: 3px solid var(--darkblue);
}

.agendaTable tbody tr:nth-child(odd) {
    background: #e2e6f3;
}

.ctaWrapper {
    padding: 50px 0 220px;
}

.ctaRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 60%;
    margin: 0 auto;
}

.ctaText {
    font-size: 26px;
    line-height: 1.35;
    color: var(--maroon);
    text-align: left;
    margin-bottom: 0;
    font-family: 'HelveticaNeue-Bold';
}

.ctaRegister {
    background: var(--darkblue);
    color: var(--white);
}

.footerImg {
    width: 100%;
    height: auto;
    background: url("../image/footer-bg.png") no-repeat center center;
    background-size: cover;
    padding: 130px 0;
}

.footerContent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footerText {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    color: var(--white);
    font-family: 'HelveticaNeue-Roman';
}

.footerFerringLogo img {
    max-width: 140px;
    height: auto;
}

/* âœ… Responsive for mobile */

@media screen and (max-width: 1910px) {
    .bannerImg {
        width: 80%;
        padding: 260px 0;
    }

    .powered {
        font-size: 60px;
    }

    .by {
        font-size: 32px;
    }

    .line2 {
        font-size: 65px;
    }

    .rightText {
        font-size: 22px;
    }

}

@media screen and (max-width: 1700px) {
    .bannerImg {
        width: 65%;
        padding: 200px 0;
    }

    .powered {
        font-size: 56px;
    }

    .by {
        font-size: 30px;
    }

    .line2 {
        font-size: 60px;
    }

    .rightText {
        font-size: 22px;
    }

    .informationImg {
        padding: 50px 0 220px;
    }

    .informationText {
        font-size: 28px;
    }

}

@media screen and (max-width: 1400px) {

    .bannerImg {
        width: 65%;
        padding: 180px 0;
    }

    .bannerText {
        gap: 30px;
    }

    .powered {
        font-size: 56px;
    }

    .by {
        font-size: 30px;
    }

    .line2 {
        font-size: 62px;
    }

    .leftText {
        text-align: center;
    }

    .rightText {
        font-size: 20px;
    }

    .heading {
        width: 67%;
        font-size: 24px;
    }

    .iconWrapper {
        gap: 30px;
        margin: 30px;
    }

    .iconWrapper img {
        width: 130px;
    }

    .datetime {
        font-size: 22px;
        margin-bottom: 50px;
    }

    .description {
        font-size: 20px;
    }

    .note {
        font-size: 20px;
    }

    .objectivesIntro {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .objectives {
        font-size: 20px;
        padding-left: 28px;
    }

    .objectives li {
        position: relative;
        text-indent: -28px;
    }

    .objectives li::before {
        font-size: 22px;
        margin-right: 14px;
    }

    .speakerHeading {
        font-size: 30px;
    }

    .commonTitle {
        font-size: 26px;
    }

    .speakerName {
        font-size: 21px;
        margin-bottom: 6px;
    }

    .speakerDetails p {
        font-size: 20px;
    }

    .informationImg {
        padding: 50px 0 200px;
    }

    .informationText {
        font-size: 26px;
    }

    .agendaTable thead th {
        font-size: 21px;
        padding: 10px 15px;
    }

    .agendaTable tbody td {
        font-size: 21px;
        padding: 14px 15px;
    }

    .ctaWrapper {
        padding: 40px 0 200px;
    }

    .ctaRow {
        gap: 20px;
        width: 54%;
    }

    .ctaText {
        font-size: 22px;
    }

    .registerButton {
        padding: 14px 38px;
        font-size: 22px;
    }
}

@media screen and (max-width: 1200px) {

    .bannerImg {
        width: 70%;
        padding: 140px 0;
    }

    .bannerText {
        gap: 30px;
    }

    .powered {
        font-size: 50px;
    }

    .by {
        font-size: 26px;
    }

    .line2 {
        font-size: 54px;
    }

    .leftText {
        text-align: center;
    }

    .rightText {
        font-size: 18px;
    }

    .heading {
        width: 75%;
        font-size: 23px;
    }

    .iconWrapper {
        gap: 30px;
        margin: 30px;
    }

    .iconWrapper img {
        width: 130px;
    }

    .datetime {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .description {
        font-size: 19px;
    }

    .note {
        font-size: 19px;
    }

    .objectivesIntro {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .objectives {
        font-size: 19px;
        padding-left: 28px;
    }

    .objectives li {
        position: relative;
        text-indent: -28px;
    }

    .objectives li::before {
        font-size: 22px;
        margin-right: 14px;
    }

    .informationImg {
        padding: 40px 0 180px;
    }

    .informationText {
        font-size: 30px;
    }

    .speakerHeading {
        font-size: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .commonTitle {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .speakerName {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .speakerDetails p {
        font-size: 20px;
    }

    .informationImg {
        padding: 40px 0 150px;
    }

    .informationText {
        font-size: 24px;
    }

    .agendaTable tbody tr:last-child {
        border-bottom: 2px solid var(--darkblue);
    }

    .agendaTable thead th {
        font-size: 20px;
        padding: 12px 16px;
    }

    .agendaTable tbody td {
        font-size: 20px;
        padding: 24px 16px;
    }

    .ctaWrapper {
        padding: 40px 0 200px;
    }

    .ctaRow {
        gap: 20px;
        width: 66%;
    }

    .ctaText {
        font-size: 22px;
    }

    .registerButton {
        padding: 14px 38px;
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .headerFerringLogo {
        top: 40px;
    }

    .headerFerringLogo img {
        max-width: 140px;
    }

    .bannerImg {
        width: 72%;
        padding: 120px 0;
    }

    .bannerText {
        flex-direction: column;
        text-align: center;
    }

    .divider {
        width: 200px;
        height: 1px;
        background: var(--white);
    }

    .powered {
        font-size: 48px;
    }

    .by {
        font-size: 26px;
    }

    .line2 {
        font-size: 56px;
    }

    .rightText {
        font-size: 26px;
    }

    .heading {
        width: 73%;
        font-size: 22px;
    }

    .iconWrapper {
        gap: 30px;
        margin: 30px;
    }

    .iconWrapper img {
        width: 120px;
    }

    .datetime {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .description {
        font-size: 18px;
    }

    .note {
        font-size: 18px;
    }

    .objectivesIntro {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .objectives {
        font-size: 18px;
        list-style: none;
        padding-left: 24px;
        margin: 0;
    }

    .objectives li {
        position: relative;
        margin-bottom: 5px;
        text-indent: -24px;
    }

    .objectives li::before {
        font-size: 22px;
        margin-right: 14px;
    }

    .informationImg {
        padding: 40px 0 120px;
    }

    .informationText {
        font-size: 26px;
    }

    .headingLine {
        margin: 8px 0 20px;
    }

    .speakerHeaderRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .speakerHeading {
        font-size: 28px;
    }

    .speakerName {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .speakerDetails p {
        font-size: 19px;
    }

    .profileWrapper:not(:last-of-type) .speakerDetails::after {
        margin: 30px 0;
    }

    .commonTitle {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .agendaTable tbody tr:last-child {
        border-bottom: 2px solid var(--darkblue);
    }

    .agendaTable thead th {
        font-size: 19px;
        padding: 12px 16px;
    }

    .agendaTable tbody td {
        font-size: 19px;
        padding: 24px 16px;
    }

    .ctaWrapper {
        padding: 40px 0 180px;
    }

    .ctaRow {
        gap: 20px;
        width: 60%;
    }

    .ctaText {
        font-size: 22px;
    }

    .registerButton {
        padding: 12px 35px;
        font-size: 19px;
    }
}

@media screen and (max-width: 992px) {
    .headerFerringLogo {
        top: 30px;
    }

    .headerFerringLogo img {
        max-width: 130px;
    }

    .bannerImg {
        width: 80%;
        padding: 100px 0;
    }

    .bannerText {
        gap: 25px;
    }

    .powered {
        font-size: 46px;
    }

    .by {
        font-size: 28px;
    }

    .line2 {
        font-size: 54px;
    }

    .rightText {
        font-size: 20px;
    }

    .heading {
        width: 90%;
        font-size: 22px;
    }

    .iconWrapper {
        gap: 30px;
        margin: 30px;
    }

    .iconWrapper img {
        width: 110px;
    }

    .datetime {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .description {
        font-size: 19px;
    }

    .note {
        font-size: 19px;
    }

    .objectivesIntro {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .objectives {
        font-size: 19px;
        padding-left: 28px;
    }

    .objectives li {
        position: relative;
        margin-bottom: 5px;
        text-indent: -28px;
    }

    .objectives li::before {
        font-size: 22px;
        margin-right: 14px;
    }

    .speakerHeading {
        font-size: 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .speakerName {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .speakerDetails p {
        font-size: 18px;
    }

    .informationImg {
        padding: 40px 0 140px;
    }

    .informationText {
        font-size: 22px;
    }

    .agendaTable th:nth-child(1) {
        width: 22%;
    }

    .agendaTable th:nth-child(2) {
        width: 42%;
    }

    .agendaTable th:nth-child(3) {
        width: 36%;
    }

    .agendaTable thead th {
        font-size: 18px;
        padding: 12px 16px;
    }

    .agendaTable tbody td {
        font-size: 18px;
        padding: 24px 16px;
    }

    .ctaWrapper {
        padding: 40px 0 180px;
    }

    .ctaRow {
        gap: 20px;
        width: 80%;
    }

    .ctaText {
        font-size: 20px;
    }

    .registerButton {
        font-size: 19px;
    }
}

@media screen and (min-width: 991px) and (max-width: 993px) {
    .heading {
        width: 70%;
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .headerFerringLogo {
        top: 10px;
        right: -15px;
    }

    .headerFerringLogo img {
        max-width: 100px;
    }

    .bannerImg {
        width: 95%;
        padding: 90px 0;
    }

    .bannerText {
        gap: 25px;
    }

    .powered {
        font-size: 40px;
    }

    .by {
        font-size: 26px;
    }

    .line2 {
        font-size: 50px;
    }

    .rightText {
        font-size: 22px;
    }

    .heading {
        width: 100%;
        font-size: 20px;
    }

    .iconWrapper {
        gap: 30px;
        margin: 30px;
    }

    .iconWrapper img {
        width: 90px;
    }

    .datetime {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .description {
        font-size: 16px;
    }

    .note {
        font-size: 17px;
    }

    .objectivesIntro {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .objectives {
        font-size: 17px;
    }

    .objectives li {
        position: relative;
        margin-bottom: 5px;
        text-indent: -26px;
    }

    .objectives li::before {
        font-size: 22px;
        margin-right: 12px;
    }

    .informationImg {
        padding: 35px 0 120px;
    }

    .informationText {
        font-size: 22px;
    }

    .headingLine {
        margin: 8px 0 15px;
    }

    .registerButton {
        padding: 12px 35px;
        font-size: 18px;
    }

    .speakerHeaderRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .speakerHeading {
        font-size: 23px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .speakerName {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .speakerDetails p {
        font-size: 17px;
    }

    .profileWrapper:not(:last-of-type) .speakerDetails::after {
        margin: 30px 0;
    }

    .commonTitle {
        font-size: 22px;
        padding-bottom: 6px;
        margin-bottom: 20px;
    }

    .agendaTable th:nth-child(1) {
        width: 19%;
    }

    .agendaTable th:nth-child(2) {
        width: 47%;
    }

    .agendaTable th:nth-child(3) {
        width: 35%;
    }

    .agendaTable thead th {
        font-size: 17px;
        padding: 12px 16px;
    }

    .agendaTable tbody td {
        font-size: 16px;
        padding: 20px 16px;
    }

    .ctaWrapper {
        padding: 40px 0 160px;
    }

    .ctaRow {
        width: 94%;
    }

    .ctaText {
        font-size: 18px;
    }

    .ctaRegister {
        font-size: 19px;
        padding: 12px 32px;
    }

    .footerImg {
        padding: 80px 0;
    }

    .footerText {
        font-size: 16px;
        line-height: 1.4;
    }

    .footerFerringLogo img {
        max-width: 120px;
    }
}

@media screen and (max-width: 600px) {
    .headerFerringLogo {
        top: 10px;
        right: 10px;
    }

    .headerFerringLogo img {
        max-width: 90px;
    }

    .bannerImg {
        width: 100%;
        padding: 74px 0;
    }

    .bannerText {
        gap: 20px;
    }

    .powered {
        font-size: 35px;
    }

    .by {
        font-size: 24px;
    }

    .line2 {
        font-size: 42px;
    }

    .rightText {
        font-size: 18px;
    }

    .heading {
        width: 98%;
        font-size: 18px;
        margin-bottom: 30px;
    }

    .iconWrapper {
        gap: 25px;
        margin: 25px 0;
    }

    .iconWrapper img {
        width: 85px;
    }

    .datetime {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .description {
        font-size: 16px;
    }

    .note {
        font-size: 16px;
    }

    .objectivesIntro {
        font-size: 16px;
    }

    .objectives {
        font-size: 16px;
        padding-left: 24px;
    }

    .objectives li {
        margin-bottom: 5px;
        text-indent: -26px;
    }

    .objectives li::before {
        font-size: 20px;
        margin-right: 13px;
    }

    .profileWrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .registerButton {
        padding: 12px 35px;
        font-size: 17px;
    }

    .speakerHeading {
        font-size: 22px;
    }

    .speakerImage img {
        width: 150px;
        height: 150px;
    }

    .speakerDetails {
        text-align: left;
    }

    .speakerName {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .speakerDetails p {
        font-size: 15px;
    }

    .commonTitle {
        font-size: 18px;
        padding-bottom: 6px;
        margin-bottom: 18px;
    }

    .commonTitle {
        font-size: 20px;
        padding-bottom: 5px;
        margin-bottom: 15px;
    }

    .informationImg {
        padding: 35px 0 90px;
        text-align: center;
    }

    .informationText {
        font-size: 21px;
    }

    .agendaTable thead th {
        font-size: 15px;
        padding: 8px 10px;
    }

    .agendaTable tbody td {
        font-size: 15px;
        padding: 15px 10px;
    }

    .ctaWrapper {
        padding: 40px 0 150px;
    }

    .ctaRow {
        flex-direction: column;
        align-items: flex-start;
    }

    .ctaText {
        font-size: 18px;
        margin: 0 auto;
        text-align: center;
    }

    .ctaRegister {
        align-self: center;
        font-size: 18px;
        padding: 12px 35px;
    }

    .footerImg {
        padding: 40px 0;
    }

    .footerContent {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 0px;
    }

    .footerText {
        font-size: 15px;
        line-height: 1.35;
    }

    .footerFerringLogo img {
        max-width: 100px;
    }
}

@media screen and (max-width: 479px) {
    .headerFerringLogo img {
        max-width: 80px;
    }

    .bannerImg {
        width: 100%;
        padding: 60px 0;
    }

    .bannerText {
        gap: 15px;
    }

    .powered {
        font-size: 28px;
    }

    .by {
        font-size: 20px;
    }

    .line2 {
        font-size: 34px;
    }

    .rightText {
        font-size: 16px;
    }

    .heading {
        font-size: 19px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 400px) {
    .headerFerringLogo img {
        max-width: 70px;
    }

    .bannerBg {
        height: auto;
    }

    .bannerImg {
        height: auto;
        width: 100%;
        padding: 45px 0;
    }

    .bannerText {
        gap: 8px;
    }

    .powered {
        font-size: 24px;
    }

    .by {
        font-size: 16px;
    }

    .line2 {
        font-size: 30px;
    }

    .rightText {
        font-size: 14px;
    }

    .heading {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .iconWrapper img {
        width: 70px;
    }

    .datetime {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .description {
        font-size: 15px;
    }

    .note {
        font-size: 15px;
    }

    .objectivesIntro {
        font-size: 15px;
    }

    .objectives {
        font-size: 15px;
        padding-left: 24px;
    }

    .objectives li {
        margin-bottom: 5px;
        text-indent: -24px;
    }

    .objectives li::before {
        font-size: 18px;
        margin-right: 13px;
    }

    .registerButton {
        padding: 12px 30px;
        font-size: 16px;
    }

    .speakerHeading {
        font-size: 20px;
    }

    .speakerName {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .speakerDetails p {
        font-size: 14px;
    }

    .commonTitle {
        font-size: 18px;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }

    .informationImg {
        padding: 30px 0 70px;
    }

    .informationText {
        font-size: 19px;
    }

    .agendaTable th:nth-child(1) {
        width: 22%;
    }

    .agendaTable th:nth-child(2) {
        width: 42%;
    }

    .agendaTable th:nth-child(3) {
        width: 36%;
    }

    .agendaTable thead th {
        font-size: 14px;
        padding: 4px 6px;
    }

    .agendaTable tbody td {
        font-size: 14px;
        padding: 12px 6px;
    }

    .ctaWrapper {
        padding: 30px 0 120px;
    }

    .ctaText {
        font-size: 16px;
    }

    .ctaRegister {
        font-size: 17px;
        padding: 12px 35px;
    }

    .footerImg {
        padding: 30px 0;
    }

    .footerText {
        font-size: 14px;
        line-height: 1.3;
    }

    .footerFerringLogo img {
        max-width: 90px;
    }
}

section.bannerBg.blueBg {
    padding-top: 113px;
}