@font-face {
	font-family: BauerBIt;
	src: url('./fonts/BauerBodoniStd-Italic\(1\).otf'); /* Update the path and format if needed */
	/* Add other font properties as needed (e.g., font-weight, font-style) */
}
@font-face {
	font-family: 'ESR';
	src: url('./fonts/EireneSans-Regular.otf') format('opentype'); /* Update the path and format if needed */
	/* Add other font properties as needed (e.g., font-weight, font-style) */
}
@font-face {
	font-family: 'ESB';
	src: url('./fonts/EireneSans-Bold.otf') format('opentype'); /* Update the path and format if needed */
	/* Add other font properties as needed (e.g., font-weight, font-style) */
}

@font-face {
	font-family: 'Palatino';
	src: url('./fonts/Palatino.ttc') format('truetype'); /* Update the path and format if needed */
	/* Add other font properties as needed (e.g., font-weight, font-style) */
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.main-body
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-image: url("./logos/light-grains.jpg"); */

}
.main-body::after{
    content: " ";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
background-image: url("./logos/light-grains.png");
background-size: cover;
background-repeat: no-repeat;
opacity:8;
z-index: 0;
}
.main-body .main-body-background
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    object-fit:fill;
    height: 100%;
    /* z-index: 3; */
    opacity: 1;
}
.custom-container
{
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    /* background: rgba(0, 0, 0, 0.631); */
}
.video-container
{
    display: flex;
    justify-content: center;
    position: relative;
}
.video-container .video-thumbnail
{
    position: relative;
    /* display: none; */
    width: 391.98px;
    height: 415.505px;
    opacity: 0.4;
    z-index: 0;
    /* width: ; */
}
.video-container .title-text
{
    position: absolute;
    /* opacity: 0.7; */
    color:rgb(36, 55, 77);
    opacity: 0.9;
    bottom: 7.5%;
    font-family: BauerBIt;
    font-size: 90px;
    font-weight: 400;
    z-index: 4;
    /* font-style: italic; */
}
.video-container .video-playbtn{
    position: absolute;
    top: 39.5%;
    z-index: 5;
}

.video-container .video-playbtn {
    transition: transform 0.3s ease;
}
.video-container .video-playbtn:hover {
    transform: scale(1.2);
    cursor: pointer;
}


.body-text{
    position: relative;
    width: 656px;
    height: 243px;
    font-size: 13px;
    line-height: 26px;
    font-family: Palatino;
    margin: auto;
    text-align: justify;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.901);
    z-index: 5;
    margin-top: 3.7%;
}

.menu-bar{
    position: relative;
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    position: absolute;
    top: 6.5%;
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 1;
}
.menu-bar .menu-items ul{
    display: flex;
    gap: 39px;
    list-style: none;
}
.menu-bar .menu-items ul li a
{
text-decoration: none;
color: white;
font-weight: 500;
font-family: ESR;
font-size: 12pt;
letter-spacing: 1px;
transition: transform 0.3s ease;
}

		.menu-bar .menu-items ul li a:hover {
			color: rgb(87, 31, 31);
			transform: scale(2);
            font-weight: bold;
		}

.logo
{
    justify-self: flex-start;
    width: 29.762px;
    height: 59.318px;
    margin-left: 65px;
  
}
.menu-items
{
    justify-self: center;
}

.social-media-icons
{
    display: flex;
    position: absolute;
    flex-direction: column;
    gap: 43px;
    top: 37.7%;
    z-index: 234;
    right: 10%;

}

.social-media-icons a img{
    width: 18.259px;
    transition: transform 0.3s ease;
}

.social-media-icons a img:hover{
    transform: scale(1.2);
		cursor: pointer;
}