/* components ----------------------------------------------------------------------*/
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-a {
  background: linear-gradient(
    90deg,
    #1b2950 0%,
    #1b2950 54.39%,
    #5870b2 122.86%
  );
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 15px 45px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  transition: all 0.5s;
}
.btn-a:hover {
  background: linear-gradient(
    260deg,
    #1b2950 0%,
    #1b2950 54.39%,
    #5870b2 122.86%
  );
  color: white;
}

.btn-b {
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 5px 15px 40px rgba(27, 41, 80, 0.1);
  color: #1b2950;
  background-color: white;
  border: 1px solid #d2d6e3;
}
.btn-b:hover {
  color: #fff;
  background: #ff792e;
}

.btn-c {
  padding: 8px 25px;
  background-color: #1a2950;
  color: #fff;
  border-radius: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
}
.btn-c:hover {
  color: white;
  background-color: #ff792e;
}

.btn-d {
  padding: 0.75rem 1.25rem;
  color: white;
  background-color: #1a2950;
  border: 1px solid white;
  border-radius: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.btn-d:hover {
  color: #1a2950;
  background-color: white;
}


.btn-e {
  border-radius: 0px;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 5px 15px 40px rgba(27, 41, 80, 0.1);
  color: #1b2950;
  background-color: white;
  border: 1px solid #d2d6e3;
}
.btn-e:hover {
  color: #fff;
  background: #ff792e;
}
.header-a {
  font-size: 3rem;
  font-weight: 800;
  color: #0e2358;
}
.header-b {
  font-size: 2rem;
  font-weight: 900;
}

.header-c {
  font-size: 1.1rem;
}

.free-trail-header {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ff792e;
}
.section-label {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}
.section-label--title {
  width: 75%;
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 700;
  color: #ff792e;
}
.section-label--content {
  width: 75%;
  margin: 0 auto;
  font-size: 1.4rem;
  color: #1a2950;
}

/* section >>> section header */
.section-header--container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  text-align: left;
}

.section-header--left {
  /* background-color: gray; */
}
.section-header--right {
  /* background-color: orangered; */
}

/* section blocks >>> blocks */
.section-blocks--container {
  width: 100%;
  margin: 3rem 0;
}

.section-blocks--block {
  width: 90%;
  min-height: 100px;
  margin-bottom: 6rem;
  padding: 3rem;
  background-color: white;
  border-radius: 20px;
  display: flex;
}
.section-blocks--block:nth-child(odd) {
  justify-content: right;
}
.section-blocks--block:nth-child(odd) .section-blocks--block-image {
  left: 0;
}

.section-blocks--block-image {
  bottom: 0;
  right: 0;
  width: 50%;
  text-align: center;
  background-color: transparent;
  animation: floatVertically 1s alternate infinite;
}

.section-blocks--block-content-text {
  width: 50%;
  padding: 0 2rem;
}

/* section blocks >>> topics */
.section-topics--container {
  width: 100%;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  grid-template-rows: auto;
  column-gap: 2rem;
  row-gap: 4rem;
  grid-auto-rows: auto;
  justify-content: space-between;
}

.section-topics--topic {
  cursor: pointer;

  background-color: white;
  border-radius: 13px;
  box-shadow: -34px 39px 50px rgba(27, 41, 80, 0.1);
  padding: 1rem;
  transition: all 0.2s linear;
}
.section-topics--topic:hover {
  transform: translateY(-10px);
}

.section-topic--image {
  /* border-radius: 13px;
  box-shadow: -34px 39px 50px rgba(27, 41, 80, 0.1); */
}

