/* theme default css */
/* custom fonts */
@font-face {
	font-family: "itcbahuas";
	src: url('../fonts/itc/ITC-Bauhaus-Bold.ttf');
	font-weight: 350;
}
/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');

* {
	transition: 0.3s;
}
span {
	transition: 0s !important;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-size: 16px;
	line-height: 26px;
	color: #1D293F;
	font-weight: 400;
	position: relative;
}
.font-itcbahuas {
	font-family: "itcbahuas";
}
img {
	height: auto;
	max-width: 100%;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}
a,
.button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
a,
button {
	color: #1D293F;
	outline: medium none;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
}
a:focus,
.button:focus {
	text-decoration: none;
	outline: none;
}
a:focus,
a:hover {
	color: #1D293F;
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000;
	margin-top: 0px;
	font-style: normal;
	text-transform: normal;
	font-weight: 700;
	line-height: 1;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 {
	font-size: 70px;
	line-height: 76px;
}
h2 {
	font-size: 64px;
	line-height: 70px;
}
h3 {
	font-size: 48px;
	line-height: 56px;
}
h4 {
	font-size: 36px;
	line-height: 40px;
}
h5 {
	font-size: 24px;
	line-height: 34px;
}
h6 {
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
}
small {
	font-size: 14px;
}
ul {
	margin: 0px;
	padding: 0px;
}
li {
	list-style: none;
}
p {
	font-size: 16px;
	margin-bottom: 0;
	line-height: 26px;
}

/* button style */
.btn {
	background-color: #ff7900;
	border: 1px solid #ff7900;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 40px;
	font-weight: 600;
	margin-bottom: 0;
	padding: 4px 24px;
	border-radius: 8px;
	text-align: center;
	touch-action: manipulation;
	transition: all 0.3s ease 0s;
	vertical-align: middle;
	white-space: nowrap;
}
.btn:hover {
	background-color: #fff;
	color: #ff7900;
    border-color: #ff7900;
}
button:focus, .btn:focus {
    background-color: #ff7900;
    color: #FFFFFF;
    border-color: #ff7900;
	box-shadow: none;
	outline: 0;
}

/* input */
.form-label {
    margin-bottom: 4px;
}
.form-control,
.form-select {
	border-radius: 4px;
	padding: 8px 10px;
}
.form-control:focus,
.form-select:focus {
	border-color: #ced4da;
	box-shadow: none;
}

/* bootstrap override */
.container {
	max-width: 1280px;
}

/* animation */
.up-down-anm {
	z-index: 0;
	animation: upAndDown 4s infinite;
}
@keyframes upAndDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.up-down-anm2 {
	z-index: 0;
	animation: upAndDown 3s infinite;
}
@keyframes upAndDown {
    0%, 100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0);
    }
}

.accordion-button:focus {
	box-shadow: none;
}

/* select2 design */
.banner-search-box .select2-container .select2-selection--single {
	height: 35px !important;
	border: 0 !important;
}
.select2-dropdown {
	border: 1px solid #aaa !important;
}
.banner-search-box .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 28px !important;
	padding-left: 0 !important;
	color: #6b6b6b !important;
}
.banner-search-box .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 2px !important;
}
.select2-search__field {
	outline: 0 !important;
}
