@font-face {
    font-family: "SalesforceSansLight";
    src: url("./SalesforceSans-Light.woff");
  }

/* General doc styles */
html,body {
scroll-behavior: smooth;
overflow-x: initial;
overflow-y:initial;
height: 100%;
font-family: "SalesforceSansLight", serif;
}


.row {
    display: flex;
  }
  
  .column {
    flex: 50%;
  }

.customswitch1{
    align-content: right;
    background-color: #ffffff;
    color: #ffffff;
}

#languagetoggle{
    font-family: "SalesforceSansLight";
    font-size: 20px;
    color: #ffffff;
}

.languageBtn {
	box-shadow: 3px 4px 0px 0px #899599;
	background: linear-gradient(to bottom, #50b4db 10%, #215ca0 90% );
	background-color:#6b747e;
	border-radius:15px;
	border:1px solid #d6bcd6;
	display:inline-block;
	cursor:pointer;
	font-family: "SalesforceSansLight", serif;
	font-size:25px;
	padding:7px 60px;
	text-decoration:none;
    text-shadow:0px 1px 0px #e1e2ed;
}
.languageBtn:hover {
	background: linear-gradient(to bottom, #215ca0 10%, #50b4db 90% );
    background-color:#a8acb1;
}
.languageBtn:active {
	position:relative;
	top:1px;
}
h2 {
    text-align: left;
    font-family: "SalesforceSansLight";
}

a {
    border-radius: 0.25rem;
    text-align: center;
    transition: all;
    font-family: "SalesforceSansLight";
    }

a:hover {
    opacity: 0.6;
}

#main {
    height: 100%;
}

/* Add a blue background color to the top navigation */
.topnav {
    background-color: #215ca0;
    overflow: hidden;
    height: 5px
}

  /* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family: "SalesforceSansLight";
}

  /* Change the color of links on hover */
.topnav a:hover {
    background-color: #;
    color: black;
}

  /* Add a color to the active/current link */
.topnav a.active {
    background-color: #215ca0;
    color: white;
}

/* Styles for the hero image */

#hero {
    background-size: cover;
    background-color: #215ca0;
    min-height: 5%;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

@media only screen and (max-width: 700px) {
    .hero {
        min-height: 300px;

    }
  }

@media only screen and (min-width: 700px) {
    .hero {
        min-height: 500px;

    }
  }

  @media only screen and (min-width: 1000px) {
    .hero {
        min-height: 650px;
        background-size: contain;
    }
  }


   /* thank you check */
   .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #1798C1;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }
    .container {
        text-align: center;
    }
    .checkmark {
    width: 100px;
    height:100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #4682b4;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    }

    #checkmarkBox {
    margin-top: 10%;
    padding-top: 8rem;
    }

    .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }
    @keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
    }
    @keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
    }
    @keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 75px #215ca0;
    }
    }

    /* Pad Button */   
#submitButton{
        position:center;
        margin-left: 20px;
        margin-right: 20px;
        background: linear-gradient(to bottom, #50b4db 10%, #215ca0 90% );
        background-color:#a8acb1;
        font-family: "SalesforceSansLight", serif;
        margin-left: 0%;
        box-shadow: 3px 4px 0px 0px #899599;
        border-radius:15px;
        border:1px solid #d6bcd6;
        display:inline-block;
        cursor:pointer;
        text-decoration:none;
        text-shadow:0px 1px 0px #e1e2ed;
        }

    #submitButton:hover {
        background: linear-gradient(to bottom, #215ca0 10%, #50b4db 90% );
        background-color:#a8acb1;
    }

    #submitButton:active {
        position:relative;
        top:1px;
    }

    /*header*/
    .site-header {
        background-color: rgba(0, 0, 0, .85);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
    }

footer {
    width: 100%;
    font-family: "SalesforceSansLight", serif;
}

    /* Extra utilities*/
    .border-top { border-top: 1px solid #e5e5e5; }
    .border-bottom { border-bottom: 1px solid #e5e5e5; }
    .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
    .flex-equal > * {
        -ms-flex: 1;
        -webkit-box-flex: 1;
        flex: 1;
    }
    .overflow-hidden { overflow: hidden; }