/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
/* lexend-deca-regular - latin */
@font-face {
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  /* src: local(''),
       url('../fonts/lexend-deca-v17-latin-regular.woff2') format('woff2'),
       url('../fonts/lexend-deca-v17-latin-regular.woff') format('woff'); */
  src: url("../fonts/Lexend_Deca/LexendDeca-VariableFont_wght.ttf") format("truetype");
}

:root {
  --white-color:                  #ffffff;
  --primary-color:                #eae1cf;
  --secondary-color:              #a28ecd;
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;
  --featured-border-color:        #727aab;

  --body-font-family:             'Lexend Deca';

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               12px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

.ms-3 {
  margin-left: 0rem !important;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-normal);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  /* margin-bottom: 0rem; */
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.avatar-image-large {
  width: 90.4px;
  height: 90.4px;
}


/*---------------------------------------
  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: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}
/* 
@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {transform: rotate(360deg);}
} */


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
	background-color: var(--primary-color);
}

.custom-link:hover {
	background-color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--dark-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  /* transition: all 0.3s; */
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--dark-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link:hover::after {
  background: var(--dark-color);
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--dark-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(--white-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(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SECTION COMMON              
-----------------------------------------*/
.section-header {
  font-size: 30px;
  padding-left: 12px;
  padding-top: 30px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 5px;
  z-index: 1299;
  font-size: 35px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  padding: 10px;
  /* border-radius: 1px; */
  /* border-color: #ffffff; */
  /* border-width: 1px; */
}

.modal-body { max-height: none !important}

/*---------------------------------------
  MAIN              
-----------------------------------------*/
.desktop-breaker {
  display: block;
}

.anchor{
  display: block;
  height: 70px;
  margin-top: -70px;
  visibility: hidden;
}

.main {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 10px;
}

.main-title,
.main h2 {
  /* background: var(--white-color); */
  /* box-shadow: 0 1rem 3rem rgba(0,0,0,.175); */
  /* border-radius: var(--border-radius-large); */
  display: inline-block;
  /* padding: 8px 12px; */
}

.main-title {
	font-size: 44px;
}

.main h2 {
	font-size: 38px;
}

.main-text {
  position: relative;
  z-index: 22;
  top: 100px;
}

.main-image-wrap {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 100%;
  width: 525px;
  height: 525px;
  position: absolute;
  z-index: 22;
  top: 265px;
  right: 0;
  left: 670px;
  margin: auto;
  pointer-events: none;
  text-align: center;
  vertical-align: middle;
  line-height: 625px;
}

.main-image {
  position: absolute;
  z-index: 22;
  top: 0;
  width: 100%;
  min-width: 550px;
}

/* .main svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
} */

.principe {
  padding-top: 5px !important;
}

.principe-asterix {
  font-size: 70px;
  padding-top: 10px;
  position: absolute;
}

.small-text-bottom {
  padding-top: -10px;
}

.small-text-upper-spacer {
  padding-top: 150px;
  margin-bottom: 0rem;
}

.turandot {
  text-align: right;
  width: 100%;
  font-size: 10px !important;
  padding-top: 0px;
  position: relative;
  top: 0px;
  left: -30px;
}

.small-text-bottom-spacer {
  padding-top: 0px;
  padding-bottom: 50px;
}

.small-text {
  color:#000000;
  padding-left: 10px;
  font-size: 12px;
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects {
  background: var(--secondary-color);
  color: var(--primary-color);
  overflow: hidden;
}

.card-project {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 445px;
  word-wrap: break-word;
  background-color: transparent;
  background-clip: border-box;
  border: 0px solid rgba(0,0,0,.125);
  border-radius: 0;
}

.card-project-img, .card-project-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card_row {
  padding-top: 40px;
  padding-bottom: 40px;
}

.card_row:last-child {
  padding-bottom: 80px;
}

.card-project-left {
  float: left !important;
  left: 10px;
}

.card-project-right {
  float: right !important;
  right: -10px;
}

.card-project-body {
  flex: 1 1 auto;
  padding: 0;
  text-align: right;
  background: var(--primary-color);
}

.card-project-body > p{
  color: var(--secondary-color) !important;
}

.gray-img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video {
  background: var(--primary-color);
  overflow: hidden;
}

.video-container {
  padding-top: 40px;
}

.video-container-button {
  padding-top: 40px;
}

.video-container-hidden {
  padding-top: 40px;
  padding-left: -calc(var(--bs-gutter-x) * .5);
}

.video-container iframe {
  padding-left: 12px;
}

.video-paragraph {
  font-size: 24px;
  padding-left: 24px;
  color: var(--dark-color);
  padding-top: 20px;
}

.video-bubble {
  background: var(--secondary-color);
  border-radius: 100%;
  width: 850px;
  height: 850px;
  position: absolute;
  z-index: 19;
  top: -600px;
  left: -500px;
  margin: auto;
  pointer-events: none;
  text-align: center;
  vertical-align: middle;
  line-height: 220px;
}

.video-button-container {
  justify-content: center;
}

.video-button {
  position: relative;
  outline: none;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  height: 150px;
  width: 150px;
  opacity: 1;
  background-color: #ffffff;
  border: 1px solid #a28ecd;
}

.video-button span {
  color: #eae1cf;
  font-size: 12px;
  border-radius: 50%;
  background-color: #a28ecd;
  height: 100px;
  width: 100px;
  position: relative;
  top: -15px;
  right: -10px;
  display: inline-flex;
  align-items: center;
}

.video-button:hover {
  animation: storm 0.7s ease-in-out both;
}

.video-button:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about {
  background: var(--secondary-color);
  color: var(--primary-color);
  overflow: hidden;
}

.about-paragraph {
  font-size: 24px;
  padding-left: 24px;
  color: var(--primary-color);
}

/*---------------------------------------
  GALLERY              
-----------------------------------------*/
.gallery {
  background: var(--primary-color);
  overflow: hidden;
}

.gallery-thumb {
  width: 865px !important;
  height: 1220px !important;
}

.gallery-image {
  width: 865px;
  height: 1220px;
  object-fit: cover;  
}

.gallery-left {
  cursor: pointer;
  position: relative;
  left: -790px;
}

.gallery-center {
  cursor: pointer;
  position: relative;
}

.gallery-right {
  cursor: pointer;
  position: relative;
  right: -22px;
}

.gallery-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 225; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.gallery-modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
}


/* Add Animation - Zoom in the Modal */
.gallery-modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.arrow-container {
  position: relative;
  top: -545px;
  left: 6px;
}

.arrow-container-right {
  position: relative;
  top: -545px;
  left: 802px;
}

.arrow {
  border: solid #fff;
  border-width: 0 6px 6px 0;
  display: inline-block;
  padding: 10px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*---------------------------------------
  CALENDAR
-----------------------------------------*/
.calendar-container {
  background: #fff;
  overflow: hidden;
}

.calendar-left {
  position: relative;
  width: 45%;
}

.calendar-right {
  position: relative;
  width: 45%;
}

.tab-pane>p {
  color: var(--secondary-color) !important;
}

.nav-link {
  color: #000 !important;
}

.nav-link.active {
  color: var(--secondary-color) !important;
}

.ftco-section {
  padding: 7em 0;
}

.ftco-no-pt {
  padding-top: 0;
}

.ftco-no-pb {
  padding-bottom: 0;
}

.heading-section {
  font-size: 28px;
  color: #000;
}

.calendar, .calendar_weekdays, .calendar_content {
  max-width: 450px;
}

.calendar {
  margin: auto;
  font-weight: 400;
}

.calendar_content {
  background: None;
}

.calendar_weekdays {
  background: none;
}

.calendar_header {
  padding: 10px 0;
}

.calendar_content, .calendar_weekdays, .calendar_header {
  position: relative;
  overflow: hidden;
}

.calendar_weekdays div {
  display: inline-block;
  vertical-align: top;
  color: #000 !important;
}

.empty {
  background-color: var(--primary-color) !important;
}

.calendar_weekdays div, .calendar_content div {
  width: 11.28571%;
  overflow: hidden;
  text-align: center;
  background-color: transparent;
  color: #000;
  font-size: 16px;
  padding: 5px 0;
  margin: 5px;
}

.calendar_content div {
  border: 1px solid transparent;
  float: left;
  position: relative;
  z-index: 0;
}

.calendar_content div:hover {
  border: 1px solid #dcdcdc;
  cursor: default;
}

.calendar_content div.blank:hover {
  cursor: default;
  border: 1px solid transparent;
}

.calendar_content div.past-date {
  color: #d5d5d5;
}

.calendar_content div.calendar-today {
  border: 1px solid #000;
  background-color: var(--primary-color);
}

.calendar_content div.calendar-event {
  background-color: var(--secondary-color) !important;
  cursor: pointer !important;
}

.calendar_content div.selected {
  background-color: #f0f0f0; 
}

.calendar_header {
  width: 100%;
  text-align: center;
}

.calendar_header h2 {
  padding: 0 10px;
  font-weight: 500;
  font-size: 16px;
  color: #111;
  float: right;
  margin: 0 0 10px;
}

button.switch-month {
  background-color: transparent;
  padding: 0;
  outline: none;
  border: none;
  color: #dcdcdc;
  float: left;
  width: 5%;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
}

button.switch-month:hover {
  color: var(--secondary-color); 
}

/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}


/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
	height: 120px;
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: all ease 0.2s;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 240px 40px;
  transition: all 0.5s;
}

.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color:var(--primary-color);
  background-clip: padding-box;
  border: none;
  border-radius: .3rem;
  outline: 0;
}

.modal-title {
  color: var(--secondary-color);
}

.modal-body>p {
  color: var(--secondary-color) !important;
}

.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}

.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}


