:root {
  --main: #ff9a00;
  --dark: #353535;
  --light: #f8f8f8;
  --text: #999999;
  --excerpt: #8e8e8e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.content {
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
}
.largecontent {
  max-width: 100%;
  padding: 0 4rem;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto !important;
  display: inline-block;
  object-fit: cover;
}

.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.boxshadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