.section-topic--title {
  padding: 1rem;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.section-topic--title:hover .section-topic--title--1 {
  color: #ff792e;
}
.section-topic--title:hover .section-topic--title--2 {
  color: #1a2950;
}

.section-topic--title--1 {
  margin-right: 0.6rem;
  color: #1a2950;
  transition: all 0.2s linear;
}

.section-topic--title--2 {
  color: #ff792e;
  transition: all 0.2s linear;
}

/* section blocks >>> add */
.section-add--container {
  width: 100%;
  margin: 3rem 0;
  position: relative;
}

.section-add--image-1 {
  width: 70%;
}

.section-add--image-2 {
  width: 90%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  vertical-align: bottom;
}

.section-add--image-2 img {
  position: absolute;
  bottom: -2rem;
}

.section-add--image-2 img:first-child {
  left: 0;
}

.section-add--image-2 img:last-child {
  right: 0;
}

/* section blocks >>> why us */
.section-why-us--container {
  width: 100%;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}

.section-why-us--left {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.section-why-us--left-image-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.section-why-us--left-image-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.section-why-us--left-image-2 img {
  animation: floatVertically 1s alternate infinite;
}

.section-why-us--right {
  padding: 2rem;
}

.section-why-us--right-title-content .topics {
  margin-top: 2rem;
}

.section-why-us--right-title-content .topics .topic {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: -34px 39px 50px rgba(27, 41, 80, 0.1);
  font-size: 1.2rem;
  font-weight: 600;
}

.section-why-us--right-title-content .topics .topic .topic-label {
  display: flex;
  align-items: center;
  color: #1a2950;
  text-transform: capitalize;
}

/* .section-why-us--right-title-content .topics .topic.active .topic-label {
    color: #ff792e;
  } */

.section-why-us--right-title-content
  .topics
  .topic
  .topic-label
  img:last-child {
  margin-left: auto;
}

/* section >>> section main features */
.section-main-features--container {
  width: 100%;
  margin: 3rem 0;
  margin-bottom: 12rem;
}

.show-4 {
  justify-content: center;
  margin-bottom: 4rem;
  display: grid;
  grid-template-rows: auto;
  column-gap: 2rem;
  row-gap: 4rem;
  grid-auto-rows: auto;
  grid-template-columns: repeat(4, 240px);
}

.show-3 {
  justify-content: center;
  margin-bottom: 4rem;
  display: grid;
  grid-template-rows: auto;
  column-gap: 2rem;
  row-gap: 4rem;
  grid-auto-rows: auto;
  grid-template-columns: repeat(3, 240px);
}

.section-main-features--feature {
  cursor: pointer;
}

.section-main-features--feature-icon {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) -40.88%,
    #ffffff 100%
  );
  filter: drop-shadow(0px 53px 60px rgba(27, 41, 80, 0.1));
  border-radius: 20px;
  display: flex;
  padding: 36px 0;
  justify-content: center;
  align-items: center;
  max-width: 230px;
  margin: auto;
}

/* section  >>> connect */
.section-connect--container {
  width: 100%;
}

.section-connect--block {
  height: 340px;
  border-radius: 6rem;
  background-color: #1a2950;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transform: translateY(-50%);
  margin-top: -3rem;
}

.section-connect--block-content {
  width: 60%;
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
}

.section-connect--block-buttons {
  display: flex;
  align-items: center;
}

.section-connect--form {
  width: 60%;
  margin: 0 auto;

  background-color: white;
  padding: 3rem 2rem;
  /* box-shadow: -34px 39px 50px rgba(27, 41, 80, 0.1); */
  /* border: 1px solid #21252950; */
  border-radius: 13px;
  box-shadow: -34px 39px 50px rgba(27, 41, 80, 0.1);
}

.section-connect--form form .form-group {
  display: flex;
  justify-content: space-between;
}

.section-connect--form form .form-group input {
  margin-bottom: 1.6rem;
  position: relative;
  width: 48%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid gray;
}

.section-connect--form form .form-group-c legend {
  text-align: left;
  font-size: 14px;
  margin-bottom: 10px;
  margin-left: 10px;
  display: none;
}
.section-connect--form form .form-group-c input {
  margin-bottom: 1.6rem;
  width: 100%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid gray;
  position: relative;
}
.section-connect--form form .form-group-c input:focus-within + legend {
  display: block;
}
.placeText::after {
  content: 'tesxtdkjf';
  position: absolute;
  top: -10px;
  left: 0;
  color: #212529;
}

.section-connect--form form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid gray;
}

.section-connect--form form button {
  margin: 2rem auto;
}

/* sectoin >>> section-info */
.section-info--titles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  column-gap: 2rem;
  row-gap: 2rem;
  margin-bottom: 1rem;
}

.section-info--titles .h3 {
  font-weight: 600;
}

.section-info--container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  column-gap: 2rem;
  row-gap: 2rem;
  margin-bottom: 3rem;
}

.section-info--block {
  padding: 0 20px;
  width: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  min-height: 84px;
}

.section-info--block:nth-child(odd) {
  background-color: rgba(27, 41, 79, 0.2);
}

.section-info--block:nth-child(even) {
  background-color: rgba(255, 121, 46, 0.2);
}


/* ------------------------------------------------------------- */
/* for other devices -- breakpoints */
@media screen and (max-width: 500px) {
  .section-header--container {
    grid-template-columns: auto;
  /* grid-template-rows: repeat(2, 1fr); */
  grid-template-rows: 1fr;
  }

  .section-header--left {
    padding: 3rem;
  }

  .section-header--right {
    margin-top: 2rem;
    display: none;
  }

  .section-topics--container {
    grid-template-columns: 400px;
    column-gap: 0;
    justify-content: center;
    justify-items: center;
  }

  .section-blocks--block {
    display: block;
    padding: 2rem 0;
    margin-bottom: 3rem;
  }

  .section-label {
    margin-bottom: 2rem !important; 
  }

  .section-blocks--block:nth-child(odd) {
    justify-content: left;
  }

  .section-blocks--block-image {
    display: none;
  }

  .section-blocks--block-content-text {
    width: 100%;
  }
}

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

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