.project-bubble1 {
  background: var(--primary-color);
  border-radius: 100%;
  width: 750px;
  height: 750px;
  position: absolute;
  z-index: 22;
  top: -1550px;
  left: -800px;
  margin: auto;
  pointer-events: none;
  text-align: center;
  vertical-align: middle;
  line-height: 220px;
}

.project-bubble2 {
  background: var(--primary-color);
  border-radius: 100%;
  width: 600px;
  height: 600px;
  position: absolute;
  z-index: 22;
  top: -150px;
  left: 650px;
  margin: auto;
  pointer-events: none;
  text-align: center;
  vertical-align: middle;
  line-height: 220px;
}


/*---------------------------------------
  EVENTS              
-----------------------------------------*/

.calendar_events {
  background: var(--secondary-color);
  color: var(--primary-color);
  overflow: hidden;
  padding-bottom: 25px;
}

.calendar-event-card {
  min-height: 230px;
  max-width: 240px;
  background-color: var(--primary-color) !important;
  text-align: center;
}

.calendar-event-row {
  padding-left: 35%;
  padding-right: 35%;
}

.calendar-event-card-title {
  line-height: 0.7 !important;
}

.calendar-event-card-text-title {
  margin-top: 10px;
}

.calendar-event-card-text-small {
  font-size: 14px !important;
}

