
html,
body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 13px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
header {
    min-height: 100vh;
    position: relative;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    background-image: url('../images/merriment.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(0 0 0 / 50%);
    background-blend-mode: overlay;
}
header .logo{
    background-color: #759e5e;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .logo img {
    position: relative;
    z-index: 2;
    width: 180px;
    height: auto;
}
header h1 {
    font-size: 45px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    padding-top: 0px;
    padding-bottom: 0;
    font-family: "Raleway", sans-serif;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}
header p {
    font-size: 17px;
    color: rgba(236, 240, 241, 0.9);
    word-spacing: 1px;
    line-height: 25px;
    padding-bottom: 0px;
    position: relative;
    z-index: 2;
}
p.boldTxt {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.socialList{
    display: flex;
    list-style: none;
}
header #effect-box, header .video-box, header .image-box {
    position: absolute!important;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    top: 0;
}
.socialList li i {
    width: 35px;
    height: 35px;
    background-color: #759e5e;
    border-radius: 50%;
    line-height: 35px;
    font-size: 16px;
    color: #fff;
}
.socialList li{
    margin: 0 5px;
}
.callTxt{
	margin-top: 5px;
}
.callTxt a{
  color: #fff;
  text-decoration: none;	
} 
@media(max-width: 767px){
    header .logo img{
        width: 150px;
    height: auto;
    }
    header .logo{
        width: 170px;
    height: 170px;
    }
    header h1{
        font-size: 36px;
    }
    p.boldTxt{
        font-size: 19px;
    }
    header p{
        font-size: 16px;
    }
    header p br{
        display: none;
    }
}