/*CSS Table Of Content Ends Here*/
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Moon+Dance&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap');

.animated {
	visibility: hidden;
}
.visible {
	visibility: visible;
}
.gradient {
  background-color: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eeeeee));
  background: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  background: -moz-linear-gradient(top, #ffffff, #eeeeee);
  background: -ms-linear-gradient(top, #ffffff, #eeeeee);
  background: -o-linear-gradient(top, #ffffff, #eeeeee);
}
.grayscale100 {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}
.grayscale0 {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  filter: none;
  -webkit-filter: grayscale(0%);
}
.brdradius{border-radius:100%}
/* General Styles
-------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}
body {
  height: 100%;
  font-family: "Lexend Deca", Roboto, 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  color: #262223;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background: #FFFFFF;
  opacity:0;
}
input, textarea, select, button, submit {
	font-family: "Lexend Deca", Roboto, 'Open Sans', Arial, sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}
a {
  color: #262223;
  text-decoration: none;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
a:hover,
a:focus {
  color: #EBAA00;
  text-decoration: none;
}
a, a:hover, a:focus { text-decoration: none; outline: none !important;}

.displaynone{display:none !important;}


::selection {
    color: #ffffff;
	background:#EBAA00;
    opacity: 1;
}
::-moz-selection {
    color: #ffffff;
	background:#EBAA00;
    opacity: 1;
}

::-webkit-input-placeholder{ /* WebKit browsers */
    color: #000; opacity: 1;
}

:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
    color: #000; opacity: 1;
}

::-moz-placeholder{ /* Mozilla Firefox 19+ */
    color: #000; opacity: 1;
}

:-ms-input-placeholder{ /* Internet Explorer 10+ */
    color: #000; opacity: 1;
}

p {
  margin: 0 0 20px;
}
p:last-child {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
iframe {
  border: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  color: #262223;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Lexend Deca", Roboto, 'Open Sans', Arial, sans-serif;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 21px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 14px;
}
ul,
ol {
  margin-bottom: 20px;
  line-height: 1.3;
}
.list-unstyled i {
  display: inline-block;
  margin-right: 5px;
}
.color-primary {
  color: #262223;
}
.uppercase {
  text-transform: uppercase;
}

section {
  position: relative;
  padding: 50px 0 0;
}
section:first-of-type {
    padding: 200px 0 0;
}

/* Elements
-------------------------*/
.btn-light {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 7px 50px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.btn-light:hover {
  color: #262223;
  text-shadow: none;
  border-color: #fff;
  background: transparent;
}
.btn-light:hover:after {
  height: 1000%;
}
.btn-light:after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 0%;
  width: 100%;
  top: 50%;
  left: 50%;
  background: #fff;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.btn {
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 0;
  border: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background: #dddddd;
}
.btn:hover {
  color: #fff;
  background: #262223;
}
.btn-default {
  color: #fff;
  background: #262223;
}
.btn-primary,
.btn-primary:focus,
.btn-primary:active {
  background: #262223;
}
button,
a {
  border: none;
}
button.close,
a.close {
  position: absolute;
  z-index: 1;
  opacity: 1;
  top: 0;
  right: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  text-align: center;
  color: #999;
  text-shadow: none;
  background: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
button.close:hover,
a.close:hover {
  opacity: 1;
  color: #fff;
  background: #ccc;
}
.btn-lg {
  padding: 15px 20px;
  font-size: 1.1em;
  line-height: 1;
}

/* Navigation
-------------------------*/


/* Footer
-------------------------*/
#footer {
  padding: 30px;
  text-align: center;
}



