
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                #FFFFFF;
  --primary-color:              #0D64FF;
  --section-bg-color:           #e6e6e6;
  --dark-color:                 #000000;
  --grey-color:                 #000;
  --p-color:                    #000;

  --body-font-family:           'General Sans', sans-serif;

  --h5-font-size:               24px;
  --p-font-size:                20px;
  --copyright-text-font-size:   16px;
  --product-link-font-size:     14px;
  --custom-link-font-size:      12px;

  --font-weight-thin:           100;
  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
    background: var(--white-color);
    font-family: 'General Sans', sans-serif;
    position: relative;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: 64px;
  line-height: normal;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  color: #000;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

.title-principale{
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 10%;
  margin-top: 6%;
  margin-bottom: 0%;
  font-size: 65px;
}

.title-second{
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 10%;
  margin-top: 2%;
  margin-bottom: 0%;
  font-size: 40px;
}

.mentions{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 10%;
  font-size: 20px;
}

.title-principale1{
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 10%;
  margin-top: 6%;
  margin-bottom: 0%;
  font-size: 40px;
}

.title-projets{
  text-transform: uppercase;
  font-size: 65px;
  color: #fff;
}

.title-projets1{
  text-transform: uppercase;
  font-size: 65px;
  color: #000;
  line-height: 30px;
}

.title-maj{
  text-transform: uppercase;
  font-weight: 900;
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.text-primary {
  color: #fff !important;
  font-size: 18px;
  text-transform: uppercase;
}

.text-second {
  color: #fff !important;
  font-size: 26px;
  text-transform: uppercase;

}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: #000;
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}

.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 105%;
  transition: all 0.3s;
  line-height: normal;
  scale: 1.8;
  rotate: -45deg;
}

.taille{
  width: 300px;
  margin-bottom: 30px;
}
.taille1{
  width: 200px;
  padding-bottom: 30px;
}

.custom-link:hover i {
  opacity: 1;
  left: 101%;
}

.lead {
  font-size: 1.5rem;
  font-weight: var(--font-weight-thin);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -23px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}

/*---------------------------------------
  CUSTOM BUTTON & ICON              
-----------------------------------------*/
.custom-btn {
  background: var(--dark-color);
  border-radius: 50px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  text-transform: uppercase;
  padding: 16.50px 20px;
}

.social-btn {
  background: transparent;
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  text-transform: none;
}

.social-btn:hover {
  border-color: transparent;
}

.cart-form-select {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cart-btn {
  border-radius: 0;
  width: 100%;
  font-size: var(--product-link-font-size);
}

.custom-btn:hover,
.slick-slideshow .custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-icon {
  color: var(--p-color);
  font-size: 24px;
}

.custom-icon {
  display: inline-block;
  vertical-align: middle;
}

.bi-bag.custom-icon {
  font-size: 17px;
}

.featured-icon {
  color: var(--grey-color);
  font-size: 52px;
}

/*---------------------------------------
  DIV SEPARATOR               
-----------------------------------------*/
.div-separator {
  position: relative;
}

.div-separator::before {
  content: "";
  height: 1px;
  background: var(--grey-color);
  display: block;
  width: 100%;
}

.div-separator span {
  position: absolute;
  top: 50%;
  margin-left: -22.5px;
  left: 50%;
  text-align: center;
  background: var(--white-color);
  margin-top: -11px;
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  width: 35px;
  text-transform: uppercase;
}

/*---------------------------------------
  FULL IMAGE               
-----------------------------------------*/
.full-image-img {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  bottom: -120px;
  min-width: 650px;
}

@media (min-width: 1600px) {
  .full-image-img {
    bottom: -200px;
  }
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/
.navbar {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 10px 0;
  z-index: 2;
  will-change: transform;
  transition: transform 300ms linear;
}

.navbar span, h2 span, h4 span {
	color: var(--primary-color);
}

.navbar.headroom--not-top {
  padding: 20px 0;
}

.headroom--pinned {
  transform: translate(0, 0);
}

.headroom--unpinned {
  transform: translate(0, -150%);
}

.navbar-brand {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-light);
  margin: 0;
  padding: 0;
}

.navbar-brand img{
  max-width: 150px;
  scale: 1;
  margin-bottom: 5px;
}


.navbar-expand-lg .navbar-nav .nav-link {
  display: inline-block;
  padding: 0;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.nav-link {
  color: #000;
  font-size: 16px;
  position: relative;
}

.navbar .nav-link::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0D64FF;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  transform: translateX(-10px);
}


.navbar .nav-link.active::after, 
.navbar .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--primary-color);
}

