*{
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}


:root { 
  --background-color: #ffffff; 
  --default-color: #2f3138; 
  --heading-color: #0e1b4d; 
  --accent-color: #f82249; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}


:root {
  --nav-color: rgba(255, 255, 255, 0.65);  
  --nav-hover-color: #ffffff; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #f82249; 
}



.light-background {
  --background-color: #f2f2f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000820;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #001553;
  --contrast-color: #ffffff;
}





/* bg-img */

.bars{
    cursor: pointer;
    position: absolute;
    font-size: 30px;
    right: 30px;
    top: 25px;
    display: none;
    color: #fff;
}

.famark{
    cursor: pointer;
  display: none;
  position: absolute;
  left: 80%;
  top: 30px;
  font-size: 30px;
  color: #fff;
  z-index: 10000000;
  display: none;
}

body{
    overflow-x: hidden;
}

.bg-img{
    background-image: linear-gradient(#00092294) ,url(img/hero-bg.jpg);
    width: 100%;
    padding: 10px 20px 1px 0px;
}


nav{
    padding: 0px 90px;
    height: 100px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    transition: 0.5s ease-in-out;
}

.navlink{
    position: absolute;
    background-color: #000922b6;
    position: sticky;
    top: 0px;
}

.list>ul{
    font-family: var(--nav-font);
    display: flex;
    gap: 20px;
    list-style-type: none;
    color: #fff;
}



.logo>img{
    width: 150px;
}



.btn>button{
    background-color: var(--accent-color);
    border: none;
    border-radius: 20px;
    color: #fff ;
    padding: 12px 24px;
}








/* responsive navbar */


@media (max-width:1033px){

    .bars{
        display: block;
    }

    .famark{
        display: block;
    }


    .list>ul{
        flex-direction: column;
        position: relative;
        top: 120px;
        font-size: 20px;
        line-height: 2;
        justify-content: center;
        align-items: center;
    }
    
    .list{
        display: none;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 50%;
        background-color: var(--accent-color);
        height: 100vh;
    }
}




/* main */

main{
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--heading-font);
}

main>h1{
    text-align: center;
    font-size: 50px;
}

main>h1>span{
    color: var(--accent-color);
}


main>p{
    font-size: 20px;
    margin: 20px 0px;
}


.play{
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    background-color: var(--accent-color);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}



.play>i{
    transition: 0.5s ease-in-out;
    font-size: 20px;
}


.play:hover{
    opacity: 0.8;
}




/* responsive main */

@media (max-width: 1024px) {
    main {
        padding: 40px 20px;
    }
    main > h1 {
        font-size: 40px;
    }
    main > p {
        font-size: 18px;
    }
    .play {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    main {
        padding: 30px 15px;
    }
    main > h1 {
        font-size: 32px;
    }
    main > p {
        font-size: 16px;
    }
    .play {
        width: 65px;
        height: 65px;
    }
    .play > i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 20px 10px;
    }
    main > h1 {
        font-size: 26px;
    }
    main > p {
        font-size: 14px;
    }
    .play {
        width: 55px;
        height: 55px;
    }
    .play > i {
        font-size: 16px;
    }
}




/* video */

.video>video{
    background-color: #000000a8;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
}


.video{
    display: none;

}


.close{
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    position: absolute;
    z-index: 9;
    top: 30px;
    right: 40px;
}









/* event */


.event{
    padding: 80px 0px;
    background-color: #000922b6;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #fff;
}



.ev>h1{
    font-size: 35px;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}


.ev>p{
    line-height: 1.6;
}


.ev:nth-child(2)>h1,.ev:nth-child(3)>h1{
    font-size: 25px;
}

.ev:nth-child(1){
    width: 600px;
}







/* responsive event */


@media (max-width: 1024px) {
    .event {
        gap: 20px;
    }
    .ev:nth-child(1) {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .event {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ev {
        max-width: 500px;
        width: 100%;
    }
    .ev > h1 {
        font-size: 28px;
    }
    .ev:nth-child(2) > h1,
    .ev:nth-child(3) > h1 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .event {
        padding: 50px 15px;
    }
    .ev > h1 {
        font-size: 24px;
    }
    .ev > p {
        font-size: 14px;
    }
}









/* eventing */


.eventing{
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.eventing >h1{
    font-family: var(--heading-font);
    margin-top: 40px;
}

.even{
    width: 300px;
    height: 170px;
    background-position: center;
    background-size: cover;
}


.eve-2{
    background-image: url(img/speakers/speaker-2.jpg);
}

.eventing{
    margin: 70px 20px;

}

.eve-3{
    background-image: url(img/speakers/speaker-3.jpg);
}


.eve-4{
    background-image: url(img/speakers/speaker-4.jpg);
}


.eve-1{
    background-image: url(img/speaker.jpg);
}


.divider{
    margin-top: 20px;
    width: 60px;
    background-color: var(--accent-color);
    height: 2px;
}


.eveee{
    padding: 30px 90px;
    gap: 20px;
    display: flex;
    justify-content: center;
}


.ee{
    position: relative;
    top: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--heading-font);
    justify-content: center;
    background-color: #000000a8;
    color: #fff;
    font-size: 15px;
    height: 60px;
}




/* responsive event speaker*/


@media (max-width:1299px){
    .eveee{
        flex-wrap: wrap;
    }
    .even{
        margin-bottom: 20px;
    }
}






/* register */



.reg{
    margin: 30px 0px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.right-reg-img>img{
    border-radius: 50%;
    width: 75px;
    height: 70px;
}


.event-button{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 50px;
}

.event-button>button{
    padding: 10px 90px;
    border: none;
    background-color: var(--heading-color);
    border-radius: 30px;
    color: #fff;
}


.button{
    background-color: var(--accent-color) !important;
}


.right-reg{
    display: flex;
    align-items: center;
    gap: 20px;
}


.right-reg>p{
    font-style: italic;
}

.sed{
    display: flex;
    flex-direction: column;
    align-items: center;
}



.right-reg>h2{
    font-size: 25px;
    font-family: var(--default-font);
}


.right-reg-text>p:nth-child(1)>span{
    font-size: 27px;
    font-family: var(--heading-font);
    color: #001553;
}




.right-reg-text>p:nth-child(1){
    font-size: 20px;
    font-family: var(--default-font);
}







.left-reg>span{
    font-size: 25px;
    font-family: var(--heading-font);
}


.right-reg-text>p:nth-child(2){
    color: #696969;
    font-style: italic;
    font-family: var(--default-font);
}



.sed>p,.event-sc p{
    color: #696969;
    font-family: var(--heading-font);
}


.day2{
    display: none;
}

.day3{
    display: none;
}





/* responsive register */

@media (min-width: 1024px) {
    .reg {
        flex-wrap: nowrap;
    }
    .right-reg {
        flex-direction: row;
        align-items: center;
    }
    .event-button > button {
        padding: 10px 50px;
        font-size: 16px;
    }
}




@media (min-width: 873px) {
    .event-sc{
        margin: 30px 90px;
    }
}























/* venue */
.venue{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.map{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.venue>p{
    margin: 40px 0px;
}

.map>iframe{
    width: 650px;
    height: 300px;
}

.map-text{
    color: #fff;
    padding: 50px 90px;
    font-family: var(--heading-font);
}

.map-text>h1{
    margin-bottom: 20px;
}
.map-text>p{
    line-height: 1.4;
}

.map-img{
    width: 650px;
    padding: 10px 20px;
    background-image: linear-gradient(rgba(0,0,0,0.6)), url(img/venue-info-bg.jpg);
    background-position: center;
    background-size: cover;
}

.venue-img{
    margin: 10px 0px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.v-img>img{
    border: 1px solid #fff;
    max-width: 320px;
    height: 270px;
    transition: 0.5s ease-in-out;
}


.v-img{
    overflow: hidden;
}

.v-img>img:hover{
    transform:scale(1.1);
}







/* responsive venue */




@media (max-width:796px){
    .map>iframe,.map>.map-img{
        width: 100%;
        margin: 20px 90px;
    }

    .map>.map-img>.map-text{
        padding: 30px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}






@media (max-width: 658px){
    .map>iframe,.map>.map-img{
        width: 100%;
        margin: 20px 20px;
    }

    .map>.map-img>.map-text{
        padding: 30px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}




/* hotel */

.hotel{
    padding: 40px 20px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.hotel>p{
    margin: 30px 0px;
}


.hh{
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    gap: 20px;
}

.h>img{
    width: 300px;
    transition: 0.5s ease-in-out;
}

.h{
    overflow: hidden;
}

.h>img:hover{
    transform: scale(1.1);
}

.h>h1{
    font-size: 20px;
    margin: 10px 0px;
    font-family: var(--heading-font);
}

.icon>i{
    color: rgb(255, 221, 31);
}


.h>span{
    font-style: italic;
    color: #696969;
    font-family: var(--heading-font);
}
















/* sponsors */

.sponsor{
    text-align: center;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f2f2f3;
    font-family: var(--heading-font);
}

.sponsor>p{
    margin: 30px 0px;
}

.spons-img{
    margin: 30px 0px;
    justify-content: center;
    gap: 2px;
    display: flex;
    flex-wrap: wrap;
}



.spons:hover >img{
    transform: scale(1.1);
}


.spons{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: #fff;
    width: 300px;
}

.spons>img{
    transition: 0.5s ease-in-out;
    width: 150px;
}





/* tickets */

.ticket{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 100px 50px;
}


.ticket>p{
    margin: 30px 0px;
}


.tick-1{
    align-items: center;
    margin: 50px 60px;
    display: flex;
    flex-wrap: wrap;
    padding: 90px 40px;
    justify-content: space-between;
    width: 90%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px grey;
}



.stand{
    margin: 20px 20px;
}



.stand>h1{
    font-size: 30px;
    color: #0e1b4d;
    font-family: var(--heading-font);
}


.price>h1{
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.price>h1>span{
    font-size: 24px;
    color: #696969;
}



.li{
    margin: 20px;
}


.price{
    margin: 20px 20px;
}


.i{
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.i>.fa-check{
    color: rgb(62, 211, 32);
}


.i>.fa-xmark{
    color: #696969;
}

.i>p{
    color: #696969;
}





.butn>button{
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 40px;
}







/* ticket-2 */


.tick-2{
    background-color: var(--accent-color);
}

.tick-2 h1{
    color: #fff;
}

.tick-2>.price>h1>span{
    color: #fff;
}

.tick-2>.li>.i>p,.tick-2>.li>.i>i{
    color: #fff;
}

.tick-2>.butn>button{
    background-color: #fff;
    color: #f82249;
}












/* contact */


.contact{
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.contact>p{
    margin: 20px 20px;
}


.address{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 20px;
}

.addr{
    box-shadow: 2px 2px 10px grey;
    background-color: #fff;
    padding: 60px 60px;
    text-align: center;
    line-height: 1.5;
}



.addr>h4{
    font-size: 20px;
    font-family: var(--heading-font);
    color: #001553;
}


.addr>p{
    font-family: var(--heading-font) ;
}






.conn{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}


.con:nth-child(2){
    margin-top: 20px;
}

.con>form >.input>input{
    width: 220px;
}

.input{
    display: flex;
    gap: 30px;
}

.con>form input , .con>form textarea{
    height: 40px;
    padding-left: 10px;
}


.subject>input,.textarea>textarea{
    width: 483px;
    height: 40px !important;
}


.con>form input{
    margin: 10px 0px;
    border: 1px solid #ccc;
}

.textarea>textarea{
    border: 1px solid #ccc;
    margin: 10px 0px;
    height: 200px !important;
}


.con{
    display: flex;
    flex-direction: column;
    align-items: center;
}




.con>form{
    padding: 30px;
    border-radius: 20px;
    box-shadow: 2px 2px 10px grey;
}








.bun>button{
    padding: 15px 35px;
    background-color: var(--accent-color);
    margin: 10px 0px;
    color: #fff;
    border: 1px solid var(--accent-color);
    border-radius: 30px;
}







/* responsive contact */

/* 
@media (max-width:646px){
    .con{
        width: 100%;
        margin: 30px;
    }
}






@media (max-width:629px){
    .con>iframe{
        width: 100%;
        margin: 30px;
    }

} */










@media (max-width: 992px) {
    .conn {
        flex-direction: column;
        align-items: center;
        margin: 20px;
    }

    .input {
        flex-direction: column;
    }


   .con>form >.input>input{
        width: 100%;
    }

    .con>form{
        width:100%;
        margin: 0px;
    }


    .subject input,
    .textarea>textarea {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .con iframe {
        width: 100%;
        margin: 10px;
        height: 300px;
    }

    .bun>button {
        width: 100%;
    }
}







/* footer */


footer{
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 90px;
    padding: 60px 0px;
    color: #fff;
    font-family: var(--heading-font);
    background-color :#0e1b4d;
}



.foo>.logo{
    margin-bottom: 20px;
}

.foo>ul{
    margin-top: 20px;
    line-height: 2;
    list-style-type: none;
}



.foo>ul>li , .foo>p{
    font-size: 14px;
    transition: 0.5s ease-in-out;
}



.foo>p:hover{
    color: var(--accent-color);
    cursor: pointer;
}


.foo>ul>li:hover{
    cursor: pointer;
    color: var(--accent-color);
}


.foo>p{
    line-height: 1.9;
}

.foo>.div{
    margin-top: 10px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);

}







/* main footer */

.footer{
    flex-wrap: wrap;
    font-family: var(--heading-font);
    display: flex;
    padding: 30px 80px;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    background-color: #000820;
    color: #fff;
}

.footer>.f-1>p>span{
    color: var(--accent-color);
}



.icons>i{
    padding: 10px;
    border-radius: 10px;
    background-color: #151b2bb6;
    color: #fff;
    font-size: 25px;
    transition: 0.5s ease-in-out;
}



.icons>i:hover{
    background-color: var(--accent-color);
}








@media (max-width:805px){
    .footer{
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}










 



@media (max-width: 730px) {

  nav {
    margin-left: -20px;
  }

  .logo > img {
    width: 120px;
  }

  .btn > button {
    padding: 8px 16px;
    font-size: 14px;
  }

  main {
    margin-top: 50px;
    padding: 20px 10px;
  }

  main > h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  main > p {
    font-size: 14px;
  }

  .play {
    width: 55px;
    height: 55px;
  }

  .play > i {
    font-size: 16px;
  }

  .event {
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
    text-align: center;
  }

  .ev {
    width: 100%;
  }

  .eveee {
    flex-wrap: wrap;
    padding: 0 10px;
    justify-content: center;
  }

  .even {
    width: 100%;
    max-width: 320px;
    margin-bottom: 15px;
  }

  .event-button {
    /* flex-direction: column; */
    gap: 10px;
    margin: 20px 0;
  }

  .event-button > button {
    width: 100%;
    padding: 10px 0;
  }

  .reg {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .right-reg {
    flex-direction: column;
    align-items: flex-start;
  }

  .map > iframe,
  .map > .map-img {
    width: 100% !important;
    margin: 15px 0;
  }

  .map-text {
    padding: 20px;
  }

  .venue-img {
    gap: 10px;
    padding: 0 10px;
  }

  .v-img > img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .h > img {
    width: 100%;
    max-width: 280px;
  }

  .spons {
    width: 100%;
    max-width: 280px;
  }

  .tick-1 {
    flex-direction: column;
    padding: 30px 20px;
    margin: 20px 0;
  }

  .stand > h1 {
    font-size: 22px;
  }

  .butn > button {
    width: 100%;
    padding: 12px;
  }

  .contact {
    padding: 40px 15px;
  }

  .addr {
    padding: 30px 20px;
  }

  .input {
    flex-direction: column;
    gap: 10px;
  }

  .subject input,
  .textarea > textarea {
    width: 100% ;
  }

  footer {
    gap: 30px;
    padding: 30px 100px;
    text-align: center;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
  }
  .con{
    width: 300px;
  }
  .btn>button{
    display: none;
  }
}