*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'gilroymedium';
    font-size: 18px;
}

.hero-main-container{
    background: #000;
    overflow: hidden;
    position: relative;
}

.hero-container{
    width: 100%;
    padding: 30px 0;
}

.logo-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
}

.coffeemug-logo{
    width: 240px;
}

.anydesk-logo{
    width: 230px;
}

.hero-img{
    width: 100%;
    height: auto;
}

.container-about{
    width: 90%;
    margin: 0 auto;
}

.about-heading-text{
    margin-top: 40px;
    font-family: 'gilroybold';
    font-size: 32px;
}

.about-text-container{
    text-align: left;
    font-family: 'gilroymedium';
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-text{
    margin-bottom: 0;
    line-height: 35px;
}

.about-us-text{
    font-size: 20px;
}

.join-btn{
    display: block;
    width: fit-content;
    margin-top: 30px;
    padding: 15px 30px;
    border: none;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
}

.venue-container{
    background-color: #f6f3f2;
    padding-bottom: 50px;
}

.venue-sub-container{
    width: 90%;
    margin: auto;
}

.venue-heading{
    padding: 20px 0;
    color: #e77b35;
}

.venue-content-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
}

.venue-map{
    width: 500px;
    height: 300px;
}

.venue-sub-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60%;
    gap: 20px;
    margin: auto;
}

.location-icon-venue{
    width: 50px;
}

.venue-text{
    margin: auto;
    font-size: 20px;
    color: #000;
}

/* speaker */
.speakers-container{
    padding: 50px 0 20px;
}

.speakers-heading{
    text-align: center;
    font-family: 'gilroybold';
}

.speaker-content-container{
    width: fit-content;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 40px;
    gap: 200px;
}

.speaker-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.speaker-img{
    max-width: 250px;
    width: 100%;
    margin-bottom: 20px;
}

.speakers-content{
    text-align: center;
    font-size: 20px;
}

.speakers-content p {
    margin-bottom: 0;
}

.speakers-name{
    font-family: 'gilroybold';
}

.speakers-designation{
    line-height: 22px;
    margin: 5px 0 !important;
}

.speakers-company{
    font-family: 'gilroybold';
}

.form-main-container{
    padding: 30px 0;
}

#loader{
    font-size: 20px;
}

.form-container{
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 20px 30px 30px;
    text-align: center;
    background: #fff;
    /* box-shadow: 0 0 15px #000; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.form-heading{
    text-align: center;
    font-family: 'gilroybold';
}

.input-sub-data{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
}

.input-data{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.input-data > label{
    font-size: 18px;
}

.input-field{
    width: 100%;
    padding: 5px 10px;
}

.btn-container{
    margin-top: 20px;
}

.register-btn{
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
}