@import url('https://fonts.googleapis.com/css?family=Montserrat:600');

body {

}
/* Header */

.header-image-container {
    background-color: #000000;
    padding: 4px 0px;
}

.header-image {
    width: 11.45vw;
    height: 5.67vw;
}

.progress-anim {
    transform: rotate(-90deg);
    stroke-dasharray: 62; /* (2PI * r (10px)) */
    stroke-dashoffset: 62;
    animation: offsettozero 7s linear forwards infinite;
}

@keyframes offsettozero {
    to {
        stroke-dashoffset: 0;
    }
}

/* Flex */

.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: center; */
  margin-left: 13.44vw;
}

/* Text */

.main-section-wrapper {
        margin-top: 4.875vw;
}

.headline {
    font-family: "Montserrat", Helvetica, Arial, serif;
    font-size: 3.54vw;
    line-height: 4.15vw;
    margin-top: 0;
    width: 43.3vw;
    color: #4a4a4a;
    margin-bottom: 2.96vw;
}
.description-desktop {
    display: block;
    line-height: 2.25vw;
    font-size: 1.6vw;
    font-family: "Avenir-Book", Helvetica, Arial, serif;
    color: #4a4a4a;
    margin-bottom: 0;
}

.description-mobile {
    display: none;
}
.initial-wrapper {
}

/* Main Image */

.image-section-wrapper {
    margin-left: 6.1vw;
}

.main-image {
    width: 26.4vw;
    margin-top: 1.9vw;
}

/* Form */

.button-wrapper {
    margin-top: 2vw;
    display: flex;
}

.button {
    display: block;
    height: 4.2vw;
    width: 20.4vw;
    font-family: Helvetica, Arial, serif;
    background-color: #ffffff;
    border: solid black 1px;
    border-radius: 4px;
    color: #000000;
    font-size: 1.5vw;
}

.isp-logo-placeholder {
    font-size: 50px;
    margin: 10px;
    padding: 0px 10px;
    color: #db7d01;
    border: solid 5px;
}

.button:focus {
    outline: none;
}

.button-text {
    position: absolute;
    z-index: 1;
    color: white;
    margin-top: 1.4vw;
    margin-left: 4.5vw;
    font-family: "Avenir-Medium", Helvetica, Arial, serif;
    font-size: 1.1vw;
    line-height: 1.5vw;
    text-align: center;
    font-weight: bold;
}

.thank-you-message {
    display: none;
    line-height: 2.25vw;
    font-size: 1.46vw;
    font-family: "Avenir-Book", Helvetica, Arial, serif;
    color: #4a4a4a;
    margin-top: 2vw;
    margin-bottom: 0;
}

.alert-danger {
    display: none;
    width: 12vw;
    text-align: center;
    margin-bottom: -1vw !important;
}

.captcha-wrapper {
    padding: 3px;
    margin-top: 0.6vw;
    width: fit-content;
}

.captcha-error {
    border: 3px solid red;
}

.captcha-message {
    display: none;
    margin-left: 0.2vw;
    color: red;
    text-decoration: underline;
}

#bypass-button {
    margin-right: 1.5vw;
}

@media screen and (max-width: 768px) {

.flex-container {
    justify-content: center;
    margin-left: 0;
}

.header-image-container {
    background-color: #000000;
    padding: 5px 0px;
    margin-bottom: 4.1vw;
}

.header-image {
    height: 16.4vw;
    width: 33vw;
}

.main-section-wrapper {
    order: 2;
    width: 70vw;
    padding-right: 0;
    margin-top: 6.6vw;
}
.main-image-wrapper {
    order: 2;
}
.main-image {
    width: 41.6vw;
    margin-top: 0;
}

.headline-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.image-section-wrapper {
    margin-left: 0;
}

.headline {
    font-size: 6.5vw;
    line-height: 9vw;
    margin-top: 0;
    margin-bottom: 0;
    width: 75vw;
    margin-bottom: 4.72vw;
}

.description-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.description-desktop {
    display: none;
}
.description-mobile {
    display: block;
    line-height: 7vw;
    font-size: 4.44vw;
    font-family: "Avenir-Book", Helvetica, Arial, serif;
    color: #4a4a4a;
    width: 76.6vw;
    margin-bottom: 10.2vw;
}

.button {
    display: block;
    height: 8.4vw;
    width: 40.8vw;
    font-family: Helvetica, Arial, serif;
    background-color: #ffffff;
    border: solid black 1px;
    border-radius: 4px;
    color: #000000;
    font-size: 3.0vw;
}

.button-wrapper {
    margin-top: -2vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.captcha-wrapper {
    margin-left: -7vw;
    padding: 3px;
    margin-top: 0.6vw;
}

.thank-you-message {
    display: none;
    line-height: 7vw;
    font-size: 4.4vw;
    font-family: "Avenir-Book", Helvetica, Arial, serif;
    color: #4a4a4a;
    margin-left: 17.2vw;
}

.alert-danger {
    width: 70vw;
}

}