
/********************************************************************
FONT LINK
********************************************************************/
@font-face {
  font-family: myriad;
  src: url(../css/font/MyriadPro-Regular.otf);
}
@font-face {
  font-family: futura-medium;
  src: url(../css/font/Futura-Medium.ttf);
}
@font-face {
  font-family: futura-bold;
  src: url(../css/font/Futura-Bold.ttf);
}


/*VARIABLE*/
:root {

  /********************************************************************
  COLOR SCHEME 
  *********************************************************************/
  --color1: #AACF0D;
  --color2: rgb(206, 255, 0);
  --color3: #009e00;
  --color4: rgb(0, 79, 45);
  --color5:#FBFFEB;

  --white: #ffffff;
  --black: #010300;
  --gray: #C8C8C8;

  /********************************************************************
  FONT FAMILY
  ********************************************************************/
  --default-font: "myriad", serif;
  --heading-font: "futura-medium", serif;

  /********************************************************************
  HEADLINE
  ********************************************************************/
  --headline1: 36px;
  --headline2: 32px;
  --headline3: 28px;
  --headline4: 25px;
  --headline5: 20px;
  --headline6: 18px;

  /********************************************************************
  RESPONSIVE HEADLINE
  ********************************************************************/
  --headline1-sm: 25px;
  --headline2-sm: 22px;
  --headline3-sm: 20px;
  --headline4-sm: 18px;
  --headline5-sm: 18px;
  --headline6-sm: 16px;
}

/********************************************************************
DEFAULT
********************************************************************/
* {
  box-sizing: border-box;
}

/********************************************************************
  1. Use a more-intuitive box-sizing model.
*********************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/********************************************************************
	2. Remove default margin
********************************************************************/
* {
  margin: 0;
  
}

/********************************************************************
	3. Allow percentage-based heights in the application
********************************************************************/
html,
body {
  height: 100%;
  scroll-behavior: smooth;
  font-size: 18px;
  font-family: var(--default-font) !important;

}

/********************************************************************
	Typographic tweaks!
	4. Add accessible line-height
	5. Improve text rendering
********************************************************************/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: var(--color5);
  
}

/********************************************************************
	6. Improve media defaults
********************************************************************/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/********************************************************************
	7. Remove built-in form typography styles
********************************************************************/
input,
button,
textarea,
select {
  font: inherit;
}

/********************************************************************
	8. Avoid text overflows
********************************************************************/

h1,h2,h3,h4,h5,h6{
  text-transform: uppercase;
  padding: 0px;
  margin: 0px;
  font-family: var(--heading-font) !important;
  font-weight: 700;
  color: var(--color3);
 
}

h1 {
  font-size: var(--headline1);
  margin-bottom: 20px;
}

h2 {
  font-size: var(--headline2);
  margin-bottom: 20px;
}

h3 {
  font-size: var(--headline3);
}

h4 {
  font-size: var(--headline4);
  font-weight: 500;
}

h5 {
  font-size: var(--headline5);
  font-weight: 500;
}

h6 {
  overflow-wrap: break-word;
  font-size: var(--headline6);
  font-weight: 500;
}

p {
  font-family: var(--default-font);
  color: var(--black);
  line-height: 1.5rem;
  font-weight: 700;
  font-size: 18px;
  padding: 0px;
  margin: 0px;
  margin-bottom: 10px;
}

.text-shadow{
  text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
}

/********************************************************************
	9. Create a root stacking context
********************************************************************/
#root,
#__next {
  isolation: isolate;
}


.r-rotation{
  position: absolute;
  right: -20px;
}

.l-rotation{
  position: absolute;
  left: -10px;
}

.__parallax{
  background-attachment: fixed;
}

/********************************************************************
LINKS
********************************************************************/
a {
  font-size: 1rem;
  cursor: pointer;
  font-weight: 400;
}

a:link {
  color: var(--white);
  cursor: pointer;
}

