html {
  scroll-behavior: smooth;
}
body {
	font-family: 'Roboto', arial, sans-serif;
	font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
	letter-spacing: 0;
    word-break: break-word;
	color: rgba(0,0,0,1);
	background-color: rgba(255,255,255,1);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%; 
	height:100%;
	position: relative;
    margin:0;
    padding: 0;
}
* {
	font-family: 'Roboto';
}

a {
    color: rgba(0,0,0,1);
    text-decoration: underline;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
a:hover {
    color: rgba(0,0,0,0.75);
}
a:focus {

}
h1, h2, h3, h4, h5 {
    font-weight: 700;
    padding: 0;
    margin: 0;
}
h1, .fs-1 {
	font-size: 3.5rem !important;
    line-height: 4rem !important;
}
h2, .fs-2 {
    font-size: 2.5rem;
    line-height: 3rem;
}
h3, .fs-3 {
    font-size: 1.8rem;
    line-height: 2.5rem;
}
h4, .fs-4 {
    font-size: 1.5rem;
    line-height: 2rem;
}
h5, .fs-5 {
    font-size: 1rem;
    line-height: 1.5rem;
}
p {
    margin: 15px 0;
    padding: 0;
}
h1 p, h2 p, h3 p, h4 p, h5 p {
    margin: 0;
    padding: 0;
}
.p-plain * {
    margin: 0;
    padding: 0;
}
strong {
    font-weight: 600;
}
.pointer {
    cursor: pointer;
}
@media (max-width: 991px) {
	h1 {
		font-size: 2rem;
        line-height: 2.5rem;
	}
	h2 {
		font-size: 2rem;
        line-height: 2.5rem;
	}
	h3 {
		font-size: 1.5rem;
        line-height: 2rem;
	}
	h4 {
		font-size: 1.3rem;
        line-height: 1.8rem;
	}
	h5 {
		font-size: 1.1rem;
        line-height: 1.5rem;
	}
}


.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 1.5rem !important;
    text-align: left;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.img-object-fit-cover {
    display: grid; 
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: auto;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.img-object-fit-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    grid-row: 1; 
    grid-column: 1;
}
.opener.default .img-object-fit-cover img {
    min-height: 300px !important;
    object-position: center center !important;
}

.vh-50 {
    height: 50vh;
}
.vh-75 {
    height: 75vh;
}
.min-vh-50 {
    min-height: 50vh;
}
.min-vh-75 {
    min-height: 75vh;
}
.height-100 {
    height: 100px;
}
.height-200 {
    height: 200px;
}
.height-300 {
    height: 300px;
}
.height-400 {
    height: 300px;
}
.height-500 {
    height: 500px;
}
.height-m300 {
    min-height: 300px;
}
.height-m400 {
    min-height: 400px;
}
.height-m500 {
    min-height: 500px;
}
.height-70vh {
    height: 70vh;
}
.height-m70vh {
    min-height: 70vh;
}

@media (max-width: 991px) {
}

/* Share */
.share,
.share .col {
    width: 50px;
    background-color: rgba(255,255,255,1);
}
.share a {
    display: block;
    border: none;
    padding: 0.75rem 0.75rem 0.4rem 0.75rem;
    width: ;
    outline: none;
    text-align: center;
    background-color: rgba(230,230,230,1);
}
.share a:hover {
    background-color: rgba(250,250,250,1);
}
@media (max-width: 991px) {
    .share {
        width: 100%;
    }
}