.header {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 0 10vw;
  color: var(--color-white);
  column-gap: 5vw;
}
.header .row-heaser:nth-child(1) {
  width: 20%;
  height: 100%;
}
.header .row-heaser:nth-child(2) {
  width: 80%;
  height: 80%;
  background-color: var(--color-blue);
  padding: 6vh 10vw 6vh 2vw;
  display: flex;
  align-items: center;
}
.header .row-heaser:nth-child(1) img {
  width: 12vw;
  height: auto;
  object-fit: cover;
}
.row-heaser {
  display: flex;
  align-items: center;
  position: relative;
}
.header .row-heaser:nth-child(2) .column-header {
  width: 50%;
  column-gap: 4vw;
}
.column-header .social {
  display: flex;
  align-items: center;
  column-gap: 1vw;
}
#column-header-2 {
  display: flex;
  align-items: center;
  justify-content: end;
}
#column-header-2 a img {
  width: 2vw;
}
.column-header h3 {
  font-size: 1vw;
  text-transform: uppercase;
}
.button a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  background-color: var(--color-crimson-300);
  color: var(--color-white);
  padding: 1vw 2.2vw;
}
.button a:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}
/* section-01 */
.section-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 0 0 10vw;
  column-gap: 6vw;
}
.section-1 .sec-1-row:nth-child(1) {
  width: 56%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 6vh;
}
.section-1 .sec-1-row:nth-child(2) {
  width: 44%;
  height: 100%;
}
.section-1 .sec-1-row:nth-child(2) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec-1-row-1 > div {
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
}
#sec-1-row-1 h1 {
  font-size: 3.7vw;
  font-weight: bold;
  line-height: normal;
}
#sec-1-row-1 h1 span {
  background-color: var(--color-crimson-300);
  color: var(--color-white);
  padding: 0.1vw 1vw;
}
#sec-1-row-1 h3 {
  font-size: 1.2vw;
  text-transform: uppercase;
}
#sec-1-row-1 h4 {
  font-size: 1.1vw;
}
#sec-1-row-1 p {
  font-size: 1.1vw;
}
#sec-1-row-1 hr {
  width: 74%;
  color: #ccc;
}
#sec-1-row-1 .content-image {
  display: flex;
  align-items: center;
  column-gap: 4vw;
  background-color: var(--color-whitesmoke-100);
  width: fit-content;
  padding: 0.8vw 1.2vw;
  border-radius: 0.5vw;
}
#sec-1-row-1 .content-image .content {
  display: flex;
  align-items: center;
  column-gap: 1vw;
  position: relative;
}
#sec-1-row-1 .content-image .content img {
  width: 3vw;
}
#sec-1-row-1 .content-image .content p {
  font-size: 2.2vw;
  font-weight: bold;
}
#sec-1-row-1 .content-image .content span {
  font-size: 1vw;
  text-transform: uppercase;
}
#sec-1-row-1 h2 {
  font-size: 2vw;
}
#sec-1-row-1 .content-image .content:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 0.2vw;
  height: 100%;
  background-color: #cccc;
  right: -2vw;
}
/* section-video */
.horizontalScroll {
  width: 100%;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: var(--color-gray-100);
  margin-top: -5px;
  color: var(--color-white);
  padding: 1vh 0;
}
.row-sec-scroll {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.column-scroll {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 40px;
  align-items: center;
  column-gap: 1vw;
}
.row-sec-scroll img {
  width: 2vw;
  height: auto;
  object-fit: cover;
}
.row-sec-scroll p {
  font-size: 1vw;
  font-weight: bold;
  color: var(--color-white);
}
/* section-03 */
.section-3 {
  width: 100%;
  height: 100%;
  padding: 10vh 10vw;
  display: flex;
  column-gap: 8vw;
}
#sec-3 {
  flex-direction: row-reverse;
  padding-top: 0;
}
#sec-3-row-1 {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
}
#sec-3-row-1 img {
  width: 22vw;
  height: auto;
  object-fit: cover;
}
#sec-3-row-1 h3 {
  font-size: 1.5vw;
  text-transform: uppercase;
}
#sec-3-row-2 {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 4vh;
}
.heading-bg {
  font-size: 2.5vw;
  font-weight: bold;
  position: relative;
  width: fit-content;
  z-index: 0;
}
.heading-bg::before {
  content: "";
  position: absolute;
  background-image: url("./public/heading-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  left: 22%;
  bottom: 3px;
  z-index: -1;
  width: 55%;
  height: 1vh;
}
#sec-3-row-2 p {
  font-size: 1.1vw;
  text-align: justify;
}
.content-p {
  position: relative;
  margin-left: 1.5vw;
}
.content-p::before {
  content: "";
  position: absolute;
  width: 0.2vw;
  height: 100%;
  background-color: var(--color-crimson-300);
  left: -1.5vw;
}
#sec-4 {
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
  align-items: center;
  column-gap: 6vw;
  background-color: var(--color-whitesmoke-100);
}
#sec-4 > div:nth-child(1) {
  width: 55%;
}
#sec-4 > div:nth-child(2) {
  width: 45%;
}
#sec-4 #sec-3-row-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec-5 {
  align-items: center;
}
#sec-5 > div:nth-child(1) {
  width: 30%;
}
#sec-5 > div:nth-child(2) {
  width: 70%;
}
#sec-5 .content-p {
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
}
#sec-5 .content-p p:first-child {
  font-weight: bold;
  font-size: 1.2vw;
}
/* section-06 */
.section-6 {
  width: 100%;
  height: 100%;
  padding: 6vh 10vw;
  display: flex;
  flex-direction: column;
  row-gap: 6vh;
  align-items: center;
  background-color: var(--color-whitesmoke-100);
  background-image: url("./public/speaker-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#sec-6-row {
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.section-6 .row-sec-6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 100%;
  column-gap: 2vw;
}
.row-sec-6 .column-sec-6 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 1vh;
  position: relative;
}
.row-sec-6 .column-sec-6 .image {
  position: relative;
}
.row-sec-6 .column-sec-6 .image > img {
  width: 290px !important;
  height: 290px !important;
  object-fit: cover;
}
.row-sec-6 .column-sec-6 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.row-sec-6 .column-sec-6 .flag,
.section-10 .flag {
  position: absolute;
  bottom: -1vw;
  right: -1vw;
  width: 5vw;
  height: 5vw;
  object-fit: cover;
  z-index: 2;
  border-radius: 50%;
}
.row-sec-6 .column-sec-6 .flag img,
.section-10 .flag img {
  border-radius: 50%;
}
.row-sec-6 .column-sec-6 .content {
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
.row-sec-6 .column-sec-6 .content h3 {
  font-size: 1.2vw;
  font-weight: bold;
}
.row-sec-6 .column-sec-6 .content p {
  font-size: 1vw;
}
/* section-7 */
#sec-7 {
  background: var(--color-white);
  align-items: start;
}
#sec-7 .content-main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 3vh;
}
#sec-7 .content-main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 3vh;
}
#sec-7 .content-main .content-inner {
  width: 100%;
  height: 100%;
}
#content-inner-1 h3 {
  font-size: 1.5vw;
}
#content-inner-2,
#content-inner-2 .panel-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  column-gap: 1vw;
}
#content-inner-2 .panel-content img {
  width: 3vw;
}
#content-inner-2 .panel-content p {
  font-size: 1.1vw;
  font-weight: bold;
}
#content-inner-1,
#content-inner-3 {
  display: flex;
  flex-direction: column;
  row-gap: 1vh;
}
#content-inner-3 h3 {
  font-size: 1.8vw;
  color: var(--color-crimson-300);
}
#content-inner-3 p {
  font-size: 1.1vw;
  font-weight: bold;
}
#sec-7 .Speaker {
  font-size: 1.1vw;
  margin-bottom: 1vh;
  text-transform: uppercase;
  color: var(--color-crimson-300);
  letter-spacing: 0.2vw;
}
/* section-8 */
.section-8 {
  width: 100%;
  height: 100%;
  padding: 6vh 10vw;
  display: flex;
  flex-direction: column;
  row-gap: 3vh;
  align-items: center;
  justify-content: center;
  background-image: url("./public/global-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-8 .row-sec-8 {
  width: 60%;
}
.section-8 .row-sec-8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-8 h3 {
  font-size: 2vw;
  font-weight: bold;
  color: var(--color-crimson-300);
  text-align: center;
}
/* section-10 */
.section-10 {
  width: 100%;
  height: 100%;
  padding: 8vh 10vw;
  display: flex;
  flex-direction: row;
  column-gap: 6vw;
  align-items: center;
  justify-content: center;
}
#sec-10-row-1 {
  width: 30%;
  height: 100%;
}
#sec-10-row-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec-10-row-1 .image {
  position: relative;
}
#sec-10-row-1 .image .float-img-sec-10 {
  position: absolute;
  bottom: -1vw;
  right: -2vw;
  width: 7vw;
  height: 7vw;
  object-fit: cover;
  z-index: 2;
  border-radius: 50%;
}
#sec-10-row-2 {
  display: flex;
  flex-direction: column;
  row-gap: 4vh;
}
#sec-10-row-2 .content-p-inner h3 {
  font-size: 1.5vw;
  color: var(--color-crimson-300);
  margin-bottom: 1vh;
}
#sec-10-row-2 .content-p-inner p {
  font-size: 1.1vw;
  font-weight: bold;
}
#sec-10-row-2 .content-p-inner img {
  width: 3vw;
}
#sec-10-row-2 .content-p {
  display: flex;
  flex-direction: column;
  row-gap: 1.5vh;
}
#sec-10-row-2 .content-p .content-p-inner:nth-child(2),
#sec-10-row-2 .content-p .content-p-inner:nth-child(3) {
  display: flex;
  align-items: center;
  column-gap: 1vw;
}
/* footer */
.footer {
  width: 100%;
  height: 100%;
  padding-left: 6vw;
  display: flex;
  flex-direction: row;
  column-gap: 2vw;
}
.footer > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  row-gap: 1vh;
  width: 15%;
  height: 100%;
  align-items: center;
}
.footer > div:nth-child(2) {
  display: flex;
  flex-direction: row;
  column-gap: 2vw;
  width: 85%;
  height: 100%;
  padding: 4vh 6vw 4vh 4vh;
  background-color: #24599b;
}
.row-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.row-footer p {
  font-size: 1vw;
  color: var(--color-white);
  word-wrap: anywhere;
}
.row-footer .column-footer p:first-of-type {
  font-weight: bold;
}
.row-footer .column-footer {
  width: calc(100% / 5);
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 3vh;
}
/* section-9 */
.section-9 {
  width: 100%;
  height: 100%;
  padding: 8vh 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6vh;
  background-image: url("./public/bg3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  margin-bottom: 20px;
}
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  flex: 0 0 100%;
  display: none;
  flex-wrap: wrap;
}
.bullets {
  text-align: center;
  margin-top: 20px;
}
.bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.active {
  background-color: var(--color-crimson-300);
}
.slide-1-column {
  display: grid;
  grid-template-columns: 10% 90%;
  width: 50%;
  box-sizing: border-box;
  padding: 10px;
}
.section-9 .slide .slide-1-column .inner-slide-column:nth-child(1) {
  background-color: var(--color-gold);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
.section-9 .slide .slide-1-column .inner-slide-column:nth-child(2) {
  background-color: var(--color-white);
  padding: 4vw;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-9 .slide .slide-1-column .inner-slide-column:nth-child(1) p {
  position: absolute;
  font-size: 1vw;
  transform: rotate(-90deg);
  width: 31vh;
  font-weight: bold;
}
.section-9 .slide .slide-1-column .inner-slide-column:nth-child(2) p {
  font-size: 1.1vw;
  text-align: justify;
}
.section-9
  .slide
  .slide-1-column:nth-child(2)
  .inner-slide-column:nth-child(1) {
  background-color: var(--color-crimson-300);
  color: var(--color-white);
}
/* section-11 */
.section-11 {
  width: 100%;
  height: 100%;
  padding: 8vh 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6vh;
  background-color: var(--color-whitesmoke-100);
}
.testimonial-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
}
.testimonial-row .column-testimonial:nth-child(1) p {
  text-align: center;
}
.testimonial-row > div:nth-child(1) {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 1vh;
  align-items: center;
}
.testimonial-row > div:nth-child(2) {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-row > div:nth-child(1) img {
  width: 20vw;
  height: auto;
  object-fit: cover;
}
.testimonial-row .column-testimonial h3 {
  font-size: 1.5vw;
  text-align: center;
}
.testimonial-row .column-testimonial p {
  font-size: 1.1vw;
  text-align: justify;
}
/* media queries */
@media screen and (max-width: 992px) {
  .header .row-heaser:nth-child(2) {
    padding: 1vh 10vw 1vh 2vw;
    justify-content: end;
  }
  .header .row-heaser:nth-child(1) img {
    width: 17vw;
    height: auto;
    object-fit: cover;
  }
  .header .row-heaser:nth-child(2) .column-header:nth-child(1),
  .header .social {
    display: none;
  }
  .header .row-heaser:nth-child(2) .column-header {
    width: 100%;
  }
  .button a {
    font-size: 12px;
    padding: 10px 20px;
  }
  .section-1 {
    flex-direction: column;
    padding-right: 10vw;
    padding-top: 20px;
  }
  .section-1 .sec-1-row:nth-child(1) {
    width: 100%;
    height: 50%;
    row-gap: 12px;
  }
  .section-1 .sec-1-row:nth-child(2) {
    width: 100%;
    height: 50%;
    margin-top: 20px;
  }
  #sec-1-row-1 h3 {
    font-size: 14px;
  }
  #sec-1-row-1 h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: normal;
  }
  #sec-1-row-1 p {
    font-size: 15px;
  }
  #sec-1-row-1 .content-image {
    column-gap: 20px;
    padding: 10px 20px;
    border-radius: 6px;
  }
  #sec-1-row-1 .content-image .content p {
    font-size: 17px;
    font-weight: bold;
  }
  #sec-1-row-1 .content-image .content span {
    font-size: 14px;
    text-transform: uppercase;
  }
  #sec-1-row-1 .content-image .content img {
    width: 25px;
  }
  #sec-1-row-1 .content-image .content {
    column-gap: 12px;
  }
  #sec-1-row-1 h2 {
    font-size: 18px;
  }
  .row-sec-scroll p {
    font-size: 14px;
  }
  .row-sec-scroll {
    width: auto;
  }
  .row-sec-scroll img {
    width: 15px;
  }
  .section-3 {
    padding: 4vh 10vw;
    flex-direction: column;
    row-gap: 15px;
  }
  #sec-3-row-1 {
    width: 100%;
  }
  #sec-3-row-1 img {
    width: 100%;
  }
  #sec-3-row-1 h3 {
    font-size: 13px;
  }
  .heading-bg {
    font-size: 20px;
  }
  #sec-3-row-2 p {
    font-size: 15px;
  }
  #sec-3 {
    flex-direction: column;
  }
  #sec-4 {
    padding-left: 10vw;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #sec-4 > div:nth-child(1),
  #sec-4 > div:nth-child(2),
  #sec-5 > div:nth-child(1),
  #sec-5 > div:nth-child(2) {
    width: 100%;
  }
  #sec-4 > div:nth-child(1) {
    margin-bottom: 20px;
  }
  #sec-3-row-2 {
    row-gap: 12px;
  }
  #sec-5 .content-p p:first-child {
    font-size: 15px;
  }
  .row-sec-6 {
    grid-template-columns: auto !important;
    gap: 40px;
  }
  .row-sec-6 .column-sec-6 .content h3 {
    font-size: 17px;
  }
  .row-sec-6 .column-sec-6 .content p {
    font-size: 15px;
  }
  .row-sec-6 .column-sec-6 .flag {
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
  }
  #content-inner-1 h3 {
    font-size: 17px;
  }
  #content-inner-2 .panel-content p {
    font-size: 15px;
  }
  #content-inner-2 .panel-content img {
    width: 25px;
  }
  #content-inner-2 {
    align-items: self-start;
    flex-direction: column;
    row-gap: 12px;
  }
  #sec-7 .content-main {
    row-gap: 12px;
  }
  #content-inner-3 h3 {
    font-size: 16px;
  }
  #content-inner-3 p {
    font-size: 15px;
  }
  #sec-7 .Speaker {
    font-size: 14px;
  }
  .section-8 .row-sec-8 {
    width: 100%;
  }
  .section-9 {
    padding: 2vh 10vw;
  }
  .slide {
    flex-direction: column;
  }

  .slide-1-column {
    width: 100%;
  }

  .slideshow-container {
    display: none;
  }

  .slideshow-container:first-of-type {
    display: block;
  }
  /* .slide .slide-1-column:nth-child(2) {
    display: none;
  } */
  .section-9 .slide .slide-1-column .inner-slide-column:nth-child(2) p {
    font-size: 15px;
  }
  .section-9 .slide .slide-1-column .inner-slide-column:nth-child(1) p {
    font-size: 14px;
  }
  .section-10 {
    padding: 6vh 10vw;
    flex-direction: column;
  }
  #sec-10-row-1,
  #sec-10-row-2 {
    width: 100%;
  }
  #sec-10-row-1 .image .float-img-sec-10 {
    width: 80px;
    height: 80px;
  }
  #sec-10-row-1 {
    margin-bottom: 20px;
  }
  #sec-10-row-2 {
    row-gap: 12px;
  }
  #sec-10-row-2 .content-p-inner h3 {
    font-size: 17px;
  }
  #sec-10-row-2 .content-p-inner p {
    font-size: 15px;
  }
  #sec-10-row-2 .content-p .content-p-inner:nth-child(2),
  #sec-10-row-2 .content-p .content-p-inner:nth-child(3) {
    column-gap: 12px;
  }
  #sec-10-row-2 .content-p-inner img {
    width: 25px;
  }
  .section-11 {
    padding: 5vh 10vw;
    row-gap: 15px;
  }
  .testimonial-row {
    flex-direction: column;
    row-gap: 20px;
  }
  .testimonial-row > div:nth-child(1),
  .testimonial-row > div:nth-child(2) {
    width: 100%;
  }
  .testimonial-row .column-testimonial p {
    font-size: 12px;
    text-align: center;
  }
  .testimonial-row > div:nth-child(1) img {
    width: 75%;
  }
  .testimonial-row .column-testimonial h3 {
    font-size: 17px;
  }
  .footer {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 6vw;
  }
  .footer > div:nth-child(1),
  .footer > div:nth-child(2) {
    width: 100%;
  }
  .footer > div:nth-child(1) {
    margin-bottom: 20px;
  }
  .footer > div:nth-child(2) {
    flex-direction: column;
    row-gap: 30px;
  }
  .row-footer .column-footer {
    width: 100%;
  }
  .row-footer p {
    font-size: 15px;
  }
  .row-footer .column-footer {
    row-gap: 12px;
  }
  #sec-3 .heading-bg::before {
    left: 0 !important;
    width: 25% !important;
  }
  #mobile-heading-bg::before {
    left: 0 !important;
    width: 30% !important;
  }
  .slide-1-column {
    min-height: 350px;
  }
  #footer-row-1 img {
    width: 70%;
  }
  .section-9 .heading-bg::before {
    width: 50% !important;
  }
  .section-8 h3 {
    font-size: 16px;
  }
  #sec-6-row {
    grid-template-columns: auto;
    width: 100%;
  }
  .offer {
    width: 20vw !important;
    left: 14% !important;
    top: 360px !important;
  }
  .row-sec-6 .column-sec-6 .image > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
}
@media only screen and (min-width: 993px) {
  /* .slide {
    min-height: 60vh;
  } */
  .column-scroll {
    margin-right: 3.5vw;
  }
}
#sec-3 .heading-bg::before {
  left: auto;
  right: 0;
  width: 50%;
}
#sec-4 .heading-bg::before {
  left: 0;
  width: 30%;
}
#sec-5 .heading-bg::before {
  left: auto;
  right: 0;
  width: 65%;
}
#mobile-heading-bg::before {
  left: auto;
  right: 0;
  width: 28%;
}
#sec-7 .heading-bg::before {
  left: auto;
  right: 0;
  width: 63%;
}
.section-8 .heading-bg::before {
  left: auto;
  right: 0;
  width: 24%;
}
.section-9 .heading-bg::before {
  left: auto;
  right: 0;
  width: 45%;
}
.section-10 .heading-bg::before {
  right: 0;
  left: auto;
  width: 34%;
}
.section-11 .heading-bg::before {
  left: auto;
  right: 0;
  width: 55%;
}
#founder-bg::before {
  left: auto;
  right: 0;
  width: 32%;
}
#sec-3-a .heading-bg::before {
  left: auto;
  right: 0;
  width: 52%;
}
#sec-1-row-1 {
  position: relative;
}
.offer {
  position: absolute;
  top: 82%;
  right: -10%;
  transform: translate(-50%, -50%);
  width: 10vw;
}
.form-header-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 0;
}
.contact-info a:first-child {
  margin-right: 0;
}
.contact-info a:last-child {
  margin-left: 0;
}