a:visited {
  color: var(--white);
  /*text-decoration: underline;
	cursor: auto;*/
}

a:hover {
  color: var(--color2);
  cursor: pointer;
  text-decoration: none;
}

a:active {
  color: var(--white);
  cursor: pointer;
}

a:link:active {
  color: var(--white);
}

a:visited:active {

  color: var(--white);
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
  color: var(--white);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--white);
}


/********************************************************************
BUTTON
********************************************************************/
.__btn-violet {
  background: #06052C;
  border: 1px solid #B279EB;
  padding: 10px 20px;
  color: var(--white) !important;
  transition: .9ms;
  box-shadow: 0px 4px 12px 0px rgba(241, 9, 255, .5);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(241, 9, 255, .5);
  -moz-box-shadow: 0px 4px 12px 0px rgba(241, 9, 255, .5);
}

.__btn-violet:hover {
  background: rgb(239, 84, 76);
  background-color: var(--color2) !important;
  color: var(--white) !important;
  color: rgba(241, 9, 255, .5);
}


.__btn-border {
  background: transparent;
  padding: 10px 20px;
  color: var(--white) !important;
  border: 2px solid var(--color1);
  transition: .9ms;
}

.__btn-border:hover {

  background-color: var(--color2) !important;
  color: var(--white) !important;
}


.__btn-green {
background-color: #00AE8D;
  padding: 10px 20px;
  color: var(--white) !important;
  transition: .9ms;
}

.__btn-green:hover {
  background-color: var(--color2);
  color: var(--white) !important;
  transition: .3s;
}



.fixed-top.scrolled .__btn-white:hover {

  color: var(--white) !important;
  border: 1px solid var(--color2);
  background-color: var(--white);
}


/* RADIUS BOTTOM */
.__btn-radius {
  border-radius: 50px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* BACKGROUND TRANSITIONS */
/* Fade */


/********************************************************************
SHADOW
********************************************************************/
.shadow {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.5);

}

/********************************************************************
SECTION
********************************************************************/
section {
  min-height: 350px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow-x: hidden;
  overflow: hidden;
  background-color: var(--color5);
  position: relative;
}

.section p {
  font-weight: 400;

}
.section h3{
  margin-bottom: 20px;
}

.section h4,
.section h6{
  margin-bottom: 20px;
  color: var(--black);
}

/********************************************************************
    CENTER OBJECT
********************************************************************/
.center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.center-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;

}

.center-start {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;

}

.center-end {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: end;
  
}

.__between{
  display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
      align-content: space-around;
      flex-wrap: wrap;
}


/********************************************************************
NO BREAK WORD
********************************************************************/
span.keeptogether {
  white-space: nowrap;
  font-size: inherit;
}

/********************************************************************
LINE
********************************************************************/
.__horizontal-line {
  background-color: var(--color3);
  display: block;
  width: 100%;
  height: 5px;
}

/********************************************************************
    CONTACT SECTIONS
********************************************************************/
.contact-section {
  min-height: 300px;
  background-image: url("../img/contact-section-bg.png");
  /* The image used */
  background-color: #cccccc;
  /* Used if the image is unavailable */
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  /* Resize the background image to cover the entire container */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}

.contact-section a{
  background-color: var(--color4);
  color: var(--white);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  width: 20%;
  margin: 0;
  font-weight: 900;
}

.contact-section a img{
  margin-right: 10px;
}


.contact-section a:hover{
  background-color: var(--color3);
  color: white;
  transition: 300ms;
}


.contact-section .__box-container{
  background-image: url("../img/contact-section-box-bg.png");
  /* The image used */
  background-color: #cccccc;
  /* Used if the image is unavailable */
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  width: 100%;
  min-height:250px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-radius:100px;
  justify-content: center;
  align-items: center;
}
.contact-section h2 {
  font-size: 40px;
  color: var(--white);
}


.contact-section .__contact{
  margin-top: 20px;
}



