@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Raleway:wght@400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
}

.fixed {
  position: fixed;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
}

* {
  transition: all 0.5s ease 0s;
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.menu {
  position: absolute;
  right: 0px;
  display: flex;
  top: 10px;
  cursor: pointer;
}

.btn {
  padding: 10px 25px;
  border-radius: 60px;
  line-height: 1.5;
}

.btn.button-primary {
  border: 1px solid #00bceb;
  color: #00bceb;
}

.btn.button-primary:hover,
.btn.button-primary:focus {
  border-color: #0381a0;
  color: #0381a0;
}

.btn.button-secondary {
  background-color: #00bceb;
  color: #fff;
}

.btn.button-secondary:hover,
.btn.button-secondary:focus {
  background-color: #0381a0;
}

.container {
  width: 1215px;
  margin: 0 auto;
}

.row {
  display: flex;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-items-self {
  align-items: self-start;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.navigation ul {
  display: flex;
  align-items: center;
}

.navigation ul li {
  margin-inline: 15px;
}

.navigation ul li a {
  color: #58585b;
  text-decoration: none;
}

.navigation ul li a:hover,
.navigation ul li a:active,
.navigation ul li.active a {
  color: #00bceb;
}

#header {
  padding-block: 10px;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

#header .container {
  position: relative;
  background-color: #fff;
  z-index: 9;
}

#hero {
  position: relative;
  padding-block: 130px 90px;
}

#hero::before {
  content: "";
  background: url("../images/hero-pattern.png");
  background-position: left;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 36%;
}

#hero::after {
  content: "";
  background: url("../images/hero-pattern-right.png");
  background-position: left;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 36%;
}

.text-content {
  flex-basis: 45%;
  position: relative;
}

.text-content h2 {
  font-size: 54px;
  color: #00bceb;
  font-weight: 700;
  margin-bottom: 25px;
}

.text-content h2 small {
  font-size: 36px;
  color: #58585b;
  font-weight: 600;
  width: 100%;
  display: flex;
}

.text-content p {
  color: #58585b;
  line-height: 175%;
  margin-bottom: 25px;
}

.button-wrap {
  display: flex;
}

.button-wrap a {
  margin-right: 15px;
}

.hero-img {
  position: relative;
  z-index: 1;
}

/**  end of hero section  **/

#journey {
  background-color: #f7f7f7;
  padding-block: 130px;
}

#journey .container {
  width: 1340px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #58585b;
  margin-bottom: 70px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  margin-inline: 15px;
  padding: 30px 20px;
  flex-basis: 25%;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
}

.card-icon {
  background-color: #00bceb;
  display: flex;
  padding: 10px;
  border-radius: 50px;
  height: 55px;
  width: 55px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.card-desc {
  font-size: 14px;
  line-height: 1.5;
  /* margin-bottom: 20px; */
  color: #58585b;
}

a.card-link {
  color: #00bceb;
  font-weight: 500;
}
a.card-link:hover,
a.card-link:focus {
  color: #0381a0;
}

/**  End of Journey Section  **/

#services {
  background: #00bceb url("../images/services-bg.png") no-repeat;
  background-size: cover;
  padding-block: 100px;
}

#services .container {
  width: 1480px;
}

#services .section-title {
  color: #fff;
}

#services .card {
  box-shadow: none;
  background-color: transparent;
  text-align: center;
  padding-inline: 10px;
}

#services .card-title,
#services .card-desc {
  color: #fff;
}

#services .card-title {
  font-size: 24px;
  font-weight: 500;
}

#services .card-desc {
  font-size: 16px;
  padding-inline: 10px;
}

.card-thumbnail {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 70px;
  position: relative;
}

.card-thumbnail img {
  height: 240px;
  width: 240px;
  border-radius: 240px;
  overflow: hidden;
}

.digit-num {
  position: absolute;
  bottom: 28px;
  height: 96px;
  width: 96px;
  background-color: #02a8d1;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  border-radius: 96px;
}

/**  End of Services Section  **/

#advantage {
  display: flex;
  align-items: center;
}

.brokerag-content {
  display: flex;
  flex-wrap: wrap;
  padding-left: 50px;
  width: 43%;
}

.brokerag-content .title-with-desc {
  margin-bottom: 30px;
}

.title-with-desc {
  flex-wrap: wrap;
}

.title-with-desc .section-title {
  justify-content: start;
  margin-bottom: 25px;
}

.brokerag-item {
  width: calc(50% - 30px);
  display: flex;
  margin-right: 30px;
  margin-block: 30px;
  align-items: center;
}

.brokerag-item .brokerage-desc {
  margin-left: 30px;
}

.brokerage-desc h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #58585b;
  margin-bottom: 10px;
}

.brokerage-desc p {
  font-size: 14px;
  color: #58585b;
  line-height: 1.3;
  font-weight: 500;
}

/*  End of Brokerage Advantage */

#faq {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-content {
  display: flex;
  flex-wrap: wrap;
  padding-right: 100px;
  padding-left: 15%;
  width: 60%;
}

.faq-content .title-with-desc {
  margin-bottom: 60px;
}

.accordion-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 5px 9px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  padding: 25px;
  width: 100%;
}

.faq-content .quest {
  width: 100%;
  padding: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #58585b;
  line-height: 1.5;
}
.faq-content .answer {
  width: 100%;
  padding-top: 20px;
  display: none;
}
.faq-content .answer p {
  line-height: 150%;
  color: #58585b;
}

/*  End of FAQ  */

#footer {
  background-color: #1682b2;
  padding-block: 60px 30px;
  color: #fff;
}

#footer .container {
  width: 95%;
}

#footer .about {
  width: 100%;
  justify-content: center;
  display: flex;
}
.clearfix {
  width: 100%;
  height: 15px;
}

.f-group-logo {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
  justify-content: center;
}

#footer .about p {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
}

.f-links {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.f-links h5 {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 32px;
}

.f-links ul {
  display: flex;
}

.f-links ul li {
  line-height: 1.5;
  padding: 15px 20px;
}

.f-links ul li a {
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

.f-links ul li a:hover {
  color: #4da6ce;
}

.f-desc p {
  text-align: justify;
  font-size: 14px;
  line-height: 1.5;
  padding-inline: 0px;
}

.newsletter {
  width: 30%;
}

.newsletter h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}

.newsletter-input-wrap {
  margin-bottom: 20px;
  position: relative;
}

.newsletter-input-wrap input {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  width: 100%;
  padding: 10px;
  color: #fff;
  padding-right: 30px;
}

.newsletter-input-wrap input::placeholder {
  opacity: 1;
  color: #fff;
}

.newsletter-input-wrap button {
  background: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
}

.newsletter p {
  line-height: 200%;
}

.social-icons,
.footer-bar-ul {
  display: flex;
}

.footer-bar-ul li {
  margin-inline: 10px;
}

.footer-bar-ul li a {
  color: #fff;
}

.footer-bar-ul li a:hover {
  color: #4da6ce;
}

.social-icons li {
  margin-inline: 5px;
}

.social-icons li:hover {
  opacity: 0.5;
}

.copyright .container {
  width: 95%;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #1682b2;
  padding-block: 20px;
  color: #fff;
}
