/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

.award-icons{
  justify-content: space-evenly !important;
}


.draetemp-img{
   width: 100%;
   object-fit: cover;
   height: 100%;
   border-radius: 0.5rem;
}




/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class], ul,
ol[class], ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
hr {
  margin: 0;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
a {
  text-decoration: none;
  display: inline-block;
  position: relative;
}

/* Make images easier to work with */
img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and .btnsends */
input,
button,
textarea,
select {
  font: inherit;
}
address {
  font-style: normal ;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.small-sc{
  font-size: 1.5rem !important;
}

/* From Uiverse.io by eirikvold */ 
.btnsend {
  font-family: inherit;
  font-size: 18px;
  background: linear-gradient(to bottom, rgb(218, 57, 89) 0%,crimson 100%);
  color: white;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.btnsend:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.btnsend:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.btnsend span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
}

.btnsend svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}

.btnsend .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}

.btnsend:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}

.btnsend:hover svg {
  transform: rotate(45deg);
}

div .nav-link{
  border: none !important;
  background-color: transparent !important;
  /* height: 100%;
  width: 10rem; */
  cursor: pointer;
}

div .nav-link span{
  font-size: 4rem;
  transition: 0.9s;
}

div .nav-link span:hover{
  color: crimson;
}


@media(max-width: 700px){
  div .nav-link{
    /* width: 100% !important;
    height: 3rem !important; */
  }

  .con-nav{
    flex-direction: column !important;
  }
}


.attitude-mobile{
  margin-bottom: 17rem;
  display: none;
}

.attitude-mobile h1{
  margin-left: 5%;
}


.we-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.we-card-container {
  width: 300px;
  height: 200px;
  position: relative;
}

.we-card {
  width: 100%;
  height: 200px;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.5s ease;
  filter: none;
}

.we-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.we-card p {
  color: #555;
}

.we-card.active {
  opacity: 1;
  z-index: 2;
  transform: translateX(0);
}

.we-card.prev-1,
.we-card.next-1 {
  opacity: 0.5;
  filter: blur(4px);
  z-index: 1;
}

.we-card.prev-2,
.we-card.next-2 {
  opacity: 0.2;
  filter: blur(6px);
  z-index: 1;
}

.we-card.prev-3,
.we-card.next-3 {
  opacity: 0;
}

.we-card.prev-1 {
  transform: translateX(-230px) rotate(-10deg) translateY(20px);
}

.we-card.next-1 {
  transform: translateX(230px) rotate(10deg) translateY(20px);
}

.we-card.prev-2 {
  transform: translateX(-483px) rotate(-20deg) translateY(80px);
}

.we-card.next-2 {
  transform: translateX(483px) rotate(20deg) translateY(80px);
}

.we-card.prev-3 {
  transform: translateX(-697px) rotate(-30deg) translateY(172px);
}

.we-card.next-3 {
  transform: translateX(697px) rotate(30deg) translateY(172px);
}

.we-arrow {
  font-size: 24px;
  cursor: pointer;
  user-select: none;
  color: #fff !important;
  padding: 20px;
  z-index: 20;
}

.we-arrow:hover {
  color: #555;
}

.we-card article h3{
  color: crimson;
}


.we-card article p{
  color: beige;

}

@media (max-width: 770px){

  .attitude-mobile{
    display: none;
  }

}