@charset "utf-8";

/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #000000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 100%;
  overflow-x: hidden;
}

a {
  outline: none;
  outline-style: none;
  outline-width: 0;
  color: #000000;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  outline: none;
  outline-style: none;
  outline-width: 0;
  color: #017d6c;
  text-decoration: none;
}

.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

[contenteditable="true"]:focus {
  outline: none;
}

*:focus {
  outline: none;
}

img {
  margin: 0;
  padding: 0;
  outline-style: none;
  outline-width: 0;
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1340px;
  padding: 0 30px;
}

.container-fluid {
  padding: 0 30px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-section {
  padding: 0;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 0.4s ease-in-out;
}

.header-section.sticky {
  padding: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 25px 0px #0000000d;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 0.4s ease-in-out;
}

.header-section .top-section {
  padding: 10px 0;
  background-color: #90e4c1;
  border-bottom: 1px solid #1cae71;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0%;
  color: #000000;
  transition: all 0.4s ease-in-out;
}

.header-section.sticky .top-section {
  padding: 0;
  font-size: 0px;
  line-height: 0px;
  border: 0px;
  transition: all 0.4s ease-in-out;
}

.header-section .bot-section {
  padding: 25px 0;
  transition: all 0.4s ease-in-out;
}

.header-section.sticky .bot-section {
  padding: 15px 0;
  transition: all 0.4s ease-in-out;
}

.header-section .bot-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-section .bot-section .container figure {
  width: 16%;
  margin: 0;
  padding: 0;
  transition: 0.5s;
}

.header-section .bot-section .container figure img {
  margin: 0;
  padding: 0;
  height: 88px;
  transition: 0.5s;
}

.header-section .bot-section .container figure img {
  margin: 0;
  padding: 0;
  height: 60px;
  transition: 0.5s;
}

.header-section nav {
  width: 68%;
}

.header-section .menu {
  margin: 0;
  padding: 0;
}

.menu-bar {
  list-style: none;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9;
  width: 280px;
  height: 100%;
  background: #effff8;
  opacity: 0;
  transition: 0.4s;
  padding: 30px;
}

.menu-bar.show {
  left: 0;
  opacity: 1;
  box-shadow: 0px 10px 25px -3px #0000000d;
}

.menu-bar li {
  margin: 0;
}

.menu-bar li a {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  transition: 0.5s;
}

.menu-bar.show li a {
  color: #000000;
  display: block;
}

.menu-bar.show li a.active {
  color: #017d6c;
  position: relative;
}

.menu-bar.show li a.active::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #017d6c;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.menu-bar.show li a svg path {
  fill: #000000;
}

.dropDown-list {
  position: relative;
}

.dropDown-list a.active {
  color: #017d6c;
}

.dropDown-list a span svg {
  width: 12px;
}

.dropDown-list a span svg path {
  transition: 0.4s;
}

.dropDown-list a.active span svg path {
  fill: #017d6c;
}

.dropDown-list a.active span svg {
  transform: rotate(180deg);
}

.dropDown_menu {
  display: none;
  position: relative;
  box-shadow: 0px 4px 44px 0px #00000026;
  list-style: none;
}

.menu-bar.show .dropDown_menu {
  box-shadow: none;
  padding: 15px;
}

.dropDown_menu li {
  line-height: 1;
  margin-top: 15px;
  margin-bottom: 0;
}

.dropDown_menu li a {
  position: relative;
  font-size: 15px;
  line-height: 1;
  color: #000000;
  padding: 5px 0;
  white-space: nowrap;
  display: block;
}

.toggle-btn {
  border: none;
  outline: none;
  background: transparent;
  width: 30px;
  height: 30px;
  font-size: 22px;
  padding: 0;
  color: #000000;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 99;
  cursor: pointer;
  transform: translate(0, -50%);
}

@media (min-width: 1024px) {
  .menu-bar {
    width: 300px;
  }

  .dropDown-list:hover .dropDown_menu {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .toggle-btn {
    display: none;
  }

  .menu-bar {
    position: relative;
    top: unset;
    left: unset;
    width: unset;
    opacity: 1;
    background: transparent;
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    padding: 0;
    list-style: none;
  }

  .menu-bar li a:hover {
    color: #017d6c;
    transition: 0.5s;
  }

  .menu-bar li a.active {
    color: #017d6c;
    transition: 0.5s;
    position: relative;
  }

  .menu-bar li a.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #017d6c;
    position: absolute;
    left: 0;
    bottom: -4px;
  }

  .dropDown-list a.active {
    color: #017d6c;
  }

  .dropDown-list a.active span svg path,
  .dropDown-list a:hover span svg path {
    fill: #017d6c;
  }

  .dropDown_menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    min-width: 130px;
    background: #ffffff;
    border-radius: 3px;
    padding: 15px;
  }

  .dropDown_menu li {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .dropDown_menu li a:hover {
    color: #017d6c;
  }
	
	.header-section .bot-section .container {
		justify-content: flex-end;
	}

}

@media (min-width: 1200px) {
	.header-section aside {
		width: 13% !important;
	}
}


