/* 
font-family: 'Great Vibes', cursive;
font-family: 'Lato', sans-serif;
*/

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth
}
html,
body {
    overflow-x: clip;
}
*,
:after,
:before {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit
}
a,
aside,
body,
del,
div,
dl,
footer,
header,
li,
main,
ol,
p,
section,
span,
ul {
    padding: 0;
    margin: 0;
    text-shadow: none;
    outline: 0;
    box-shadow: none;
    text-decoration: none;
    list-style: none
}
b, strong{
    font-weight: 700;
}
body {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #666;
    overflow-x: hidden;
}
a{
    font-family: 'Lato', sans-serif;
    color: #000000;
    display: block;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}
a:hover,a:focus,a:active{
    color: #0573CE;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Great Vibes', sans-serif;
}
.event-section{
    padding: 50px 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.eventm-logo img {
	max-width: 250px;
	width: 100%;
	/* background: #ffff; */
	border-radius: 10px;
}
.eventm-desc {
	padding: 25px;
	background-color: rgba(122, 145, 99,0.8);
	border-radius: 5px;
	max-width: fit-content;
	margin: 25px auto 30px;
}
.event-main{
    max-width: 80%;
    margin: auto;
}
.event-main h1{
    font-size: 46px;
    line-height: 56px;
    color: #fff;
    margin-bottom: 5px;
}
.event-main p{
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    margin: 0;
    font-weight: 400;
}
.eventmmb-img{
    background: #7a9163;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    max-width: 50px;
    margin: 0 auto 15px;
}
.eventmmb-img img{
    max-width: 15px;
}
.eventmb-box{
    position: relative;
    padding:0px 20px 20px 20px;
    max-width: 60%;
    width: 100%;
    margin-left: auto;
    z-index: 1;
}
.eventmb-box:nth-child(2){
    margin-left: 0;
    margin-right: auto;
}
.eventmb-box::before{
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fcfcfc;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: -1;
}
.eventmb-desc h3{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 5px;
    color: #7a9163;
}
.eventmb-desc a{
    font-size: 16px;
    line-height: 28px;
    max-width: fit-content;
    margin: auto;
    color: #7a9163;
}
.eventm-bottom{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
@media screen and (max-width: 1199px){
    .event-main {
        max-width: 100%;
    }
}
@media screen and (max-width: 991px){
    .eventm-logo img {
        max-width: 200px;
    }
    .eventm-desc {
        padding: 25px;
        margin: 20px auto 25px;
    }
    .event-main h1 {
        font-size: 38px;
        line-height: 49px;
    }
    .eventmb-box {
        max-width: 90%;
    }
    .eventmb-desc h3 {
        font-size: 27px;
        line-height: 32px;
        margin-bottom: 3px;
    }
}
@media screen and (max-width: 767px){
    .event-section {
        padding: 30px 0px;
    }
    .eventm-logo img {
        max-width: 180px;
    }
    .eventm-desc {
        padding: 20px;
    }
    .event-main h1 {
        font-size: 34px;
        line-height: 44px;
    }
    .event-main p {
        line-height: 26px;
    }
    .eventm-bottom {
        grid-template-columns: repeat(1,1fr);
        gap: 25px;
    }
    .eventmb-box {
        max-width: 100%;
    }
}