/*======================
   01.fonts
========================*/
/* @font-face {
    font-family: 'Calibri';
    src: url('../webfonts/Calibri-BoldItalic.eot');
    src: url('Calibri-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Calibri-BoldItalic.woff2') format('woff2'),
        url('../webfonts/Calibri-BoldItalic.woff') format('woff'),
        url('../webfonts/Calibri-BoldItalic.ttf') format('truetype'),
        url('../webfonts/Calibri-BoldItalic.svg#Calibri-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('../webfonts/Calibri-Bold.eot');
    src: url('../webfonts/Calibri-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Calibri-Bold.woff2') format('woff2'),
        url('../webfonts/Calibri-Bold.woff') format('woff'),
        url('../webfonts/Calibri-Bold.ttf') format('truetype'),
        url('../webfonts/Calibri-Bold.svg#Calibri-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('../webfonts/Calibri-Italic.eot');
    src: url('../webfonts/Calibri-Italic.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Calibri-Italic.woff2') format('woff2'),
        url('../webfonts/Calibri-Italic.woff') format('woff'),
        url('../webfonts/Calibri-Italic.ttf') format('truetype'),
        url('../webfonts/Calibri-Italic.svg#Calibri-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('../webfonts/Calibri.eot');
    src: url('../webfonts/Calibri.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Calibri.woff2') format('woff2'),
        url('../webfonts/Calibri.woff') format('woff'),
        url('../webfonts/Calibri.ttf') format('truetype'),
        url('../webfonts/Calibri.svg#Calibri') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
:root{
	--yellow: #ffab1d;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--yellow);
	color: #1F2430;
}
::selection{
	background-color: var(--yellow);
	color: #1F2430;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.4;
	/* font-family: 'Calibri'; */
	font-family: "EB Garamond", serif;
	background-color: #fff;
	color: #1F2430;
	font-weight: 400;
	font-size: 2.4rem;
	text-shadow: 1px 1px 1px rgba(62, 0, 0, 1);
}

ol,
ul {
	list-style: none;
}
a{
	color: inherit;
}
a:hover {
	text-decoration: none;
	color: var(--yellow);
}
p a{
	color: inherit;
}
p a:hover{
	color: #fff;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
h1{
	font-size: 8.2rem;
	font-weight: 700;
	line-height: 1;
}
h2{
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.1;
}
h3{
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.1;
}
h4{
	font-size: 3.2rem;
	font-weight: 700;
}
h5{
	font-size: 2.6rem;
	font-weight: 700;
}
h6{
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 7.0rem;
	height: 7.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 7.0rem;
	height: 7.0rem;
	border-radius: 100%;
	background: var(--yellow);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1.8rem 2.5rem 1.6rem;
	color: #fff;
	border-radius: 0.5rem;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	border: none;
	background-color: var(--yellow);
}
.button:hover{
	background-color: #1F2430;
	color: #fff;
	-webkit-box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.26);
	        box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.26);
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.5rem;
	width: 5rem;
	height: 5rem;
	line-height: 5.2rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #1F2430;
	z-index: 1000;
}

.back-to-top i {
	color: var(--yellow);
}
/*Home area*/
.home_area img{
	border-radius: 1rem;
	margin: 2rem 0;

}

/*footer*/
footer {
	padding: 5rem 0;
	background-color: #1F2430;
	color: #fff;
}
footer a{
	color: #fff;
}
footer h5{
	margin-bottom: 2rem;
}
footer a:hover{
	color: var(--yellow);
}
.copyright{
	text-align: center;
	font-size: 2.1rem;
	color: #a9a9a9;
}
.icon_box{
	margin-top: 2rem;
	margin-bottom: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.icon_box a{
	width: 4.5rem;
	height: 4.5rem;
	font-size: 2.2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: var(--yellow);
	fill: var(--yellow);
	border-radius: 50%;
	background-color: #fff;
}
.icon_box a svg{
	height: 1.6rem;
}
.icon_box a:hover {
	background-color: var(--yellow);
	color: #fff;
	fill: #fff;
}
.icon_box a:not(:last-child){
	margin-right: 0.7rem;
}
.terms {
    text-align: center;
    padding: 6rem 0;
    border-top: .1rem solid #d7cca3;
	background-color: var(--yellow);
}
.terms h2{
	font-size: 4rem;
	font-weight: 700;
	text-decoration: underline;
}
.terms a:hover{
	color: #fff;
}
.terms_banner{
	text-align: center;
	padding: 10rem 0;
	background-color: #ffc1070a;
	border-bottom: .1rem solid #d7cca3;
}
.back_btn{
	font-weight: 600;
	font-size: 2.4rem;
	text-decoration: underline;
	margin-top: 1rem;
	display: block;
}
.terms_sec {
    padding: 10rem 0;
	
}
.terms_sec h2{
	margin-bottom: 3rem;
}
.terms_content h2{
	margin-bottom: 5rem;
}
.terms_content h3{
	margin-bottom: 2rem;
}
.terms_content h4{
	margin: 6rem 2rem 0 0;
}
.terms_content p{
	margin-top: 2rem;
}
.terms_content ul{
	margin-top: 4rem;
	padding-left: 4rem;
}
.terms_content ul li{
	margin: 2rem 0;
	list-style: disc;
}
