html,
body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: "Roboto", sans-serif;
}

/* start nav style */
.nav-wrapper {
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    z-index: 2;
    background: #f2f2f2;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.logo-container {
    width: 40%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 100px;
}

.logo-container img {
    transform: scale(.9);
}

nav {
    width: 60%;
    display: flex;
    justify-content: center;
}


.nav-tabs {
    display: flex;
    font-weight: 600;
    font-size: 18px;
    list-style: none;
    color: #f26133;
    border-bottom: 0 !important;
}

.nav-tab:not(:last-child) {
    padding: 10px 25px;
    margin: 0;
}

.nav-tab:last-child {
    padding: 10px 0 0 25px;

}

.nav-tab,
.menu-btn {
    cursor: pointer;
}

.hidden {
    display: none;
}

.nav-tabs li a {
    text-decoration: none;
    color: #f26133;
}

@media screen and (max-width:990px) {
    .nav-container {
        position: fixed;
        display: none;
        overflow-y: auto;
        z-index: -1;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: #fff;
        box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
    }

    .nav-tabs {
        flex-direction: column;
        align-items: flex-end;
        margin-top: 80px;
        width: 100%;
    }

    .nav-tab:not(:last-child) {
        padding: 20px 25px;
        margin: 0;
        border-right: unset;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-tab:last-child {
        padding: 10px 15px;
    }

    nav {
        position: relative;
        background-color: red;
        text-align: end;
    }

    .menu-btn {
        position: absolute;
        top: -20px;
        right: 20px;
        display: block;
        margin: 0;
        width: 25px;
        height: 20px;
        cursor: pointer;
        z-index: 2;
        border-radius: 10px;
    }

    .menu-btn .menu {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: #111;
        margin-top: 9px;
    }

    .menu-btn .menu:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }

    .menu-btn .menu:nth-child(3) {
        margin-top: 4px;
    }

    #menuToggle:checked+.menu-btn .menu {
        transition: transform 0.2s ease;
    }

    #menuToggle:checked+.menu-btn .menu:nth-child(1) {
        transform: translate3d(0, 6px, 0) rotate(45deg);
    }

    #menuToggle:checked+.menu-btn .menu:nth-child(2) {
        transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
        opacity: 0;
    }

    #menuToggle:checked+.menu-btn .menu:nth-child(3) {
        transform: translate3d(0, -6px, 0) rotate(-45deg);
    }

    #menuToggle:checked~.nav-container {
        z-index: 1;
        display: flex;
        animation: menu-slide-left 0.3s ease;
    }

    @keyframes menu-slide-left {
        0% {
            transform: translateX(200px);
        }

        to {
            transform: translateX(0);
        }
    }
}

/* end nav style */