.calendar-event-card-text {
  margin-bottom: 0em !important;
}

.calendar-event-card-btn {
  background: var(--secondary-color) !important;
  --bs-btn-border-color: var(--secondary-color) !important;
  --bs-btn-hover-bg: var(--secondary-color) !important;
  --bs-btn-hover-border-color: var(--secondary-color) !important;
  position: absolute; 
  bottom: 10px; 
  left: 50%; 
  transform: translateX(-50%);
  height: 35px;
  width: 120px;
  margin-bottom: -5px;
}

.carousel-inner {
  position: relative;
  width: 70%;
  overflow: hidden;
  margin-left: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.78.72 2.5 3 4.78 5.28 5.5 6l-3 3L0 8l3-3L0 2 2.5 0z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.5 0l.72.72L5.5 3 3.22 5.28 2.5 6l3 3 2.5-2.5L5.5 6 8 3l-2.5-2.5L5.5 0z'/%3E%3C/svg%3E");
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
  padding-top: 10px !important; 
  padding-bottom: 10px !important;
  overflow: hidden;
}

.social {
  padding-top: 100px;
  padding-bottom: 260px;
}

.social-img {
  padding-left: 30px;
}

.social-logo {
  width: 85px;
  padding-left: 15px;
}

.contact-details {
  font-size: 24px;
  padding-left: 40px;
}

