:root {
    --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
  }
  :root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #464646; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #464646; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --nav-color: #3a3939;  /* The default color of the main navmenu links */
    --nav-hover-color: #222222; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #222222; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  .light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
  }
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
  }
  :root {
    scroll-behavior: smooth;
  }

  .col-primary{
    color: var(--accent-color);
  }
  a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
  }
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  .button{
    background-color: var(--default-color);
    color: #f9f9f9;
    font-weight: 400;
    font-family: var(--nav-font);
    border: 1px solid transparent;
    padding:  7px 20px;

  }
  .button:hover{
    background-color: #f9f9f9;
    color: var(--default-color) !important;
    border: 1px solid var(--default-color);
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--heading-font);
  }
  .fs-20{
    font-size: 20px;
  }
  .fw-500{
    font-weight: 500;
  }
  .fw-700{
    font-weight: 700;
  }
body{
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    overflow-x: hidden !important;
}

.logo{
width: 11rem;
}
.toggler{
    width: 1.5em;
    height: 1.5em;
}

.swiper-poly {
    max-width: 600px;
    height: 600px;
    overflow: hidden;
    clip-path: polygon(15% 10%, 85% 0%, 100% 50%, 80% 100%, 20% 90%, 0% 50%);

  }
.swiper-team{
    overflow: hidden;
    height: 65px !important;
}
  .swiper-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
  }
.swiper-slide h2{
    font-size: 2.5rem;
    text-transform: uppercase;
    font-size: 900;
}
.swiper-slide-team{
    overflow: hidden;
} 
.our-works .title{
  position: relative;
}
.our-works .title::before{
    position: absolute;
    content: '';
    display: block;
    height: 5px;
    width: 40px;
    background-color: var(--accent-color);
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
}
.works{
  height: 380px;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}

.works::before,
.works::after {
  background-color:  rgba(0, 0, 0, 0.5);
  border-top: 32px solid  var(--accent-color);
  border-bottom: 32px solid  var(--accent-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;
  transform: scaleY(2);
}

.works img {
  vertical-align: top;
  backface-visibility: hidden;
}

.works figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition-delay: 0.1s;
  color: #ffffff;
}
.works:hover::before,
.works:hover::after {
  transform: scale(1);
  opacity: 1;
}

.works:hover > img {
  opacity: 0.7;
}

.works:hover figcaption {
  opacity: 1;
}
.parallax {
  background-image: url("../images/parallax.jpeg");
  width: 100%;
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}
.par-text {
  margin: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sizefull{
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #9d9d9d;
}
.sizefull:active{

  border: 1px solid #dadada;
}

footer{
  padding: 50px;
  background-color: #dadada;
}
.col-accent{
  color: var(--accent-color);
}