.header-section aside {
  width: 16%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-section aside .btn-01 a,
.header-section aside .btn-04 a {
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .header-section .top-section {
    padding: 5px 0;
    font-size: 12px;
  }

  .header-section .bot-section {
    padding: 15px 0;
    position: relative;
  }

  .header-section nav {
    width: auto;
  }

  .header-section .bot-section .container figure {
    margin: 0;
    padding: 0;
    width: 50%;
  }

  .header-section .bot-section .container figure img {
    height: 60px;
  }

  .header-section aside {
    padding: 0 0 0 50px;
  }

  .menu-bar li {
    margin: 30px 0;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .menu-bar {
    gap: 20px;
  }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section {
  padding-top: 160px;
  position: relative;
  z-index: 1;
  background: url(../img/banner-bg.png) no-repeat center/cover;
}

.banner-section .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.banner-section article {
  width: 55%;
  padding: 50px 0;
}

.banner-section figure {
  width: 45%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.banner-section h1 {
  font-weight: 800;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: 0%;
  color: #000000;
}

.banner-section h1 span {
  color: #017d6c;
}

.banner-section p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #000000;
  padding: 10px 0;
}

.banner-section p strong {
  display: block;
  font-weight: 800;
}

.banner-section p span {
  display: block;
  font-weight: 800;
  color: #017d6c;
}

.banner-section .btn-group {
  padding: 0 0 20px 0;
}

.banner-section ul {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.banner-section ul li {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 760px) {
  .banner-section {
    padding-top: 130px;
  }

  .banner-section .container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .banner-section article {
    width: 100%;
    padding: 0;
  }

  .banner-section figure {
    width: 100%;
  }

  .banner-section h1 {
    font-size: 30px;
  }

  .banner-section p {
    font-size: 16px;
  }

  .banner-section .btn-group {
    padding: 0 0 10px 0;
  }

  .banner-section ul {
    margin: 10px 0 0 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .banner-section ul li {
    font-size: 14px;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
  .banner-section .container {
    flex-wrap: wrap;
  }

  .banner-section article {
    width: 100%;
  }

  .banner-section figure {
    width: 100%;
    justify-content: center;
  }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
  min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  padding: 10px 0;
}

.content-section h1 {
  font-size: 52px;
}

.content-section h2 {
  font-size: 42px;
}

.content-section h3 {
  font-size: 32px;
}

.content-section h4 {
  font-size: 26px;
}

.content-section h5 {
  font-size: 22px;
}

.content-section h6 {
  font-size: 18px;
}

.content-section p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  padding: 10px 0;
}

.content-section ul {
  margin: 0;
  padding: 0 0 0 15px;
  list-style: disc;
}

.content-section ul li {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0 1px;
}

.content-section ul ul {
  list-style: circle;
}

.content-section ul ul {
  list-style: circle;
}

.content-section ol {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: decimal;
}

.content-section ol li {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 5px 0;
}

.content-section ol ol {
  list-style: lower-roman;
}

.sup-heading-top {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px !important;
  line-height: 1.5;
  letter-spacing: 12%;
  text-transform: uppercase;
  color: #017d6c;
  padding: 0;
}

.sub-heading-top {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px !important;
  line-height: 1.5;
  color: #000000;
  padding: 0;
  margin: 0 auto;
  max-width: 830px;
}

.btn-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.btn-01 {
  display: inline-block;
}

.btn-01 a {
  margin: 15px 0;
  padding: 10px 30px;
  background: linear-gradient(90deg, #10a893 0%, #017d6c 100%);
  border: none;
  border-radius: 50px;
  box-shadow: 0px 4px 4px 0px #0381703b;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #ffffff !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  position: relative;
  display: flex;
  align-items: center;
  transform: translateZ(0);
  text-decoration: none;
  overflow: hidden;
}

.btn-01 a:after {
  position: absolute;
  top: 0px;
  right: -40px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 40px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  line-height: inherit;
  opacity: 0;
}

.btn-01 a:hover {
  padding-left: 20px;
  padding-right: 40px;
}

.btn-01 a:hover:after {
  right: 0;
  opacity: 1;
}

.btn-02 {
  display: inline-block;
}

.btn-02 a {
  margin: 15px 0;
  padding: 10px 60px;
  background: linear-gradient(90deg, #124740 0%, #124740 100%);
  border: 1px solid #ffffff;
  border-radius: 50px;
  box-shadow: 0px 4px 4px 0px #0381703b;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #ffffff !important;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-block;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  position: relative;
  display: flex;
  align-items: center;
  transform: translateZ(0);
  text-decoration: none;
  overflow: hidden;
}

.btn-02 a:after {
  position: absolute;
  top: 0px;
  right: -70px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 40px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  line-height: inherit;
  opacity: 0;
}

.btn-02 a:hover {
  padding-left: 50px;
  padding-right: 70px;
}

.btn-02 a:hover:after {
  right: 20px;
  opacity: 1;
}

.btn-03 {
  display: inline-block;
}

.btn-03 a {
  margin: 15px 0;
  padding: 10px 35px 10px 25px;
  background: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #017d6c !important;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: all 300ms;
}

.btn-03 a::after {
  content: "";
  position: absolute;
  right: 0;
  background: linear-gradient(90deg, #10a893 0%, #017d6c 100%);
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: -1;
  border-radius: 50%;
  transition: all 300ms;
}

.btn-03 a:hover {
  color: #ffffff !important;
}

.btn-03 a:hover::after {
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.btn-03 a .icon {
  font-size: 14px;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, -50%);
  transition: all 300ms;
}

.btn-03 a:hover .icon {
  right: 7px;
  transition: all 300ms;
}

.btn-04 {
  display: inline-block;
}

.btn-04 a {
  margin: 15px 0;
  padding: 10px 30px;
  background: #ffffff;
  border: 1px solid #017d6c;
  border-radius: 50px;
  box-shadow: 0px 4px 4px 0px #0381703b;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #017d6c !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  position: relative;
  display: flex;
  align-items: center;
  transform: translateZ(0);
  text-decoration: none;
  overflow: hidden;
}

.btn-04 a:after {
  position: absolute;
  top: 0px;
  right: -40px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 40px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  line-height: inherit;
  opacity: 0;
}

.btn-04 a:hover {
  padding-left: 20px;
  padding-right: 40px;
}

.btn-04 a:hover:after {
  right: 0;
  opacity: 1;
}

@media only screen and (max-width: 760px) {
  .content-section h1 {
    font-size: 30px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section h3 {
    font-size: 22px;
  }

  .content-section h4 {
    font-size: 20px;
  }

  .content-section h5 {
    font-size: 18px;
  }

  .content-section h6 {
    font-size: 16px;
  }

  .content-section p {
    font-size: 15px;
  }

  .content-section ul li {
    font-size: 15px;
  }

  .content-section ol li {
    font-size: 15px;
  }

  .sup-heading-top {
    font-size: 14px !important;
  }

  .sub-heading-top {
    font-size: 16px !important;
  }

  .btn-group {
    gap: 5px;
  }

  .btn-01 a {
    margin: 10px 0;
    padding: 5px 15px;
    font-size: 14px;
  }

  .btn-02 a {
    margin: 10px 0;
    padding: 5px 30px;
    font-size: 14px;
  }

  .btn-03 a {
    margin: 10px 0;
    padding: 5px 35px 5px 15px;
    font-size: 14px;
  }

  .btn-04 a {
    margin: 10px 0;
    padding: 5px 15px;
    font-size: 14px;
  }
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section {
  background: #effff8;
  position: relative;
}

.footer-section .top-section .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.company-info {
  padding: 50px 0;
  text-align: center;
}

.company-info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #000000;
  margin: 0 auto;
  padding: 10px 0;
  max-width: 350px;
}

.company-info p strong {
  font-weight: 600;
  display: block;
}

.company-info p span {
  font-size: 14px;
  color: #017d6c;
  display: block;
}

.company-info ul.social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.company-info ul.social li {
  margin: 10px 0;
  padding: 0;
  width: 22px;
  height: 22px;
  font-size: 12px;
  color: #000000;
}

.company-info ul.social li a {
  width: 22px;
  height: 22px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in-out;
}

.company-info ul.social li a:hover {
  background-color: #017d6c;
  border: 1px solid #017d6c;
  color: #ffffff;
  transition: 0.5s ease-in-out;
}

.contact-info {
  padding: 50px;
  border: 1px solid #d3d3d3;
  border-width: 0 1px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-info h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

.contact-info h6 span {
  display: block;
}

.contact-info h6 a {
  display: block;
  font-weight: 900;
  font-size: 35px;
  text-align: center;
  color: #017d6c;
  white-space: nowrap;
}

.quick-link {
  padding: 50px 0;
}

.quick-link h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
}

.quick-link ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 250px;
}

.quick-link ul li {
  margin: 5px 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
  width: 50%;
}

.footer-section .bot-section {
  padding: 20px 0;
  border-top: 1px solid #d3d3d3;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  text-align: center;
}

@media only screen and (max-width: 760px) {
  .footer-section .top-section .container {
    flex-wrap: wrap;
    gap: 0;
  }

  .company-info {
    padding: 40px 0 20px 0;
    width: 100%;
  }

  .company-info p {
    font-size: 14px;
  }

  .contact-info {
    width: 100%;
    padding: 20px 0;
    border: 1px solid #d3d3d3;
    border-width: 1px 0;
  }

  .contact-info h6 {
    font-size: 16px;
  }

  .contact-info h6 a {
    font-size: 25px;
  }

  .quick-link {
    padding: 20px 0;
    text-align: center;
    width: 100%;
  }

  .quick-link h4 {
    font-size: 18px;
  }

  .quick-link ul {
    gap: 15px;
    justify-content: center;
    max-width: 100%;
  }

  .quick-link ul li {
    margin: 0;
    font-size: 14px;
    width: auto;
  }

  .footer-section .bot-section {
    font-size: 14px;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
  .footer-section .top-section .container {
    gap: 0;
    flex-wrap: wrap;
  }

  .company-info {
    padding: 50px 0 30px 0;
    width: 100%;
    border-bottom: 1px solid #d3d3d3;
  }

  .contact-info {
    padding: 30px 0;
    width: 100%;
    border-width: 0 0 1px 0;
  }

  .company-info p {
    max-width: 100%;
  }

  .quick-link {
    padding: 30px 0;
    width: 100%;
    text-align: center;
  }

  .quick-link ul {
    margin: 0 auto;
    justify-content: center;
    gap: 15px;
    max-width: 100%;
  }

  .quick-link ul li {
    margin: 0;
    width: auto;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .contact-info {
    padding: 50px;
  }

  .quick-link ul li {
    width: 100%;
  }
}

.about-us-section {
  padding: 100px 0;
}

.about-us-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

.about-us-section figure {
  width: 45%;
  min-height: 550px;
  position: relative;
}

.about-us-section figure::before {
  content: "";
  width: 32px;
  height: 88px;
  background: url(../img/dots.png) no-repeat center;
  position: absolute;
  left: 100px;
  top: 0;
}

.about-us-section figure .img-01 {
  position: absolute;
  top: 0;
  right: 0;
}

.about-us-section figure .img-02 {
  position: absolute;
  bottom: 0;
  left: 0;
  border: 10px solid #ffffff;
}

.about-us-section article {
  width: 55%;
}

.about-us-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-us-section ul li {
  margin: 10px 0;
  padding: 0 0 0 35px;
  background: url(../img/bullet.svg) no-repeat 0 2px;
}

@media only screen and (max-width: 760px) {
  .about-us-section {
    padding: 50px 0;
  }

  .about-us-section .container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .about-us-section figure {
    width: 100%;
    min-height: 370px;
  }

  .about-us-section figure::before {
    left: 0;
  }

  .about-us-section figure .img-01 {
    width: 80%;
  }

  .about-us-section figure .img-02 {
    width: 50%;
  }

  .about-us-section article {
    width: 100%;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
  .about-us-section .container {
    gap: 30px;
  }

  .about-us-section figure {
    min-height: 370px;
  }

  .about-us-section figure::before {
    left: 0;
  }

  .about-us-section figure .img-01 {
    width: 80%;
  }

  .about-us-section figure .img-02 {
    width: 50%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .about-us-section .container {
    gap: 50px;
  }

  .about-us-section figure::before {
    left: 0;
  }

  .about-us-section figure .img-01 {
    width: 90%;
  }
}

.our-services-section {
  padding: 75px 0;
  background-color: #effff8;
  text-align: center;
}

.our-services-section .grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.our-services-section .item {
  padding: 35px 25px 0 25px;
  background: #ffffff;
  box-shadow: 0px 4px 44px 0px #0000000d;
}

.our-services-section .item h3 {
  font-size: 30px;
  padding: 0;
}

.our-services-section .item .btn-03 a {
  margin: 0;
}

.our-services-section .item figure {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media only screen and (max-width: 760px) {
  .our-services-section {
    padding: 50px 0;
  }

  .our-services-section .grid {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .our-services-section .item {
    padding: 30px 15px 0 15px;
  }

  .our-services-section .item h3 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
  .our-services-section .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .our-services-section .item {
    padding: 30px 15px 0 15px;
  }

  .our-services-section .item h3 {
    font-size: 26px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .our-services-section .grid {
    gap: 20px;
  }
}

.how-it-works-section {
  padding: 0 0 75px 0;
  background-color: #effff8;
  text-align: center;
}

.how-it-works-section .grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.how-it-works-section .icon-box figure {
  margin: 0 auto 30px auto;
  padding: 0;
}

.how-it-works-section .first,
.how-it-works-section .second,
.how-it-works-section .third {
  position: relative;
}

.how-it-works-section .first::after {
  content: "";
  width: 203px;
  height: 48px;
  background: url(../img/arrow-01.png) no-repeat center;
  position: absolute;
  top: 108px;
  right: -125px;
  z-index: 1;
}

.how-it-works-section .second::after {
  content: "";
  width: 203px;
  height: 48px;
  background: url(../img/arrow-02.png) no-repeat center;
  position: absolute;
  top: 50px;
  right: -125px;
  z-index: 1;
}

@media only screen and (max-width: 760px) {
  .how-it-works-section {
    padding: 0 0 50px 0;
  }

  .how-it-works-section .grid {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .how-it-works-section .icon-box figure {
    margin: 0 auto 10px auto;
  }

  .how-it-works-section .icon-box figure img {
    width: 120px;
  }

  .how-it-works-section .first::after {
    top: auto;
    right: auto;
    left: -90px;
    bottom: 0;
    transform: rotate(90deg);
  }

  .how-it-works-section .second::after {
    top: auto;
    right: -90px;
    bottom: 0;
    transform: rotate(90deg);
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
}

.why-choose-section {
  padding: 100px 0;
  text-align: center;
}

.why-choose-section h2 {
  margin: 0 auto;
  max-width: 730px;
}

.why-choose-section .grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-choose-section .item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-section .item figure {
  margin: 0;
  padding: 0;
}

.why-choose-section .item figure img {
  border-radius: 8px;
}

.why-choose-section .item article {
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 8px;
  width: 100%;
  min-height: 210px;
  text-align: left;
}

.why-choose-section .item article p {
  padding: 0;
  font-size: 16px;
}

@media only screen and (max-width: 760px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-section .grid {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .why-choose-section .item {
    gap: 20px;
  }

  .why-choose-section .item article {
    padding: 20px;
    min-height: inherit;
  }

  .why-choose-section .item article p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
  .why-choose-section .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .why-choose-section .item {
    gap: 20px;
  }

  .why-choose-section .item figure {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .why-choose-section .item figure img {
    width: 40%;
  }

  .why-choose-section .item article {
    width: calc(50% - 10px);
    padding: 20px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .why-choose-section .grid {
    gap: 20px;
  }

  .why-choose-section .item {
    gap: 20px;
  }

  .why-choose-section .item article {
    padding: 20px;
  }
}

.join-over-section {
  padding: 100px 0;
  background-color: #effff8;
  text-align: center;
}

.reviews-slider {
  margin: 40px -15px;
}

.review-box {
  background: #ffffff;
  padding: 25px;
  box-shadow: 0px 0px 15px 0px #0000000d;
  margin: 15px;
  text-align: left;
}

.review-box .stars {
  color: #ffc107;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.review-box .author {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.review-box .author img {
  border: 2px solid #017d6c;
  border-radius: 50%;
  margin-right: 20px;
  width: 50px;
  height: 50px;
}

.review-box .author h6 {
  font-family: "Roboto", sans-serif;
  padding: 0;
}

.review-box .author span {
  font-size: 15px;
}

@media only screen and (max-width: 760px) {
  .join-over-section {
    padding: 50px 0;
    background-color: #effff8;
    text-align: center;
  }

  .reviews-slider {
    margin: 20px 0;
  }

  .review-box {
    margin: 0;
  }
}

.we-help-section {
  padding: 130px 0;
  text-align: center;
}

.we-help-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

.we-help-section article {
  width: 60%;
}

.we-help-section article ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.we-help-section article ul li {
  margin: 0;
  padding: 10px;
  width: 210px;
  height: 50px;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  font-weight: 700;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}

.we-help-section aside {
  width: 40%;
}

.we-help-section figure {
  margin: 0 auto;
  width: 440px;
  height: 440px;
  background-color: #017d6c;
  border-radius: 50%;
  position: relative;
}

.we-help-section figure .img-01 {
  position: absolute;
  left: -60px;
  top: -60px;
  border: 10px solid #ffffff;
  z-index: 9;
}

.we-help-section figure .img-02 {
  position: absolute;
  right: -60px;
  bottom: -60px;
  border: 10px solid #ffffff;
}

@media only screen and (max-width: 760px) {
  .we-help-section {
    padding: 50px 0 100px 0;
  }

  .we-help-section .container {
    flex-wrap: wrap;
    gap: 70px;
  }

  .we-help-section article {
    width: 100%;
  }

  .we-help-section article ul {
    margin: 10px 0;
  }

  .we-help-section article ul li {
    padding: 5px 15px;
    width: auto;
    height: 40px;
    font-size: 15px;
  }

  .we-help-section aside {
    width: 100%;
  }

  .we-help-section figure {
    width: 240px;
    height: 240px;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
  .we-help-section .container {
    flex-wrap: wrap;
    gap: 70px;
  }

  .we-help-section article {
    width: 100%;
  }

  .we-help-section aside {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .we-help-section figure {
    width: 300px;
    height: 300px;
  }
}

.blog-section {
  padding: 75px 0;
  background-color: #effff8;
  text-align: center;
}

.blog-section .grid {
  margin: 40px auto 20px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-section .post {
  background-color: #ffffff;
  box-shadow: 0px 4px 44px 0px #0000000d;
}

.blog-section figure {
  max-height: 270px;
  overflow: hidden;
}

.blog-section article {
  padding: 20px 30px;
  text-align: left;
}

.blog-section article h6 {
  font-family: "Roboto", sans-serif;
}

.blog-section article h6 a {
  transition: 0.4s ease;
}

.blog-section article p a {
  font-weight: 700;
  color: #017d6c;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  position: relative;
}

.blog-section article p a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.blog-section article p a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.blog-section article ul {
  margin: 10px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.blog-section article ul li {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.blog-section article ul li a {
  color: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  transition: 0.4s ease;
}

.blog-section article ul li a:hover {
  color: #017d6c;
  transition: 0.4s ease;
}

@media only screen and (max-width: 760px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-section .grid {
    margin: 20px auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .blog-section article {
    padding: 10px 20px;
  }

  .blog-section article ul li {
    font-size: 14px;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
  .blog-section .grid {
    gap: 20px;
  }

  .blog-section article {
    padding: 10px 20px;
  }

  .blog-section article ul li {
    font-size: 14px;
  }
}

.faqs-section {
  padding: 75px 0;
  text-align: center;
}

.accordion_container {
  margin: 30px auto 0 auto;
  max-width: 1070px;
  text-align: left;
}

.accordion_head {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  padding: 10px 40px 10px 0;
  position: relative;
}

.plusminus {
  float: right;
  font-size: 18px;
  color: #000000;
  position: absolute;
  right: 0;
  top: 10px;
}

.abox {
  border-bottom: 1px solid #f1e9da;
  padding: 15px 0;
}

@media only screen and (max-width: 760px) {
  .faqs-section {
    padding: 50px 0;
    text-align: center;
  }

  .accordion_head {
    font-size: 16px;
  }
}

.call-to-action-section {
  padding: 0 0 100px 0;
  text-align: center;
}

.call-to-action-section section {
  background: linear-gradient(90deg, #10a893 0%, #017d6c 100%);
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px #0381703b;
  padding: 70px;
  text-align: center;
}

.call-to-action-section section h2 {
  margin: 0 auto;
  max-width: 650px;
  color: #ffffff;
}

.call-to-action-section section .sub-heading-top {
  color: #ffffff;
}

.call-to-action-section section .btn-02 a {
  margin: 30px auto 15px auto;
}

@media only screen and (max-width: 760px) {
  .call-to-action-section {
    padding: 0 0 50px 0;
  }

  .call-to-action-section section {
    padding: 30px;
  }

  .call-to-action-section section .btn-02 a {
    margin: 15px auto;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
  .call-to-action-section section {
    padding: 50px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .call-to-action-section section {
    padding: 50px;
  }
}

/* 18.11.2025 */

/* Inner header */
.header-section .btn-01 {
  display: inline-block;
  margin-right: 43px;
}

.bg-white {
  background: #fff;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.05);
}

.banner-section.inner-banner ul.inner-broadcom {
  justify-content: center;
}

.banner-section.inner-banner {
  padding-top: 0;
  margin-top: 130px;
  background: none;
}

.inner-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.inner-broadcom {
  gap: 5px;
}

.inner-broadcom li {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  gap: 0;
}

.inner-broadcom li::after {
  content: ">";
  position: relative;
  font-weight: bold;
}

.inner-broadcom li:last-child:after {
  display: none;
}

.banner-section.inner-banner .inner-broadcom {
  gap: 7px;
}

.banner-section.inner-banner .inner-broadcom li {
  gap: 7px;
}

.inner-broadcom li a {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #017d6c;
}

.inner-broadcom li a:hover {
  color: #000;
}

.banner-section.inner-banner .container {
  flex-direction: column;
}

.banner-section.inner-banner article {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.banner-section.inner-banner .btn-group {
  justify-content: center;
}

@media (min-width: 1024px) {
  .header-section .btn-01 {
    margin-right: 0px;
  }
}

@media (min-width: 1200px) {
  .banner-section.inner-banner {
    margin-top: 160px;
  }
}

/* Inner header */

/* Contact us */
.contact-info-section {
  margin: 50px 0;
}

.contact-info-top-left h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #000000;
}

.contact-info-top-left h3 span {
  color: #017d6c;
}

.contact-info-top-right h4 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
}

.contact-info__box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 28px;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  border-radius: 0px;
  margin: 10px 0;
}

.contact-info__box img {
  width: 40px;
  margin-right: 12px;
}

.contact-info__box h5 {
  width: calc(100% - 52px);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  font-size: 18px;
  line-height: 22px;
  color: #282828;
  padding: 0;
}

.contact-info__box h5 span {
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  display: block;
}

/**
   * Forms
   */
.form-col {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

label {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #7a8886;
  margin-bottom: 6px;
}

.form-col-checkbox {
  display: block;
} 

.form-col-checkbox input {
  display: none;
  cursor: pointer;
}


.form-col-checkbox figure{  
  position: relative;
}

.form-col-checkbox {
  display: block;
}

.form-col-checkbox input {
  display: none;
  cursor: pointer;
}

.form-col-checkbox figure {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}

.form-col-checkbox label {
	margin: 0 !important;
}

.form-col-checkbox label figure {
  color: #000000;
  text-decoration: none;
  width: max-content;
	margin: 0 !important;
}
.form-col-checkbox span.wpcf7-list-item {
	margin: 0 0 0 0;
}

.form-col-checkbox label figure span {
  color: #017d6c;
  text-decoration: underline;
}

.form-col-checkbox figure:before {
  content: "";
  -webkit-appearance: none;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
  border: var(--border-colo) 1px solid;
  width: 24px;
  height: 24px;
  background: #ffffff;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.form-col-checkbox input:checked + span figure:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #017d6c;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wpcf7-spinner {
	position: absolute !important;
}

textarea {
  display: inline-block;
  padding: 15px 16px;
  gap: 10px;
  width: 100%;
  height: 100px;
  border-radius: 6px;
  resize: none;
  padding: 18px;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #7a8886;
  border-radius: 6px;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
  -webkit-appearance: none;
}

input:active,
textarea:active,
select:active,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  /* Removes blue border on focus */
  /* border: 1px solid #ccc; */
  /* TODO: Please add a branded border for active and focus */
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
  display: inline-block;
  padding: 15px 16px;
  gap: 10px;
  width: 100%;
  height: 46px;
  padding: 18px;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #7a8886;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}

textarea::placeholder,
input::placeholder {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  opacity: 1;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: none;
  padding: 0;
}

[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 37px;
  background: linear-gradient(90deg, #10a893 0%, #017d6c 100%);
  box-shadow: 0px 4px 4px rgba(3, 129, 112, 0.23);
  border-radius: 44px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

[type="submit"]:hover {
  background: linear-gradient(180deg, #10a893 0%, #017d6c 100%);
}

.form-col-btn {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact-form-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.contact-form-section {
  margin: 50px 0;
}

@media (min-width: 768px) {
  .contact-form-section {
    margin: 70px 0;
  }

  .contact-info-section {
    margin: 70px 0;
  }

  .contact-info-flex {
    display: flex;
    justify-content: space-between;
  }

  .contact-info-top-left,
  .contact-info-top-right {
    width: calc(50% - 20px);
  }

  .form-col-btn {
    flex-direction: row;
    gap: 0px;
  }

  .contact-form-flex figure img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .contact-form-section {
    margin: 100px 0;
  }

  .contact-info-top-left h3 {
    font-size: 32px;
    line-height: 44px;
  }

  .contact-info__box h5 span {
    font-size: 17px;
    line-height: 25px;
    color: #000000;
  }

  .contact-info-top-right h4 {
    font-size: 24px;
    line-height: 24px;
  }

  .contact-info-top-left {
    width: 574px;
  }

  .contact-info-top-right {
    width: 557px;
  }

  .contact-form article {
    margin-bottom: 20px;
  }

  .contact-form article h2 {
    padding: 0;
  }

  .contact-form-flex {
    flex-direction: row;
    align-items: center;
  }

  .contact-form-flex figure {
    width: 478px;
    margin-right: 86px;
  }

  .contact-form-flex figure img {
    height: 605px;
  }

  .contact-form {
    width: calc(100% - 564px);
    padding-right: 30px;
  }
}

/* FAQ */

.bg-faq {
  background: #fbfbfb;
  padding: 50px 0;
  margin: 50px 0;
}

.faqs-block h2 {
  text-align: left;
}

.left-image-right-content-section {
  margin: 50px 0;
}

.left-image-right-content-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.left-image-right-content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.left-image-right-content ul li {
  margin: 11px 0;
  position: relative;
  padding-left: 36px;
}

.left-image-right-content ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/list-icon.svg) top left;
  width: 22px;
  height: 22px;
}

.bg-gray {
  background: #fbfbfb;
}

.faqs-section.bg-gray {
  margin: 0px 0 50px;
}

@media (min-width: 768px) {
  .faqs-section.bg-gray {
    margin: 30px 0 70px;
  }
}

@media (min-width: 1024px) {
  .faqs-section.bg-gray {
    margin: 30px 0 100px;
  }

  .left-image-right-content-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .left-image-right-content-flex figure {
    width: calc(50% - 20px);
  }

  .left-image-right-content {
    width: calc(50% - 20px);
  }
}

@media (min-width: 1366px) {
  .left-image-right-content-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }

  .left-image-right-content-flex figure {
    width: 496px;
  }

  .left-image-right-content {
    width: 683px;
  }
}

.icons-cards-section {
  margin: 50px 0;
  padding: 50px 0;
  background: #fbfbfb;
}

.icons-cards-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.icons-card {
  text-align: center;
}

.icons-card-top {
  width: 223px;
  height: 217px;
  position: relative;
  margin: 0 auto;
}

.icons-card-top img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icons-card-top p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #000000;
  z-index: 2;
}

.icons-card-top p span {
  font-weight: 700;
  font-size: 30px;
  line-height: 19px;
  display: block;
  padding-top: 10px;
}

.icons-card {
  width: 100%;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2,
.section-heading p {
  padding: 0;
}

.section-heading h2 {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .icons-cards-section {
    margin: 70px 0;
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .icons-card {
    width: calc(50% - 20px);
  }

  .icons-card-top {
    margin-bottom: 40px;
  }

  .icons-card__content h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    padding: 0;
    margin-bottom: 7px;
  }

  .icons-card__content p {
    font-size: 16px;
    line-height: 19px;
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .icons-cards-section {
    margin: 100px 0;
    padding: 100px 0;
  }

  .icons-cards-flex {
    gap: 60px;
  }

  .icons-card {
    width: calc(25% - 45px);
  }
}

.how-it-works-block {
  margin: 50px 0;
  padding: 50px 0;
}

.how-it-works-stap ul {
  position: relative;
  padding: 0 0 0 30px;
  list-style-type: none;
}

.how-it-works-stap ul::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: url(../img/border.png) repeat-y;
}

.how-it-works-stap ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.how-it-works-stap ul li {
  margin: 0;
}

.how-it-works-stap ul li .step-content {
  position: relative;
}

.how-it-works-stap ul li .step-content::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -44px;
  width: 30px;
  height: 30px;
  background: url(../img/cercel-icon.png) no-repeat;
  background-size: contain;
  z-index: 1;
}

.how-it-works-stap ul li .step-content ul {
  padding: 0;
  list-style-type: none;
  gap: 19px;
}

.how-it-works-stap ul li .step-content ul li {
  position: relative;
  padding-left: 26px;
}

.how-it-works-stap ul li .step-content ul li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 20px;
  background: url(../img/icon11.png) no-repeat;
  background-size: cover;
  transform: rotate(180deg);
}

.how-it-works-stap ul li .step-content ul::after,
.how-it-works-stap ul li .step-content ul li::after {
  display: none;
}

.how-it-works-stap ul li h3 {
  padding: 0;
  margin-bottom: 9px;
  font-size: 18px;
}

.how-it-works-stap ul li .step {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #017d6c;
}

.how-it-works-stap ul li p {
  padding: 0;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .how-it-works-block {
    margin: 70px 0;
    padding: 70px 0;
  }

  .how-it-works-stap ul {
    padding: 0 0 0 0px;
  }

  .how-it-works-stap ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .how-it-works-stap ul li:nth-child(even) {
    flex-direction: row-reverse;
  }

  .how-it-works-stap ul li .step {
    width: 50%;
    text-align: right;
    padding-right: 73px;
    padding-top: 20px;
  }

  .how-it-works-stap ul li .step-content {
    width: 50%;
    padding-left: 73px;
  }

  .how-it-works-stap ul li .step-content::after {
    width: 64px;
    height: 65px;
  }

  .how-it-works-stap ul::after {
    left: 50%;
    transform: translate(-50%, 0);
  }

  .how-it-works-stap ul li .step-content::after {
    left: -32px;
  }

  .how-it-works-stap ul li:nth-child(even) .step-content {
    padding: 0 73px 0 0;
    text-align: right;
  }

  .how-it-works-stap ul li:nth-child(even) .step-content ul li {
    text-align: right;
    padding: 0 39px 0 0;
  }

  .how-it-works-stap ul li:nth-child(even) .step-content::after {
    left: unset;
    right: -31px;
  }

  .how-it-works-stap ul li:nth-child(even) .step {
    text-align: left;
    padding-left: 73px;
  }

  .how-it-works-stap ul li:nth-child(even) .step-content ul li::before {
    left: 0;
    width: 24px;
    height: 24px;
  }

  .how-it-works-stap ul li:nth-child(even) .step-content ul li::before {
    left: unset;
    width: 24px;
    height: 24px;
    transform: unset;
    right: 0;
  }

  .how-it-works-stap ul li .step-content ul li {
    flex-direction: unset;
  }

  .how-it-works-stap ul li:nth-child(even) .step-content ul li {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1200px) {
  .how-it-works-block {
    margin: 100px 0;
    padding: 100px 0;
  }

  .how-it-works-stap ul li .step {
    font-size: 22px;
    line-height: 26px;
    color: #017d6c;
  }

  .how-it-works-stap ul li h3 {
    font-size: 20px;
  }
}

.how-can-we-help-you-section {
  margin: 50px 0;
}

@media (min-width: 768px) {
  .how-can-we-help-you-section {
    margin: 70px 0;
  }
}

@media (min-width: 1200px) {
  .how-can-we-help-you-section {
    margin: 100px 0;
  }
}

.section-heading h5 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #017d6c;
  margin-bottom: 2px;
  padding: 0;
}

.how-can-we-help-you-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1064px;
  margin: 0 auto;
}

.how-can-we-help-you__card {
  align-items: center;
  padding: 25px;
  background: #ffffff;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
}

.how-can-we-help-you__card h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 18px;
  text-align: center;
  color: #000000;
  padding: 0;
  margin-bottom: 8px;
}

.how-can-we-help-you__card p {
  padding: 0;
}

.btn-center {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .how-can-we-help-you__card {
    width: calc(50% - 10px);
  }
}

.primary-care-section {
  margin: 50px 0;
}

@media (min-width: 768px) {
  .primary-care-section {
    margin: 70px 0;
  }
}

@media (min-width: 1200px) {
  .primary-care-section {
    margin: 100px 0;
  }

  .primary-care__flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .primary-care__image {
    width: calc(100% - 662px);
  }

  .primary-care__content {
    max-width: 662px;
  }
}

.program-section {
  padding: 50px 0;
  margin: 50px 0;
}

.program-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.program__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.program__card__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.program-icon {
  width: 60px;
  margin-right: 19px;
}

.program-content {
  width: calc(100% - 79px);
}

.program-content h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 49px;
  color: #000000;
}

.program__card__content p {
  padding: 0;
}

.how-works-stap-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.how-works-stap-box h4 {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 1px solid #009ca6;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #009ca6;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 0;
}

.how-works-stap-box h3 {
  padding: 0;
  margin-bottom: 20px;
}

.how-works-stap-box p {
  padding: 0;
}

.how-works-stap-left,
.how-works-stap-right {
  display: flex;
  flex-direction: column;
  gap: 74px;
}

.how-works-stap-image {
  display: none;
}

@media (min-width: 768px) {
  .program-section {
    padding: 70px 0;
    margin: 70px 0;
  }

  .program__card {
    width: calc(50% - 10px);
  }

  .how-works-stap-right,
  .how-works-stap-left {
    width: calc(50% - 20px);
    max-width: 368px;
  }

  .how-works-stap-box h3 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .program-section {
    padding: 100px 0;
    margin: 100px 0;
  }

  .program__card {
    width: calc(25% - 15px);
  }

  .how-works-stap-image {
    display: block;
  }

  .how-works-stap-flex {
    flex-wrap: unset;
    align-items: center;
    justify-content: space-between;
  }

  .how-works-stap-left .how-works-stap-box {
    text-align: right;
  }

  .how-works-stap-left .how-works-stap-box h4 {
    margin: 0 0 24px auto;
  }
}

.what-to-expect-block {
  margin: 50px 0;
  padding: 50px 0;
  background: rgba(239, 255, 248, 0.7);
}

.what-to-expect-right {
  width: 100%;
  max-width: 551px;
  position: relative;
  padding-left: 100px;
  padding-bottom: 77px;
}

.what-to-expect-right-image2 {
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 10px #f4fffa solid;
  border-right: 10px #f4fffa solid;
}

ul.what-to-expect-left-list {
  padding: 0;
  list-style-type: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

ul.what-to-expect-left-list::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 30px;
  width: 1px;
  height: calc(100% - 32px);
  background: url(../img/border.png) repeat-y;
}

ul.what-to-expect-left-list li {
  position: relative;
  padding: 0 0 0 100px;
  margin: 0;
}

ul.what-to-expect-left-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 61px;
  height: 61px;
  background: url(../img/icon12.png) no-repeat;
  background-size: contain;
  z-index: 1;
}

ul.what-to-expect-left-list li::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 22px;
  width: 17px;
  height: 16px;
  background: url(../img/icon-13.png) no-repeat;
}

ul.what-to-expect-left-list li:last-child:after {
  display: none;
}

@media (min-width: 768px) {
  .what-to-expect-block {
    margin: 70px 0;
    padding: 70px 0;
  }

  .what-to-expect-flex {
    display: flex;
    flex-direction: column;
    gap: 86px;
  }
}

@media (min-width: 1200px) {
  .what-to-expect-block {
    margin: 100px 0;
    padding: 100px 0;
  }

  .what-to-expect-flex {
    flex-direction: unset;
    align-items: flex-start;
  }
  .what-to-expect-left {
    width: calc(100% - 637px);
  }

  .what-to-expect-left h2 {
    font-size: 40px;
    line-height: 49px;
    margin-bottom: 19px;
  }

  .what-to-expect-left p {
    padding: 0;
    margin-bottom: 20px;
  }

  .what-to-expect-left-list-content h3 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .what-to-expect-left-list-content p {
    font-size: 16px;
    line-height: 19px;
  }
}

.circle-image {
  position: relative;
  width: 100%;
  max-width: 548px;
  padding: 20px 0 76px 20px;
}

.circle-image1 {
  position: relative;
}

.circle-image1 img {
  position: relative;
  width: 300px;
  max-width: 509px;
  max-height: 509px;
  border-radius: 100%;
  background: #d9d9d9;
  border: 5px solid #ffffff;
  box-shadow: 10px 14px 44px rgba(0, 0, 0, 0.1);
}

.circle-image2 {
  position: absolute;
  bottom: 0;
  left: 20px;
}

.circle-image2 img {
  width: 150px;
  border-radius: 100%;
  max-width: 272px;
  max-width: 272px;
  background: #d9d9d9;
  border: 5px solid #ffffff;
}

.circle-image1::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0px;
  width: 261px;
  height: 100%;
  background: url(../img/circle-image1-half-raund.png) no-repeat;
  background-size: contain;
}

.circle-image2::after {
  content: "";
  position: absolute;
  bottom: -72px;
  left: -3px;
  width: 100%;
  height: 100%;
  background: url(../img/circle-image2-half-raund.png) no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .circle-image {
    width: 548px;
    padding: 20px 0 126px 20px;
    margin: 0 auto;
  }

  .circle-image1 img {
    width: 506px;
  }

  .circle-image1::after {
    top: -12px;
    left: 13px;
    width: 418px;
  }

  .circle-image2 img {
    width: 271px;
  }

  .circle-image2::after {
    bottom: -131px;
    left: -8px;
  }
}

.triple-image figure {
  padding: 50px 50px 80px;
}

.about-us-section.triple-image figure .img-01 {
  position: unset;
  top: unset;
  right: unset;
}

.triple-image figure .about-image-top {
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #fff;
  border-radius: 12px;
  z-index: 1;
  width: 30%;
  max-width: 162px;
}

.triple-image figure .about-image-bottom {
  position: absolute;
  bottom: 30px;
  right: 0;
  border: 4px solid #fff;
  border-radius: 12px;
  z-index: 1;
  width: 35%;
  max-width: 192px;
}

.experiences {
  width: calc(100% - 60px);
  background: #10a893;
  border-radius: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px 30px 10px 10px;
}

.experiences h4 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 39px;
  color: #ffffff;
}

.experiences h4 span {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}

.experiences-img {
  width: 40%;
  max-width: 90px;
}

@media (min-width: 1200px) {
  .triple-image figure {
    padding: 50px 50px 80px;
  }

  .about-us-section.triple-image figure .img-01 {
    position: unset;
    top: unset;
    right: unset;
  }

  .triple-image figure .about-image-top {
    position: absolute;
    top: 0;
    left: 0;
    border: 4px solid #fff;
    border-radius: 12px;
    z-index: 1;
  }

  .triple-image figure .about-image-bottom {
    position: absolute;
    bottom: 30px;
    right: 0;
    border: 4px solid #fff;
    border-radius: 12px;
    z-index: 1;
  }

  .experiences {
    width: calc(100% - 21%);
    background: #10a893;
    border-radius: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 20px;
  }

  .experiences h4 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 49px;
    color: #ffffff;
  }

  .experiences h4 span {
    display: block;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    color: #ffffff;
  }
}

.image-content-section {
  margin: 50px 0;
}

.image-content-section .container {
  position: relative;
}

.image-content-section .container::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100% - 0px);
  background: rgba(239, 255, 248, 0.7);
  z-index: -1;
}

.image-content {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.image-content__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 768px) {
  .image-content-section {
    margin: 75px 0;
  }

  .image-content {
    padding: 0px 0;
    gap: 50px;
  }

  .image-content-section .container::before {
    top: 50px;
    height: calc(100% - 100px);
  }

  .image-content__flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
  }

  .image-content__image {
    width: 45%;
  }

  .image-content__content {
    width: 50%;
  }

  .image-content__flex:nth-last-child(even) {
    flex-direction: row-reverse;
    align-items: end;
  }

  .image-content__flex h2 {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .image-content-section {
    margin: 75px 0;
  }

  .image-content-section .container::before {
    top: 100px;
    height: calc(100% - 200px);
  }

  .image-content__flex {
    gap: 60px;
  }

  .image-content__image {
    width: 380px;
  }

  .image-content__content {
    width: calc(100% - 440px);
  }
}

/* Our Team */
.our-team-block {
  margin: 50px 0;
  padding: 50px 0;
}

.our-team-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 26px;
}

.our-team-card__image ul {
  padding-left: 0;
  list-style-type: none;
}

.our-team-card {
  background: #ffffff;
  box-shadow: 0px 10px 50px rgba(185, 212, 238, 0.5);
  border-radius: 15px;
}

.our-team-card__image {
  margin: 5px 5px 9px;
  position: relative;
}

.our-team-card__image img {
  width: 100%;
  object-fit: cover;
  height: 295px;
  border-radius: 15px;
}

.team-sosal-icon {
  position: absolute;
  bottom: -20px;
  right: 11px;
}

.our-team-btn-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #009ca6;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.our-team-btn-toggle div {
  width: 18px;
  height: 2px;
  border-radius: 9px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.our-team-btn-toggle div.two {
  transform: translate(-50%, -50%) rotate(90deg);
}

.our-team-btn-toggle.open {
  transform: rotate(45deg);
  background: #ffc107;
}

.team-sosal-icon .team-sosal-icons li {
  margin-bottom: 5px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.team-sosal-icon.active .team-sosal-icons li {
  opacity: 1;
}

.team-sosal-icons li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #009ca6;
  border-radius: 100%;
}

.our-team-card__content {
  margin: 5px 16px 15px;
}

.our-team-card__content h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  padding: 0;
  margin-bottom: 7px;
}

.our-team-card__content p {
  padding: 0;
}

.our-team-card__content p {
  color: var(--body-color);
}

@media (min-width: 768px) {
  .our-team-block {
    margin: 57px 0;
    padding: 57px 0;
  }
}

@media (min-width: 1200px) {
  .our-team-block {
    margin: 100px 0;
    padding: 100px 0;
  }

  .our-team-card__content h3 {
    font-size: 20px;
    line-height: 1.35em;
  }

  .our-team-card__content p {
    font-size: 16px;
    line-height: 1.1875em;
  }

  .our-team-block .services-cards-buttonn {
    margin-top: 10px;
  }
}

/* Block */

.block-cards-section {
  margin: 50px 0;
}

.block-card {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
}

.block-card__image img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}

.block-card__admin {
  margin-bottom: 20px;
}

.block-card__admin ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 11px;
}

.block-card__admin ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.block-card__admin ul li img {
  margin-right: 11px;
}

.block-card__content h3 {
  padding: 0;
  line-height: unset;
  font-size: unset;
  margin-bottom: 20px;
}

.block-card__content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  padding: 0;
  margin-bottom: 10px;
}

.block-card__flex {
  padding: 15px 20px 0;
}

.block-card__bottom {
  padding: 0 15px 20px;
}

.block-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 24px;
  color: #000000;
}

.block-cards-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  gap: 30px;
}

.block-card__bottom a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #017d6c;
}

.block-card__bottom a:hover {
  color: #000;
}

ul.pagination {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
	width: 100%;
}

.pagination li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #2d3a46;
}

.pagination li.active a {
  background: linear-gradient(90deg, #10a893 0%, #017d6c 100%);
  box-shadow: 0px 4px 4px rgba(3, 129, 112, 0.23);
  border-radius: 5px;
  color: #fff;
}

.pagination li a:hover {
  background: linear-gradient(90deg, #10a893 0%, #017d6c 100%);
  box-shadow: 0px 4px 4px rgba(3, 129, 112, 0.23);
  border-radius: 5px;
  color: #fff;
}

@media (min-width: 768px) {
  .block-cards-section {
    margin: 70px 0;
  }

  .block-card {
    width: calc(50% - 15px);
  }
}

@media (min-width: 1200px) {
  .block-cards-section {
    margin: 100px 0;
  }

  .block-card {
    width: calc(33.333% - 20px);
  }

  .block-card__flex {
    padding: 40px 30px 0;
  }

  .block-card__bottom {
    padding: 0 30px 40px;
  }
}

.blog-details-banner.banner-section.inner-banner ul.inner-broadcom {
  justify-content: flex-start;
}

.two-column-section {
  margin: 0 0 50px 0;
}

.blog-details-headr-image {
  margin-bottom: 15px;
}

.blog-details-headr-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 15px;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recent-posts {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.recent-post_link {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.recent-post_link:hover .recent-post-content p{
  color: #009ca6;
}

.recent-post-image {
  width: 132px;
}

.recent-post-image img {
  width: 132px;
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}

.recent-post-content {
  width: calc(100% - 152px);
}

.recent-post-content p {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 24px;
  color: #000000;
  padding: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.archive-panel {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.archive-panel ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.archive-panel ul li a {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  line-height: 50px;
  color: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 65px;
}

.archive-panel ul li a:hover {
  color: #009ca6;
}

.archive-panel ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/folder-downloads.svg) no-repeat;
  width: 50px;
  height: 50px;
  background-size: contain;
}

.right-column h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #000000;
  padding: 0;
}

ul.blog-details-broadcom {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

ul.blog-details-broadcom li {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #009ca6;
  position: relative;
  width: max-content;
  padding: 0;
  margin-right: 30px;
}

ul.blog-details-broadcom li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  background: #009ca6;
  width: 1px;
  height: 20px;
  display: inline-block;
}

ul.blog-details-broadcom li:last-child {
  margin: 0;
}

ul.blog-details-broadcom li:last-child:before {
  display: none;
  margin: 0;
}

ul.blog-details-broadcom li a {
  color: #009ca6;
}

ul.blog-details-broadcom li a:hover {
  color: #000;
}

.two-column-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

@media (min-width: 768px) {
  .two-column-section {
    margin: 0 0 70px 0;
  }

  .right-column {
    flex-direction: row;
  }

  .recent-posts,
  .archive-panel {
    width: 48%;
  }
}

@media (min-width: 1200px) {
  .two-column-section {
    margin: 0 0 100px 0;
  }

  .blog-details-headr-image {
    margin-bottom: 30px;
  }

  .two-column-flex {
    justify-content: space-between;
    gap: 70px;
  }

  .right-column {
    flex-direction: column;
    width: 430px;
  }

  .recent-posts,
  .archive-panel {
    width: 430px;
  }

  .left-column {
    width: calc(100% - 500px);
  }

  .blog-details-headr-content h3 {
    font-weight: 800;
    font-size: 30px;
    line-height: 49px;
    color: #000000;
  }

  .blog-details-headr-content h4 {
    font-family: "Roboto";
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
  }
}

.content-section.inner-privacy h2{
	font-size: 18px !important;
}

.content-section.inner-privacy p {
   text-align: left;
}

.content-section.inner-privacy h4 {
	display: none;
}

.banner-section.inner-banner article {
	padding: 50px 0
}

@media (min-width:768px) {
	.content-section.inner-privacy h2{
		font-size: 26px !important;
	}
}

@media (min-width: 1200px) {
	.quick-link ul {
		max-width: 350px;
	}
}