.image-wrap-contact {
  background: var(--secondary-color);
  border-radius: 100%;
  width: 600px;
  height: 600px;
  position: absolute;
  z-index: 22;
  bottom: -400px;
  right: -137px;
  margin: auto;
  pointer-events: none;
  text-align: center;
  vertical-align: middle;
  line-height: 220px;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 35px;
  padding-bottom: 35px;
  text-align: center;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

#cb-cookie-banner {
  background-color: var(--secondary-color); 
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  display: none; 
}

#cb-cookie-banner h7 {
  text-align: left;
  color: var(--primary-color);
  padding: 0px;
}

.cookie-paragraph {
  font-size: 15px;
  text-align: left;
  color: var(--primary-color);
  padding: 20px 0px 20px 0px;
} 

.cookie-button {
	background-color: var(--primary-color);
	display:inline-block;
	cursor:pointer;
	color: var(--secondary-color);
	text-decoration:none;
  border: none !important;
  border-radius: 0 !important;
  min-width: 140px;
}

.cookie-button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
/* @media screen and (min-width: 1600px) {
  .main {
    padding-top: 80px;
    padding-bottom: 10px;
  }

  .main-image-wrap {
    top: 265px;
    width: 550px;
    height: 550px;
    left: 670px;
  }

  .image-wrap-contact {
    width: 600px;
    height: 600px;
  }

  .main-image {
    min-width: 650px;
  }
  
  .main-title,
	.main h2 {
	  font-size: var(--h2-font-size);
	}
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: var(--white-color);
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .main {
    padding-top: 80px;
    padding-bottom: 10px;
  }

  .main-text {
    top: 0;
    margin-bottom: 120px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .main-image-wrap {
    width: 550px;
    height: 550px;
  }

  .image-wrap-contact {
    width: 600px;
    height: 600px;
  }

  .main-image {
    min-width: inherit;
  }
} */



/*---------------------------------------
  SET WIDTH AS DESIGNED               
-----------------------------------------*/
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1024px;
}

@media (max-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1024px;
  }
}

@media (max-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1024px;
  
  }
}
  
@media (max-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}
 
@media (max-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}
  
