
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Merriweather:wght@400&display=swap');

:root {
  --primary-color: #0e125e;
  --secondary-color: #f38324;
  --yellow: #f7b10b;
  --body-color: #141414;
  --light: #f8f8ff;
  --golden-gradient: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
  radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  --serif: 'Merriweather', serif;
  --facebook: #4267B2;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #e72fd2;
  --x-twitter: #262626;
  --linkedin: #0367c3;
  --snapchat: #ffc104;
  --radius: 20px;
}

body {
  color: var(--body-color);
  font: 500 1rem "Roboto Condensed", sans-serif;
  overflow-x: hidden;
}

p {
  line-height: 1.5;
}

a{
  color: inherit;
  text-decoration: none;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.rounded{
  border-radius: 10px !important;
}
.rounded-md{
  border-radius: var(--radius);
}
.rounded-50{
  border-radius: 50px !important;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

img, video, iframe, svg {
  width: 100%;
  display: block;
}

svg:not([fill]) {
  fill: currentColor;
}

.gap-row{
  row-gap: 30px;
}

.gap-form-row{
  row-gap: 10px;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-scale-down {
  object-fit: scale-down;
}

.container-fluid{
    padding-left: 2rem;
    padding-right: 2rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

.icon-circular{
  width: 40px;
  height: 40px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 50%;
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

.icon-circular.sm{
  width: 30px;
  height: 30px;
}

.fa-facebook-f{
	color: var(--facebook);
}
.fa-youtube{
	color: var(--youtube);
}
.fa-whatsapp{
	color: var(--whatsapp);
}
.fa-instagram{
	color: var(--instagram);
}
.fa-x-twitter{
	color: var(--x-twitter);
}
.fa-linkedin-in{
	color: var(--linkedin);
}
.fa-snapchat, .fa-square-snapchat{
	color: var(--snapchat);
}

.icon-circular:hover{
  background-color: var(--body-color);
  color: #fff;
  border-color: transparent;
}

.icon-circular.fa-facebook-f:hover{
	background-color: var(--facebook);
}
.icon-circular.fa-youtube:hover{
	background-color: var(--youtube);
}
.icon-circular.fa-whatsapp:hover{
	background-color: var(--whatsapp);
}
.icon-circular.fa-instagram:hover{
	background-color: var(--instagram);
}
.icon-circular.fa-snapchat:hover{
	background-color: var(--instagram);
}
.icon-circular.fa-linkedin-in:hover{
	background-color: var(--instagram);
}
.icon-circular.fa-x-twitter:hover{
	background-color: var(--x-twitter);
}

i svg{
  width: 16px;
}

.position-relative{
  z-index: 1;
}

.line{
  position: absolute;
  background-color: rgb(0 0 0 / 15%);
}

.line.verticle{
  top: -30px;
  left: calc(50% - .5px);
  width: 1px;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.text-serif {
  font-family: var(--serif);
}

.text-primary{
  color: var(--primary-color) !important;
}
.text-secondary{
	color:var(--secondary-color) !important;
}

.text-dark{
  color: var(--body-bg) !important;
}

.bg-gradient-primary{
  background-color: var(--primary-color);
  background: radial-gradient(circle at 50% 30%, #7a45ff, var(--primary-color));
}

.bg-golden-gradient{
  background-color: var(--secondary-color);
  background-image: var(--golden-gradient);
}

.bg-pattern{
  background: url(../images/linen-seamless-pattern.jpg) center / 20% #fff;
}

.bg-pattern::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 85%);
  z-index: -1;
}

.bg-light{
  background-color: var(--light) !important;
}

.bg-primary-half{
  background-image: linear-gradient(transparent 50%, var(--primary-color) 50%);
}

.bg-primary{
  background-color: var(--primary-color) !important;
}
.bg-secondary{
  background-color: var(--secondary-color) !important;
}

.bg-dark{
    background-color: var(--body-color) !important;
    color: #fff;
}

.bg-yellow{
    background-color: var(--yellow) !important;
}

.bg-image{
  background: center / cover no-repeat;
}

.bg-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 65%);
  z-index: -1;
}

.bg-circle::before{
  content: '';
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 50% -50%, var(--primary-color), var(--body-color)); */
  background-color: var(--primary-color);
  opacity: 0.1;
  clip-path: circle(60% at 90% -20%);
  z-index: -1;
  pointer-events: none;
}

.badge{
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 10px;
}

.badge.bg-light{
  color: var(--body-color);
}

.badge.bg-light:hover{
  background-color: var(--primary-color) !important;
  color: #fff;
}

.videoBtn{
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  transition: all 300ms ease-in-out;
  animation: breathe 800ms alternate infinite;
}

.videoBtn::before{
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 30%);
  z-index: -1;
  transition: all 300ms ease-in-out;
  transition-delay: 100ms;
  animation: breathe 800ms alternate infinite;
}

@keyframes breathe{
  100%{scale: 1.2;}
}

.videoBtn:hover{
  scale: 1.2;
}

.videoBtn:hover::before{
  scale: 1.2;
  border-color: #fff;
}


.scroller{
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--light);
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: var(--yellow);
}



.headingContainer{
  margin-bottom: 2rem;
}

.headingContainer.d-flex{
  justify-content: space-between;
  align-items: center;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.heading.hasline{
  padding-top: 1rem;
}

.heading.hasline::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  border-top: 1px solid var(--primary-color);
}