.contact-section .__contact a{
  background: rgb(255,145,0);
  background: -moz-linear-gradient(187deg, rgba(255,145,0,1) 0%, rgba(234,66,0,1) 100%);
  background: -webkit-linear-gradient(187deg, rgba(255,145,0,1) 0%, rgba(234,66,0,1) 100%);
  background: linear-gradient(187deg, rgba(255,145,0,1) 0%, rgba(234,66,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff9100",endColorstr="#ea4200",GradientType=1);
  padding: 15px 20px;
  border-radius: 30px;
}




.contact-section .__contact a:hover{
  background: white;
  border: 2px solid var(--color1);
  transition: .1s;
  
  
}


.contact-section p {
  color: var(--color5);
}




/********************************************************************
FOOTER
********************************************************************/
.footer {
  padding-top: 30px;
 
 background-color: var(--black);
}

.footer h6{
  color: black;
  margin-bottom: 20px;
}

footer ul {
    padding-left: 0px;
}

.footer img{
  height: 40px;
}

footer ul li {
  list-style: none;
  font-size: 14px;
  text-align: start;
  margin-bottom: 10px;

}

footer ul li a {
  font-size: 14px;
}

footer ul li a:hover {
  color: var(--color1);
}


.footer p {
  color: var(--color3) !important;
  font-size: 15px;


}
.footer a {
  color: var(--black);
}

.footer a:not([href]):not([tabindex]) {
  color: black;
  text-decoration: none;
}

.footer a:link {
  color: var(--black);
}

.footer a:hover {
  color: var(--color1) !important;
  font-size: 14px;

  text-decoration: underline;

}
.footer a:visited {
  color: var(--black);

}

.footer a.text-white{
  color: black !important;
}


.footer h6{
  color: var(--color3);
  font-size: 15px;
}


footer.__footer1{
  background-color: var(--color5);
  padding: 80px 20px 20px 20px;
  
}


footer.__footer1 .__footer-top p {
  font-weight: 800;
}

footer.__footer1 .__horizontal-line{
  display: block;
  background-color: black;
  height: 2px;
}


/********************************************************************
THANK YOU PAGE and PROBLEM PAGE
********************************************************************/
.thankyou-header {
  position: relative;
  background-image: url("../img/our-commitment-to-innovation-bg.png"); /* The image used */
background-color: var(--color1); /* Used if the image is unavailable */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover; /* Resize the background image to cover the entire container */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 165px; */
  height: 90vh;
  position: relative;
}


.thankyou-header h2 {
  color: var(--white);
  text-align: center;
  margin-top: 0rem;
}


/********************************************************************
ANCHOR POINT - DIRECT LINK
********************************************************************/
.the-anchor {
  position: relative;
  top: 30px;
}


.the-anchor2 {
  position: relative;
  top: -120px;
}

.__lg{

}

.__sm{
  display: none;
}



.wow {
  visibility: hidden;
}


.__logo-mobile{
  display: none;
}



#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 9999;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--white);
  cursor: pointer;

}





.contact-section{
  background-image: url("../img/contact-section-bg.png"); 
  background-color: var(--color5); /* Used if the image is unavailable */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  position: relative;
}




.scroll-up {
	 height: 40px;
	 width: 40px;
	 display: block;
	 /* transform: scaleY(-1); */
	 position: relative;
	 cursor: pointer;
	 transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
}
 .scroll-up svg line {
	 stroke-width: 4;
	 stroke: white;
	 fill: none;
	 stroke-dasharray: 20;
	 -webkit-transition: all 0.4s ease;
	 transition: all 0.4s ease;
}
 .scroll-up:hover svg line.top {
	 -webkit-transform: translateX(-40px);
	 transform: translateX(-40px);
}
 .scroll-up:hover svg line.bottom {
	 -webkit-transform: translateX(40px);
	 transform: translateX(40px);
}
 .scroll-up:hover svg line.left {
	 -webkit-transform: translateY(40px);
	 transform: translateY(40px);
}
 .scroll-up:hover svg line.right {
	 -webkit-transform: translateY(-40px);
	 transform: translateY(-40px);
}
 .scroll-up .left-bar {
	 position: absolute;
	 z-index: 1;
	 background-color: transparent;
	 top: 19px;
	 left: 5px;
	 width: 18px;
	 display: block;
	 transform: rotate(-45deg);
}
 .scroll-up .left-bar:after {
	 content: "";
	 background-color: var(--white);
	 width: 18px;
	 height: 3px;
	 display: block;
	 border-radius: 1px;
	 transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
	 transform-origin: right center;
	 z-index: -1;
}
 .scroll-up .right-bar {
	 position: absolute;
	 z-index: 1;
   background-color: transparent;
	 top: 19px;
	 left: 17px;
	 width: 18px;
	 display: block;
	 transform: rotate(45deg);
	 border-radius: 2px;
}
 .scroll-up .right-bar:after {
	 content: "";
	 background-color: white;
	 width: 18px;
	 height: 3px;
	 display: block;
	 border-radius: 1px;
	 transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
	 transform-origin: left center;
	 z-index: -1;
}
 .scroll-up:hover {
	 transition: all 0.1s;
}
 .scroll-up:hover .left-bar:after {
	 transform: rotate(-10deg);
}
 .scroll-up:hover .right-bar:after {
	 transform: rotate(10deg);
}
 .arrow-up {
	 height: 40px;
	 width: 40px;
	 display: block;
	 border: 1px solid #666;
	 position: relative;
	 cursor: pointer;
	 transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
	 overflow: hidden;
}
 .arrow-slide {
	 left: 0;
	 top: -100%;
	 width: 100%;
	 height: 100%;
	 background: #666;
	 position: absolute;
	 display: block;
	 z-index: 0;
}
 .left-arm {
	 position: absolute;
	 z-index: 1;
	 background-color: transparent;
	 top: 19px;
	 left: 3px;
	 width: 20px;
	 display: block;
	 transform: rotate(-45deg);
}
 .left-arm:after {
	 content: "";
	 background-color: #666;
	 width: 20px;
	 height: 1px;
	 display: block;
	 border-radius: 1px;
	 transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
	 transform-origin: right center;
	 z-index: -1;
}
 .right-arm {
	 position: absolute;
	 z-index: 1;
	 background-color: transparent;
	 top: 19px;
	 left: 17px;
	 width: 20px;
	 display: block;
	 transform: rotate(45deg);
	 border-radius: 2px;
}
 .right-arm:after {
	 content: "";
	 background-color: #666;
	 width: 20px;
	 height: 1px;
	 display: block;
	 border-radius: 1px;
	 transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
	 transform-origin: left center;
	 z-index: -1;
}
 .arrow-up:hover {
	 transition: all 0.1s;
}
 .arrow-up:hover .left-arm:after {
	 transform: rotate(-10deg);
}
 .arrow-up:hover .right-arm:after {
	 transform: rotate(10deg);
}
 .arrow-up:hover .arrow-slide {
	 transition: all 0.4s ease-in-out;
	 transform: translateY(200%);
}


.__padd{
  padding: 10px 30px;
}

.gradient-text {
  background: var(--color4);
  /* background: linear-gradient(304deg, rgba(0, 129, 0, 0.9) 0%,  rgba(31, 223, 9, 0.9) 100%); */
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 64px;
  font-weight: 700;
}

.__lime{
  color: var(--color3);
}

.section-bg1{
  background-image: url("../img/section-bg1.png"); /* The image used */
  background-color: transparent; /* Used if the image is unavailable */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.section-bg2{
  background-image: url("../img/section-bg2.png"); /* The image used */
  background-color: transparent; /* Used if the image is unavailable */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.section-bg3{
  background-image: url("../img/section-bg3.png"); /* The image used */
  background-color: transparent; /* Used if the image is unavailable */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}