@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');



/* start: Globals */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font: inherit;
}

body {
font-size: 18px;
font-family: 'Inter', sans-serif;
}

/* Preloader Styles */
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}

.preloader.hidden {
display: none;
}

.spinner {
width: 60px;
height: 60px;
border: 7px solid #fff;
border-top-color: transparent;
border-radius: 50%;
animation: spinner 0.7s linear infinite;
}

@keyframes spinner {
from {
transform: rotate(0deg);
}

to {
transform: rotate(360deg);
}
}

.main_cls {
background: var(--blue);
}

.container {
max-width: 1300px;
width: 100%;
}


.sem_page {
margin-top: 65px;
padding-bottom: 40px;
font-size: 15px;
}

a {
color: #fff;
text-decoration: none;
}

.seminar {
position: relative;
min-height: 50vh;
width: 100%;
background: url(../assets/bg-dot.webp), url(../assets/bg-dot.webp), url(../assets/bg-round.webp);
background-position: 10px 10px, bottom 80px right 10px, left 55% top -1%, left 30% bottom 100px;
background-repeat: no-repeat;
}

.seminar .row {
min-height: 50vh;
height: 100%;
width: 100%;
padding: 50px 60px;
margin: auto;
}

.seminar .row h2 {
color: #fff;
}

.seminar .row h2 {
text-align: center;
font-size: 30px;
font-weight: bold;
}

.seminar .column {
width: 50%;
}

.telegram_div {
text-align: center;
border-radius: 5px;
width: fit-content;
padding: 8px 17px 15px 17px;
margin-top: 30px;
}

.telegram_div a {
padding: 9px 20px;
background: #ffffff;
color: #104391;
border: 1px solid;
font-weight: 500;
border-radius: 30px;
}

.telegram_div p {
font-size: 16px;
color: var(--blue);
margin-bottom: 20px;
}


.imp_notes {
color: #d11a1a;
text-align: center;
margin-top: 15px;
font-size: 19px;
font-weight: 600;
}


.telegram-icon {
text-decoration: none;
display: flex;
align-items: center;
color: #0088cc;
}
.telegram-icon i {
margin-right: 8px;
font-size: 30px; /* Custom size */
}


/* Reponsive */
@media (width < 760px) { a { color: #333; } .seminar { padding-top: 50px; } .seminar .row { flex-direction: column; padding: 0 20px; justify-content: center; } .seminar .row .column { width: 100%; } } @media (width < 600px) { .seminar { padding: 30px 0px 40px 0px; } .seminar .row h2 { font-size: 26px; } } 