.nav-link:focus, 
.nav-link:hover {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url(../images/img-home3.jpg);
  position: relative;
  overflow: hidden;
}

.site-header.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.site-header.section-padding-img {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}



/*---------------------------------------
  SLICK SLIDESHOW               
-----------------------------------------*/
@media (min-width: 992px) {
  .slick-slideshow {
    height: 100vh;
  }
}

.slick-slideshow {
  margin-top: 86px;
}

.slick-title {
  color: var(--white-color);
}

.slick-custom {
  position: relative;
}

.slick-custom img {
  width: 100%;
  object-fit: cover;
}

.slick-bottom {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-bottom .container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}

.slick-overlay {
  background: linear-gradient(to top, #000, transparent 120%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slick-slideshow .custom-btn {
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding-right: 32px;
  padding-left: 32px;
}

@media (min-width: 576px) {
  .slick-slideshow .slick-dots {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .slick-slideshow .slick-dots {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .slick-slideshow .slick-dots {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .slick-slideshow .slick-dots {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .slick-slideshow .slick-dots {
    max-width: 1320px;
  }
}

.slick-slideshow .slick-dots {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  margin: 0 auto;
  padding: 0;
}

.slick-slideshow .slick-dots li {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px;
  padding: 5px;
  margin-left: auto;
  cursor: pointer;
}

.slick-slideshow .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  outline: none;
  height: 0;
}

.slick-slideshow .slick-dots li:hover,
.slick-slideshow .slick-dots .slick-active {
  background: var(--white-color);
}

/*---------------------------------------
  CUSTOM CIRCLE IMAGES               
-----------------------------------------*/

.custom-circle-image {
  border-radius: 100px;
  width: 55px;
  height: 55px;
}

.custom-circle-image.team-image {
  width: 85px;
  height: 85px;
}

/*---------------------------------------
  TESTIMONIAL               
-----------------------------------------*/
.slick-testimonial .slick-list,
.slick-testimonial .slick-track {
  height: 100%;
}

.slick-testimonial {
  margin: auto;
}

.slick-testimonial-caption {
  quotes: '❝' '❞';
  position: relative;
  padding: 5rem 7rem;
}

.slick-testimonial i{
  scale: 4;
  color: #0D64FF;
  margin-left: -40px;
  margin-top: -800px;
}

.slick-testimonial-caption::before {
  display: inline-block;
  color: var(--primary-color);
  font-family: auto;
  font-size: 100px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-testimonial .slick-dots {
  text-align: center;
}

.slick-testimonial .slick-dots li {
  background: var(--grey-color);
  display: inline-block;
  vertical-align: top;
  width: 16%;
  height: 1px;
}

.slick-testimonial .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.slick-testimonial .slick-dots li:hover,
.slick-testimonial .slick-dots .slick-active {
  background: var(--dark-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.featured {
  background: var(--section-bg-color);
}

/*---------------------------------------
  ABOUT               
-----------------------------------------*/
.about .nav-pills .nav-item {
  width: 100%;
}

.about{
  margin-top: -30px;
  margin-bottom: -30px;
}

.featured-product{
  margin-top: 40px;
}

.about .nav-pills .nav-link {
  color: #000;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-left: 1px solid #000;
  border-radius: 0;
  padding-right: 0;
  text-transform: uppercase;
}

.about .nav-pills .nav-link:hover,
.about .nav-pills .nav-link.active, 
.about .nav-pills .show>.nav-link {
  background: transparent;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

.uppercase{
  text-transform: uppercase;
}

/*---------------------------------------
  FAQ ACCORDION               
-----------------------------------------*/
.accordion-item {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: #0D64FF;
  font-weight: 900;
}

button:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
  color: #0D64FF;
  font-weight: 900;
}

.accordion-body {
  border-top: 1px solid rgba(0,0,0,.125);
}

.accordion-button {
  font-size: 1.5rem;
  font-weight: 900;
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 0;
}

.accordion-body {
  padding: 2rem 0;
}

/*---------------------------------------
  TEAM MEMBERS               
-----------------------------------------*/
.team {
  background: var(--grey-color);
}

.team-thumb {
  background: var(--white-color);
  position: relative;
  border-radius: .25rem;
  padding: 42px 32px;
}

.team-info {
  width: 100%;
}

.custom-modal-btn {
  background: var(--grey-color);
  color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 32px;
  width: 42px;
  height: 42px;
}

.modal-body {
  padding: 4rem;
}

.modal-header {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  margin: 32px;
}

#cart-modal .modal-header .btn-close {
  z-index: 2;
  margin: 22px;
}

#cart-modal .modal-header {
  border-bottom: 0;
  padding: 0;
}

#cart-modal .modal-footer {
  padding: 2rem 4rem;
}

/*---------------------------------------
  SKILL - PROGRESS BAR               
-----------------------------------------*/
.skill-thumb strong {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 18px;
}

.skill-thumb span {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.skill-thumb .progress {
  background: #0D64FF;
  box-shadow: none;
  border-radius: 100px;
  height: 1px;
  margin-bottom: 16px;
}

.skill-thumb .progress .progress-bar-primary {
  background: var(--grey-color);
}

/*---------------------------------------
  PRODUCT               
-----------------------------------------*/
.front-product {
  background: #0D64FF;
}

.front-product p{
  text-align: justify;
  font-size: 20px;
}
.front-product1 {
  background: black;
}

.front-product1 p{
  text-align: justify;
  font-size: 20px;
}

.front-product2{
  background-color: #fff;
  margin-top: 100px;
  margin-bottom: 100px;
}

.front-product2 p{
  text-align: justify;
  font-size: 20px;
  color: #000 !important;
}

.front-product2 a{
  color: #000 !important;
}

.front-product3{
  background-color: #fff;
  margin-top: 100px;
  margin-bottom: 100px;
}

.front-product3 p{
  text-align: justify;
  font-size: 20px;
  color: #000 !important;
}

.front-product3 a{
  color: #000 !important;
}

.product-thumb {
  background: var(--white-color);
  position: relative;
  transition: all 0.5s ease-out;
  margin-bottom: 30px;
}

.product-image {
  transition: all 0.5s ease-out;
}

.product-thumb:hover .product-image {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.padding{
  padding-top: 50px;
}

.product-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.product-info {
  padding: 30px 20px;
}

.product-description,
.product-cart-thumb {
  padding: 0 20px;
}

.product-description span{
  white-space: nowrap;
}

.product-icon {
  color: var(--white-color);
}

.product-title-link {
  color: var(--dark-color);
}

.product-additional-link {
  display: inline-block;
  vertical-align: top;
  font-size: var(--product-link-font-size);
  margin-top: 32px;
  margin-right: 12px;
}

.product-alert {
  background: var(--white-color);
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  padding: 3px 10px;
}

.product-p {
  font-size: var(--product-link-font-size);
}

.space{
  margin-top: 30px;
}

.view-all {
  text-transform: uppercase;
  color: var(--p-color);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  border-bottom: 2px solid var(--grey-color);
  padding-bottom: 6px;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-color: var(--grey-color);
  font-weight: var(--font-weight-normal);
  border-radius: 0px !important;
}

.form-floating>label {
  color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.contact-form button[type='submit'] {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
}

.contact-form button[type='submit']:hover {
  background: #0D64FF;
  transition: all 0.4s ease-out;
  border: 1px solid #0D64FF;
  color: #fff;
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/

footer {
  background-image: url(../images/img-footer.png);
  background-size: cover;
	padding: 0px 0px;
	padding-top: 80px;
	color: #fff;
  padding-bottom: 40px;
}

footer h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 35px;
}
footer p {
	color: #fff;
}

footer ul.social-icons {
	margin-top: 25px;
}

footer ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
}

footer ul.social-icons li:last-child {
	margin-right: 0px;
}

footer ul.social-icons li a {
	width: 34px;
	height: 34px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	background-color: #fff;
	color: #000;
	border-radius: 50%;
	transition: all 0.3s;
}

footer ul.social-icons li a:hover {
	background-color: #0D64FF;
  color: #fff;
}

footer ul.menu-list li {
	margin-bottom: 13px;
  list-style-type: none;
  margin-left: -30px;
}

footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}

footer ul.menu-list li a {
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}

footer ul.menu-list li a:hover {
	color: #0D64FF;
}






footer .contact-form{
  width: auto;
}

footer .contact-form input {
	border-radius: 0px;
  border: 1px solid #fff !important;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #fff!important;
	background-color: transparent;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	background-color: transparent;
  border: 1px solid #fff !important;
  color: #fff !important;
}

footer .contact-form textarea {
	border-radius: 0px;
  border: 1px solid #fff !important;
	height: 120px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #fff !important;
	background-color: transparent;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
  color: #fff !important;
	background-color: transparent;
  border: 1px solid #fff !important;
}

footer .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #fff;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}
footer .contact-form ::placeholder {
  color: #fff;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: transparent;
  border: 1px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 0px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #0D64FF;
}


.sub-footer {
	background-color: transparent;
	text-align: center;
  margin-top: 25px;
  margin-bottom: -40px;
}

.sub-footer p {
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.5px;
  font-size: 16px;
}

.sub-footer a {
	color: #fff;
}


.page-heading {
	text-align: center;
	background-image: url(../images/page-heading-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}

.page-heading h1 {
	text-transform: capitalize;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
}

.page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: #0D64FF;
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 4px;
  margin-right: 15px;
}



.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }

  .title-projets{
    font-size: 40px;
  }
  .title-projets1{
    font-size: 40px;
  }
  .title-principale{
    font-size: 40px;
  }
  .front-product p{
    font-size: 20px;
  }
  .front-product1 p{
    font-size: 20px;
  }
  .service-item .down-content p {
    margin-bottom: 20px;
    color: #fff;
    text-align: justify;
    font-size: 20px;
  }
  .titlehome {
    font-family: 'General Sans', monospace;
    font-size: 26px !important;
  }
  .title-faq h1 {
    color: #fff;
    font-size: 45px !important;
  }
  .title-page h1 {
    font-size: 40px !important;
    margin-left: 15%;
  }
  .title-page h1 span{
    font-size: 12px !important;
    margin-left: 2px;
  }
  .custom-link1 i {
    position: absolute;
    opacity: 1 ;
    bottom: 0;
    left: 76% !important;
    transition: all 0.3s;
    line-height: normal;
    scale: 1.8;
    rotate: -45deg;
  }
  
  .custom-link1:hover i {
    opacity: 1;
    left: 71% !important;
  }

  .custom-link2 i {
    display: none;
  }
  



  .service-item .down-content {
    background-color: #0D64FF;
    padding: 30px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-right: 15%;
  }

  .text2 {
    font-size: 29px !important;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
    margin-bottom: 0;
  }
  .big-font{
font-size: 22px !important;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .lead {
    font-size: 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-top: 1rem;
  }

  .site-header {
    background-position: bottom;
  }

  #cart-modal .modal-header .btn-close {
    margin: 22px 14px;
  }

  .custom-btn {
    font-size: 14px;
    padding: 13.5px 20px;
  }

  .slick-slideshow .custom-btn {
    padding-right: 27px;
    padding-left: 27px;
  }

  .social-login,
  .div-separator {
    width: 75% !important;
  }

  #cart-modal .modal-footer .row {
    width: 100% !important;
  }

  .site-header.section-padding,
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .site-header-image.section-padding {
    padding-bottom: 0;
  }

  .header-info {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .header-image {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }

  .slick-testimonial-caption {
    padding: 6rem 3rem 4rem 3rem;
  }

  .slick-slideshow .slick-dots li {
    width: 25px;
    height: 25px;
  }

  .modal-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .modal-body {
    padding: 2rem;
  }

  #cart-modal .modal-footer {
    padding-right: 0;
    padding-left: 0;
  }

  #cart-modal .modal-body {
    padding: 4rem 2rem 2rem 2rem;
  }

  .full-image-img {
    bottom: 0;
  }
}

































.icon{
  margin-left: 10px;
  margin-right: 10px;
}

.icon i{
  scale: 1.5;
  color: #000;
}

.icon i:hover{
  color: #0D64FF;
  transition: all 0.5s ease-out;
}

.icon-turn i{
  transform: rotate(180deg);
}





.text5{
  font-size: 20px;
  text-align: justify;
}































































@media only screen and (max-width: 388px) {
    
  .big-font {
      font-size: 32px;
  }
  .norm-font {
      font-size: 8px;
  }
  .mobile-hide {
      display: none;
  }
  .mobile-big-icn {
      font-size: 15px;
  }
  .mobile-big-icn {
      font-size: 21px;
  }
  /* xxs */
}

@media only screen and (min-width: 389px) and (max-width: 576px) {
  
  .big-font {
      font-size: 34px;
  }
  .norm-font {
      font-size: 10px;
  }
  .mobile-hide {
      display: none;
  }
  .mobile-big-icn {
      font-size: 20px;
  }
  

  /* xs */
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  
  .big-font {
      font-size: 36px;
  }
  .norm-font {
      font-size: 12px;
  }
  .mobile-hide {
      display: none;
  }
  .mobile-big-icn {
      font-size: 19px;
  }
  /* sm */

}


@media only screen and (min-width: 769px) and (max-width: 921px) {
  
  .big-font {
      font-size: 42px;
  }
  .norm-font {
      font-size: 15px;
  }
  .mobile-big-icn {
      font-size: 15px;
  }
  .title-maj{
    font-size: 16px !important;
  }
  /* md */
}

@media only screen and (min-width: 769px) and (max-width: 1199px) {
  .service-item .place1 img{
    display: none;
  }
  .service-item .place2 img{
    display: none;
  }
  .service-item .place3 img{
    display: none;
  }
  footer .contact-form{
    width: 180px;
  }
  .title-maj{
    font-size: 18px !important;
  }
  .taille1{
    width: 160px;

  }
}

@media only screen and (min-width: 922px) and (max-width: 1199px) {
  
  .big-font {
      font-size: 48px;
  }
  .norm-font {
      font-size: 16px;
  }
  .mobile-big-icn {
      font-size: 15px;
  }
  /* lg */
}

@media only screen and (min-width: 1200px) {
  
  .big-font {
      font-size: 56px;
  }
  .norm-font {
      font-size: 18px;
  }
  .mobile-big-icn {
      font-size: 17px;
  }
  /* xl */
}


















.free-quote {
  background-image: url();
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0D64FF;
  background-size: cover;
  padding: 100px 0px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.free-quote .section-heading {
  margin-bottom: 60px;
}

.free-quote .section-heading h6,
.free-quote .section-heading h4 {
  color: #fff;
}

.text-blue{
  color: #fff !important;
}

.free-quote .section-heading .line-dec {
  margin: 0 auto;
  background-color: #fff;
}

.free-quote form {
  background-color: #0D64FF;
  display: inline-block;
  width: 100%;
  min-height: 80px;
  border-radius: 0px;
  position: relative;
  z-index: 1;
}


.free-quote form button {
  width: 89.5%;
  height: 80px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  outline: none;
  border: none;

  background-color: #0D64FF;
  font-size: 15px;
  color: white;
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.free-quote form button:hover{
  background-color: #fff;
  color: #0D64FF;
}













.services {
	margin-top: 25px;
  margin-bottom: 150px;
}

.service-item .down-content {
	background-color: #0D64FF;
	padding: 30px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-item .down-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
  color: #fff;
}

.service-item .place1 img{
  width: 110px;
  position: absolute;
  margin-left: 220px;
  margin-bottom: 80px;
}

.service-item .place1{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.service-item .place2 img{
  width: 110px;
  position: absolute;
  margin-left: 220px;
  margin-bottom: 100px;
}

.service-item .place2{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.service-item .place3 img{
  width: 110px;
  position: absolute;
  margin-left: 220px;
  margin-bottom: 80px;
}

.service-item .place3{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.service-item .down-content p {
	margin-bottom: 20px;
  color: #fff;
  text-align: justify;
}



































.animation-blob {
  background-image: url(../images/img-home.png);
  background-size: cover;
   background-repeat: no-repeat;
  --text-color-dark: white;
  --blob-gradient-dark: linear-gradient(to right, #4c7ed3, #0D64FF);
  --blur-opacity-dark: 0.9;
}

#interactive-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--background-color-dark);
  margin-top: 0;
}


#blob {
  background-color: white;
  height: 15vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blob-gradient-dark);
  animation: rotate 20s infinite;
  opacity: var(--blur-opacity-dark);
  z-index: 1;
}


.titlehome {
  font-family: 'General Sans', monospace;
  font-size: 70px;
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 clamp(1rem, 2vw, 3rem);
  border-radius: clamp(0.4rem, 0.75vw, 1rem);
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}

section {
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}








.cursor {
  position: fixed;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
  mix-blend-mode: normal;
  background-color: rgba(0, 0, 0, 0.825);
  z-index: 10000;
  height: 25px;
  width: 25px;
  transition: all 300ms ease-out;
}
























.container2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 80vh;
  margin-top: -5%;
  margin-left: 10%;
  margin-bottom: 0%;
  margin-right: 10%;
}

.container3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 80vh;
  margin-top: 0%;
  margin-left: 10%;
  margin-bottom: 0%;
  margin-right: 10%;
}

.text2 {
  font-size: 50px;
  letter-spacing: -.01em;
  width: 100%;
  color: rgb(182, 182, 182, 0.2);
  background: #fff no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(.1,.5,.5,1) 0.5s;
  

  border-bottom: 1px solid #0D0D0D;
  border-radius: 0%;
  margin-top: -10px;
  
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.text3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0D64FF;
  color: #0D0D0D;
  
  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  transform-origin: center;
  transition: all cubic-bezier(.1,.5,.5,1) 0.4s;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text2:hover > span {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.button-services {
  text-decoration: none;
  color: #fff;
}

.button-services:hover {
  text-decoration: none;
  color: #fff;
}


















































.container, .sub-container-1, .sub-container-2, .sub-container-3 {
  display: flex;
  justify-content: center;
}

.card {
  background: #222;
  background-image: linear-gradient(to bottom, #111, #222);
  border-radius: 10px;
  box-shadow: -15px 5px 20px rgba(0, 0, 0, .7);
  width: 10rem;
  height: 15rem;
  padding: 1rem;
}

.sub-container-1, .sub-container-2, .card-4 {
  position: relative;
  left: -2rem;
}

.card__title {
  font-weight: 600;
  color: #bbb;
  margin-top: 1rem;
}

.progress-bar {
  background: #333;
  border-radius: 3px;
  width: 100%;
  height: 3px;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.circle {
  background: #333;
  border-radius: 50%;
  color: #555;
  display: flex;
  font-size: small;
  justify-content: center;
  align-items: center;
  margin: 1.5rem auto 1rem auto;
  width: 7rem;
  height: 7rem;
}

.progress-bar::after {
	border-radius: 3px;
	background: rgb(0,255,210);
  background: linear-gradient(90deg, rgba(0,255,210,1) 5%, rgba(255,175,0,1) 95%);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	width: 70%;
  transform: translatex(-110%);
  transition: transform .4s ease;
}

.card:hover .progress-bar::after{
  transform: translatex(0);
}

.card:hover {
  transform: translatey(-1rem) scale(1.05);
}

.card-1:hover + .sub-container-1 {
  transform: translatex(2.3rem);
}

.card-2:hover + .sub-container-2 {
  transform: translatex(2.3rem);
}

.card-3:hover + .card-4 {
  transform: translatex(2.3rem);
}

.card, .sub-container-1, .sub-container-2 {
  transition: transform .3s ease;
}






















































































.title-faq {
  background-image: url(../images/img-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'General Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.struc{
  display: flex;
  flex-direction: column;
}

.struc p{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-top: 100px;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.title-faq span {
  font-size: 45px;
}

.title-faq h1 {
  color: #fff;
  margin-top: 100px;
  margin-bottom: 60px;
  font-size: 65px;
  font-weight: 900;
  line-height: 0.9;
  transform: rotate(-8deg) skew(-15deg);
  text-transform: uppercase;
}






.title-page {
  background-image: url(../images/img-home.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'General Sans', sans-serif;
  display: flex;
  min-height: 100%;
}

.struc1{
  display: flex;
  flex-direction: column;
}

.title-page h1 {
  color: #fff;
  margin-top: 150px;
  margin-bottom: 150px;
  font-size: 65px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  margin-left: 15%;
}

.title-page h1 span{
  font-size: 16px;
  margin-left: 2px;
}



.title-faq1 {
  background-image: url(../images/img-background2.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'General Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.title-faq2 {
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'General Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.title-faq2 p{
  color: #0D64FF !important;
}


















.custom-link1 {
  color: #fff;
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.custom-link1 i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 70%;
  transition: all 0.3s;
  line-height: normal;
  scale: 1.8;
  rotate: -45deg;
}

.custom-link1:hover i {
  opacity: 1;
  left: 65%;
}

.custom-link2 {
  color: #fff;
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.custom-link2 i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 59%;
  transition: all 0.3s;
  line-height: normal;
  scale: 1.8;
  rotate: -45deg;
}

.custom-link2:hover i {
  opacity: 1;
  left: 57.2%;
}
















































































.creative-cards{
    padding: 60px 0;
    margin-bottom: 60px;
    position: relative;
}
.creative-cards .container {
    max-width: 1320px;
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
}
.creative-cards .container .row{
    display: flex;
    flex-wrap: wrap;
}
.creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 33.33333333%;
    text-align: center;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.card-details {
    width: 80%;
    margin: auto;
    position: relative;
    transition: .3s ease-in-out;
}
.card-details:before {
    content: "";
    width: 190px;
    height: 380px;
    background: rgb(182, 182, 182, 0.1);
    position: absolute;
    left: 55%;
    top: 52%;
    transform: translate(-50%, -50%) skew(-15deg, 0deg);
    z-index: -1;
    transition: .3s ease-in-out;
    border: 1px solid transparent;
}
.card-details:hover:before{
    background-color: #f0f0f0;

}
.card-icons {
    width: 140px;
    height: 150px;
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icons:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid;
    width: 100%;
    height: 100%;
    transform: skew(-15deg, 0deg);
    background: #fff;
    border-color: #0D64FF;
    transition: .3s ease-in-out;
}
.card-details:hover .card-icons:before{
    background-color: #0D64FF;
}
.card-icons img{
    position: relative;
    width: 90px;
    height: 90px;
}
.card-details h3{
    margin-bottom: 15px;
    margin-top: 50px;
    font-weight: 700;
    font-size: 20px !important;
    text-transform: uppercase;
    font-size: 1.75rem;
    line-height: 1.2;
}
.card-details h3 a{
  color: #000;
  text-decoration: none;
}
.card-details p{
    font-size: 16px;
    line-height: 30px;
    color: #000 !important;
    font-weight: 400;
    margin-bottom: 30px;
}

.decal{
  margin-left: -15px;
}

.decal1{
  rotate: 15deg;
}



/* ============= Responsive Ipad ==================== */
@media (max-width: 992px) {
 .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 40px;
}
}

/* ============= Responsive Iphone ==================== */
@media (max-width: 480px) {
 .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 100px;
}
.card-details{
    width: 100%;
}

}






















@keyframes scroll {
  0% {
    transform: translateX(0);
 }
  100% {
    transform: translateX(calc(-250px * 7));
 }
}
.slider {

  height: 60px;
  margin-top: 40px;
  margin-bottom: 80px;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 60px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 60px;
  width: auto;
  margin-right: 40px;
  margin-left: 40px;
}






@keyframes scroll {
  0% {
    transform: translateX(0);
 }
  100% {
    transform: translateX(calc(-250px * 7));
 }
}
.slider1 {

  height: 60px;
  margin-top: 0px;
  margin-bottom: 0px;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider1::before, .slider1::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 60px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider1::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider1::before {
  left: 0;
  top: 0;
}
.slider1 .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider1 .slide {
  height: 30px;
  width: auto;
  margin-right: 15px;
  margin-left: 15px;
}

.slider1 .slide p{
  border: 1px solid #000;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50px;
white-space: nowrap;
}



@keyframes scroll2 {
  0% {
    transform: translateX(-1950px);
 }
  100% {
    transform: translateX(calc(100px));
 }
}
.slider2 {

  height: 60px;
  margin-top: 0px;
  margin-bottom: 0px;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider2::before, .slider1::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 60px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider2::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider2::before {
  left: 0;
  top: 0;
}
.slider2 .slide-track {
  animation: scroll2 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider2 .slide {
  height: 30px;
  width: auto;
  margin-right: 15px;
  margin-left: 15px;
}

.slider2 .slide p{
  border: 1px solid #000;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50px;
white-space: nowrap;
}































.parent {
  font-family: 'Poppins', sans-serif;
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: white;
}

.big-font {
  font-family: 'General Sans', monospace;
  font-size: 52px;
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 clamp(1rem, 2vw, 3rem);
  border-radius: clamp(0.4rem, 0.75vw, 1rem);
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}

.slide-circle-overflow-h-a {
  position: absolute;
  width: 0px ;
  height: 0px ;
  border-radius: 50%;
  padding: 0 !important;
  margin: 0 !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  overflow: hidden;
  transition: width 2.1s cubic-bezier( 0.44, 0.03, 0.04, 0.98 ), height 2.1s cubic-bezier( 0.44, 0.03, 0.04, 0.98 );
}

.slide-circle-overflow-h-a.circle-grow {

  width: 350vh ;
  height: 350vh;

}

.slide-circle-overflow-h-a.previous-circle-grow {

  width: 350vh ;
  height: 350vh;

}

.slide-circle-overflow-h-r {
  position: relative;
  width: 100% ;
  height: 100% ;
  border-radius: 50%;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff;
  overflow: hidden;
  
}

.fullwidth-slide-content-a {
  position: absolute;
  width: 100vw ;
  height: 100vh ;
  padding: 0 !important;
  margin: 0 !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.fullwidth-inner-content-r {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% ;
  height: 100% ;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
  transition: transform 2.1s cubic-bezier( 0.44, 0.03, 0.04, 0.98 );
}

.fullwidth-inner-content-r .background-parallax{
  transition: transform 2.1s cubic-bezier( 0.44, 0.03, 0.04, 0.98 );
}

.fullwidth-inner-content-r .foreground-parallax{
  transition: transform 2.1s cubic-bezier( 0.44, 0.03, 0.04, 0.98 );
}


.fullwidth-inner-content-r.slight-scale .background-parallax{

  transform: scale(1.15);
}

.fullwidth-inner-content-r.slight-scale .foreground-parallax{

  transform: scale(1.3);
}

.fullwidth-inner-content-r.previous-scale .background-parallax{

  transform: scale(7);
}

.fullwidth-inner-content-r.previous-scale .foreground-parallax{

  transform: scale(13);
}



.fullwidth-inner-content-r > h1{
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-transform: uppercase;
  transition: transform 2.1s cubic-bezier( 0.44, 0.03, 0.04, 0.98 );
}


.background {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
  object-fit: cover;
  transition: transform 2.1s cubic-bezier( 0.44, 0.03, 0.04, 0.98 );

}

.background-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: top;
  background-size: cover;
}

.action-area {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 100px !important;
}

.slide-action {
  position: relative;
  background-color: transparent;
  color: white;
  padding: 10px 30px;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 4px;
  margin: 0 30px;
  transition: 0.5s;
  cursor: pointer;
}

.slide-action::after {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: white;
  transition: 0.35s;
  height: 1px;
  width: 0;
}

.slide-action:hover::after {
  width: 87%;
}