/* font-imports */
@font-face {
  font-family: "Glacial Indifference";
  font-style: normal;
  font-weight: normal;
  src: local("Glacial Indifference"),
    url("https://res.cloudinary.com/dhznnpvlm/raw/upload/v1612366641/cs-code-in/fonts/GlacialIndifference-Regular_dpwkjv.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Glacial Indifference Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Glacial Indifference Bold"),
    url("https://res.cloudinary.com/dhznnpvlm/raw/upload/v1612366641/cs-code-in/fonts/GlacialIndifference-Bold_bkgdds.woff")
      format("woff");
  font-display: swap;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.font1 {
  font-family: "Oswald", sans-serif;
}

.font2 {
  font-family: "Glacial Indifference", sans-serif;
}

.navbar {
  padding: 0 1rem;
}

.brand-logo {
  height: 145px;
}

.main {
  margin-top: 2%;
  z-index: 1;
}

.main .heading {
  font-size: 5.5rem;
  letter-spacing: 0.3rem;
}

.main .heading-2 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
}

.main .para1 {
  font-size: 1.2rem;
}

.font-blue {
  color: #8c52ff ;
}

.btn-blue {
  background: #8c52ff ;
  color: white;
}

.btn-blue:hover {
  background: #5e17eb;
  color: rgb(240, 240, 240);
}

.btn-bg-lg {
  padding: 1.2rem 1.5rem;
  font-size: 1.4rem;
  border-radius: 7px;
}

.img-div-1 {
  z-index: -1;
  background-image: url("https://res.cloudinary.com/dhznnpvlm/image/upload/v1620042706/csat-code-in/imageedit_1_5309069201_wiaye7.webp");
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  height: 500px;
  width: 500px;
}

.img-div-2 {
  z-index: -1;
  background-image: url("https://res.cloudinary.com/dhznnpvlm/image/upload/v1620042761/csat-code-in/csat-home-2-removebg-preview_qkjgq3.webp");
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
  height: 500px;
  width: 460px;
}

.grid-2-c {
  display: grid;
  grid-template-columns: 30% 70%;
}

.img-div {
  background-color: #8c52ff ;
  border-radius: 50%;
  height: 90px;
  width: 90px;
  text-align: center;
  vertical-align: middle;
}

.img-div img {
  height: 50px;
  margin-top: 1.2rem;
}

.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.col-lg-6 {
  height: 100vh;
}

.bg-2 {
  background-image: url("https://res.cloudinary.com/dhznnpvlm/image/upload/v1620048266/csat-home-2_u2pznz.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-2 .card {
  width: 400px;
  min-height: 400px;
  margin-top: 5%;
}

.hr {
  background-color: black;
  height: 6px;
  width: 130px;
  margin-left: 1px;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

.form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.label {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.375em;
  /* Accessible outline */
  /* Remove comment to use */
  /*
    &:focus-within {
        outline: .125em solid $primary-color;
    }
  */
}
.label input {
  position: absolute;
  left: -9999px;
}
.label input:checked + span {
  background-color: #d6d6e5;
}
.label input:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em #5e17eb;
}
.label span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
}
.label span:hover {
  background-color: #d6d6e5;
}
.label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #5e17eb;
}

.container2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.errorMsg {
  color: #cc0000;
  margin-bottom: 10px;
  display: none;
}

@media (max-width: 699px) {
  .img-div-1 {
    display: none;
  }
  .img-div-2 {
    bottom: auto;
  }
  .ml-5 {
    margin-left: 0em !important;
    padding-left: 0rem !important;
  }
  .bg-2 .card {
    width: auto;
  }
  .main .para1 {
    font-size: 1rem;
    margin: 2.5rem;
  }
  .h1-mob {
    text-align: center;
  }
  .main .heading {
    font-size: 3.5rem;
  }
  .col-lg-6 {
    height: auto;
  }
}

@media (min-width: 700px) {
  .main .heading-2 {
    font-size: 2.6rem;
  }
  .main .para1 {
    font-size: 1.6rem;
  }
  .h1-mob {
    margin: inherit;
  }
}
