@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

:root {
  --color1: black;
  --color2: #c1c1c1;
  --color3: #f7f7f7;
  --color4: white;
  --radius: 6px;

  /* font sizes */
  --fsize1: 67.34px;
  --fsize2: 50.52px;
  --fsize3: 37.9px;
  --fsize4: 28.43px;
  --fsize5: 21.33px;
  --fsize6: 16px;
  --fsize7: 12px;

  /* spacing */
  --spacing1: 5px;
  --spacing2: 10px;
  --spacing3: 20px;
  --spacing4: 40px;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  max-height: 100%;
  -webkit-user-drag: none;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: var(--fsize2) !important;
  }

  .container {
    width: 100% !important;
  }
  .fixWithGrid {
    display: block !important;
  }
  .main-margin,
  .main-margin2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.main-margin2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.main-margin {
  padding-top: 60px;
  padding-bottom: 30px;
}

.vspacer4 {
  height: 40px;
}
.vspacer3 {
  height: 20px;
}
.vspacer2 {
  height: 10px;
}
.vspacer1 {
  height: 5px;
}

.container {
  width: 89%;
  margin: 0 auto;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.75;
  font-weight: 400;
  user-select: none;
  color: var(--color1);
  letter-spacing: 0.5px;
  font-size: var(--fsize6);
  font-family: DM Sans;
}

.text-normal {
  font-weight: 400;
  font-family: DM sans;
}

* {
  box-sizing: border-box;
}

a:hover {
  color: var(--color2);
}

a {
  font-weight: 500;
  transition: 500ms;
  color: var(--color1);
  text-decoration: none;
  font-size: var(--fsize5);
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: Josefin Sans;
}

h1 {
  font-size: var(--fsize1);
}
h2 {
  font-size: var(--fsize2);
}
h3 {
  font-size: var(--fsize3);
}
h4 {
  font-size: var(--fsize4);
}
h5 {
  font-size: var(--fsize5);
}
h6 {
  font-size: var(--fsize6);
}

p {
  font-family: DM Sans;
  font-size: var(--fsize6);
}

button:hover {
  color: var(--color1);
  background-color: var(--color4);
  border-color: var(--color1);
}

button {
  padding: 16px;
  cursor: pointer;
  min-width: 260px;
  transition: 500ms;
  letter-spacing: 2px;
  color: var(--color4);
  display: inline-block;
  font: 600 14px Josefin Sans;
  text-transform: uppercase;
  border-radius: var(--radius);
  background-color: var(--color1);
  border: 1px solid var(--color1);
}

input,
select {
  border: 0;
  width: 100%;
  outline: none;
  padding: 12px;
  padding-left: 0;
  background-color: var(--color4);
  border-bottom: 1px solid var(--color2);
}

.fixWithFlex {
  display: flex;
  gap: 20px;
  align-items: center;
}

.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}

.fixWithGrid > div {
  order: 9999;
}

.fixWithGrid {
  display: grid;
  grid-gap: var(--spacing1);
  align-items: center;
}

.col1 {
  grid-template-columns: repeat(1, 1fr);
}
.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.col5 {
  grid-template-columns: repeat(5, 1fr);
}

.align-center {
  text-align: center;
  justify-self: center;
  justify-content: center;
}
.align-right {
  text-align: right;
  justify-self: right;
  justify-content: center;
}
.align-left {
  text-align: left;
  justify-self: left;
  justify-content: center;
}
.svg-bg-logos {
  position: absolute;
  width: 900px;
  z-index: -1;
}