@media (max-width: 576px) {
  .breaker {
    display: block;
  }

  .desktop-breaker {
    display: inline;
  }

  .headline-padded {
    padding-top: 35px;
  }

  .modal {
    width: 100% !important;
  }

  .menu-icon {
    position: relative;
    top: -65px;
    left: -27px;
    scale: 0.6;
    width: 70px !important;
    height: 70px !important;
  }

  .navbar-nav {
    position: relative;
    left: -20px;
  }

  .logo-img {
    width: 60%;
    display: block;
    margin-left: -20%;
  }

  .container, .container-sm {
    max-width: 540px;
  }

  .section-header {
    font-size: 20px;
    padding-left: 0px;
  }

  /* MAIN */
  .main-title {
    font-size: 45px !important;
    text-align: center !important;
    width: 100%;
  }

  .main-image-wrap {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 100%;
    width: 280px;
    height: 280px;
    position: absolute;
    z-index: 21;
    top: 230px;
    right: 0;
    left: 0px;
    margin: auto;
    pointer-events: none;
    text-align: center;
    vertical-align: middle;
    line-height: 295px;
  }

  .small-text-upper-spacer {
    padding-top: 110px;
  }

  .tu-pure{
    padding-top: 25px !important;
  }

  .turandot {
    text-align: right;
    width: 100%;
    font-size: 8px !important;
  }

  .principe {
    padding-top: 0px !important;
  }

  .principe-asterix {
    font-size: 35px;
    padding-top: 2px;
    position: absolute;
  }

  .small-text {
    font-size: 10px;
  }

  /* PROJECT */
  .project-bubble1 {
    display: none;
  }

  .project-bubble2 {
    display: none;
  }

  .card-project-left {
    float: left !important;
    left: 16px;
    width: 90%;
  }

  .card-project-right {
    float: left !important;
    left: 16px;
    width: 90%;
    padding-top: 40px !important;
}

  .card_row {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .card_row:last-child {
    padding-bottom: 20px;
  }

  /* ABOUT */
  .about-paragraph {
    font-size: 15px;
    padding-left: 0px;
  }

  /* VIDEO */
  .video-frame {
    width: 340px !important;
    height: 220px !important;
  }

  .video-paragraph {
    font-size: 15px;
  }

  .video-container-button {
    padding-top: 0px;
  }

  .video-bubble {
    width: 450px;
    height: 450px;
    top: -800px;
    left: -225px;
  }

  /* GALERY */
  .gallery-thumb {
    width: 300px !important;
    height: 480px !important;
  }

  .gallery-center {
    left: -7px;
  }

  .gallery-right {
    right: 10px;
  }

  .gallery-left {
    left: -285px;
  }

  .arrow {
    border: solid #fff;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 6px;
  }

  .arrow-container {
    position: relative;
    top: -245px;
    left: 4px;
  }
  
  .arrow-container-right {
    position: relative;
    top: -245px;
    left: 260px;
  }

  .gallery-image {
    width: 300px;
    height: 480px;
    object-fit: cover;  
  }

  .gallery-modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 700px;
  }

  /* CALENDAR */
  .calendar-left {
    position: relative;
    width: 90%;
  }
  
  .calendar-right {
    display: none !important;
  }

  .calendar_weekdays div, .calendar_content div {
    width: 10.28571%;
    overflow: hidden;
    text-align: center;
    background-color: transparent;
    color: #000;
    font-size: 16px;
    padding: 5px 0;
    margin: 5px;
  }

  /* EVENTS */
  .calendar_events {
    background: var(--secondary-color);
    color: var(--primary-color);
    overflow: hidden;
  }

  .calendar-event-row {
    padding-left: 10%;
    padding-right: 10%;
  }

  .calendar-event-card {
    min-height: 230px;
    max-width: 240px;
    background-color: var(--primary-color) !important;
    text-align: center;
  }

  .carousel-inner {
    position: relative;
    width: 70%;
    overflow: hidden;
    margin-left: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.78.72 2.5 3 4.78 5.28 5.5 6l-3 3L0 8l3-3L0 2 2.5 0z'/%3E%3C/svg%3E");
  }
  .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.5 0l.72.72L5.5 3 3.22 5.28 2.5 6l3 3 2.5-2.5L5.5 6 8 3l-2.5-2.5L5.5 0z'/%3E%3C/svg%3E");
  }

  /* CONTACT */
  .contact-details {
    font-size: 13px !important;
    padding-left: 75px;
  }

  .social {
    padding-top: 45px;
    padding-bottom: 175px;
  }

  .social-img {
    padding-left: 15px;
  }

  .social-logo {
    width: 45px;
    padding-left: 0px;
  }

  .p-2:first-child {
    padding: 0px !important;
    width: 40px;
    height: 65px;
    bottom: 10px;
    position: relative;
  }

  .p-2 {
    padding: 0px 0px 0px 15px !important;
    width: 55px;
    height: 65px;
    bottom: 10px;
    position: relative;
  }

  .image-wrap-contact {
    width: 350px;
    height: 350px;
    bottom: -215px;
    right: -155px;
  }

  .flower-logo {
    scale: 0.6;
    position: absolute;
    top: -10px;
    left: 50px;
  }

}