/* start main content style */
/* section 1 */
.section1 {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.section1 img {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
}

.text {
    position: absolute;
    top: 0px;
    left: 50px;
    width: 50%;
    height: 100%;
    color: #fff;
}

.text p {
    font-size: 35px;
    font-weight: 400;
}

.text1 {
    font-size: 50px;
    font-weight: 900;
    margin-top: -20px;
    margin-bottom: 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.text2 {
    font-size: 49px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
}

.text3 {
    display: flex;
    flex-direction: row;
}

.text3 p {
    font-size: 33px;
    font-weight: 800;
    margin-top: 5px;
    letter-spacing: -1px;

}

.text3 img {
    width: 31px;
    height: 41px;
    margin-top: 8px;
    margin-right: 5px;
}

@media(max-width:1400px) {
    .nav-tab:not(:last-child) {
        padding: 10px 15px;
        margin: 0;
    }

    .logo-container img {
        transform: scale(.8);
    }

    .text1 {
        font-size: 40px;
    }

    .text2 {
        font-size: 39px;
    }

    .text3 p {
        font-size: 25px;
    }
}

@media(max-width:1150px) {
    nav {
        width: 70%;
        justify-content: start;
    }

    .logo-container {
        width: 30%;
    }

    .logo-container img {
        transform: scale(.7);
    }

    .section1 {
        height: 320px;
        overflow: hidden;
    }

    .text1 {
        font-size: 33px;
    }

    .text2 {
        font-size: 30px;
    }

    .text3 p {
        font-size: 22px;
    }
}

@media(max-width:990px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between !important;
        height: 80px;
    }

    .logo-container {
        padding-left: 0;
        width: 30%;
        text-align: start;
    }

    .section1 {
        height: 270px;
        overflow: hidden;
    }

    .text p {
        font-size: 30px;
        font-weight: 400;
    }

    .text1 {
        font-size: 25px;
    }

    .text2 {
        font-size: 25px;
    }

    .text3 p {
        font-size: 20px;
        padding-top: 10px;
    }

    .text3 img {
        transform: scale(.8);
    }
}

@media(max-width:767px) {
    .logo-container img {
        transform: scale(.6);
    }

    .nav-wrapper {
        height: 80px;
    }

    .logo-container {
        padding-left: 0;
        width: 70%;
    }

    .section1 {
        height: 210px;
        overflow: hidden;
    }

    .text {
        width: 100%;
        left: 20px;
    }

    .text p {
        font-size: 20px;
        font-weight: 400;
    }

    .text1 {
        font-size: 20px;
        margin-top: -8px;
    }

    .text2 {
        font-size: 20px;
    }

    .text3 p {
        font-size: 16px;
        padding-top: 8px;
    }

    .text3 img {
        transform: scale(.5);
        margin-top: 0;
        margin-right: 0px;
    }
}

/* end section one */
/* section2 style */
.section2 {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    position: relative;
}

.sec2-btns {
    width: 70%;
    height: auto;
    margin: auto;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn1 {
    width: 25%;
    height: 73px;
    background-color: #f26133;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border: none;
    border-radius: 50px;
}
.btn1 a{
    text-decoration: none;
    color: #fff;
}

.btn2 {
    width: 20%;
    height: 73px;
    background-color: #f26133;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border: none;
    border-radius: 50px;
}
.btn2 a{
    text-decoration: none;
    color: #fff;
}

.btn3 {
    width: 30%;
    height: 73px;
    background-color: #f26133;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border: none;
    border-radius: 50px;
}
.btn3 a{
    text-decoration: none;
    color: #fff;
}

.sec2-p {
    width: 65%;
    margin: auto;
}

.sec2-p h5 {
    font-size: 35px;
    font-weight: 600;
    color: #044D66;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}

.sec2-p p {
    font-size: 20px;
    color: #404040;
    font-weight: 300;
    line-height: 1.2;
}

.section2 h4 {
    text-align: center;
    font-size: 52px;
    font-weight: 600;
    color: #044D66;
    margin-top: 0;
}

.pic {
    position: absolute;
    width: 100%;
    height: 85%;
    top: 0;
    left: 0;
    z-index: -2;
    box-shadow: 0px 15px 10px 0px #d1d1d1;
}

@media(max-width:1400px) {
    .btn1 {
        width: 293px;
        font-size: 23px;
    }

    .btn2 {
        width: 187px;
        font-size: 23px;
    }

    .btn3 {
        width: 304px;
        font-size: 23px;
    }
}

@media(max-width:1150px) {
    .btn1 {
        width: 253px;
        font-size: 19px;
    }

    .btn2 {
        width: 147px;
        font-size: 19px;
    }

    .btn3 {
        width: 264px;
        font-size: 19px;
    }

    .sec2-p h5 {
        font-size: 30px;
        font-weight: 600;
    }
}

@media(max-width:990px) {
    .sec2-btns {
        width: 80%;
    }

    .sec2-p {
        width: 75%;
        margin: auto;
    }

    .btn1 {
        width: 213px;
        font-size: 17px;
    }

    .btn2 {
        width: 147px;
        font-size: 17px;
    }

    .btn3 {
        width: 224px;
        font-size: 17px;
    }

    .sec2-p h5 {
        font-size: 25px;
        font-weight: 600;
    }

    .pic {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -2;
        box-shadow: 0px 15px 10px 10px #d1d1d1;
    }
}

@media(max-width:767px) {
    .sec2-btns {
        width: 80%;
        flex-direction: column;
    }

    .sec2-p {
        width: 75%;
        margin: auto;
    }

    .btn1 {
        width: 100%;
        font-size: 17px;
        height: 55px;
        margin-bottom: 20px;
    }

    .btn2 {
        width: 100%;
        font-size: 17px;
        height: 55px;
        margin-bottom: 20px;
    }

    .btn3 {
        width: 100%;
        font-size: 17px;
        height: 55px;
        margin-bottom: 20px;
    }

    .sec2-p h5 {
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        padding-bottom: 30px;
    }

    .sec2-p p {
        font-size: 17px;
        height: 497px;
        overflow: auto;
        width: 99%;
    }
}

/* end section2 style */
/* start section3 style */
.section3 {
    width: 100%;
    height: auto;
    position: relative;
}

.ch-co {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.ch {
    width: 48.5%;
    display: flex;
    background-color: #044D66;
    border-radius: 32px;
}

.ch img {
    height: 100%;
}

.ch-details {
    padding: 0 20px;
}

.ch-details h4 {
    font-size: 30px;
    font-weight: 500;
    text-align: start;
    color: #fff;
    margin: 0;
    padding-top: 20px;
}

.ch-details h5 {
    font-size: 25px;
    margin: 0;
    padding-top: 3px;
    color: #fff;
    font-weight: 400;
}

.ch-details p {
    font-size: 18.5px;
    color: #fff;
}

.co {
    width: 48.5%;
    display: flex;
    border-radius: 32px;
    background-color: #044D66;
}

.co img {
    height: 100%;
}

.line1 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 70px 0;
}

.about {
    width: 100%;
    text-align: center;
}

.about h5 {
    margin: 0;
    font-size: 52px;
    font-weight: bolder;
    color: #f26133;
}

.about p {
    font-size: 20px;
    font-weight: 300;
    color: #404040;
    width: 65%;
    margin: auto;
    padding-top: 30px;
}

/* view */
.view {
    width: 100%;
    height: 590px;
    text-align: center;
}

.view h4 {
    margin: 0 auto;
    font-size: 43px;
    font-weight: bolder;
    padding: 15px 20px;
    color: #fff;
    width: 58%;
    background-color: #044D66;
    border-radius: 50px;
}

.view h4 a {
    outline: none;
    text-decoration: none;
    color: #fff;
}

.view h5 {
    margin: 0;
    padding-top: 40px;
    font-size: 52px;
    font-weight: bolder;
    color: #f26133;
}
.col-imgs{
    display: flex;
    justify-content: center;
    align-items: center;
}
.col-imgs img{
    transform: scale(.9);
}
.middle{
    transform: scale(.7) !important;
}


/* accredit */
.accredit {
    width: 100%;
    height: auto;
    text-align: center;
}
.accr-imgs{
    display: flex;
    align-items: center;
    justify-content: center;
}
.accredit h5 {
    margin: 0;
    font-size: 52px;
    font-weight: bolder;
    color: #f26133;
}
.accredit-p span{
  font-size:60px;
  color: #57ACC5;
  padding-right: 10px;
  font-weight: 900;
}
.accredit-p{
    padding-top:15px;
}
.accredit-p p{
    font-size: 38px;
    color:#044D66;
    margin: 0;
    font-weight:600;
}
.accredit img {
    transform: scale(.9);
    margin-top: 20px
}

/* organized */
.organized {
    width: 100%;
    height: auto;
    text-align: center;
}

.organized h5 {
    margin: 0;
    font-size: 52px;
    font-weight: bolder;
    color: #f26133;
}

.organized img {
    transform: scale(.9);
    margin-top: 20px
}

@media(max-width:1300px) {
    .section3 h4 {
        font-size: 45px;
    }

    .ch-co {
        width: 90%;
    }

    .ch-details {
        padding: 0 20px;
    }

    .ch-details h4 {
        font-size: 25px;
    }

    .ch-details h5 {
        font-size: 20px;
    }

    .ch-details p {
        font-size: 16px;
        color: #fff;
    }

    .view {
        width: 100%;
        height: 590px;
        text-align: center;
    }

    .view h4 {
        margin: 0 auto;
        font-size: 33px;
        font-weight: bolder;
        padding: 15px 20px;
        color: #fff;
        width: 58%;
        background-color: #044D66;
        border-radius: 50px;
    }

    .view h5 {
        font-size: 37px;
    }

    .accredit h5 {
        margin: 0;
        font-size: 52px;
        font-weight: bolder;
        color: #f26133;
    }

    .accredit img {
        transform: scale(.7);
        margin-top: 20px
    }

    .organized h5 {
        margin: 0;
        font-size: 52px;
        font-weight: bolder;
        color: #f26133;
    }

    .organized img {
        transform: scale(.9);
        margin-top: 20px
    }
}

@media(max-width:1150px) {
    .section3 h4 {
        font-size: 45px;
    }

    .ch-co {
        width: 90%;
    }

    .ch-details {
        padding: 0 20px;
    }

    .ch-details h4 {
        font-size: 25px;
    }

    .ch-details h5 {
        font-size: 16px;
    }

    .ch-details p {
        font-size: 13px;
        color: #fff;
    }

    .view {
        width: 100%;
        height: 590px;
        text-align: center;
    }

    .view h4 {
        margin: 0 auto;
        font-size: 33px;
    }

    .view h5 {
        font-size: 37px;
    }

    .accredit h5 {
        margin: 0;
        font-size: 52px;
    }

    .accredit img {
        transform: scale(.7);
        margin-top: 20px
    }

    .organized h5 {
        margin: 0;
        font-size: 52px;
    }

    .organized img {
        transform: scale(.9);
        margin-top: 20px
    }
}

@media(max-width:990px) {
    .section3 h4 {
        font-size: 45px;
    }

    .ch-co {
        width: 50%;
        flex-direction: column;
        padding-left: 30px;
    }

    .ch {
        width: 100%;
        margin-bottom: 40px;
    }

    .co {
        width: 100%;
    }

    .accredit img,
    .view img,
    .organized img {
        transform: scale(1);
        width: 50%;
    }

}

@media(max-width:767px) {
    .aa {
        font-size: 28px !important;
    }

    .ch-details h4 {
        font-size: 22px;
    }

    .ch-details h5 {
        font-size: 12px;
    }

    .ch-details p {
        font-size: 10px;
    }

    .ch-co {
        width: 100%;
        flex-direction: column;
    }

    .ch,
    .co {
        width: 85%;
        margin-bottom: 40px;
        /* transform: scale(.7); */
    }

    .ch img,
    .co img {
        width: 70%;
    }

    .ch-details {
        padding-left: 0;
        margin-left: -50px;
    }

    .line1 {
        transform: scale(.4);
    }

    .about h5 {
        font-size: 25px;
    }

    .view {
        height: 400px;
    }

    .view h4 {
        width: 80%;
        font-size: 16px;
    }

    .view h5 {
        font-size: 28px;
    }

    .view img {
        margin-top: 60px;
    }

    .accredit h5 {
        font-size: 28px;
    }

    /* .accredit img{
        transform: scale(.3);
        margin-left:-75%;
    } */
    .organized h5 {
        font-size: 28px;
    }

    /* .organized img{
        transform: scale(.5);
        margin-left:-5%;
    } */
    /*  */
    /* .ch-details{
        width: 60%;
        text-align: start;
        background-color: red;
    } */

}

/* @media(max-width: 394px){
   
    .accredit img{
        transform: scale(.3);
        margin-left:-82%;
    }
    .organized img{
        transform: scale(.5);
        margin-left:-8%;
    }
}
@media(max-width: 376px){
    .view img{
        transform: scale(.5);
       position: absolute;
       left:-65px !important;
       top: 40px;
    }
    .accredit img{
        transform: scale(.3);
        margin-left:-89%;
    }
    .organized img{
        transform: scale(.5);
        margin-left:-10%;
    }
} */











/* section4 style */
.section4 {
    width: 100%;
    height: auto;
    text-align: center;
}

.section4 h5 {
    font-size: 100px;
    font-weight: bolder;
    color: #f26133;
    margin: 0;
    padding:40px 0;
    margin-bottom: 70px;
}

.section4 .sec-img2,
.section4 .sec-img6,
.section4 .sec-img8 {
    transform: scale(.8);
    margin: 70px 0;
}

.section4 .sec-img1,
.section4 .sec-img3,
.section4 .sec-img5,
.section4 .sec-img7 {
    min-width: 100%;
}
.section4 .sec-img1{
    transform: scale(1.6);
}
.section4 .sec-img3{
    transform: scale(1.4);
    min-width: 100% !important;
}
.section4 .sec-img5{
    transform: scale(1.2);
    min-width: 100% !important;
}
.section4 .sec-img7{
    transform: scale(1);
    min-width: 100% !important;
}
.section4 .sec-img11{
    transform: scaleY(.8) !important;
    min-width: 100% !important;
}
.sec-img4{
    transform: scale(.6) !important;
    margin: 70px 0;
}
.sec-img8{
    transform: scale(1.6) !important;
    margin:90px 0 !important;
}
.sec-img9{
    transform: scale(.3) !important;
    margin:0px 0 !important;
    width: 100%;
}
.section4 .sec-img2{
    transform: scale(1.1);
}
.section4 .sec-img4{
    transform: scale(1.1) !important;
}
.sec-img8 {
    transform: scale(1.2) !important;
    margin: 90px 0px !important;
}
.sec-img9 {
    transform: scale(.2) !important;
    
}
@media(max-width:1400px) {

    .section4 .sec-img1,
    .section4 .sec-img3,
    .section4 .sec-img5,
    .section4 .sec-img7 {
        width: 100%;
    }

    .section4 .sec-img8 {
        transform: scale(.6);
        margin: 70px 0;
    }

    .section4 .sec-img4,
    .section4 .sec-img6 {
        transform: scale(1);
        width: 50%;
    }
}



/* footer */

.footer {
    width: 100%;
    height: 200px;
    background-color: #F2F2F2;

}

.footer .abs {
    display: flex;
}

.fo-img3 {
    display: none;
}

.footer-left {
    width: 35%;
    display: flex;
    align-items: center;
}

.fo-img1 {
    transform: scale(1);
    margin-top: 70px;
    margin-left: 70px;
}

.fo-img2 {
    width: 58px;
    height: 58px;
    margin-top: 60px;
    margin-left: 60px;
}

.footer-right {
    width: 65%;
    display: flex;
    align-items: end;
}

.phone,
.mail,
.location {
    display: flex;
    margin-right: 60px;
    padding-top: 20px;
}

.phone img {
    width: 30px;
    height: 33px;
    margin-top: 15px;
    margin-right: 10px;
}

.destination .phone img {
    margin-top: 0px;
    margin-right: 10px;
}

.mail img {
    width: 29px;
    height: 21px;
    margin-top: 25px;
    margin-right: 10px;
}

.destination .mail img {
    margin-top: 10px;
}

.location img {
    width: 18px;
    height: 26px;
    margin-top: 18px;
    margin-right: 10px;
}

.destination .location img {
    margin-top: 3px !important;
}

.phone p,
.mail p,
.location p {
    font-size: 22px;
    color: #044D66;
}

@media(max-width:1350px) {
    .sec-img9{
        transform: scale(.3) !important;
        margin:70px 0 !important;
        width: 100%;
    }
    .footer-left {
        width: 35%;
    }

    .fo-img1 {
        transform: scale(.8);
        margin-top: 60px;
        margin-left: 30px;
    }

    .fo-img2 {
        transform: scale(.8);
        margin-left: 70px;
    }

    .phone,
    .mail,
    .location {
        display: flex;
        margin-right: 30px;
        padding-top: 20px;
    }
}

@media(max-width:1200px) {
    .footer-left {
        width: 35%;
    }

    .fo-img1 {
        transform: scale(.8);
        margin-top: 40px;
        margin-left: 0px;
    }

    .fo-img2 {
        transform: scale(.8);
        margin-left: 20px;
    }

    .phone,
    .mail,
    .location {
        display: flex;
        margin-right: 30px;
        padding-top: 0px !important;
        margin-top: -30px;
    }

    .footer-right {
        width: 65%;
        display: flex;
        align-items: center;
        padding-left: 20px;
    }

    .phone,
    .mail,
    .location {
        display: flex;
        margin-right: 20px;
        padding-top: 0px;
    }

    .phone img,
    .mail img,
    .location img {
        width: 30px;
        height: 33px;
        margin-top: 15px;
        margin-right: 10px;
    }

    .phone p,
    .mail p,
    .location p {
        font-size: 18px;
        color: #044D66;
    }
}

@media(max-width:990px) {
    .middle {
        transform: scale(1) !important;
    }
    .section4 h5 {
        font-size: 80px;
    }
    .sec-img4 {
        transform: scale(1) !important;
        margin: 70px 0;
    }
    .sec-img8 {
        transform: scale(1) !important;
    }
    .sec-img9 {
        transform: scale(.5) !important;
    }
    .col-imgs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .view {
        width: 100%;
        height: auto;
        text-align: center;
    }
    .accredit-p p {
        font-size: 25px;
    }
    .accredit-p span {
        font-size: 30px;
    }
    .accr-imgs{
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
    }
    .footer {
        height: 400px;
    }

    .footer .abs {
        flex-direction: column;
        height: 100%;
    }

    .footer-left {
        width: 100%;
        text-align: start;
        padding-left: 25px;
        height: auto;
    }

    .fo-img1 {
        transform: scale(1);
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .fo-img2 {
        transform: scale(.6);
        margin-left: 0px;
        display: none;
    }

    .phone,
    .mail,
    .location {
        display: flex;
        margin-right: 30px;
        padding-top: 0px !important;
        margin-top: -30px;
        padding-left: 30px;
    }

    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .phone,
    .mail,
    .location {
        display: flex;
        margin-right: 20px;
        width: 100%;
        padding-top: 50px;
    }

    .phone p,
    .mail p,
    .location p {
        font-size: 18px;
        color: #044D66;
    }

    .abs {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .fo-img3 {
        display: block;
        position: absolute;
        bottom: 30px;
        right: 30px;
        width: 58px;
        height: 58px;
    }

    .phone,
    .mail,
    .location {
        margin-top: 15px
    }

    .phone img {
        width: 30px;
        height: 33px;
        margin-top: 15px;
        margin-right: 10px;
    }

    .destination .phone img {
        margin-top: 0px;
        margin-right: 10px;
    }

    .mail img {
        width: 29px;
        height: 21px;
        margin-top: 25px;
        margin-right: 10px;
    }

    .destination .mail img {
        margin-top: 10px;
    }

    .location img {
        width: 18px;
        height: 26px;
        margin-top: 18px;
        margin-right: 10px;
    }

    .destination .location img {
        margin-top: 3px !important;
    }

}
@media(max-width:767px){
    .sec-img8 {
        transform: scale(.6) !important;
    }
    .accredit-p p {
        font-size:18px;
        font-weight: 800 !important;
    }
    .accredit-p span {
        font-size:30px;
        font-weight:900 !important;
    }
    .section4 h5 {
        font-size: 53px;
    }
    .section4 .sec-img1{
        transform: scale(2);
    }
    .section4 .sec-img3{
        transform: scale(1.7);
        min-width: 100% !important;
    }
    .section4 .sec-img5{
        transform: scale(1.4);
        min-width: 100% !important;
    }
    .sec-img4 {
        transform: scale(1.3) !important;
        margin: 70px 0;
    }
}










/* speakers page style */
.main-content2 {
    width: 80%;
    margin: auto;
    padding: 50px 0;
}

.ppp {
    font-size: 41px;
    font-weight: bolder;
    color: #f26133;
    margin: 0;
}
.pppp{
    font-size: 41px;
    font-weight: bolder;
    color: #f26133;
    margin:18px 0 ;
}

.speaker-card {
    width: 100%;
    height: 200px;
    background-color: #f2f2f2;
    display: flex;
    margin-bottom: 30px;
    border-radius: 18px;
    padding: 10px 0;
}

.speaker-card img {
    width: 178px;
    margin: 0px 20px 0 20px;
    height: 178px;
    border-radius: 30px;
}

.speaker-card p {
    padding-right: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    height:150px;
    overflow: auto;
}

.ppp2 {
    font-size: 41px;
    font-weight: bolder;
    color: #f26133;
}

.speaker-bio h2 {
    color: #044D66;

}

@media(max-width:990px) {
    .ppp {
        font-size: 35px;
        font-weight: bolder;
        color: #356F83;
    }
}

@media(max-width:767px) {
    .ppp {
        font-size: 22px;
        font-weight: 900;
        color: #356F83;
    }

    .speaker-card,
    .speaker-bio {
        width: 100%;
        height: 600px;
        background-color: #f2f2f2;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
        border-radius: 18px;
    }
    .speaker-card{
        padding: 0;
        height: 500px;
    }
    .speaker-card img {
        width: 100%;
        height: 250px;
        margin: 0px 20px 0 0px;
        border-radius: 18px;
    }

    .speaker-card p {
        padding-right: 10px;
        padding-left: 5px;
        font-size: 16px;
        font-weight: 400;
        overflow: scroll;
    }

    .text-orange-red {
        padding-left: 5px;
        font-size: 20px;
    }
    .section4 .sec-img2 {
        transform: scale(.8);
        width: 100%;
    }
    .section4 .sec-img4 {
        transform: scale(1.7) !important;
    }
    .section4 .sec-img6 {
        transform: scale(.8);
        width: 50%;
    }
    .sec-img8 {
        transform: scale(.4) !important;
    }
    .sec-img9 {
        transform: scale(.3) !important;
    }
}
.spnser{
    margin: 0;
    padding:50px 0;
}
.flexx{
    display: flex;
    align-items: center;
    justify-content:space-around;
    height: auto;
    padding: 80px 0 40px 0px !important;
}
.flexx .left-img{
    width:50%;

    margin:0px 0 !important;
    display: flex;
    justify-content: end;
}
.flexx .left-img img{
    transform: scale(1.2) !important;
    margin-top:30px !important;
    margin-right:50px !important;
}
.flexx .right-img{
    width:50%;
    margin:0px 0 !important;
    display: flex !important;
    justify-content: start !important;
}
.flexx .right-img img{
    transform: scale(.55) !important;
    margin-left: -120px !important;
    
}
@media(max-width:1150px){
    .flexx .left-img img{
        margin-right:20px !important;
    }
    .flexx .right-img img{
        transform: scale(.55) !important;
        margin-left: -30px !important;
        
    }
    .section4 .sec-img2 {
        transform: scale(1);
    }
}
@media(max-width:990px){
    .flexx{
        padding: 50px 0 20px 0 !important;
    }
    .flexx .left-img img{
        margin-right:0px !important;
        transform: scale(.8) !important;
    }
    .flexx .right-img img{
        transform: scale(.7) !important;
        margin-left:-25px !important;
        
    }
    .section4 .sec-img2 {
        transform: scale(.7);
        width: 100%;
    }
}
@media(max-width:767px){
    .flexx{
        width:100% !important;
        margin: auto;
        padding: 30px 0 0px 0 !important;
    }
    .flexx .left-img{
       padding-left: 80px !important;
    }
    .flexx .left-img img{
        margin-right:0px !important;
        transform: scale(.4) !important;
        margin-left: 60% !important;
    }
    .flexx .right-img img{
        width: 100%;
        transform: scale(1) !important;
        margin-left:-70px !important;
        margin-top:35px !important;
    }
   
}
/* @media(max-width:376px){
   
    .flexx .right-img img{
        width: 100%;
        transform: scale(8.5) !important;
        margin-left:0px !important;
        margin-top:35px !important;
    }
   
} */