

/* Please ❤ this if you like it! */


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
:root {
  --blue: #ffffff;
  --white: #ffffff;
  --yellow: #756223;
  --purple: #e89dff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
::selection {
  color: var(--yellow);
  background-color: var(--blue);
}
::-moz-selection {
  color: var(--yellow);
  background-color: var(--blue);
}
body{
	background-color: var(--white);
  /* background-image: url('https://assets.codepen.io/1462889/back-page.svg'); */
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}



#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
  }

p{
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.7;
  color: var(--blue);
  margin: 0;
}
.section-fluid-main{
  position: relative;
  display: block;
  width: calc(100% - 40px);
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1050px;
  padding-top: 50px;
  padding-bottom: 90px;
  -ms-flex-item-align: center;
  align-self: center;
  z-index: 3;
}
.section-row{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-pack: center;
  justify-content: center;
}
.section-col{
  position: relative;
  width: 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 15px;
}


span{
  color:#ffeba7;
}

/* #Cursor
================================================== */
.cursor,
.cursor2,
.cursor3{
  position: fixed;
  border-radius: 50%; 
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
  z-index: 4;
}
.cursor{
  background-color: var(--blue);
  height: 0;
  width: 0;
}
.cursor2,.cursor3{
  height: 50px;
  width: 50px;
  transition: all 200ms ease-out;
  background-position: center;
  background-size: 0 0;
}
.cursor2.hover,
.cursor3.hover{
  height: 220px;
  width: 320px;
  border:none;
  border-radius: 8px;
}
.cursor2{
  border: 2px solid var(--blue);
  box-shadow: 0 0 12px rgba(16, 39, 112, 0.2);
}
.cursor2.hover{
  background-size: cover;
  box-shadow: 0 0 0 rgba(16, 39, 112, 0.2);
}
body.img-1-wrap .cursor2,.cursor3{
  background-image: url('https://res.cloudinary.com/dwkyc7esz/image/upload/v1654369986/Screenshot_10_elsvlx.png');
}
body.img-2-wrap .cursor2,.cursor3{
  background-image: url('https://res.cloudinary.com/dwkyc7esz/image/upload/v1654369985/Screenshot_6_mplezx.png');
}
body.img-3-wrap .cursor2,.cursor3{
  background-image: url('https://res.cloudinary.com/dwkyc7esz/image/upload/v1654369984/Screenshot_11_yt9piw.png');
}
body.img-4-wrap .cursor2,.cursor3{
  background-image: url('https://res.cloudinary.com/dwkyc7esz/image/upload/v1654369984/Screenshot_7_l1gcm8.png');
}
body.img-5-wrap .cursor2,.cursor3{
  background-image: url('https://res.cloudinary.com/dwkyc7esz/image/upload/v1654369984/Screenshot_8_euxxjz.png');
}
body.img-6-wrap .cursor2,.cursor3{
  background-image: url('https://res.cloudinary.com/dwkyc7esz/image/upload/v1654370233/Screenshot_13_mrptqt.png');
}
body.logo-wrap .cursor2,.cursor3{
  background-image: none;
  height: 36px;
  width: 36px;
}
body.logo-wrap .cursor2.hover,
body.logo-wrap .cursor3.hover{
  height: 36px;
  width: 36px;
  transform: scale(2) translateX(-25%) translateY(-25%);
  border-radius: 50%;
  background-color: var(--yellow);
}


.hover-target{
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--purple);
  transition: color 250ms ease;
}
.hover-target:before{
  position: absolute;
  content: '';
  height: 0;
  border-radius: 1px;
  bottom: 0;
  left: -10px;
  width: calc(100% + 20px);
  border-radius: 2px;
  display: block;
  background-color: var(--yellow);
  transition: height 250ms ease;
  mix-blend-mode: difference;
  opacity: 0.6;
}
.hover-target:hover:before{
  height: 100%;
}
.hover-target:hover{
  z-index: 5;
  color: var(--yellow);
}

.logo {
	position: fixed;
	top: 25px;
	left: 25px;
	display: block;
	z-index: 1000;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
}
.logo:before {
  display: none;
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.568);
  width: 100vw;
  height: 100vh;
  z-index:-10;
}


