/*--------------------------------------*/

/* Fonts
/*--------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body,
html,
header,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
ul,
li,
p,
section,
main,
nav{
	margin:0px;
	padding:0px;
	display:block;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
.navbar-toggler:focus,
button:focus,
.btn-close:focus,
.btn-check:focus+.btn,
.btn:focus,
.accordion-button:focus,
.form-check-input:focus,
.form-control:focus,
.page-link:focus{
	box-shadow: none;
}
body{
	overflow-x: hidden;
}
img{
	max-width: 100%;
	height:auto;
	vertical-align: middle;
}
.navbar-toggler{
	border: 0;
}
.z-index-9{
	z-index: 9;
}
.cursor-pointer{
	cursor: pointer;
}
.centerflex{
	display: flex;
	align-items: center;
	justify-content: center;
}
.alignflex{
	display: flex;
	align-items: center;
}
.display-table {
  width: 100%;
  height: 100%;
  display: table;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
.text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/* Fonts */
:root {
	--font-default: "Roboto", sans-serif;
}
/* Colors */
:root {
	--color-default: #666666;
	--color-primary: red;
	--color-secondary: #eca71e;
}
/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	line-height: 1.5;
	font-family: var(--font-default);
	color: var(--color-default);
}
a,
i{
	transition: .3s;
}
a {
	color: #454545;
	text-decoration: none;
}
a:hover {
  color: var(--color-default);
}
.bg-image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.img-border{
    height: 100%;
    padding: 10px;
    background-color: var(--color-primary);
}
.img-border img{
	height: 100%;
}
@media (max-width: 767.98px){
	.img-border{
		height: auto;
		margin-bottom: 30px;
	}
}

.image-angle {
    position: relative;
    display: block;
}
.image-angle:before {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 16px solid #fff;
    border-right: 16px solid rgba(0, 0, 0, 0);
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0px;
	padding: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .3);
	z-index: -1;
}
.seperator{
	padding: 60px 0;
	overflow: hidden;
}
.color-default{
  color: var(--color-default);
}
.color-primary{
  color: var(--color-primary);
}
.bgcolor-default{
	background-color: var(--color-default);
}
.bgcolor-primary{
	background-color: var(--color-primary);
}
.section-bg{
    background-color: #f5f5f5;
}
/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6{
	font-family: "EB Garamond", serif;
    font-weight: 600;
    font-style: italic;
}
/*--------------------------------------*/

/*Heading & Breadcrumb
/*--------------------------------------*/
.heading {
	text-align: center;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 10px;
}
.heading h2{
	font-size: 50px;
    font-weight: 700;
}
.heading::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
	right: 0;
    bottom: 0;
	margin: 0px auto;
    background-color: var(--color-default);
}

.breadcrumb-section {
	height: 250px;
	display: flex;
    align-items: center;
	justify-content: center;
    text-align: center;
}
.breadcrumb-text h2 {
	font-size: 60px;
	color: #FFFFFF;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.breadcrumb-text .breadcrumb .breadcrumb-item a{
	color: #FFFFFF;
}
.breadcrumb-text .breadcrumb .breadcrumb-item.active {
	color: #bdbdbd;
}
.breadcrumb-text .breadcrumb .breadcrumb-item+.breadcrumb-item::before{
	content: var(--bs-breadcrumb-divider, ">");
	color: #FFFFFF;
}
/*--------------------------------------*/

/*Button
/*--------------------------------------*/
.btn{
	font-size: 15px;
	font-weight: 500;
    letter-spacing: 1px;
	text-transform: uppercase;
	border: 0;
	border-radius: 0;
	padding: 15px 35px;
	transition: .3s;
	color: #FFFFFF;
}
.btn.btn-default{
	background-color: var(--color-primary);
}
.btn.btn-default:hover {
	color: #FFFFFF;
	background-color: var(--color-default);
}
.btn.btn-primary {
	background-color: blue;
}
.btn.btn-primary:hover {
	background-color: var(--color-secondary);
}

.slick-dotted.slick-slider{
	margin-bottom: 0;
}
.slick-dots{
	bottom: -40px;
}
.slick-dots li{
	margin: 0;
}
.slick-dots li button:before {
	background-color: var(--color-default);
	content: '';
	opacity: 1;
	border-radius: 50%;
	width: 11px;
	height: 11px;
}
.slick-dots li button:hover:before,
.slick-dots li.slick-active button:before{
  background-color: var(--color-primary);
  opacity: 1;
}
/*--------------------------------------*/

/*Contact Form
/*--------------------------------------*/
.form .form-group {
    margin-bottom: 16px;
}
.form .form-control{
	height: 60px;
    border-radius: 0;
}
.form textarea.form-control{
	height: 245px;
}

.form .custom-file-button input[type=file]::-webkit-file-upload-button {
	display: none;
}
.form .custom-file-button input[type=file]::file-selector-button {
	display: none;
}
.form .custom-file-button label {
	background-color: var(--color-default);
	max-width: 150px;
	color: #FFFFFF;
	justify-content: center;
}
.form .custom-file-button:hover label {
	background-color: var(--color-secondary);
	cursor: pointer;
}
/*--------------------------------------*/

/*Scroll top button
/*--------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--color-default);
	color: #FFFFFF;
	width: 44px;
	height: 44px;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #FFFFFF;
}
.scroll-top i {
	font-size: 20px;
	line-height: 0;
}
.scroll-top:hover {
	color: #FFFFFF;
	background-color: var(--color-primary);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------*/