.decoration-dots {
  display: table;
  width: 56px;
  height: 16px;
}

.heading .h1 {
    font-weight: 200;
}

.heading .h1 strong{
  font-weight: 800;
}

.heading h6{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.heading h4, .heading h5 {
  font-weight: 400;
  line-height: 1.5;
}

.heading > img {
  width: 250px;
  margin-bottom: 1.5rem;
}

.viewmore{
	width:100%;
	margin-top:30px;
}

.viewmore a{
	position:relative;
	display:flex;
	color:var(--body-color);
	align-items:center;
	font-size:14px;
	transition:all 300ms ease-in-out;
}

.viewmore a span{
	margin:0 5px;
}

.viewmore a::before,
.viewmore a::after{
	content:'';
	height:11px;
	width:30px;
	background:url(../images/arrow-right.png) center no-repeat;
	background-size:100%;
	transition:all 300ms ease-in-out;
}

.viewmore a::before{
	width:0;
	opacity:0;
}

.viewmore a:hover{
	color:var(--primary-color);
}

.viewmore a:hover::before{
	opacity:1;
	width:30px;
}

.viewmore a:hover::after{
	opacity:0;
	width:0;
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore.d-flex{
  gap: 10px;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: table;
  padding: 10px 1.5rem;
  min-width: 150px;
  border-radius: 50px;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  transition: all ease-in-out 0.3s;
  overflow: hidden;
  z-index: 1;
}

.readmore button {
  width: max-content;
  background: none;
  border: 0;
}

.readmore .button:hover,
.readmore .button.inverse {
  background-color: var(--secondary-color);
  color: var(--body-color);
}

.readmore .button.bg-golden-gradient:hover {
  background: var(--secondary-color);
}

.readmore .button.stroke{
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: var(--primary-color);
}

.readmore .button.stroke:hover{
  background-color: var(--primary-color);
  color: #fff;
  border-color: transparent;
}

.readmore .button.inverse:hover{
  background-color: var(--yellow);
  color: var(--body-color);
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply{
  mix-blend-mode: multiply;
}

/* custom swiper controls */
div[class^='swiper-button']{
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--body-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 300ms ease-in-out;
}
div[class^='swiper-button bgbwhite']
{
  background: #fff;

}
div[class^='swiper-button']:hover{
  background-color: var(--primary-color) !important;
  color: #fff;
  box-shadow: 0 10px 2rem rgb(0 0 0 / 10%);
}

div[class^='swiper-button']:after{
  color: inherit;
  font-size: 13px;
}

div[class^='swiper-button'].text-secondary{
  border-color: var(--secondary-color);
}

div[class^='swiper-button'].text-secondary:hover{
  background-color: var(--secondary-color);
  color: var(--body-color) !important;
}

.swiper-controls{
  position: relative;
  margin: 2rem auto 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.swiper-controls div[class^="swiper-button"]{
  position: static;
  margin-top: 0;
}

.swiper-pagination{
  bottom: 0 !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */


.form-group {
  margin-bottom: 20px;
}

.form-group > label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

label{
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

.form-control {
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background: none;
  outline: none;
}

.form-control[readonly] {
  background: none;
}

.form-control.form-control-dark{
  border-bottom-color: rgb(255 255 255 / 15%);
  color: #fff;
}

select.form-control.form-control-dark{
  background-color: var(--body-bg);
}

.form-control.form-control-dark::placeholder{
  color: #8f8f8f;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--body-color);
}

.custom-control-inline {
  margin-right: 0;
  padding-left: 0;
  width: 100%;
  display: block;
  position: relative;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-label {
  display: block;
  position: relative;
  padding: 13px 10px 13px 2rem;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  border-radius: 3px;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}

.custom-control-label::after {
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: radial-gradient(#fff 50%, transparent 50%) 50% / 50% 50% no-repeat;
}

.custom-control-label::before,
.custom-control-label::after {
  border-radius: 50%;
  top: 15px;
  left: 10px;
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(249, 1, 1, 0.25);
}

/* customize modal */
.modal-backdrop.show{
  opacity: 1;
  background: rgb(61 22 140 / 85%);
  backdrop-filter: blur(5px);
}
.modal-content{
	border-radius: 10px;
	padding: 1rem;
	background: url(../images/linen-seamless-pattern.jpg) center / 23% #fff;
  position: relative;
  z-index: 1;
}
.modal-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 75%);
  background: radial-gradient(circle at 100% 0%, rgb(255 255 255 / 69%), rgb(232 222 255 / 96%));
  border-radius: 1rem;
  z-index: -1;
}
.modal-body{
  border-radius: 10px;
	padding: 1rem;
	border: 4px double var(--primary-color);
}

.modal-logo{
	width: 180px;
	margin: 0 auto 2rem;
}

button.close{
	position: absolute;
	right: -5px;
	top: -5px;
  background-color: var(--secondary-color);
  border: 0;
	line-height: 1;
  z-index: 1;
}

.modal-title{
	margin-bottom: 1.5rem;
	padding-bottom: 10px;
	font-weight: 500;
  border-bottom: 1px dashed rgb(0 0 0 / 30%);
}
/* customize modal */

/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut{
  transform: scale(0);
  transition: all .8s ease-in-out;
}

.zoomIn{
  transform: scale(1);
}
/*transformation Animation*/

.list {
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}
.list li::marker{
  color: var(--primary-color);
}
