:root {
  --primary-main: #0039A6;
  --text-primary: #05BE50;
  --white: white;
  --black: black;
}

body {
  color: #333;
  font-family: Geometria, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
}

.successcontainer {
  height: 100vh;
  justify-content: space-between;
  display: flex;
}

.content {
  width: 50%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
}

.successimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  bottom: auto;
  object-fit: scale-down;
}

.logo {
  height: 90px;
}

.logo.mb-md {
  margin-bottom: 70px;
}

.imgwrapper {
  width: 50%;
  height: 100%;
  position: relative;
}

.heading {
  color: var(--primary-main);
}

.heading.mb-sm {
  margin-bottom: 60px;
}

.paragraph {
  color: var(--text-primary);
  font-size: 28px;
  line-height: 150%;
  font-weight: 400;
}

.button {
  padding: 20px 32px;
  border: 1px solid var(--black);
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .content {
    width: 55%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .imgwrapper {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .successcontainer {
    height: auto;
    min-height: 100vh;
    flex-direction: column-reverse;
    justify-content: center;
    display: flex;
  }

  .content {
    width: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    display: flex;
  }

  .logo.mb-md {
    margin-bottom: 32px;
  }

  .imgwrapper {
    display: none;
  }

  .heading {
    font-size: 24px;
    line-height: 125%;
    text-align: center;
  }

  .heading.mb-sm {
    margin-bottom: 20px;
  }

  .paragraph {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .button {
    margin-top: 20px;
  }

}

@media screen and (max-width: 479px) {
  .successcontainer {
    justify-content: center;
  }

  .content {
    width: 90%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .successimg {
    position: static;
  }

  .logo {
    height: 64px;
  }

  .logo.mb-md {
    margin-bottom: 32px;
  }

  .imgwrapper {
    display: none;
  }

  .heading {
    font-size: 28px;
  }

  .heading.mb-sm {
    text-align: center;
    margin-bottom: 12px;
    font-size: 24px;
  }

  .paragraph {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .button {
    margin-top: 12px;
  }

}

@font-face {
  font-family: 'Geometria';
  src: url('../fonts/Geometria-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geometria';
  src: url('../fonts/Geometria-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geometria';
  src: url('../fonts/Geometria-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}