* {
  margin: 0;
  padding: 0;
}

body {
  color: #4c4b4b;
  font-size: 16px;
  font-family: 'Mulish', sans-serif;
  line-height: 22px;
  background-color: #f5f5f5;
}

a {
  opacity: 1;
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  opacity: 0.9;
}

.btn {
  opacity: 1;
  cursor: pointer;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  opacity: 0.9;
}

.container {
  margin: auto;
  width: 1280px;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.shown {
  display: block !important;
}

.hidden {
  display: none !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


/*---- Navbar ----*/
.navbar {
  z-index: 999;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}
.navbar .navbar-top {
  padding: 8px 0;
  background-color: #fff;
}
.navbar .navbar-top .container {
  display: flex;
  position: relative;
}
.navbar .navbar-left {
  display: flex;
  width: 100%;
  align-items: center;
}
.navbar .navbar-left a {
  display: inline-block;
  margin-right: 50px;
}
.navbar .navbar-left a img {
  margin: 0 !important;
  width: auto;
  height: 58px;
}
.navbar .navbar-left img {
  margin-right: 20px;
}
.navbar .navbar-right {
  display: flex;
  align-items: center;
}
.navbar .navbar-right .container-search {
  position: relative;
  padding-right: 20px;
  height: 22px;
}
.navbar .navbar-right .container-search .search-input {
  display: none;
  margin-right: 25px;
  width: 130px;
  height: 18px;
  color: #4c4b4b;
  outline: none !important;
  border: none;
  border-bottom: 1px solid #c1c1c1;
  border-radius: 0;
  box-shadow: none !important;
}
.navbar .navbar-right .container-search.active .search-input {
  display: block;
}
.navbar .navbar-right .container-search .btn {
  position: relative;
  top: 3px;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.navbar .navbar-right .container-search .btn-hide img {
  width: 14px;
  height: 14px;
}
.navbar .navbar-right .container-search.active .btn-hide {
  position: absolute;
  top: 5px;
  right: 20px;
}
.navbar .navbar-right .container-language {
  display: flex;
  padding: 0 20px;
  align-items: center;
  border-left: 1px solid #c1c1c1;
  border-right: 1px solid #c1c1c1;
}
.navbar .navbar-right .container-language .language-flag {
  margin-right: 10px;
}
.navbar .navbar-right .container-language .language-flag img {
  display: block;
  box-shadow: 0 0 2px 0 #333;
}
.navbar .navbar-right .container-language .language-select {
  position: relative;
  padding: 10px 0;
  cursor: pointer;
}
.navbar .navbar-right .container-language .language-select span {
  display: flex;
  color: #7e7e7e;
  font-size: 14px;
}
.navbar .navbar-right .container-language .language-select span img {
  margin-left: 10px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-right .container-language .language-select:hover span img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.navbar .navbar-right .container-language .language-select .language-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  padding: 10px 0;
  list-style: none;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
}
.navbar .navbar-right .container-language .language-select:hover .language-dropdown {
  display: block;
}
.navbar .navbar-right .container-language .language-select .language-dropdown li a {
  display: block;
  padding: 8px 20px;
  color: #545454;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-right .container-language .language-select .language-dropdown li a:hover {
  color: #005e9d;
}
.navbar .navbar-right .container-button {
  padding-left: 18px;
}
.navbar .navbar-right .container-button a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
  text-wrap: nowrap;
}
.navbar .navbar-toggle {
  display: none;
  z-index: 99;
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 20px;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navbar .navbar-toggle:focus {
  outline: none !important;
}
.navbar .navbar-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 1;
  background: #656565;
  border-radius: 9px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-toggle span:nth-child(1) {
  top: 0;
}
.navbar .navbar-toggle span:nth-child(2),
.navbar .navbar-toggle span:nth-child(3) {
  top: 8px;
}
.navbar .navbar-toggle span:nth-child(4) {
  top: 16px;
}
.navbar .navbar-toggle.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
.navbar .navbar-toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar .navbar-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navbar .navbar-toggle.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}
.navbar .navbar-menu-full {
  display: none;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #fff;
}
.navbar .navbar-toggle.open + .navbar-menu-full {
  display: block;
}
.navbar .navbar-menu-full .container-language {
  display: flex;
  margin-top: 50px;
  padding: 0 20px;
}
.navbar .navbar-menu-full .container-language .btn {
  display: flex;
  margin-right: 20px;
  color: #7e7e7e;
  font-size: 14px;
  line-height: 20px;
  background-color: transparent;
  align-items: center;
}
.navbar .navbar-menu-full .container-language .btn:last-child {
  margin-right: 0;
}
.navbar .navbar-menu-full .container-language img {
  display: block;
  margin-right: 8px;
  box-shadow: 0 0 2px 0 #333;
}
.navbar .navbar-menu-full .navbar-menu {
  margin: 40px 0;
  padding: 0 20px;
  list-style: none;
}
.navbar .navbar-menu-full .navbar-menu li {
  padding: 10px 0;
}
.navbar .navbar-menu-full .navbar-menu .menu-link {
  display: inline-block;
  margin-bottom: 15px;
  color: #545454;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.navbar .navbar-menu-full .navbar-menu .chevron-down {
  position: relative;
  top: -3px;
  margin-left: 10px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-menu-full .navbar-menu .chevron-down.rotated {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.navbar .navbar-menu-full .navbar-menu .navbar-dropdown {
  display: none;
  padding: 0 0 0 20px;
  list-style: none;
}
.navbar .navbar-menu-full .navbar-menu .navbar-dropdown.shown {
  display: block;
}
.navbar .navbar-menu-full .navbar-menu .navbar-dropdown li a {
  display: inline-block;
  color: #545454;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.navbar .navbar-menu-full .navbar-menu .navbar-dropdown .navbar-sub-dropdown {
  display: none;
  padding: 10px 0 0 20px;
  list-style: none;
}
.navbar .navbar-menu-full .navbar-menu .navbar-dropdown .navbar-sub-dropdown.shown {
  display: block;
}
.navbar .navbar-bottom {
  margin-top: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-bottom.fixed {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0;
  padding: 15px 0;
  width: 100%;
  background-color: #0069ab;
}
.navbar .navbar-bottom .navbar-menu {
  display: flex;
  padding: 0;
  list-style: none;
}
.navbar .navbar-bottom .navbar-menu li {
  position: relative;
}
.navbar .navbar-bottom .navbar-menu .menu-link {
  margin-right: 30px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.navbar .navbar-bottom .navbar-menu .menu-link .chevron-down {
  position: relative;
  top: -4px;
  margin-left: 5px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-bottom .navbar-menu li:hover .menu-link .chevron-down {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.navbar .navbar-bottom .navbar-menu .navbar-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  padding: 10px 0;
  width: max-content;
  list-style: none;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
}
.navbar .navbar-bottom .navbar-menu li:hover .navbar-dropdown {
  display: block;
}
.navbar .navbar-bottom .navbar-menu .navbar-dropdown li {
  /*overflow: hidden;*/
}
.navbar .navbar-bottom .navbar-menu .navbar-dropdown li a {
  display: block;
  margin: 0;
  padding: 8px 20px;
  width: 100%;
  color: #545454;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-bottom .navbar-menu .navbar-dropdown li a:hover {
  color: #005e9d;
}
.navbar .navbar-bottom .navbar-menu .navbar-dropdown li a .chevron-right {
  margin-left: 5px;
}
.navbar .navbar-bottom .navbar-menu .navbar-dropdown li .navbar-sub-dropdown {
  display: none;
  position: absolute;
  top: -10px;
  left: calc(100% + 10px);
  padding: 10px 0;
  width: max-content;
  list-style: none;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
}
.navbar .navbar-bottom .navbar-menu li:hover .navbar-dropdown li:hover .navbar-sub-dropdown {
  display: block;
}
/*---- End of Navbar ----*/


/*---- Home Slider ----*/
.home-slider {
  margin-top: 79px;
  height: 100vh;
}
.home-slider .swiper {
  height: 100vh;
}
.home-slider .content {
  padding-top: 160px;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home-slider .content .container div {
  width: 45%;
}
.home-slider .content h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.home-slider .content p {
  margin-bottom: 35px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.home-slider .content a {
  display: inline-block;
  padding: 15px;
  color: #4d4f4f;
  font-weight: 700;
  background-color: #fff;
  border: none;
  border-radius: 8px;
}
.home-slider .swiper-pagination {
  bottom: 140px;
}
.home-slider .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  opacity: 1 !important;
  background-color: #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-slider .swiper-pagination-bullet-active {
  width: 65px;
  height: 6px;
  background-color: #fc5801;
  border-radius: 4px;
}
/*---- End of Home Slider ----*/


/*---- Home Section 1 ----*/
.home-section-1 {
  z-index: 9;
  position: relative;
  margin: -79px 0 40px 0;
}
.home-section-1 .container-section {
  display: flex;
  padding: 90px 60px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.home-section-1 .container-section .section-left {
  display: flex;
  position: relative;
  padding-right: 60px;
  width: 50%;
  justify-content: center;
}
.home-section-1 .container-section .section-left img {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home-section-1 .container-section .section-left .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home-section-1 .container-section .section-left .shape-1 {
  margin-top: -50px;
  margin-left: -60px;
  width: 370px;
  height: 370px;
}
.home-section-1 .container-section .section-left .shape-2 {
  margin-top: -70px;
  margin-left: 90px;
  width: 242px;
  height: 242px;
}
.home-section-1 .container-section .section-left .shape-3 {
  margin-top: 60px;
  width: 320px;
  height: 320px;
}
.home-section-1 .container-section .section-right {
  width: 50%;
}
.home-section-1 .container-section .section-right h2 {
  margin-bottom: 30px;
  color: #000;
  font-size: 60px;
  font-weight: 800;
  line-height: 66px;
}
.home-section-1 .container-section .section-right p {
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 24px;
}
.home-section-1 .container-section .section-right a {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
/*---- End of Home Section 1 ----*/


/*---- Home Section 2 ----*/
.home-section-2 {
  z-index: 9;
  position: relative;
  margin-bottom: 40px;
}
.home-section-2 .container-section {
  display: flex;
  padding: 90px 60px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.home-section-2 .container-section .section-left {
  padding: 40px 50px 0 0;
  width: 40%;
}
.home-section-2 .container-section .section-left h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.home-section-2 .container-section .section-left p {
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 24px;
}
.home-section-2 .container-section .section-left a {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
.home-section-2 .container-section .section-right {
  display: flex;
  width: 60%;
}
.home-section-2 .container-section .section-right .box {
  position: relative;
  margin: 0 10px;
  width: 210px;
  height: 350px;
  overflow: hidden;
  border-radius: 25px;
}
.home-section-2 .container-section .section-right .box img {
  width: auto;
  height: 100%;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-section-2 .container-section .section-right .box:hover img {
  transform: scale(1.15);
}
.home-section-2 .container-section .section-right .box .masking {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.home-section-2 .container-section .section-right .box h4 {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 25px;
  left: 15px;
  padding-left: 15px;
  width: 165px;
  height: 60px;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
}
.home-section-2 .container-section .section-right .box h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 85%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
/*---- End of Home Section 2 ----*/


/*---- Home Section 3 ----*/
.home-section-3 {
  z-index: 9;
  position: relative;
  margin-bottom: 40px;
}
.home-section-3 .container-section {
  display: flex;
  padding: 90px 60px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.home-section-3 .container-section .section-left {
  display: flex;
  width: 40%;
}
.home-section-3 .container-section .section-left .box {
  position: relative;
  margin: 0 10px;
  width: 210px;
  height: 350px;
  overflow: hidden;
  border-radius: 25px;
}
.home-section-3 .container-section .section-left .box:nth-child(3) {
  display: none;
}
.home-section-3 .container-section .section-left .box img {
  width: auto;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-section-3 .container-section .section-left .box:hover img {
  transform: scale(1.15)
}
.home-section-3 .container-section .section-left .box .masking {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.home-section-3 .container-section .section-left .box h4 {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 25px;
  left: 15px;
  padding-left: 15px;
  width: 165px;
  height: 60px;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
}
.home-section-3 .container-section .section-left .box h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 85%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home-section-3 .container-section .section-right {
  padding: 40px 0 0 50px;
  width: 60%;
}
.home-section-3 .container-section .section-right h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.home-section-3 .container-section .section-right p {
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 24px;
}
.home-section-3 .container-section .section-right a {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
/*---- End of Home Section 3 ----*/


/*---- Home Section 4 ----*/
.home-section-4 {
  margin-bottom: 40px;
  padding: 50px 0;
}
.home-section-4 .container-section {
  display: flex;
}
.home-section-4 .container-section .section-left {
  padding-right: 60px;
  width: 60%;
}
.home-section-4 .container-section .section-left .left-row {
  display: flex;
  flex-wrap: wrap;
}
.home-section-4 .container-section .section-left .left-row .left-col-6 {
  width: 50%;
}
.home-section-4 .container-section .section-left .left-row .left-col-6 div {
  padding: 35px;
  text-align: center;
}
.home-section-4 .container-section .section-left .left-row .left-col-6 img {
  margin-bottom: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-section-4 .container-section .section-left .left-row .left-col-6:hover img {
  transform: scale(1.15);
}
.home-section-4 .container-section .section-left .left-row .left-col-6 h5 {
  color: #303030;
  font-size: 20px;
  line-height: 26px;
}
.home-section-4 .container-section .section-left .left-row .left-col-6 p {
  margin-top: 15px;
}
.home-section-4 .container-section .section-right {
  position: relative;
  width: 40%;
}
.home-section-4 .container-section .section-right div {
  z-index: 1;
  position: relative;
}
.home-section-4 .container-section .section-right div h3 {
  margin-top: 110px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.home-section-4 .container-section .section-right div p {
  margin-top: 30px;
}
.home-section-4 .container-section .section-right svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -80px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*---- End of Home Section 4 ----*/


/*---- Home Section 5 ----*/
.home-section-5 {
  margin-bottom: 60px;
}
.home-section-5 .container-section {
  display: flex;
  overflow: hidden;
  background-color: #005e9d;
  border-radius: 25px;
}
.home-section-5 .container-section .section-left {
  padding: 50px 40px;
  width: 60%;
}
.home-section-5 .container-section .section-left h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 54px;
}
.home-section-5 .container-section .section-left h4 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.home-section-5 .container-section .section-left h5 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 0 0 3px #000;
  line-height: 30px;
}
.home-section-5 .container-section .section-left .left-row {
  display: flex;
  margin-bottom: 50px;
}
.home-section-5 .container-section .section-left .left-row .left-col-5 {
  margin-right: 30px;
  padding: 0px;
  width: 41.66666667%;
}
.home-section-5 .container-section .section-left .left-row .left-col-5 div {
  position: relative;
  width: 80%;
  height: 100px;
  text-align: center;
  background-color: #fdfdfd;
  border-radius: 16px;
}
.home-section-5 .container-section .section-left .left-row .left-col-5 div img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home-section-5 .container-section .section-left .left-row .left-col-5 p {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.home-section-5 .container-section .section-left .container-button .btn {
  display: inline-block;
  margin-right: 5px;
  padding: 10px 15px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  background-color: #fff;
  border-radius: 6px;
}
.home-section-5 .container-section .section-left .container-button .btn:last-child {
  margin-right: 0;
}
.home-section-5 .container-section .section-left .container-button .btn div {
  display: flex;
  align-items: center;
}
.home-section-5 .container-section .section-left .container-button .btn div img {
  margin-right: 5px;
}
.home-section-5 .container-section .section-right {
  display: flex;
  position: relative;
  width: 40%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home-section-5 .container-section .section-right .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: transparent;
  border: none;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*---- End of Home Section 5 ----*/


/*---- Home Section 6 ----*/
.home-section-6 {
  margin-bottom: 60px;
}
.home-section-6 h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
.home-section-6 .container {
  position: relative;
}
.home-section-6 .swiper {
  width: 85%;
}
.home-section-6 .swiper .box {
  padding: 25px 10px;
  height: 150px;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
}
.home-section-6 .swiper .box img {
  max-width: 100%;
  width: auto;
  height: 100%;
}
.home-section-6 .swiper-button-next:after,
.home-section-6 .swiper-button-prev:after {
  display: none;
}
.home-section-6 .swiper-button-next {
  right: 0;
}
.home-section-6 .swiper-button-prev {
  left: 0;
}
.home-section-6 .swiper-button-next,
.home-section-6 .swiper-button-prev {
  margin-top: -10px;
  padding: 5px 6px;
  width: initial;
  height: initial;
  background-color: #2377a4;
  border-radius: 5px;
}
.home-section-6 .swiper-button-next img,
.home-section-6 .swiper-button-prev img {
  display: block;
}
/*---- End of Home Section 6 ----*/


/*---- Home Section 7 ----*/
.home-section-7 {
  margin-bottom: 60px;
}
.home-section-7 h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
.home-section-7 .container {
  text-align: center;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 50px 5px rgba(0, 0, 0, 0.05);
}
.home-section-7 .swiper {
  padding: 40px 30px 60px 30px;
}
.home-section-7 .swiper .box {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
}
.home-section-7 .swiper .box .masking {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-section-7 .swiper .box:hover .masking {
  opacity: 1;
}
.home-section-7 .swiper .box div {
  z-index: 1;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-section-7 .swiper .box:hover div {
  bottom: 30px;
}
.home-section-7 .swiper .box div p {
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
}
.home-section-7 .swiper .box div h4 {
  display: -webkit-box;
  padding: 0 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-overflow: ellipsis;
  line-height: 30px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-section-7 .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: #e8e8e8;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-section-7 .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fc5801;
}
.home-section-7 .btn {
  display: inline-block;
  margin: 35px 0 40px 0;
  padding: 10px 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background-color: #c9011f;
  border-radius: 8px;
}
/*---- End of Home Section 7 ----*/


/*---- Home Section 8 ----*/
.home-section-8 {
  margin-bottom: 45px;
}
.home-section-8 h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
.home-section-8 .container {

}
.home-section-8 .container-row {
  display: flex;
  padding: 40px 30px;
  text-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 50px 5px rgba(0, 0, 0, 0.05);
}
.home-section-8 .container-row .container-col-2 {
  width: 16.66666667%;
}
.home-section-8 .container-row .container-col-2 img {

}
/*---- End of Home Section 8 ----*/


/*---- Home Section 9 ----*/
.home-section-9 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Home Section 9 ----*/


/*---- About Banner ----*/
.about-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-banner .container div {
  padding-top: 70px;
  width: 45%;
}
.about-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.about-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of About Banner ----*/


/*---- About Section 1 ----*/
.about-section-1 {
  padding: 70px 0 60px 0;
}
.about-section-1 .container-section {
  display: flex;
  overflow: hidden;
  background-color: #fff;
  border-radius: 25px;
}
.about-section-1 .container-section .section-left {
  display: flex;
  position: relative;
  width: 40%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-section-1 .container-section .section-left .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: transparent;
  border: none;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-section-1 .container-section .section-right {
  width: 60%;
}
.about-section-1 .container-section .section-right div {
  padding: 60px 50px 100px 60px;
}
.about-section-1 .container-section .section-right h3 {
  margin-bottom: 40px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.about-section-1 .container-section .section-right p {
  font-size: 18px;
  line-height: 24px;
}
/*---- End of About Section 1 ----*/


/*---- About Section 2 ----*/
.about-section-2 {
  padding: 70px 0 80px 0;
  overflow: hidden;
  background-color: #fff;
}
.about-section-2 .section-top {
  margin: 0 auto 70px auto;
  width: 60%;
  text-align: center;
}
.about-section-2 .section-top h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.about-section-2 .section-top p {
  font-size: 18px;
  line-height: 24px;
}
.about-section-2 .section-bottom .container-row {
  display: flex;
}
.about-section-2 .section-bottom .container-row .container-col-4 {
  padding: 0 60px;
  width: 33.33333333%;
  text-align: center;
}
.about-section-2 .section-bottom .container-row .container-col-4 div {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.about-section-2 .section-bottom .container-row .container-col-4 span {
  display: block;
  position: relative;
  margin: 20px auto 30px auto;
  width: 20px;
  height: 20px;
  background-color: #0069ab;
  border-radius: 50%;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.about-section-2 .section-bottom .container-row .container-col-4:hover span {
  transform: scale(1.2);
}
.about-section-2 .section-bottom .container-row .container-col-4:nth-child(2) span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2000px;
  height: 1px;
  background-color: #0069ab;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-section-2 .section-bottom .container-row .container-col-4 h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
}
.about-section-2 .section-bottom .container-row .container-col-4 p {
  font-size: 18px;
  line-height: 24px;
}
/*---- End of About Section 2 ----*/


/*---- About Section 3 ----*/
.about-section-3 {
  margin-bottom: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
.about-section-3 .parallax {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  background-attachment: fixed;
}
.about-section-3 .container-section {
  display: flex;
  padding-top: 70px;
}
.about-section-3 .section-left {
  width: 50%;
}
.about-section-3 .section-left h3 {
  padding: 0 70px 0 30px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.about-section-3 .section-right {
  width: 50%;
}
.about-section-3 .section-right p {
  padding: 10px 0 0 50px;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of About Section 3 ----*/


/*---- About Section 4 ----*/
.about-section-4 {
  padding-bottom: 60px;
}
.about-section-4 .container-section {
  display: flex;
  overflow: hidden;
  border-radius: 25px;
}
.about-section-4 .container-section .section-left {
  width: 50%;
  background-color: #fff;
}
.about-section-4 .container-section .section-left div {
  padding: 60px 50px 70px 60px;
}
.about-section-4 .container-section .section-left h3 {
  margin-bottom: 40px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.about-section-4 .container-section .section-left p {
  font-size: 18px;
  line-height: 24px;
}
.about-section-4 .container-section .section-right {
  display: flex;
  position: relative;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/*---- End of About Section 4 ----*/


/*---- About Section 5 ----*/
.about-section-5 {
  padding-bottom: 80px;
}
.about-section-5 .container-section {
  display: flex;
  overflow: hidden;
  border-radius: 25px;
}
.about-section-5 .container-section .section-left {
  position: relative;
  width: 50%;
  flex: 1 1 0;
  background-color: #0069ab;
}
.about-section-5 .container-section .section-left div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-section-5 .container-section .section-left h4 {
  position: relative;
  margin-bottom: 40px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  line-height: 38px;
}
.about-section-5 .container-section .section-left h4 .double-quotes {
  position: absolute;
}
.about-section-5 .container-section .section-left h4 .double-quotes-1 {
  top: -40px;
  left: -70px;
}
.about-section-5 .container-section .section-left h4 .double-quotes-2 {
  right: -70px;
  bottom: -40px;
}
.about-section-5 .container-section .section-left h4:last-child {
  margin-bottom: 0;
}
.about-section-5 .container-section .section-right {
  width: 50%;
  flex: 1 1 0;
  background-color: #fff;
}
.about-section-5 .container-section .section-right div {
  padding: 70px 50px 70px 60px;
}
.about-section-5 .container-section .section-right div h4 {
  margin-bottom: 30px;
  color: #0069ab;
  font-size: 32px;
  font-weight: 800;
  line-height: 38px;
}
.about-section-5 .container-section .section-right div ul {
  padding-left: 50px;
  list-style: none;
}
.about-section-5 .container-section .section-right div ul li {
  position: relative;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.about-section-5 .container-section .section-right div ul li:before {
  content: url('../image/icon-checkmark-red-circle.svg');
  position: absolute;
  top: 1px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.about-section-5 .container-section .section-right div ul li:hover:before {
  transform: scale(1.15);
}
/*---- End of About Section 5 ----*/


/*---- About Section 6 ----*/
.about-section-6 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of About Section 6 ----*/


/*---- Director Welcome Banner ----*/
.director-welcome-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.director-welcome-banner .container div {
  padding-top: 55px;
  width: 60%;
}
.director-welcome-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Director Welcome Banner ----*/


/*---- Director Welcome Menu ----*/
.director-welcome-menu {
  background-color: #0069ab;
}
.director-welcome-menu ul {
  list-style: none;
}
.director-welcome-menu ul li {
  display: inline-block;
}
.director-welcome-menu ul li a {
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.director-welcome-menu ul li a.active {
  color: #9ddbff;
}
/*---- End of Director Welcome Menu ----*/


/*---- Director Welcome Section 1 ----*/
.director-welcome-section-1 {
  padding: 60px 0 70px 0;
}
.director-welcome-section-1 h2 {
  margin-bottom: 190px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
.director-welcome-section-1 .container-section {
  display: flex;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
}
.director-welcome-section-1 .container-section .section-left {
  position: relative;
  width: 45%;
}
.director-welcome-section-1 .container-section .section-left img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 85%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.director-welcome-section-1 .container-section .section-right {
  padding: 70px 70px 90px 90px;
  width: 55%;
}
.director-welcome-section-1 .container-section .section-right p {
  font-size: 18px;
  line-height: 24px;
}
.director-welcome-section-1 .container-section .section-right h5 {
  margin-top: 40px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.director-welcome-section-1 .container-section .section-right h5 span {
  display: block;
  color: #4c4b4b;
  font-size: 16px;
  line-height: 22px;
}
/*---- End of Director Welcome Section 1 ----*/


/*---- Director Welcome Section 2 ----*/
.director-welcome-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Director Welcome Section 2 ----*/


/*---- Board of Commissioners Banner ----*/
.board-of-commissioners-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.board-of-commissioners-banner .container div {
  padding-top: 70px;
  width: 60%;
}
.board-of-commissioners-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Board of Commissioners Banner ----*/


/*---- Board of Commissioners Menu ----*/
.board-of-commissioners-menu {
  background-color: #0069ab;
}
.board-of-commissioners-menu ul {
  list-style: none;
}
.board-of-commissioners-menu ul li {
  display: inline-block;
}
.board-of-commissioners-menu ul li a {
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.board-of-commissioners-menu ul li a.active {
  color: #9ddbff;
}
/*---- End of Board of Commissioners Menu ----*/


/*---- Board of Commissioners Section 1 ----*/
.board-of-commissioners-section-1 {
  padding: 40px 0 0 0;
}
.board-of-commissioners-section-1.last {
  padding-bottom: 70px;
}
.board-of-commissioners-section-1 h2 {
  margin: 20px 0 80px 0;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
.board-of-commissioners-section-1 .container-section {
  display: flex;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
}
.board-of-commissioners-section-1 .container-section .section-left {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: end;
}
.board-of-commissioners-section-1 .container-section .section-left img {
  display: block;
  margin-top: 30px;
  width: auto;
  height: 580px;
}
.board-of-commissioners-section-1 .container-section .section-right {
  padding: 70px 70px 80px 0;
  width: 55%;
}
.board-of-commissioners-section-1 .container-section .section-right h4 {
  margin-bottom: 30px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}
.board-of-commissioners-section-1 .container-section .section-right h4 span {
  display: block;
  color: #4c4b4b;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.board-of-commissioners-section-1 .container-section .section-right p {
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Board of Commissioners Section 1 ----*/


/*---- Board of Commissioners Section 2 ----*/
.board-of-commissioners-section-2 {
  padding: 40px 0 0 0;
}
.board-of-commissioners-section-2.last {
  padding-bottom: 70px;
}
.board-of-commissioners-section-2 .container-section {
  display: flex;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
}
.board-of-commissioners-section-2 .container-section .section-left {
  padding: 70px 0 80px 70px;
  width: 55%;
}
.board-of-commissioners-section-2 .container-section .section-left h4 {
  margin-bottom: 30px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}
.board-of-commissioners-section-2 .container-section .section-left h4 span {
  display: block;
  color: #4c4b4b;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.board-of-commissioners-section-2 .container-section .section-left p {
  font-size: 18px;
  line-height: 24px;
}
.board-of-commissioners-section-2 .container-section .section-right {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: end;
}
.board-of-commissioners-section-2 .container-section .section-right img {
  display: block;
  margin-top: 30px;
  width: auto;
  height: 580px;
}
/*---- End of Board of Commissioners Section 2 ----*/


/*---- Board of Commissioners Section 3 ----*/
.board-of-commissioners-section-3 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Board of Commissioners Section 3 ----*/


/*---- Board of Commissioners Banner ----*/
.board-of-directors-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.board-of-directors-banner .container div {
  padding-top: 70px;
  width: 60%;
}
.board-of-directors-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Board of Commissioners Banner ----*/


/*---- Board of Commissioners Menu ----*/
.board-of-directors-menu {
  background-color: #0069ab;
}
.board-of-directors-menu ul {
  list-style: none;
}
.board-of-directors-menu ul li {
  display: inline-block;
}
.board-of-directors-menu ul li a {
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.board-of-directors-menu ul li a.active {
  color: #9ddbff;
}
/*---- End of Board of Commissioners Menu ----*/


/*---- Board of Commissioners Section 1 ----*/
.board-of-directors-section-1 {
  padding: 40px 0 0 0;
}
.board-of-directors-section-1.last {
  padding-bottom: 70px;
}
.board-of-directors-section-1 h2 {
  margin: 20px 0 80px 0;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
.board-of-directors-section-1 .container-section {
  display: flex;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
}
.board-of-directors-section-1 .container-section .section-left {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: end;
}
.board-of-directors-section-1 .container-section .section-left img {
  display: block;
  margin-top: 30px;
  width: auto;
  height: 580px;
}
.board-of-directors-section-1 .container-section .section-right {
  padding: 70px 70px 80px 0;
  width: 55%;
}
.board-of-directors-section-1 .container-section .section-right h4 {
  margin-bottom: 30px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}
.board-of-directors-section-1 .container-section .section-right h4 span {
  display: block;
  color: #4c4b4b;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.board-of-directors-section-1 .container-section .section-right p {
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Board of Commissioners Section 1 ----*/


/*---- Board of Commissioners Section 2 ----*/
.board-of-directors-section-2 {
  padding: 40px 0 0 0;
}
.board-of-directors-section-2.last {
  padding-bottom: 70px;
}
.board-of-directors-section-2 .container-section {
  display: flex;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
}
.board-of-directors-section-2 .container-section .section-left {
  padding: 70px 0 80px 70px;
  width: 55%;
}
.board-of-directors-section-2 .container-section .section-left h4 {
  margin-bottom: 30px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}
.board-of-directors-section-2 .container-section .section-left h4 span {
  display: block;
  color: #4c4b4b;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.board-of-directors-section-2 .container-section .section-left p {
  font-size: 18px;
  line-height: 24px;
}
.board-of-directors-section-2 .container-section .section-right {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: end;
}
.board-of-directors-section-2 .container-section .section-right img {
  display: block;
  margin-top: 30px;
  width: auto;
  height: 580px;
}
/*---- End of Board of Commissioners Section 2 ----*/


/*---- Board of Commissioners Section 3 ----*/
.board-of-directors-section-3 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Board of Commissioners Section 3 ----*/


/*---- Head of Division Banner ----*/
.head-of-division-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.head-of-division-banner .container div {
  padding-top: 70px;
  width: 60%;
}
.head-of-division-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Head of Division Banner ----*/


/*---- Head of Division Menu ----*/
.head-of-division-menu {
  background-color: #0069ab;
}
.head-of-division-menu ul {
  list-style: none;
}
.head-of-division-menu ul li {
  display: inline-block;
}
.head-of-division-menu ul li a {
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.head-of-division-menu ul li a.active {
  color: #9ddbff;
}
/*---- End of Head of Division Menu ----*/


/*---- Head of Division Section 1 ----*/
.head-of-division-section-1 {
  padding: 60px 0 70px 0;
}
.head-of-division-section-1 h2 {
  margin-bottom: 80px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
.head-of-division-section-1 .container-section {
  display: flex;
  background-color: #fff;
  border-bottom: 1px solid #8c8c8c;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
}
.head-of-division-section-1 .container-section:nth-child(2) {
  border-radius: 25px 25px 0 0;
}
.head-of-division-section-1 .container-section:last-child {
  border-bottom: none;
  border-radius: 0 0 25px 25px;
}
.head-of-division-section-1 .container-section.even .section-left {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: end;
}
.head-of-division-section-1 .container-section.even .section-left img {
  display: block;
  margin-top: 40px;
  width: auto;
  height: 480px;
}
.head-of-division-section-1 .container-section.even .section-right {
  padding: 70px 70px 80px 0;
  width: 55%;
}
.head-of-division-section-1 .container-section.even .section-right h4 {
  margin-bottom: 30px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}
.head-of-division-section-1 .container-section.even .section-right h4 span {
  display: block;
  color: #4c4b4b;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.head-of-division-section-1 .container-section.even .section-right p {
  font-size: 18px;
  line-height: 24px;
}

.head-of-division-section-1 .container-section.odd .section-left {
  padding: 70px 0 80px 70px;
  width: 55%;
}
.head-of-division-section-1 .container-section.odd .section-left h4 {
  margin-bottom: 30px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}
.head-of-division-section-1 .container-section.odd .section-left h4 span {
  display: block;
  color: #4c4b4b;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.head-of-division-section-1 .container-section.odd .section-left p {
  font-size: 18px;
  line-height: 24px;
}
.head-of-division-section-1 .container-section.odd .section-right {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: end;
}
.head-of-division-section-1 .container-section.odd .section-right img {
  display: block;
  margin-top: 40px;
  width: auto;
  height: 480px;
}
/*---- End of Head of Division Section 1 ----*/


/*---- Head of Division Section 2 ----*/
.head-of-division-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Head of Division Section 2 ----*/


/*---- Organizational Structure Banner ----*/
.organizational-structure-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.organizational-structure-banner .container div {
  padding-top: 70px;
  width: 60%;
}
.organizational-structure-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Organizational Structure Banner ----*/


/*---- Organizational Structure Menu ----*/
.organizational-structure-menu {
  background-color: #0069ab;
}
.organizational-structure-menu ul {
  list-style: none;
}
.organizational-structure-menu ul li {
  display: inline-block;
}
.organizational-structure-menu ul li a {
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.organizational-structure-menu ul li a.active {
  color: #9ddbff;
}
/*---- End of Organizational Structure Menu ----*/


/*---- Organizational Structure Section 1 ----*/
.organizational-structure-section-1 {
  padding: 60px 0 130px 0;
  background-color: #fff;
}
.organizational-structure-section-1 h2 {
  margin-bottom: 80px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
.organizational-structure-section-1 img {
  width: 100%;
  height: auto;
}
/*---- Organizational Structure Section 1 ----*/


/*---- Organizational Structure Section 2 ----*/
.organizational-structure-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Organizational Structure Section 2 ----*/


/*---- Company Culture Banner ----*/
.company-culture-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.company-culture-banner .container div {
  padding-top: 70px;
  width: 60%;
}
.company-culture-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.company-culture-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Company Culture Banner ----*/


/*---- Company Culture Section 1 ----*/
.company-culture-section-1 {
  padding: 80px 0;
}
.company-culture-section-1 .container-section {
  display: flex;
}
.company-culture-section-1 .container-section .section-left {
  width: 45%
}
.company-culture-section-1 .container-section .section-left img {
  width: 100%;
  height: auto;
}
.company-culture-section-1 .container-section .section-right {
  padding-left: 50px;
  width: 55%;
}
.company-culture-section-1 .container-section .section-right h3 {
  margin-bottom: 40px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.company-culture-section-1 .container-section .section-right p {
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Company Culture Section 1 ----*/


/*---- Company Culture Section 2 ----*/
.company-culture-section-2 {
  padding: 60px 0 100px 0;
}
.company-culture-section-2 .container {
  text-align: center;
}
.company-culture-section-2 h3 {
  margin-bottom: 40px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.company-culture-section-2 p {
  margin: 0 auto;
  margin-bottom: 50px;
  width: 80%;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Company Culture Section 2 ----*/


/*---- Company Culture Section 3 ----*/
.company-culture-section-3 {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.company-culture-section-3 h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  line-height: 46px;
}
/*---- End of Company Culture Section 3 ----*/


/*---- Company Culture Section 4 ----*/
.company-culture-section-4 {
  padding: 40px 0 80px 0;
}
.company-culture-section-4 .container:first-child {
  margin-bottom: 80px;
  text-align: center;
}
.company-culture-section-4 .container:first-child p {
  margin: 0 auto;
  width: 70%;
  font-size: 18px;
  line-height: 24px;
}
.company-culture-section-4 .container-section {
  display: flex;
}
.company-culture-section-4 .container-section .section-left {
  width: 40%;
  text-align: center;
}
.company-culture-section-4 .container-section .section-left img {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.company-culture-section-4 .container-section .section-right {
  padding-left: 60px;
  width: 60%;
}
.company-culture-section-4 .container-section .section-right h4 {
  position: relative;
  margin: 30px 0 10px 0;
  padding-left: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.company-culture-section-4 .container-section .section-right h4:before {
  content: url(../image/icon-checkmark-red-circle.svg);
  position: absolute;
  top: 0;
  left: 0;
}
.company-culture-section-4 .container-section .section-right p {
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 18px;
  line-height: 24px;
}
.company-culture-section-4 .container-section .section-right ol {
  padding-left: 60px;
}
.company-culture-section-4 .container-section .section-right ol li {
  margin-bottom: 10px;
}
/*---- End of Company Culture Section 4 ----*/


/*---- Company Culture Section 5 ----*/
.company-culture-section-5 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Company Culture Section 5 ----*/


/*---- Award Banner ----*/
.award-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.award-banner .container div {
  padding-top: 70px;
  width: 45%;
}
.award-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.award-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Award Banner ----*/


/*---- Award Section 1 ----*/
.award-section-1 {
  padding: 70px 0 0 0;
}
.award-section-1 .container-content {
  padding: 70px 150px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.award-section-1 .container-content h3 {
  margin-bottom: 50px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
}
.award-section-1 .container-content p {
  margin-top: 50px;
  color: #545454;
  text-align: center;
}
.award-section-1 .container-content ul {
  padding-left: 30px;
  list-style: none;
}
.award-section-1 .container-content ul li {
  display: flex;
  position: relative;
  margin-bottom: 30px;
  align-items: center;
}
.award-section-1 .container-content ul li:before {
  content: url(../image/icon-award.svg);
  position: absolute;
  top: -1px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.award-section-1 .container-content ul li:hover:before {
  transform: scale(1.15);
}
.award-section-1 .container-content ul li h5 {
  padding-right: 40px;
  color: #545454;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  flex: 1 1 0;
}
.award-section-1 .container-content ul li span {
  width: 205px;
  color: #0069ab;
  font-weight: 700;
  text-align: right;
}
.award-section-1 .container-content ul li span img {
  position: relative;
  top: 3px;
  margin-right: 5px;
}
/*---- End of Award Secton 1 ----*/


/*---- Award Section 2 ----*/
.award-section-2 {
  padding: 70px 0 90px 0;
}
.award-section-2 .container {
  font-size: 0;
  text-align: center;
}
.award-section-2 .box {
  display: inline-block;
  margin: 0 30px 30px 0;
  padding: 30px 15px;
  width: 29.4%;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
}
.award-section-2 .box:nth-child(3n) {
  margin: 0 0 30px 0;
}
.award-section-2 .box img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: 100%;
}
/*---- End of Award Secton 2 ----*/


/*---- Award Section 3 ----*/
.award-section-3 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Award Section 3 ----*/


/*---- Management Banner ----*/
.management-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.management-banner .container div {
  padding-top: 70px;
  width: 60%;
}
.management-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.management-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Management Banner ----*/


/*---- Management Section 1 ----*/
.management-section-1 {
  padding: 70px 0 80px 0;
}
.management-section-1 .container-section {
  display: flex;
}
.management-section-1 .container-section .section-left {
  width: 50%;
}
.management-section-1 .container-section .section-left h3 {
  margin-bottom: 50px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.management-section-1 .container-section .section-left p {
  font-size: 18px;
  line-height: 24px;
}
.management-section-1 .container-section .section-left ul {
  margin-top: 30px;
  padding-left: 50px;
  list-style: none;
}
.management-section-1 .container-section .section-left ul li {
  position: relative;
  margin-top: 20px;
  font-size: 20px;
  line-height: 26px;
}
.management-section-1 .container-section .section-left ul li:before {
  content: url(../image/icon-checkmark-red-shield.svg);
  position: absolute;
  top: 1px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.management-section-1 .container-section .section-left ul li:hover:before {
  transform: scale(1.2);
}
.management-section-1 .container-section .section-right {
  width: 50%;
  text-align: right;
}
.management-section-1 .container-section .section-right img {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
/*---- End of Management Section 1 ----*/


/*---- Management Section 2 ----*/
.management-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Management Section 2 ----*/


/*---- Management Section 3 ----*/
.management-section-3 {
  padding: 70px 0 80px 0;
}
.management-section-3 .container-section {
  display: flex;
}
.management-section-3 .container-section .section-left {
  width: 50%;
}
.management-section-3 .container-section .section-left h3 {
  margin-bottom: 50px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.management-section-3 .container-section .section-left h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
.management-section-3 .container-section .section-left p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.management-section-3 .container-section .section-left ol {
  margin-top: 30px;
  padding-left: 30px;
}
.management-section-3 .container-section .section-left ol li {
  margin-top: 20px;
}
.management-section-3 .container-section .section-left ol li ul {
  margin-top: 20px;
  padding-left: 25px;
}
.management-section-3 .container-section .section-right {
  width: 50%;
  text-align: right;
}
.management-section-3 .container-section .section-right img {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
/*---- End of Management Section 3 ----*/


/*---- Management Section 4 ----*/
.management-section-4 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Management Section 4 ----*/


/*---- Risk Management Banner ----*/
.risk-management-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.risk-management-banner .container div {
  padding-top: 70px;
  width: 60%;
}
.risk-management-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.risk-management-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Risk Management Banner ----*/


/*---- Risk Management Section 1 ----*/
.risk-management-section-1 {
  padding: 80px 0 100px 0;
}
.risk-management-section-1 .container-section {
  display: flex;
}
.risk-management-section-1 .container-section .section-left {
  width: 45%;
}
.risk-management-section-1 .container-section .section-left img {
  width: 100%;
  height: auto;
}
.risk-management-section-1 .container-section .section-right {
  padding-left: 60px;
  width: 55%;
}
.risk-management-section-1 .container-section .section-right h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.risk-management-section-1 .container-section .section-right p {
  font-size: 18px;
  line-height: 24px;
}
.risk-management-section-1 .container-section .section-right p a {
  color: #0069ab;
  font-weight: 600;
}
/*---- Risk Management Section 1 ----*/


/*---- Risk Management Section 2 ----*/
.risk-management-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Risk Management Section 2 ----*/


/*---- SMAP Banner ----*/
.smap-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.smap-banner .container div {
  padding-top: 70px;
  width: 55%;
}
.smap-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.smap-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of SMAP Banner ----*/


/*---- SMAP Section 1 ----*/
.smap-section-1 {
  padding: 70px 0 100px 0;
}
.smap-section-1 .container-section {
  display: flex;
}
.smap-section-1 .container-section .section-left {
  padding-right: 50px;
  width: 55%;
}
.smap-section-1 .container-section .section-left h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.smap-section-1 .container-section .section-left ul {
  margin-top: 30px;
  padding-left: 50px;
  list-style: none;
}
.smap-section-1 .container-section .section-left ul li {
  position: relative;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.smap-section-1 .container-section .section-left ul li:before {
  content: url(../image/icon-checkmark-blue-shield.svg);
  position: absolute;
  top: 1px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.smap-section-1 .container-section .section-left ul li:hover:before {
  transform: scale(1.2);
}
.smap-section-1 .container-section .section-right {
  display: flex;
  width: 45%;
}
.smap-section-1 .container-section .section-right .box {
  display: inline-block;
  margin: 10px;
  width: 45%;
  text-align: center;
}
.smap-section-1 .container-section .section-right .box img {

}
.smap-section-1 .container-section .section-right .box h5 {
  margin: 10px auto 0 auto;
  width: 80%;
  color: #000;
  font-weight: 700;
}
/*---- End of SMAP Section 1 ----*/


/*---- SMAP Section 2 ----*/
.smap-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of SMAP Section 2 ----*/


/*---- Corporate Social Responsibility Banner ----*/
.corporate-social-responsibility-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.corporate-social-responsibility-banner .container div {
  padding-top: 70px;
  width: 55%;
}
.corporate-social-responsibility-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.corporate-social-responsibility-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Corporate Social Responsibility Banner ----*/


/*---- Corporate Social Responsibility Section 1 ----*/
.corporate-social-responsibility-section-1 {
  position: relative;
  padding: 90px 0 100px 0;
  background-image: linear-gradient(#dbebff, #f8f8f8);
}
.corporate-social-responsibility-section-1:before {
  content: url('../image/icon-cloud-01.svg');
  position: absolute;
  top: 60px;
  left: -30px;
}
.corporate-social-responsibility-section-1 .container {
  z-index: 4;
  position: relative;
}
.corporate-social-responsibility-section-1 .container:first-child {
  margin: 0 auto;
  width: 50%;
  text-align: center;
}
.corporate-social-responsibility-section-1 .container:first-child:before {
  content: url('../image/icon-cloud-02.svg');
  z-index: -1;
  position: absolute;
  top: 40px;
  left: -250px;
}
.corporate-social-responsibility-section-1 .container:first-child:after {
  content: url('../image/icon-cloud-03.svg');
  z-index: -1;
  position: absolute;
  top: -15px;
  right: -300px;
}
.corporate-social-responsibility-section-1 .container:last-child {
  margin-top: 60px;
}
.corporate-social-responsibility-section-1 h3 {
  margin-bottom: 25px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.corporate-social-responsibility-section-1 p {
  font-size: 18px;
  line-height: 24px;
}
.corporate-social-responsibility-section-1 .box {
  display: inline-block;
  position: relative;
  margin: 0 40px 40px 0;
  width: 31%;
  overflow: hidden;
  border-radius: 25px;
}
.corporate-social-responsibility-section-1 .box:nth-child(3n) {
  margin-right: 0;
}
.corporate-social-responsibility-section-1 .box img {
  display: block;
  width: auto;
  height: 100%;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.corporate-social-responsibility-section-1 .box:hover img {
  transform: scale(1.15);
}
.corporate-social-responsibility-section-1 .box .masking {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.corporate-social-responsibility-section-1 .box h4 {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 25px;
  left: 15px;
  padding-left: 30px;
  width: 79%;
  height: 60px;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
}
.corporate-social-responsibility-section-1 .box h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 4px;
  height: 85%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
/*---- End of Corporate Social Responsibility Section 1 ----*/


/*---- Corporate Social Responsibility Section 2 ----*/
.corporate-social-responsibility-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Corporate Social Responsibility Section 2 ----*/


/*---- Product Banner ----*/
.product-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.product-banner .container div {
  padding-top: 70px;
  width: 45%;
}
.product-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.product-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Product Banner ----*/


/*---- Product Section 1 ----*/
.product-section-1 {
  padding: 90px 0 80px 0;
  background-color: #f8f8f8;
}
.product-section-1 .container:first-child {
  margin: 0 auto;
  width: 40%;
  text-align: center;
}
.product-section-1 .container:last-child {
  display: flex;
  margin-top: 60px;
  width: 80%;
  justify-content: center;
}
.product-section-1 h3 {
  margin-bottom: 25px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.product-section-1 p {
  font-size: 18px;
  line-height: 24px;
}
.product-section-1 .box {
  position: relative;
  margin: 0 10px;
  width: 210px;
  height: 350px;
  overflow: hidden;
  border-radius: 25px;
}
.product-section-1 .box img {
  display: block;
  width: auto;
  height: 100%;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.product-section-1 .box:hover img {
  transform: scale(1.15);
}
.product-section-1 .box .masking {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.product-section-1 .box h4 {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 25px;
  left: 15px;
  padding-left: 15px;
  width: 165px;
  height: 60px;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
}
.product-section-1 .box h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 85%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
/*---- End of Product Section 1 ----*/


/*---- Product Section 2 ----*/
.product-section-2 {
  padding: 0 0 30px 0;
  background-color: #f8f8f8;
}
.product-section-2 .container-section {
  display: flex;
  padding: 80px 60px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.product-section-2 .container-section .section-left {
  display: flex;
  width: 60%;
}
.product-section-2 .container-section .section-left .box {
  position: relative;
  margin: 0 10px;
  width: 210px;
  height: 350px;
  overflow: hidden;
  border-radius: 25px;
}
.product-section-2 .container-section .section-left .box img {
  width: auto;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.product-section-2 .container-section .section-left .box:hover img {
  transform: scale(1.15)
}
.product-section-2 .container-section .section-left .box .masking {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.product-section-2 .container-section .section-left .box h4 {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 25px;
  left: 15px;
  padding-left: 15px;
  width: 165px;
  height: 60px;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
}
.product-section-2 .container-section .section-left .box h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 85%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.product-section-2 .container-section .section-right {
  padding: 40px 0 0 50px;
  width: 40%;
}
.product-section-2 .container-section .section-right h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.product-section-2 .container-section .section-right p {
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 24px;
}
.product-section-2 .container-section .section-right a {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
/*---- End of Product Section 2 ----*/


/*---- Product Section 3 ----*/
.product-section-3 {
  padding: 0 0 30px 0;
  background-color: #f8f8f8;
}
.product-section-3 .container-section {
  padding: 80px 60px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.product-section-3 .container-section .section-top {
  margin: 0 auto;
  width: 50%;
  text-align: center;
}
.product-section-3 .container-section .section-top h3 {
  margin-bottom: 25px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.product-section-3 .container-section .section-top p {
  font-size: 18px;
  line-height: 24px;
}
.product-section-3 .container-section .section-bottom {
  position: relative;
  margin-top: 40px;
  padding-bottom: 60px;
}
.product-section-3 .container-section .section-bottom .box {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  width: 210px;
  height: 350px;
  overflow: hidden;
  border-radius: 25px;
}
.product-section-3 .container-section .section-bottom .box img {
  width: auto;
  height: 100%;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.product-section-3 .container-section .section-bottom .box:hover img {
  transform: scale(1.15);
}
.product-section-3 .container-section .section-bottom .box .masking {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.product-section-3 .container-section .section-bottom .box h4 {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 25px;
  left: 15px;
  padding-left: 15px;
  width: 165px;
  height: 60px;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
}
.product-section-3 .container-section .section-bottom .box h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 85%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.product-section-3 .container-section .section-bottom .swiper-pagination {
  bottom: 0;
}
.product-section-3 .container-section .section-bottom .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  opacity: 1 !important;
  background-color: #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.product-section-3 .container-section .section-bottom .swiper-pagination-bullet-active {
  width: 65px;
  height: 6px;
  background-color: #fc5801;
  border-radius: 4px;
}
/*---- End of Product Section 3 ----*/


/*---- Product Section 4 ----*/
.product-section-4 {
  padding: 0 0 90px 0;
  background-color: #f8f8f8;
}
.product-section-4 .container-section {
  padding: 80px 60px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.product-section-4 .container-section .section-top {
  margin: 0 auto;
  width: 70%;
  text-align: center;
}
.product-section-4 .container-section .section-top h3 {
  margin-bottom: 25px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.product-section-4 .container-section .section-top p {
  font-size: 18px;
  line-height: 24px;
}
.product-section-4 .container-section .section-bottom {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
.product-section-4 .container-section .section-bottom .box {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  width: 210px;
  height: 350px;
  overflow: hidden;
  border-radius: 25px;
}
.product-section-4 .container-section .section-bottom .box img {
  width: auto;
  height: 100%;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.product-section-4 .container-section .section-bottom .box:hover img {
  transform: scale(1.15);
}
.product-section-4 .container-section .section-bottom .box .masking {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.product-section-4 .container-section .section-bottom .box h4 {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 25px;
  left: 15px;
  padding-left: 15px;
  width: 165px;
  height: 60px;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
}
.product-section-4 .container-section .section-bottom .box h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 85%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
/*---- End of Product Section 4 ----*/


/*---- Trade Insurance Slider ----*/
.trade-insurance-slider {
  margin-top: 79px;
  min-height: 100vh;
}
.trade-insurance-slider .content {
  padding-top: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.trade-insurance-slider .content .container div {
  padding-top: 200px;
  width: 60%;
}
.trade-insurance-slider .content h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.trade-insurance-slider .content p {
  margin-bottom: 35px;
  width: 70%;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.trade-insurance-slider .swiper-pagination {
  bottom: 60px;
}
.trade-insurance-slider .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  opacity: 1 !important;
  background-color: #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.trade-insurance-slider .swiper-pagination-bullet-active {
  width: 65px;
  height: 6px;
  background-color: #fc5801;
  border-radius: 4px;
}
/*---- End of Trade Insurance Slider ----*/


/*---- Trade Insurance Section 1 ----*/
.trade-insurance-section-1 {
  padding: 70px 0 100px 0;
  background-color: #fff;
}
.trade-insurance-section-1 .container-section {
  display: flex;
}
.trade-insurance-section-1 .container-section .section-left {
  position: relative;
  width: 40%;
}
.trade-insurance-section-1 .container-section .section-left img {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.trade-insurance-section-1 .container-section .section-left .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.trade-insurance-section-1 .container-section .section-left .shape-1 {
  margin-top: -30px;
  margin-left: -40px;
  width: 398px;
  height: 398px;
}
.trade-insurance-section-1 .container-section .section-left .shape-2 {
  margin-top: -10px;
  margin-left: 60px;
  width: 330px;
  height: 330px;
}
.trade-insurance-section-1 .container-section .section-right {
  padding-left: 40px;
  width: 60%;
}
.trade-insurance-section-1 .container-section .section-right h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.trade-insurance-section-1 .container-section .section-right ul {
  margin-top: 25px;
  padding-left: 35px;
  list-style: none;
}
.trade-insurance-section-1 .container-section .section-right ul li {
  position: relative;
  margin-top: 20px;
}
.trade-insurance-section-1 .container-section .section-right ul li:before {
  content: url(../image/icon-checkmark-black-shield.svg);
  position: absolute;
  top: 2px;
  left: -35px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.trade-insurance-section-1 .container-section .section-right ul li:hover:before {
  transform: scale(1.2);
}
/*---- End of Trade Insurance Section 1 ----*/


/*---- Trade Insurance Section 2 ----*/
.trade-insurance-section-2 {
  padding: 70px 0 120px 0;
}
.trade-insurance-section-2 .container-section {
  display: flex;
  border-radius: 25px;
  box-shadow: 0 2px 50px 5px rgba(0, 0, 0, 0.05);
}
.trade-insurance-section-2 .container-section .section-left {
  z-index: 1;
  position: relative;
  width: 42%;
  background-color: #e7f0fc;
  border-radius: 25px 0 0 25px;
}
.trade-insurance-section-2 .container-section .section-left div {
  padding: 40px 30px 60px 70px;
}
.trade-insurance-section-2 .container-section .section-left img {
  display: block;
  margin: 0 auto;
  width: calc(100% - 30px);
  height: auto;
}
.trade-insurance-section-2 .container-section .section-left h2 {
  margin: 60px 0 50px 0;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.trade-insurance-section-2 .container-section .section-left .btn {
  display: block;
  padding: 25px 35px;
  width: calc(100% + 45px);
  color: #8c8c8c;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  line-height: 30px;
  background-color: transparent;
  border-radius: 15px 0 0 15px;
}
.trade-insurance-section-2 .container-section .section-left .btn.active {
  position: relative;
  color: #0069ab;
  background-color: #fff;
  border: 1px solid #eaeaea !important;
  box-shadow: -10px 3px 18px 0 rgba(0, 0, 0, 0.08) !important;
}
.trade-insurance-section-2 .container-section .section-left .btn.active:before {
  content: '';
  position: absolute;
  top: -10px;
  right: -1px;
  width: 1px;
  height: calc(100% + 20px);
  background-color: #eaeaea;
}
.trade-insurance-section-2 .container-section .section-right {
  width: 58%;
  background-color: #fff;
  border-radius: 0 25px 25px 0;
}
.trade-insurance-section-2 .container-section .section-right .container-content {
  display: none;
  padding: 60px 70px 50px 70px;
}
.trade-insurance-section-2 .container-section .section-right .container-content img {
  display: block;
  margin-bottom: 40px;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.trade-insurance-section-2 .container-section .section-right .container-content ol {
  padding-left: 50px;
  list-style: none;
}
.trade-insurance-section-2 .container-section .section-right .container-content ol li {
  position: relative;
  margin-top: 30px;
}
.trade-insurance-section-2 .container-section .section-right .container-content ol li:before {
  content: url(../image/icon-checkmark-red-circle.svg);
  position: absolute;
  top: 1px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.trade-insurance-section-2 .container-section .section-right .container-content ol li:hover:before {
  transform: scale(1.15);
}
.trade-insurance-section-2 .container-section .section-right .container-content .container-button {
  display: flex;
  margin-top: 80px;
  padding-top: 30px;
  justify-content: center;
  border-top: 1px solid #c2c2c2;
}
.trade-insurance-section-2 .container-section .section-right .container-content .container-button .btn {
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
/*---- End of Trade Insurance Section 2 ----*/


/*---- Trade Insurance Detail Banner ----*/
.trade-insurance-detail-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.trade-insurance-detail-banner .container div {
  padding-top: 55px;
  width: 60%;
}
.trade-insurance-detail-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Trade Insurance Detail Banner ----*/


/*---- Trade Insurance Detail Section 1 ----*/
.trade-insurance-detail-section-1 {
  padding: 70px 0 90px 0;
}
.trade-insurance-detail-section-1 .container-section {
  display: flex;
}
.trade-insurance-detail-section-1 .container-section .section-left {
  padding: 10px 40px 0 0;
  width: 30%;
}
.trade-insurance-detail-section-1 .container-section .section-left h4 {
  margin-bottom: 15px;
  color: #202020;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.trade-insurance-detail-section-1 .container-section .section-left ol {
  padding-left: 30px;
  list-style: none;
}
.trade-insurance-detail-section-1 .container-section .section-left ol li {
  position: relative;
}
.trade-insurance-detail-section-1 .container-section .section-left ol li a {
  display: block;
  padding: 15px 0;
  color: #545454;
  font-size: 18px;
  font-weight: 600;
}
.trade-insurance-detail-section-1 .container-section .section-left ol > li.active > a {
  color: #c9011f;
}
.trade-insurance-detail-section-1 .container-section .section-left ol li:before {
  content: url(../image/icon-arrow-right-01.svg);
  position: absolute;
  top: 16px;
  left: -25px;
}
.trade-insurance-detail-section-1 .container-section .section-left ol > li.active:before {
  content: url(../image/icon-arrow-right-02.svg);
}
.trade-insurance-detail-section-1 .container-section .section-left ol li ul {
  display: none;
  padding-left: 30px;
  list-style: none;
}
.trade-insurance-detail-section-1 .container-section .section-left ol li.active ul {
  display: block;
}
.trade-insurance-detail-section-1 .container-section .section-right {
  width: 70%;
}
.trade-insurance-detail-section-1 .container-section .section-right h2 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.trade-insurance-detail-section-1 .container-section .section-right .big-image {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.trade-insurance-detail-section-1 .container-section .section-right p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 24px;
}
.trade-insurance-detail-section-1 .container-section .section-right ol {
  padding-left: 50px;
  list-style: none;
}
.trade-insurance-detail-section-1 .container-section .section-right ol li {
  position: relative;
  margin-top: 30px;
  font-size: 18px;
  line-height: 24px;
}
.trade-insurance-detail-section-1 .container-section .section-right ol > li:before {
  content: url(../image/icon-checkmark-red-shield.svg);
  position: absolute;
  top: -2px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.trade-insurance-detail-section-1 .container-section .section-right ol > li:hover:before {
  transform: scale(1.15);
}
.trade-insurance-detail-section-1 .container-section .section-right ol li ul {
  padding-left: 35px;
  list-style: none;
}
.trade-insurance-detail-section-1 .container-section .section-right ol > li ul li:before {
  content: url(../image/icon-checkmark-black.svg);
  position: absolute;
  top: 1px;
  left: -30px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*---- End of Trade Insurance Detail Section 1 ----*/


/*---- Credit Insurance Guarantees Banner ----*/
.credit-insurance-guarantees-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.credit-insurance-guarantees-banner .container div {
  padding-top: 70px;
  width: 45%;
}
.credit-insurance-guarantees-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.credit-insurance-guarantees-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Credit Insurance Guarantees Banner ----*/


/*---- Credit Insurance Guarantees Section 1 ----*/
.credit-insurance-guarantees-section-1 {
  padding: 80px 0 90px 0;
  background-color: #fff;
}
.credit-insurance-guarantees-section-1 .container-section {
  display: flex;
}
.credit-insurance-guarantees-section-1 .container-section .section-left {
  width: 42%;
}
.credit-insurance-guarantees-section-1 .container-section .section-left img {
  position: relative;
  top: -30px;
  width: 100%;
  height: auto;
}
.credit-insurance-guarantees-section-1 .container-section .section-right {
  padding-left: 60px;
  width: 58%;
}
.credit-insurance-guarantees-section-1 .container-section .section-right h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.credit-insurance-guarantees-section-1 .container-section .section-right p {
  margin-bottom: 35px;
  width: 70%;
}
.credit-insurance-guarantees-section-1 .container-section .section-right .btn {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
/*---- End of Credit Insurance Guarantees Section 1 ----*/


/*---- Credit Insurance Guarantees Section 2 ----*/
.credit-insurance-guarantees-section-2 {
  padding: 50px 0 90px 0;
  background-color: #fff;
}
.credit-insurance-guarantees-section-2 .container-section {
  display: flex;
}
.credit-insurance-guarantees-section-2 .container-section .section-left {
  display: flex;
  padding-right: 60px;
  width: 58%;
  text-align: right;
  flex-direction: column;
  align-items: end;
}
.credit-insurance-guarantees-section-2 .container-section .section-left h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.credit-insurance-guarantees-section-2 .container-section .section-left p {
  margin-bottom: 35px;
  width: 70%;
}
.credit-insurance-guarantees-section-2 .container-section .section-left .btn {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
.credit-insurance-guarantees-section-2 .container-section .section-right {
  width: 42%;
}
.credit-insurance-guarantees-section-2 .container-section .section-right img {
  position: relative;
  top: -45px;
  width: 100%;
  height: auto;
}
/*---- End of Credit Insurance Guarantees Section 2 ----*/


/*---- Credit Insurance Guarantees Detail Banner ----*/
.credit-insurance-guarantees-detail-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.credit-insurance-guarantees-detail-banner .container div {
  padding-top: 55px;
  width: 60%;
}
.credit-insurance-guarantees-detail-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Credit Insurance Guarantees Detail Banner ----*/


/*---- Credit Insurance Guarantees Detail Section 1 ----*/
.credit-insurance-guarantees-detail-section-1 {
  padding: 70px 0 90px 0;
}
.credit-insurance-guarantees-detail-section-1 .container-section {
  display: flex;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left {
  padding: 10px 40px 0 0;
  width: 30%;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left h4 {
  margin-bottom: 15px;
  color: #202020;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol {
  padding-left: 30px;
  list-style: none;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol li {
  position: relative;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol li a {
  display: block;
  padding: 15px 0;
  color: #545454;
  font-size: 18px;
  font-weight: 600;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol > li.active > a,
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol > li.active ul li.active a {
  color: #c9011f;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol li:before {
  content: url(../image/icon-arrow-right-01.svg);
  position: absolute;
  top: 16px;
  left: -25px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol > li.active:before {
  content: url(../image/icon-arrow-bottom.svg);
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol > li.active ul li.active:before {
  content: url(../image/icon-arrow-right-02.svg);
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol li ul {
  display: none;
  padding-left: 30px;
  list-style: none;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-left ol li.active ul {
  display: block;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right {
  width: 70%;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right h2 {
  margin-bottom: 40px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right .big-image {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 24px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right .container-box {
  display: flex;
  margin-bottom: 30px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right .container-box .box-left img {
  width: 100%;
  height: auto;
  border-radius: 21px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right .container-box .box-right {
  padding-left: 20px;
  flex: 1 1 0;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right .container-box .box-right h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right ol {
  padding-left: 50px;
  list-style: none;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right ol li {
  position: relative;
  margin-top: 30px;
  font-size: 18px;
  line-height: 24px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right ol > li:before {
  content: url(../image/icon-checkmark-red-shield.svg);
  position: absolute;
  top: -2px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right ol > li:hover:before {
  transform: scale(1.15);
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right ol li h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right ol li ul {
  padding-left: 35px;
  list-style: none;
}
.credit-insurance-guarantees-detail-section-1 .container-section .section-right ol > li ul li:before {
  content: url(../image/icon-checkmark-black.svg);
  position: absolute;
  top: 1px;
  left: -30px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*---- End of Credit Insurance Guarantees Detail Section 1 ----*/


/*---- General Insurance Banner ----*/
.general-insurance-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.general-insurance-banner .container div {
  padding-top: 70px;
  width: 45%;
}
.general-insurance-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.general-insurance-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of General Insurance Banner ----*/


/*---- General Insurance Section 1 ----*/
.general-insurance-section-1 {
  padding: 80px 0 90px 0;
  background-color: #fff;
}
.general-insurance-section-1 .container-section {
  display: flex;
}
.general-insurance-section-1 .container-section .section-left {
  width: 42%;
}
.general-insurance-section-1 .container-section .section-left img {
  position: relative;
  top: -30px;
  width: 100%;
  height: auto;
}
.general-insurance-section-1 .container-section .section-right {
  padding-left: 60px;
  width: 58%;
}
.general-insurance-section-1 .container-section .section-right h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.general-insurance-section-1 .container-section .section-right p {
  margin-bottom: 35px;
  width: 70%;
}
.general-insurance-section-1 .container-section .section-right .btn {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
/*---- End of General Insurance Section 1 ----*/


/*---- General Insurance Section 2 ----*/
.general-insurance-section-2 {
  padding: 50px 0 90px 0;
  background-color: #fff;
}
.general-insurance-section-2 .container-section {
  display: flex;
}
.general-insurance-section-2 .container-section .section-left {
  display: flex;
  padding-right: 60px;
  width: 58%;
  text-align: right;
  flex-direction: column;
  align-items: end;
}
.general-insurance-section-2 .container-section .section-left h3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.general-insurance-section-2 .container-section .section-left p {
  margin-bottom: 35px;
  width: 70%;
}
.general-insurance-section-2 .container-section .section-left .btn {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
.general-insurance-section-2 .container-section .section-right {
  width: 42%;
}
.general-insurance-section-2 .container-section .section-right img {
  position: relative;
  top: -45px;
  width: 100%;
  height: auto;
}
/*---- End of General Insurance Section 2 ----*/


/*---- General Insurance Detail Banner ----*/
.general-insurance-detail-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.general-insurance-detail-banner .container div {
  padding-top: 55px;
  width: 60%;
}
.general-insurance-detail-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of General Insurance Detail Banner ----*/


/*---- General Insurance Detail Section 1 ----*/
.general-insurance-detail-section-1 {
  padding: 70px 0 90px 0;
}
.general-insurance-detail-section-1 .container-section {
  display: flex;
}
.general-insurance-detail-section-1 .container-section .section-left {
  padding: 10px 50px 0 0;
  width: 30%;
}
.general-insurance-detail-section-1 .container-section .section-left h4 {
  margin-bottom: 15px;
  color: #202020;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.general-insurance-detail-section-1 .container-section .section-left ol {
  padding-left: 30px;
  list-style: none;
}
.general-insurance-detail-section-1 .container-section .section-left ol li {
  position: relative;
}
.general-insurance-detail-section-1 .container-section .section-left ol li a {
  display: block;
  padding: 15px 0;
  color: #545454;
  font-size: 18px;
  font-weight: 600;
}
.general-insurance-detail-section-1 .container-section .section-left ol > li.active > a {
  color: #c9011f;
}
.general-insurance-detail-section-1 .container-section .section-left ol li:before {
  content: url(../image/icon-arrow-right-01.svg);
  position: absolute;
  top: 16px;
  left: -25px;
}
.general-insurance-detail-section-1 .container-section .section-left ol > li.active:before {
  content: url(../image/icon-arrow-right-02.svg);
}
.general-insurance-detail-section-1 .container-section .section-left ol li ul {
  display: none;
  padding-left: 30px;
  list-style: none;
}
.general-insurance-detail-section-1 .container-section .section-left ol li.active ul {
  display: block;
}
.general-insurance-detail-section-1 .container-section .section-right {
  width: 70%;
}
.general-insurance-detail-section-1 .container-section .section-right h2 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.general-insurance-detail-section-1 .container-section .section-right .big-image {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.general-insurance-detail-section-1 .container-section .section-right p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 24px;
}
.general-insurance-detail-section-1 .container-section .section-right ol {
  padding-left: 50px;
  list-style: none;
}
.general-insurance-detail-section-1 .container-section .section-right ol li {
  position: relative;
  margin-top: 30px;
  font-size: 18px;
  line-height: 24px;
}
.general-insurance-detail-section-1 .container-section .section-right ol > li:before {
  content: url(../image/icon-checkmark-red-shield.svg);
  position: absolute;
  top: -2px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.general-insurance-detail-section-1 .container-section .section-right ol > li:hover:before {
  transform: scale(1.15);
}
.general-insurance-detail-section-1 .container-section .section-right ol li h5 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.general-insurance-detail-section-1 .container-section .section-right ol li ul {
  padding-left: 35px;
  list-style: none;
}
.general-insurance-detail-section-1 .container-section .section-right ol > li ul li:before {
  content: url(../image/icon-checkmark-black.svg);
  position: absolute;
  top: 1px;
  left: -30px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*---- End of General Insurance Detail Section 1 ----*/


/*---- Sharia Insurance Slider ----*/
.sharia-insurance-slider {
  margin-top: 79px;
  min-height: 100vh;
}
.sharia-insurance-slider .content {
  padding-top: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sharia-insurance-slider .content .container div {
  padding-top: 200px;
  width: 60%;
}
.sharia-insurance-slider .content img {
  margin-bottom: 20px;
}
.sharia-insurance-slider .content p {
  margin-bottom: 35px;
  width: 70%;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.sharia-insurance-slider .content a {
  display: inline-block;
  padding: 15px;
  color: #4d4f4f;
  font-weight: 700;
  background-color: #fff;
  border: none;
  border-radius: 8px;
}
.sharia-insurance-slider .swiper-pagination {
  bottom: 60px;
}
.sharia-insurance-slider .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  opacity: 1 !important;
  background-color: #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sharia-insurance-slider .swiper-pagination-bullet-active {
  width: 65px;
  height: 6px;
  background-color: #fc5801;
  border-radius: 4px;
}
/*---- End of Sharia Insurance Slider ----*/


/*---- Sharia Insurance Section 1 ----*/
.sharia-insurance-section-1 {
  padding: 70px 0;
  background-color: #fff;
}
.sharia-insurance-section-1 .container-section {
  display: flex;
  border-bottom: 1px solid #c2c2c2;
}
.sharia-insurance-section-1 .container-section .section-left {
  position: relative;
  width: 40%;
}
.sharia-insurance-section-1 .container-section .section-left img {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 90%;
}
.sharia-insurance-section-1 .container-section .section-left .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.sharia-insurance-section-1 .container-section .section-left .shape-1 {
  margin-top: 20px;
  margin-left: -90px;
  width: 398px;
  height: 398px;
}
.sharia-insurance-section-1 .container-section .section-left .shape-2 {
  margin-top: -40px;
  margin-left: 10px;
  width: 330px;
  height: 330px;
}
.sharia-insurance-section-1 .container-section .section-right {
  padding-left: 40px;
  width: 60%;
  height: 425px;
  overflow-y: auto;
}
.sharia-insurance-section-1 .container-section .section-right h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.sharia-insurance-section-1 .container-section .section-right ul {
  margin-top: 25px;
  padding-left: 45px;
  list-style: none;
}
.sharia-insurance-section-1 .container-section .section-right ul li {
  position: relative;
  margin-top: 20px;
  font-size: 20px;
  line-height: 26px;
}
.sharia-insurance-section-1 .container-section .section-right ul li:last-child {
  margin-bottom: 20px;
}
.sharia-insurance-section-1 .container-section .section-right ul li:before {
  content: url(../image/icon-david-star.svg);
  position: absolute;
  top: -2px;
  left: -45px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sharia-insurance-section-1 .container-section .section-right ul li:hover:before {
  transform: scale(1.15);
}
.sharia-insurance-section-1 .container-section .section-right ul li h5 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.sharia-insurance-section-1 .container-section .section-right ul li p {
  font-size: 16px;
  line-height: 22px;
}
/*---- End of Sharia Insurance Section 1 ----*/


/*---- Sharia Insurance Section 2 ----*/
.sharia-insurance-section-2 {
  padding: 70px 0 40px 0;
}
.sharia-insurance-section-2 .container-section {
  display: flex;
  border-radius: 25px;
  box-shadow: 0 2px 50px 5px rgba(0, 0, 0, 0.05);
}
.sharia-insurance-section-2 .container-section .section-left {
  z-index: 1;
  position: relative;
  width: 42%;
  background-color: #e7f0fc;
  border-radius: 25px 0 0 25px;
}
.sharia-insurance-section-2 .container-section .section-left div {
  padding: 40px 30px 60px 70px;
}
.sharia-insurance-section-2 .container-section .section-left img {
  display: block;
  margin: 0 auto;
  width: calc(100% - 30px);
  height: auto;
}
.sharia-insurance-section-2 .container-section .section-left h2 {
  margin: 60px 0 50px 0;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.sharia-insurance-section-2 .container-section .section-left .btn {
  display: block;
  padding: 25px 35px;
  width: calc(100% + 45px);
  color: #8c8c8c;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  line-height: 30px;
  background-color: transparent;
  border-radius: 15px 0 0 15px;
}
.sharia-insurance-section-2 .container-section .section-left .btn.active {
  position: relative;
  color: #0069ab;
  background-color: #fff;
  border: 1px solid #eaeaea !important;
  box-shadow: -10px 3px 18px 0 rgba(0, 0, 0, 0.08) !important;
}
.sharia-insurance-section-2 .container-section .section-left .btn.active:before {
  content: '';
  position: absolute;
  top: -10px;
  right: -1px;
  width: 1px;
  height: calc(100% + 20px);
  background-color: #eaeaea;
}
.sharia-insurance-section-2 .container-section .section-right {
  width: 58%;
  background-color: #fff;
  border-radius: 0 25px 25px 0;
}
.sharia-insurance-section-2 .container-section .section-right .container-content {
  display: none;
  padding: 60px 70px 50px 70px;
}
.sharia-insurance-section-2 .container-section .section-right .container-content img {
  display: block;
  margin-bottom: 40px;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.sharia-insurance-section-2 .container-section .section-right .container-content ol {
  padding-left: 50px;
  list-style: none;
}
.sharia-insurance-section-2 .container-section .section-right .container-content ol li {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}
.sharia-insurance-section-2 .container-section .section-right .container-content ol > li {
  position: relative;
  margin-top: 30px;
}
.sharia-insurance-section-2 .container-section .section-right .container-content ol > li:before {
  content: url(../image/icon-checkmark-red-circle.svg);
  position: absolute;
  top: 1px;
  left: -50px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sharia-insurance-section-2 .container-section .section-right .container-content ol > li:hover:before {
  transform: scale(1.15);
}
.sharia-insurance-section-2 .container-section .section-right .container-content ol > li h5 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.sharia-insurance-section-2 .container-section .section-right .container-content ol > li ul {
  margin-top: 10px;
  padding-left: 30px;
}
/*---- End of Sharia Insurance Section 2 ----*/


/*---- Sharia Insurance Section 3 ----*/
.sharia-insurance-section-3 {
  padding: 0 0 90px 0;
  background-color: #f8f8f8;
}
.sharia-insurance-section-3 .container-section {
  padding: 80px 60px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.sharia-insurance-section-3 .container-section .section-top {
  margin: 0 auto;
  width: 50%;
  text-align: center;
}
.sharia-insurance-section-3 .container-section .section-top h3 {
  margin-bottom: 25px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.sharia-insurance-section-3 .container-section .section-top p {
  font-size: 18px;
  line-height: 24px;
}
.sharia-insurance-section-3 .container-section .section-bottom {
  position: relative;
  margin-top: 40px;
  padding-bottom: 60px;
}
.sharia-insurance-section-3 .container-section .section-bottom .box {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  width: 210px;
  height: 350px;
  overflow: hidden;
  border-radius: 25px;
}
.sharia-insurance-section-3 .container-section .section-bottom .box img {
  width: auto;
  height: 100%;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sharia-insurance-section-3 .container-section .section-bottom .box:hover img {
  transform: scale(1.15);
}
.sharia-insurance-section-3 .container-section .section-bottom .box .masking {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.sharia-insurance-section-3 .container-section .section-bottom .box h4 {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 25px;
  left: 15px;
  padding-left: 15px;
  width: 165px;
  height: 60px;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
}
.sharia-insurance-section-3 .container-section .section-bottom .box h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 85%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.sharia-insurance-section-3 .container-section .section-bottom .swiper-pagination {
  bottom: 0;
}
.sharia-insurance-section-3 .container-section .section-bottom .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  opacity: 1 !important;
  background-color: #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sharia-insurance-section-3 .container-section .section-bottom .swiper-pagination-bullet-active {
  width: 65px;
  height: 6px;
  background-color: #fc5801;
  border-radius: 4px;
}
/*---- End of Sharia Insurance Section 3 ----*/


/*---- Sharia Insurance Detail Banner ----*/
.sharia-insurance-detail-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sharia-insurance-detail-banner .container div {
  padding-top: 55px;
  width: 60%;
}
.sharia-insurance-detail-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Sharia Insurance Detail Banner ----*/


/*---- Sharia Insurance Detail Section 1 ----*/
.sharia-insurance-detail-section-1 {
  padding: 70px 0 90px 0;
}
.sharia-insurance-detail-section-1 .container-section {
  display: flex;
}
.sharia-insurance-detail-section-1 .container-section .section-left {
  padding: 10px 40px 0 0;
  width: 30%;
}
.sharia-insurance-detail-section-1 .container-section .section-left ul {
  list-style: none;
}
.sharia-insurance-detail-section-1 .container-section .section-left ul li {

}
.sharia-insurance-detail-section-1 .container-section .section-left ul li a {
  display: block;
  padding: 10px 0;
}
.sharia-insurance-detail-section-1 .container-section .section-right {
  width: 70%;
}
.sharia-insurance-detail-section-1 .container-section .section-right .big-image {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.sharia-insurance-detail-section-1 .container-section .section-right h2 {
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.sharia-insurance-detail-section-1 .container-section .section-right h4 {
  margin-bottom: 20px;
  color: #0069ab;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.sharia-insurance-detail-section-1 .container-section .section-right p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 24px;
}
.sharia-insurance-detail-section-1 .container-section .section-right img {
  margin-bottom: 30px;
}
.sharia-insurance-detail-section-1 .container-section .section-right ul,
.sharia-insurance-detail-section-1 .container-section .section-right ol {
  padding-left: 25px;
}
.sharia-insurance-detail-section-1 .container-section .section-right ul li h5,
.sharia-insurance-detail-section-1 .container-section .section-right ol li h5 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row {
  display: flex;
  margin-top: 130px;
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile {
  display: none;
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row .container-col-3 {
  position: relative;
  width: 25%;
  padding: 20px 0;
  background-color: #0069ab;
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row .container-col-3:first-child {
  border-radius: 25px 0 0 25px;
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row .container-col-3:last-child {
  padding: 20px 20px 20px 0;
  border-radius: 0 25px 25px 0;
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row img {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row h4 {
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px 15px;
  color: #0069ab;
  font-size: 20px;
  font-weight: 800;
  line-height: 26px;
  background-color: #fff;
  border-radius: 8px;
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row h5 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
}
.sharia-insurance-detail-section-1 .container-section .section-right .container-row p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600px;
  line-height: 22px;
}
/*---- End of Sharia Insurance Detail Section 1 ----*/


/*---- Financial Report Banner ----*/
.financial-report-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.financial-report-banner .container div {
  padding-top: 70px;
  width: 60%;
}
.financial-report-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.financial-report-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Financial Report Banner ----*/


/*---- Financial Report Section 1 ----*/
.financial-report-section-1 {
  padding: 70px 0 70px 0;
}
.financial-report-section-1 .container-section {
  display: flex;
}
.financial-report-section-1 .container-section .section-left {
  padding: 10px 40px 0 0;
  width: 30%;
}
.financial-report-section-1 .container-section .section-left ol {
  padding-left: 30px;
  list-style: none;
}
.financial-report-section-1 .container-section .section-left ol.hide-mobile {
  display: none;
}
.financial-report-section-1 .container-section .section-left ol li {
  position: relative;
}
.financial-report-section-1 .container-section .section-left ol li:before {
  content: url(../image/icon-arrow-right-01.svg);
  position: absolute;
  top: 16px;
  left: -25px;
}
.financial-report-section-1 .container-section .section-left ol > li.active:before {
  content: url(../image/icon-arrow-right-02.svg);
}
.financial-report-section-1 .container-section .section-left ol li a {
  display: block;
  padding: 15px 0;
  color: #545454;
  font-size: 18px;
  font-weight: 600;
}
.financial-report-section-1 .container-section .section-left ol > li.active > a {
  color: #c9011f;
}
.financial-report-section-1 .container-section .section-right {
  width: 70%;
}
.financial-report-section-1 .container-section .section-right h2 {
  margin-bottom: 40px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  line-height: 42px;
}
.financial-report-section-1 .container-section .section-right .container-content {
  margin-bottom: 100px;
  background-color: #fff;
  border-radius: 25px;
}
.financial-report-section-1 .container-section .section-right .container-content ol {
  padding: 10px 0;
  list-style: none;
}
.financial-report-section-1 .container-section .section-right .container-content ol li {
  display: flex;
  margin: 0 20px;
  padding: 30px 30px;
  border-bottom: 1px solid #c2c2c2;
}
.financial-report-section-1 .container-section .section-right .container-content ol li p {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  flex: 1 1 0;
}
.financial-report-section-1 .container-section .section-right .container-content ol li a {
  color: #0069ab;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.financial-report-section-1 .container-section .section-right .container-content ol li a img {
  position: relative;
  margin-left: 5px;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination {
  display: flex;
  padding: 20px 0 40px 0;
  justify-content: center;
  list-style: none;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li {
  display: inline-block;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li.disabled {
  opacity: 0.5;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li a {
  display: block;
  position: relative;
  padding: 8px;
  min-width: 23px;
  height: 23px;
  color: #1d2939;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #d0d5dd;
  border-right: 0;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li.active a {
  background-color: #f9fafb;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li:first-child a {
  padding: 8px 15px 8px 40px;
  border-radius: 8px 0 0 8px;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li:last-child a {
  padding: 8px 40px 8px 15px;
  border-right: 1px solid #d0d5dd;
  border-radius: 0 8px 8px 0;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li a img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li:first-child a img {
  left: 15px;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li:last-child a img {
  right: 15px;
}
.financial-report-section-1 .container-section .section-right .container-content .pagination li.disabled a {
  cursor: default;
}
.financial-report-section-1 .container-section .section-right .big-image {
  display: block;
  margin-top: 50px;
  color: #0069ab;
  font-weight: 600;
  text-align: center;
}
.financial-report-section-1 .container-section .section-right .big-image img {
  display: block;
  margin: 0 auto 20px auto;
  width: 70%;
  height: auto;
}
.financial-report-section-1 .container-section .section-right .realization-report-content {
  margin: 50px 0 100px 0;
  padding: 50px 40px;
  background-color: #fff;
  border-radius: 25px;
}
.financial-report-section-1 .container-section .section-right .realization-report-content .box {
  display: inline-block;
  margin: 15px;
  width: 29%;
  color: #0069ab;
  font-weight: 600;
  text-align: center;
}
/*---- End of Financial Report Section 1 ----*/


/*---- Financial Report Section 2 ----*/
.financial-report-section-2 {
  padding: 70px 0;
  background-color: #fff;
}
.financial-report-section-2 .container-section {
  display: flex;
}
.financial-report-section-2 .container-section .section-left {
  width: 30%;
}
.financial-report-section-2 .container-section .section-left ol {
  display: none;
  padding-left: 30px;
  list-style: none;
}
.financial-report-section-2 .container-section .section-left ol.show-mobile {
  display: block;
}
.financial-report-section-2 .container-section .section-left ol li {
  position: relative;
}
.financial-report-section-2 .container-section .section-left ol li:before {
  content: url(../image/icon-arrow-right-01.svg);
  position: absolute;
  top: 16px;
  left: -25px;
}
.financial-report-section-2 .container-section .section-left ol > li.active:before {
  content: url(../image/icon-arrow-right-02.svg);
}
.financial-report-section-2 .container-section .section-left ol li a {
  display: block;
  padding: 15px 0;
  color: #545454;
  font-size: 18px;
  font-weight: 600;
}
.financial-report-section-2 .container-section .section-left ol > li.active > a {
  color: #c9011f;
}
.financial-report-section-2 .container-section .section-right {
  width: 70%;
  text-align: center;
}
.financial-report-section-2 .container-section .section-right .box {
  display: inline-block;
  margin: 15px;
  width: 21%;
  color: #0069ab;
  font-weight: 600;
  text-align: center;
}
.financial-report-section-2 .container-section .section-right .box img {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.06);
}
.financial-report-section-2 .container-section .section-right .pagination {
  display: flex;
  margin-top: 50px;
  padding: 20px 0 40px 0;
  justify-content: center;
  list-style: none;
  border-top: 1px solid #eaecf0;
}
.financial-report-section-2 .container-section .section-right .pagination li {
  display: inline-block;
}
.financial-report-section-2 .container-section .section-right .pagination li.disabled {
  opacity: 0.5;
}
.financial-report-section-2 .container-section .section-right .pagination li a {
  display: block;
  position: relative;
  padding: 8px;
  min-width: 23px;
  height: 23px;
  color: #1d2939;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #d0d5dd;
  border-right: 0;
}
.financial-report-section-2 .container-section .section-right .pagination li.active a {
  background-color: #f9fafb;
}
.financial-report-section-2 .container-section .section-right .pagination li:first-child a {
  padding: 8px 15px 8px 40px;
  border-radius: 8px 0 0 8px;
}
.financial-report-section-2 .container-section .section-right .pagination li:last-child a {
  padding: 8px 40px 8px 15px;
  border-right: 1px solid #d0d5dd;
  border-radius: 0 8px 8px 0;
}
.financial-report-section-2 .container-section .section-right .pagination li a img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.financial-report-section-2 .container-section .section-right .pagination li:first-child a img {
  left: 15px;
}
.financial-report-section-2 .container-section .section-right .pagination li:last-child a img {
  right: 15px;
}
.financial-report-section-2 .container-section .section-right .pagination li.disabled a {
  cursor: default;
}
/*---- End of Financial Report Section 2 ----*/


/*---- Financial Report Section 3 ----*/
.financial-report-section-3 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Financial Report Section 3 ----*/


/*---- Network Banner ----*/
.network-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.network-banner .container div {
  padding-top: 55px;
  width: 60%;
}
.network-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Network Banner ----*/


/*---- Network Section 1 ----*/
.network-section-1 {
  padding: 70px 0;
  background-color: #fff;
}
.network-section-1 .container-section {
  display: flex;
}
.network-section-1 .container-section .section-left img {
  border-radius: 19px;
}
.network-section-1 .container-section .section-right {
  padding-left: 50px;
}
.network-section-1 .container-section .section-right h4 {
  margin-bottom: 10px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.network-section-1 .container-section .section-right p {
  color: #545454;
  font-size: 18px;
  line-height: 24px;
}
.network-section-1 .container-section .section-right a {
  color: #545454;
}
.network-section-1 .container-section .section-right .btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
/*---- End of Network Section 1 ----*/


/*---- Network Section 2 ----*/
.network-section-2 {
  padding: 50px 0 70px 0;
}
.network-section-2 h3 {
  margin-bottom: 60px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
}
.network-section-2 .box {
  display: inline-block;
  margin: 0 40px 40px 0;
  padding: 30px;
  width: 26%;
  height: 341px;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid #a6a9a1;
  border-radius: 18px;
}
.network-section-2 .box:nth-child(3n) {
  margin-right: 0;
}
.network-section-2 .box div {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.network-section-2 .box h4 {
  margin-bottom: 25px;
  color: #0069ab;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.network-section-2 .box p {
  color: #545454;
  font-size: 18px;
  line-height: 24px;
}
.network-section-2 .box p.last-paragraph {
  margin-top: 20px;
}
.network-section-2 .box a {
  color: #545454;
}
.network-section-2 .box .btn {
  margin-top: auto;
  padding: 10px 15px;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  background-color: #ed1b35;
  border: none;
  border-radius: 8px;
}
/*---- End of Network Section 2 ----*/


/*---- Network Section 3 ----*/
.network-section-3 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Network Section 3 ----*/


/*---- Contact Us Banner ----*/
.contact-us-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-us-banner .container div {
  padding-top: 55px;
  width: 60%;
}
.contact-us-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
/*---- End of Contact Us Banner ----*/


/*---- Contact Us Section 1 ----*/
.contact-us-section-1 {
  padding: 70px 0 90px 0;
}
.contact-us-section-1 .container-section {
  display: flex;
}
.contact-us-section-1 .container-section .section-left {
  margin-top: 165px;
  width: 25%;
}
.contact-us-section-1 .container-section .section-left ul {
  padding-left: 30px;
  list-style: none;
}
.contact-us-section-1 .container-section .section-left ul li {
  position: relative;
  padding: 15px 0;
  color: #545454;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.contact-us-section-1 .container-section .section-left ul li.active {
  color: #c9011f;
}
.contact-us-section-1 .container-section .section-left ul li:before {
  content: url(../image/icon-arrow-right-01.svg);
  position: absolute;
  top: 16px;
  left: -25px;
}
.contact-us-section-1 .container-section .section-left ul li.active:before {
  content: url(../image/icon-arrow-right-02.svg);
}
.contact-us-section-1 .container-section .section-right {
  width: 75%;
}
.contact-us-section-1 .container-section .section-right .container-box {
  display: none;
}
.contact-us-section-1 .container-section .section-right .container-box h2 {
  margin-bottom: 10px;
  color: #101838;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  line-height: 42px;
}
.contact-us-section-1 .container-section .section-right .container-box p {
  margin-bottom: 40px;
  color: #667085;
  font-size: 20px;
  text-align: center;
  line-height: 26px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-contact-form {
  padding: 60px 0;
  background-color: #fff;
  border-radius: 25px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-contact-form p {
  margin-bottom: 30px;
  color: #4c4b4b;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-contact-form form {
  margin: 0 auto;
  width: 50%;
}
.contact-us-section-1 .container-section .section-right .container-box .container-contact-form form .form-group {
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
}
.contact-us-section-1 .container-section .section-right .container-box .container-contact-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}
.contact-us-section-1 .container-section .section-right .container-box .container-contact-form form .form-group .form-control {
  padding: 12px 16px;
  font-size: 16px;
  line-height: 22px;
  outline: none !important;
  resize: none !important;
  background-color: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  box-shadow: none !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact-us-section-1 .container-section .section-right .container-box .container-contact-form form .form-group .form-control:focus {
  border-color: #018adf;
}
.contact-us-section-1 .container-section .section-right .container-box .container-contact-form form .btn {
  display: block;
  margin-top: 30px;
  padding: 12px 20px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  background-color: #0069ab;
  border-radius: 8px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-faq {
  padding: 30px 0px;
  background-color: #fff;
  border-radius: 25px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse {
  margin: 0 40px;
  border-bottom: 1px solid #eaecf0;
}
.contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse:last-child {
  border-bottom: none;
}
.contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse .faq-question {
  position: relative;
  padding: 30px 40px 30px 0;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
}
.contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse .faq-question img {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse .faq-answer {
  display: none;
  padding-bottom: 30px;
  color: #667085;
}
.contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse .faq-answer a {
  color: #0069ab;
}
.contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse .faq-answer ol,
.contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse .faq-answer ul {
  padding-left: 25px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing {
  padding: 60px 40px;
  background-color: #fff;
  border-radius: 25px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing:last-child {
  margin-top: 30px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing h5 {
  margin-bottom: 10px;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing:last-child h5 {
  margin-bottom: 10px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 30px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing p {
  margin-bottom: 10px;
  color: #667085;
  font-size: 16px;
  text-align: left;
  line-height: 22px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing:last-child p {
  margin: 0 auto 30px auto;
  width: 60%;
  text-align: center;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing ol,
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing ul {
  margin-bottom: 10px;
  padding-left: 25px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing .container-button {
  margin-bottom: 40px;
  text-align: center;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing .container-button .btn {
  margin: 0 10px;
  padding: 10px 40px;
  color: #0069ab;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  background-color: #f4f4f4;
  border-radius: 10px;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing .container-button .btn.active {
  color: #fff;
  background-color: #0069ab;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing .container-report {
  display: none;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing form {
  margin: 0 auto;
  width: 50%;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing form .form-group {
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing form .form-group .form-control {
  padding: 12px 16px;
  font-size: 16px;
  line-height: 22px;
  outline: none !important;
  resize: none !important;
  background-color: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  box-shadow: none !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing form .form-group .form-control:focus {
  border-color: #018adf;
}
.contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing form .btn {
  display: block;
  margin-top: 30px;
  padding: 12px 20px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  background-color: #0069ab;
  border-radius: 8px;
}
/*---- End of Contact Us Section 1 ----*/


/*---- Contact Us 2 ----*/
.contact-us-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Contact Us 2 ----*/


/*---- Newsroom Banner ----*/
.newsroom-banner {
  padding-top: 160px;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.newsroom-banner .container div {
  padding-top: 70px;
  width: 45%;
}
.newsroom-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
}
.newsroom-banner p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
/*---- End of Newsroom Banner ----*/


/*---- Newsroom Section 1 ----*/
.newsroom-section-1 {
  padding: 90px 0;
}
.newsroom-section-1 .container-section {
  display: flex;
}
.newsroom-section-1 .container-section .section-left {
  padding-right: 50px;
  width: 15%;
}
.newsroom-section-1 .container-section .section-left ul {
  padding-left: 30px;
  list-style: none;
}
.newsroom-section-1 .container-section .section-left ul li {
  position: relative;
  padding: 15px 0;
  color: #545454;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.newsroom-section-1 .container-section .section-left ul li.active {
  color: #c9011f;
}
.newsroom-section-1 .container-section .section-left ul li:before {
  content: url('../image/icon-arrow-right-01.svg');
  position: absolute;
  top: 16px;
  left: -25px;
}
.newsroom-section-1 .container-section .section-left ul li.active:before {
  content: url('../image/icon-arrow-right-02.svg');
}
.newsroom-section-1 .container-section .section-left ul li:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #018adf;
}
.newsroom-section-1 .container-section .section-left ul li.active:after {
  background-color: #c9011f;
}
.newsroom-section-1 .container-section .section-right {
  width: 85%;
}
.newsroom-section-1 .container-section .section-right h3 {
  margin: 0 0 60px 10px;
  color: #000;
  font-size: 40px;
  font-weight: 800;
}
.newsroom-section-1 .container-section .section-right .box {
  display: inline-block;
  position: relative;
  margin: 10px;
  width: 31%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
}
.newsroom-section-1 .container-section .section-right .box .masking {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.newsroom-section-1 .container-section .section-right .box:hover .masking {
  opacity: 1;
}
.newsroom-section-1 .container-section .section-right .box div {
  z-index: 1;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.newsroom-section-1 .container-section .section-right .box:hover div {
  bottom: 30px;
}
.newsroom-section-1 .container-section .section-right .box div p {
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
}
.newsroom-section-1 .container-section .section-right .box div h4 {
  display: -webkit-box;
  padding: 0 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-overflow: ellipsis;
  line-height: 30px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsroom-section-1 .container-section .section-right .pagination {
  margin-top: 50px;
  text-align: center;
  list-style: none;
}
.newsroom-section-1 .container-section .section-right .pagination li {
  display: inline-block;
  margin: 0 5px;
}
.newsroom-section-1 .container-section .section-right .pagination li.active {
  background-color: #c9011f;
  border-radius: 4px;
}
.newsroom-section-1 .container-section .section-right .pagination li.disabled {
  opacity: 0.5;
}
.newsroom-section-1 .container-section .section-right .pagination li a {
  display: block;
  position: relative;
  padding: 8px;
  min-width: 23px;
  height: 23px;
  color: #051b44;
}
.newsroom-section-1 .container-section .section-right .pagination li:first-child a {
  margin-right: 10px;
}
.newsroom-section-1 .container-section .section-right .pagination li:last-child a {
  margin-left: 10px;
}
.newsroom-section-1 .container-section .section-right .pagination li.active a {
  color: #fff;
}
.newsroom-section-1 .container-section .section-right .pagination li.disabled a {
  cursor: default;
}
.newsroom-section-1 .container-section .section-right .pagination li a img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.newsroom-section-1 .container-section .section-right .pagination li:first-child a img {
  left: -20px;
}
.newsroom-section-1 .container-section .section-right .pagination li:last-child a img {
  right: -20px;
}
/*---- End of Newsroom Section 1 ----*/


/*---- Newsroom Section 2 ----*/
.newsroom-section-2 {
  height: 412px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*---- End of Newsroom Section 2 ----*/


/*---- Newsroom Detail Banner ----*/
.newsroom-detail-banner {
  padding-top: 160px;
  width: 100%;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.newsroom-detail-banner .container div {
  padding-top: 55px;
}
.newsroom-detail-banner h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
}
.newsroom-detail-banner ol {
  display: flex;
  align-items: center;
  list-style: none;
}
.newsroom-detail-banner ol li {
  margin-right: 25px;
}
.newsroom-detail-banner ol li a {
  position: relative;
}
.newsroom-detail-banner ol li a:before {
  content: url('../image/icon-chevron-right-01.svg');
  position: absolute;
  top: 0;
  right: -17px;
}
.newsroom-detail-banner ol li p {
  color: #fff;
}
/*---- End of Newsroom Detail Banner ----*/


/*---- Newsroom Detail Section 1 ----*/
.newsroom-detail-section-1 {
  padding: 70px 0 120px 0;
}
.newsroom-detail-section-1 .container-section {
  display: flex;
}
.newsroom-detail-section-1 .container-section .section-left {
  width: 70%;
}
.newsroom-detail-section-1 .container-section .section-left .big-image {
  margin-bottom: 20px;
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.newsroom-detail-section-1 .container-section .section-left p {
  margin-bottom: 20px;
  color: #545454;
}
.newsroom-detail-section-1 .container-section .section-left .newsroom-date {
  margin-bottom: 10px;
  color: #4c4b4b;
  font-size: 14px;
  line-height: 20px;
}
.newsroom-detail-section-1 .container-section .section-left .newsroom-title {
  margin-bottom: 30px;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}
.newsroom-detail-section-1 .container-section .section-right {
  padding-left: 60px;
  width: 30%;
}
.newsroom-detail-section-1 .container-section .section-right h4 {
  margin-bottom: 20px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.newsroom-detail-section-1 .container-section .section-right ul {
  list-style: none;
}
.newsroom-detail-section-1 .container-section .section-right ul li {
  margin-bottom: 20px;
}
.newsroom-detail-section-1 .container-section .section-right ul li a {
  display: flex;
}
.newsroom-detail-section-1 .container-section .section-right ul li a .thumbnail-news {
  margin-right: 15px;
  width: 75px;
  height: 75px;
  border-radius: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.newsroom-detail-section-1 .container-section .section-right ul li a h5 {
  display: -webkit-box;
  color: #545454;
  font-size: 18px;
  font-weight: 700;
  text-overflow: ellipsis;
  line-height: 24px;
  overflow: hidden;
  flex: 1 1 0;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/*---- End of Newsroom Detail Section 1 ----*/


/*---- Footer ----*/
.footer {
  padding: 20px 0 50px 0;
  background-color: #f3f3f3;
}
.footer .footer-top {

}
.footer .footer-top .top-row {
  display: flex;
}
.footer .footer-top .top-row .top-col-9 {
  width: 75%;
}
.footer .footer-top .top-row .top-col-8 {
  width: 66.66666667%;
}
.footer .footer-top .top-row .top-col-4 {
  width: 33.33333333%;
}
.footer .footer-top .top-row .top-col-3 {
  width: 25%;
}
.footer .footer-top .top-row .top-col-2 {
  width: 16.66666667%;
}
.footer .footer-top .top-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #c2c2c2;
}
.footer .footer-top .top-header .top-row {
  align-items: center;
}
.footer .footer-top .top-header a {
  display: inline-block;
}
.footer .footer-top .top-header ul {
  list-style: none;
}
.footer .footer-top .top-header ul li {
  display: inline-block;
  margin-right: 80px;
}
.footer .footer-top .top-header ul li:last-child {
  margin-right: 0;
}
.footer .footer-top .top-header ul li a {
  color: #000;
}
.footer .footer-top .top-header ul li a:hover {
  color: #0069ab;
}
.footer .footer-top .top-body {
  padding: 30px 0 50px 0;
}
.footer .footer-top .top-body h4 {
  margin-bottom: 30px;
  color: #0069ab;
  font-size: 18px;
  font-weight: 600;
}
.footer .footer-top .top-body p {
  padding-right: 50px;
  color: #545454;
}
.footer .footer-top .top-body .top-col-4:nth-child(1) p {
  margin-bottom: 25px;
}
.footer .footer-top .top-body ul {
  list-style: none;
}
.footer .footer-top .top-body ul li {
  margin-bottom: 15px;
}
.footer .footer-top .top-body ul li:last-child {
  margin-bottom: 0;
}
.footer .footer-top .top-body ul li a {
  display: flex;
  color: #545454;
  font-weight: 600;
  align-items: center;
}
.footer .footer-top .top-body ul li a img {
  margin-right: 10px;
}
.footer .footer-top .top-body .top-col-3:nth-child(5) p {
  padding: 0;
  color: #545454;
  font-size: 15px;
  font-weight: 700;
}
.footer .footer-top .top-body .top-col-3:nth-child(5) div p {
  color: #545454;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}
.footer .footer-top .top-body .top-col-3:nth-child(5) div p i {
  font-size: 10px;
}
.footer .footer-top .top-body .top-col-3:nth-child(5) p b {
  position: relative;
}
.footer .footer-top .top-body .top-col-3:nth-child(5) p b img {
  position: absolute;
  right: -82px;
  bottom: 1px;
  width: auto;
  height: 32px;
}
.footer .footer-bottom {
  padding-top: 10px;
  border-top: 1px solid #c2c2c2;
}
.footer .footer-bottom .container-row {
  display: flex;
}
.footer .footer-bottom .container-row .container-col-6 {
  width: 50%;
}
.footer .footer-bottom .container-row .container-col-6 p {
  color: #737373;
  font-size: 14px;
}
.footer .footer-bottom .container-row .container-col-6:last-child {
  text-align: right;
}
.footer .footer-bottom .container-row .container-col-6 a {
  display: inline-block;
  margin-right: 10px;
  color: #737373;
  font-size: 14px;
}
.footer .footer-bottom .container-row .container-col-6 a:last-child {
  margin-right: 0;
}
/*---- End of Footer ----*/


/*---- Modal ----*/
.container-modal {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container-modal .masking {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.container-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 30px;
  width: 1024px;
  max-height: calc(100vh - 100px);
  background-color: #fff;
  border-radius: 10px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.container-modal .modal-content .modal-header {
  position: relative;
  padding: 20px;
}
.container-modal .modal-content .modal-header .btn {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: transparent;
  border: none;
}
.container-modal .modal-content .modal-body {
  text-align: center;
}
.container-modal .modal-content .modal-body img {
  max-height: calc(100vh - 200px);
}
.container-modal .modal-content .modal-body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
/*---- End of Modal ----*/


/*---- WhatsApp ----*/
.floating-whatsapp {
  z-index : 9;
  position: fixed;
  right: 24px;
  bottom: 24px;
}
/*---- End of WhatsApp ----*/


@media only screen and (max-width: 780px) {
  a,
  .btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  a:focus,
  .btn:focus {
    outline: none !important;
  }

  .container {
    width: 100%;
  }


  /*---- Navbar ----*/
  .navbar .navbar-top {
    padding: 8px 15px;
  }
  .navbar .navbar-left img {
    margin-right: 6px;
    height: 40%;
  }
  .navbar .navbar-left img:nth-child(4) {
    margin-right: 0;
    height: 28%;
  }
  .navbar .navbar-left a {
    margin-right: 25px;
  }
  .navbar .navbar-left a img {
    height: 30px;
  }
  .navbar .navbar-right {
    display: none;
  }
  .navbar .navbar-toggle {
    display: block;
  }
  .navbar .navbar-bottom {
    display: none;
  }
  /*---- End of Navbar ----*/


  /*---- Home Slider ----*/
  .home-slider {
    margin-top: 60px;
  }
  .home-slider .content {
    padding-top: 120px;
  }
  .home-slider .content .container div {
    width: 100%;
  }
  .home-slider .content h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .home-slider .content p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .home-slider .content a {
    margin-left: 15px;
  }
  .home-slider .swiper-pagination {
    bottom: 85px;
  }
  /*---- ENd of Home Slider ----*/


  /*---- Home Section 1 ----*/
  .home-section-1 {
    margin-top: -20px;
    padding: 0 15px;
  }
  .home-section-1 .container-section {
    padding: 60px 15px 40px 15px;
    flex-direction: column;
    text-align: center;
  }
  .home-section-1 .container-section .section-left {
    padding: 0;
    width: 100%;
  }
  .home-section-1 .container-section .section-left img {
    display: block;
    position: initial;
    margin: 0 auto;
    width: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .home-section-1 .container-section .section-left .shape-1 {
    margin-top: -20px;
    margin-left: -40px;
    width: 90%;
    height: auto;
  }
  .home-section-1 .container-section .section-left .shape-2 {
    margin-top: -15px;
    margin-left: 60px;
    width: 70%;
    height: auto;
  }
  .home-section-1 .container-section .section-left .shape-3 {
    margin-top: 50px;
    width: 80%;
    height: auto;
  }
  .home-section-1 .container-section .section-right {
    padding-top: 25px;
    width: 100%;
  }
  .home-section-1 .container-section .section-right h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .home-section-1 .container-section .section-right p {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Home Section 1 ----*/


  /*---- Home Section 2 ----*/
  .home-section-2 {
    padding: 0 15px;
  }
  .home-section-2 .container-section {
    padding: 40px 15px;
    flex-direction: column;
  }
  .home-section-2 .container-section .section-left {
    padding: 0 0 50px 0;
    width: 100%;
  }
  .home-section-2 .container-section .section-left h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .home-section-2 .container-section .section-left p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .home-section-2 .container-section .section-right {
    margin: 0 -5px;
    width: calc(100% + 10px);
  }
  .home-section-2 .container-section .section-right .box {
    display: block;
    margin: 0 5px;
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .home-section-2 .container-section .section-right .box img {
    display: block;
    width: 100%;
    height: auto;
  }
  .home-section-2 .container-section .section-right .box h4 {
    right: 5px;
    bottom: 10px;
    left: 5px;
    width: calc(100% - 20px);
    height: 40px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
  }
  .home-section-2 .container-section .section-right .box h4:before {
    width: 2px;
  }
  /*---- End of Home Section 2 ----*/


  /*---- Home Section 3 ----*/
  .home-section-3 {
    margin-bottom: 0;
    padding: 0 15px;
  }
  .home-section-3 .container-section {
    padding: 40px 15px;
    flex-direction: column-reverse;
  }
  .home-section-3 .container-section .section-left {
    margin: 0 -5px;
    width: calc(100% + 10px);
  }
  .home-section-3 .container-section .section-left .box {
    display: block;
    margin: 0 5px;
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .home-section-3 .container-section .section-left .box:nth-child(3) {
    display: block;
  }
  .home-section-3 .container-section .section-left .box img {
    display: block;
    width: 100%;
    height: auto;
  }
  .home-section-3 .container-section .section-left .box h4 {
    right: 5px;
    bottom: 10px;
    left: 5px;
    width: calc(100% - 20px);
    height: 40px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
  }
  .home-section-3 .container-section .section-left .box h4:before {
    width: 2px;
  }
  .home-section-3 .container-section .section-right {
    padding: 0 0 50px 0;
    width: 100%;
  }
  .home-section-3 .container-section .section-right h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .home-section-3 .container-section .section-right p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Home Section 3 ----*/


  /*---- Home Section 4 ----*/
  .home-section-4 {
    margin-bottom: 0;
    padding: 0 15px;
    overflow: hidden;
  }
  .home-section-4 .container-section {
    flex-direction: column-reverse;
    text-align: center;
  }
  .home-section-4 .container-section .section-left {
    padding: 0;
    width: 100%;
  }
  .home-section-4 .container-section .section-left .left-row .left-col-6 {
    width: 100%;
  }
  .home-section-4 .container-section .section-right {
    padding-bottom: 35px;
    width: 100%;
  }
  .home-section-4 .container-section .section-right div h3 {
    margin-top: 80px;
    font-size: 36px;
    line-height: 42px;
  }
  .home-section-4 .container-section .section-right svg {
    right: 0;
    margin-top: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  /*---- End of Home Section 4 ----*/


  /*---- Home Section 5 ----*/
  .home-section-5 {
    padding: 0 15px;
  }
  .home-section-5 .container-section {
    flex-direction: column;
    text-align: center;
  }
  .home-section-5 .container-section .section-left {
    padding: 40px 0 50px 0;
    width: 100%;
  }
  .home-section-5 .container-section .section-left h3 {
    padding: 0 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .home-section-5 .container-section .section-left h5 {
    margin-bottom: 50px;
    padding: 0 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .home-section-5 .container-section .section-left .left-row {
    flex-direction: column;
  }
  .home-section-5 .container-section .section-left .left-row .left-col-5 {
    margin: 0 0 40px 0;
    width: 100%;
  }
  .home-section-5 .container-section .section-left .left-row .left-col-5:last-child {
    margin-bottom: 0;
  }
  .home-section-5 .container-section .section-left .left-row .left-col-5 div {
    margin: 0 auto;
    width: 60%;
  }
  .home-section-5 .container-section .section-left .left-row .left-col-5 p {
    padding: 0 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .home-section-5 .container-section .section-left h4 {
    padding: 0 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .home-section-5 .container-section .section-left .container-button {
    display: flex;
    margin: 0 auto;
    padding: 0 20px;
    width: 70%;
    flex-direction: column;
  }
  .home-section-5 .container-section .section-left .container-button .btn {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 22px;
  }
  .home-section-5 .container-section .section-left .container-button .btn:last-child {
    margin-bottom: 0;
  }
  .home-section-5 .container-section .section-left .container-button .btn div {
    justify-content: center;
  }
  .home-section-5 .container-section .section-right {
    width: 100%;
    height: 420px;
  }
  /*---- End of Home Section 5 ----*/


  /*---- Home Section 6 ----*/
  .home-section-6 {
    padding: 0 25px;
  }
  .home-section-6 h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .home-section-6 .swiper {
    width: 75%;
  }
  /*---- End of Home Section 6 ----*/


  /*---- Home Section 7 ----*/
  .home-section-7 {
    padding: 0 15px;
  }
  .home-section-7 .container {
    border-radius: 25px;
  }
  .home-section-7 h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .home-section-7 .swiper {
    padding: 15px 15px 30px 15px;
  }
  .home-section-7 .swiper .swiper-pagination {
    bottom: 0;
  }
  /*---- End of Home Section 7 ----*/


  /*---- Home Section 8 ----*/
  .home-section-8 {
    padding: 0 15px;
  }
  .home-section-8 h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .home-section-8 .container-row {
    padding: 25px 10px;
    flex-wrap: wrap;
    border-radius: 25px;
  }
  .home-section-8 .container-row .container-col-2 {
    width: 33.33333333%;
  }
  .home-section-8 .container-row .container-col-2 a {
    display: block;
  }
  .home-section-8 .container-row .container-col-2 a div {
    padding: 15px;
  }
  .home-section-8 .container-row .container-col-2 a img {
    display: block;
    width: 100%;
    height: auto;
  }
  /*---- End of Home Section 8 ----*/


  /*---- Product Banner ----*/
  .product-banner {
    padding-top: 180px;
  }
  .product-banner .container div {
    padding: 0;
    width: 100%;
  }
  .product-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .product-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Product Banner ----*/


  /*---- Product Section 1 ----*/
  .product-section-1 {
    padding: 70px 15px 60px 15px;
  }
  .product-section-1 .container {
    width: 100% !important;
  }
  .product-section-1 .container:last-child {
    margin: 40px -10px 0 -10px;
    width: calc(100% + 20px) !important;
    flex-wrap: wrap;
  }
  .product-section-1 h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .product-section-1 p {
    font-size: 16px;
    line-height: 22px;
  }
  .product-section-1 .box {
    display: block;
    margin: 10px;
    width: 44%;
    height: auto;
    border-radius: 15px;
  }
  .product-section-1 .box img {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-section-1 .box h4 {
    right: 5px;
    bottom: 30px;
    left: 5px;
    width: calc(100% - 30px);
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
  }
  .product-section-1 .box h4:before {
    width: 2px;
  }
  /*---- End of Product Section 1 ----*/


  /*---- Product Section 2 ----*/
  .product-section-2 {
    padding: 0 15px 30px 15px;
  }
  .product-section-2 .container-section {
    padding: 40px 15px;
    flex-direction: column-reverse;
  }
  .product-section-2 .container-section .section-left {
    margin: 0 -5px;
    width: calc(100% + 10px);
  }
  .product-section-2 .container-section .section-left .box {
    display: block;
    margin: 0 5px;
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .product-section-2 .container-section .section-left .box img {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-section-2 .container-section .section-left .box h4 {
    right: 5px;
    bottom: 10px;
    left: 5px;
    width: calc(100% - 20px);
    height: 40px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
  }
  .product-section-2 .container-section .section-left .box h4:before {
    width: 2px;
  }
  .product-section-2 .container-section .section-right {
    padding: 0 0 50px 0;
    width: calc(100% + 10px);
  }
  .product-section-2 .container-section .section-right h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .product-section-2 .container-section .section-right p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Product Section 2 ----*/


  /*---- Product Section 3 ----*/
  .product-section-3 {
    padding: 0 15px 30px 15px;
  }
  .product-section-3 .container-section {
    padding: 40px 15px;
  }
  .product-section-3 .container-section .section-top {
    width: 100%;
  }
  .product-section-3 .container-section .section-top h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .product-section-3 .container-section .section-top p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .product-section-3 .container-section .section-bottom {
    padding-bottom: 40px;
  }
  .product-section-3 .container-section .section-bottom .box {
    display: block;
    margin: 0 5px;
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .product-section-3 .container-section .section-bottom .box img {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-section-3 .container-section .section-bottom .box h4 {
    right: 5px;
    bottom: 10px;
    left: 5px;
    width: calc(100% - 20px);
    height: 40px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
  }
  .product-section-3 .container-section .section-bottom .box h4:before {
    width: 2px;
  }
  /*---- End of Product Section 3 ----*/


  /*---- Product Section 4 ----*/
  .product-section-4 {
    padding: 0 15px 70px 15px;
  }
  .product-section-4 .container-section {
    padding: 40px 15px;
  }
  .product-section-4 .container-section .section-top {
    width: 100%;
  }
  .product-section-4 .container-section .section-top h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .product-section-4 .container-section .section-top p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .product-section-4 .container-section .section-bottom {
    margin: 40px -5px 0 -5px;
    width: calc(100% + 10px) !important;
  }
  .product-section-4 .container-section .section-bottom .box {
    display: block;
    margin: 0 5px;
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .product-section-4 .container-section .section-bottom .box img {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-section-4 .container-section .section-bottom .box h4 {
    right: 5px;
    bottom: 10px;
    left: 5px;
    width: calc(100% - 20px);
    height: 40px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
  }
  .product-section-4 .container-section .section-bottom .box h4:before {
    width: 2px;
  }
  /*---- End of Product Section 4 ----*/


  /*---- Trade Insurance Slider ----*/
  .trade-insurance-slider {
    margin-top: 60px;
  }
  .trade-insurance-slider .content .container div {
    padding-top: 120px;
    width: 100%;
  }
  .trade-insurance-slider .content h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .trade-insurance-slider .content p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .trade-insurance-slider .swiper-pagination {
    bottom: 86px;
  }
  /*---- End of Trade Insurance Slider ----*/


  /*---- Trade Insurance Section 1 ----*/
  .trade-insurance-section-1 {
    padding: 70px 15px 100px 15px;
  }
  .trade-insurance-section-1 .container-section {
    flex-direction: column;
  }
  .trade-insurance-section-1 .container-section .section-left {
    width: 100%;
  }
  .trade-insurance-section-1 .container-section .section-left img {
    display: block;
    position: relative;
    top: initial;
    left: initial;
    margin: 0 auto 20px auto;
    width: 80%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .trade-insurance-section-1 .container-section .section-left .shape-1 {
    margin-top: -20px;
    width: 80%;
    height: auto;
  }
  .trade-insurance-section-1 .container-section .section-left .shape-2 {
    margin-top: 0;
    width: 70%;
    height: auto;
  }
  .trade-insurance-section-1 .container-section .section-right {
    padding: 0;
    width: 100%;
  }
  .trade-insurance-section-1 .container-section .section-right h3 {
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Trade Insurance Section 1 ----*/


  /*---- Trade Insurance Section 2 ----*/
  .trade-insurance-section-2 {
    padding: 50px 15px 100px 15px;
  }
  .trade-insurance-section-2 .container-section {
    flex-direction: column;
  }
  .trade-insurance-section-2 .container-section .section-left {
    width: 100%;
    border-radius: 25px 25px 0 0;
  }
  .trade-insurance-section-2 .container-section .section-left div {
    padding: 20px 15px 60px 15px;
    text-align: center;
  }
  .trade-insurance-section-2 .container-section .section-left h2 {
    margin: 30px 0 40px 0;
    font-size: 28px;
    line-height: 34px;
  }
  .trade-insurance-section-2 .container-section .section-left .btn {
    margin-bottom: 5px;
    padding: 10px 15px;
    width: 100%;
    height: 68px;
    color: #0069ab;
    font-size: 16px;
    text-align: center;
    line-height: 22px;
    background-color: transparent;
    border: 2px solid #0069ab !important;
    border-radius: 8px;
  }
  .trade-insurance-section-2 .container-section .section-left .btn.active {
    background-color: #fff;
    border: 2px solid #0069ab !important;
    box-shadow: none !important;
  }
  .trade-insurance-section-2 .container-section .section-left .btn.active:before {
    display: none;
  }
  .trade-insurance-section-2 .container-section .section-left .btn:last-child {
    margin-bottom: 0;
  }
  .trade-insurance-section-2 .container-section .section-right {
    width: 100%;
    border-radius: 0 0 25px 25px;
  }
  .trade-insurance-section-2 .container-section .section-right .container-content {
    padding: 50px 15px;
  }
  .trade-insurance-section-2 .container-section .section-right .container-content img {
    margin-bottom: 30px;
  }
  .trade-insurance-section-2 .container-section .section-right .container-content .container-button {
    margin-top: 50px;
    padding: 0;
    border: none;
  }
  /*---- End of Trade Insurance Section 2 ----*/


  /*---- Trade Insurance Detail Banner ----*/
  .trade-insurance-detail-banner {
    padding-top: 180px;
  }
  .trade-insurance-detail-banner .container div {
    padding: 0;
    width: 100%;
  }
  .trade-insurance-detail-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Trade Insurance Detail Banner ----*/


  /*---- Trade Insurance Detail Section 1 ----*/
  .trade-insurance-detail-section-1 {
    padding: 40px 15px 70px 15px;
  }
  .trade-insurance-detail-section-1 .container-section {
    flex-direction: column-reverse;
  }
  .trade-insurance-detail-section-1 .container-section .section-left {
    padding: 70px 0 0 0;
    width: 100%;
  }
  .trade-insurance-detail-section-1 .container-section .section-right {
    width: 100%;
  }
  .trade-insurance-detail-section-1 .container-section .section-right .big-image {
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .trade-insurance-detail-section-1 .container-section .section-right h2 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  .trade-insurance-detail-section-1 .container-section .section-right p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .trade-insurance-detail-section-1 .container-section .section-right ol {
    padding-left: 45px;
  }
  .trade-insurance-detail-section-1 .container-section .section-right ol li {
    font-size: 16px;
    line-height: 22px;
  }
  .trade-insurance-detail-section-1 .container-section .section-right ol > li:before {
    left: -45px;
  }
  /*---- End of Trade Insurance Detail Section 1 ----*/


  /*---- Credit Insurance Guarantees Banner ----*/
  .credit-insurance-guarantees-banner {
    padding-top: 180px;
  }
  .credit-insurance-guarantees-banner .container div {
    padding: 0;
    width: 100%;
  }
  .credit-insurance-guarantees-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .credit-insurance-guarantees-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Credit Insurance Guarantees Banner ----*/


  /*---- Credit Insurance Guarantees Section 1 ----*/
  .credit-insurance-guarantees-section-1 {
    padding: 50px 0 0 0;
  }
  .credit-insurance-guarantees-section-1 .container-section {
    flex-direction: column;
  }
  .credit-insurance-guarantees-section-1 .container-section .section-left {
    width: 100%;
    overflow: hidden;
  }
  .credit-insurance-guarantees-section-1 .container-section .section-left img {
    top: 0;
    left: -25px;
    width: 100%;
  }
  .credit-insurance-guarantees-section-1 .container-section .section-right {
    padding: 0;
    width: 100%;
  }
  .credit-insurance-guarantees-section-1 .container-section .section-right h3 {
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .credit-insurance-guarantees-section-1 .container-section .section-right p {
    padding: 0 20px;
    width: initial;
  }
  .credit-insurance-guarantees-section-1 .container-section .section-right .btn {
    margin-left: 20px;
  }
  /*---- End of Credit Insurance Guarantees Section 1 ----*/


  /*---- Credit Insurance Guarantees Section 2 ----*/
  .credit-insurance-guarantees-section-2 {
    padding: 50px 0 70px 0;
  }
  .credit-insurance-guarantees-section-2 .container-section {
    flex-direction: column-reverse;
  }
  .credit-insurance-guarantees-section-2 .container-section .section-left {
    padding: 0;
    width: 100%;
    text-align: left;
    align-items: start;
  }
  .credit-insurance-guarantees-section-2 .container-section .section-left h3 {
    margin-bottom: 20px;
    padding: 5px 20px 0 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .credit-insurance-guarantees-section-2 .container-section .section-left p {
    padding: 0 20px;
    width: initial;
  }
  .credit-insurance-guarantees-section-2 .container-section .section-left .btn {
    margin-left: 20px;
  }
  .credit-insurance-guarantees-section-2 .container-section .section-right {
    width: 100%;
    overflow: hidden;
  }
  .credit-insurance-guarantees-section-2 .container-section .section-right img {
    top: 0;
    left: -10px;
    width: 100%;
  }
  /*---- End of Credit Insurance Guarantees Section 2 ----*/


  /*---- Credit Insurance Guarantees Detail Banner ----*/
  .credit-insurance-guarantees-detail-banner {
    padding-top: 180px;
  }
  .credit-insurance-guarantees-detail-banner .container div {
    padding: 0;
    width: 100%;
  }
  .credit-insurance-guarantees-detail-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Credit Insurance Guarantees Detail Banner ----*/


  /*---- Credit Insurance Guarantees Detail Section 1 ----*/
  .credit-insurance-guarantees-detail-section-1 {
    padding: 40px 15px 70px 15px;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section {
    flex-direction: column-reverse;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-left {
    padding: 70px 0 0 0;
    width: 100%;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right {
    width: 100%;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right .big-image {
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right h2 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right ol {
    padding-left: 45px;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right ol li,
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right ol li h5 {
    font-size: 16px;
    line-height: 22px;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right ol > li:before {
    left: -45px;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right .container-box {
    margin-bottom: 20px;
    flex-direction: column;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right .container-box .box-left img {
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right .container-box .box-right {
    padding: 0;
    flex: initial;
  }
  .credit-insurance-guarantees-detail-section-1 .container-section .section-right .container-box .box-right h4 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 24px;
  }
  /*---- End of Credit Insurance Guarantees Detail Section 1 ----*/


  /*---- General Insurance Banner ----*/
  .general-insurance-banner {
    padding-top: 180px;
  }
  .general-insurance-banner .container div {
    padding: 0;
    width: 100%;
  }
  .general-insurance-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .general-insurance-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of General Insurance Banner ----*/


  /*---- General Insurance Section 1 ----*/
  .general-insurance-section-1 {
    padding: 50px 0 0 0;
  }
  .general-insurance-section-1.last {
    padding-bottom: 70px;
  }
  .general-insurance-section-1 .container-section {
    flex-direction: column;
  }
  .general-insurance-section-1 .container-section .section-left {
    width: 100%;
    overflow: hidden;
  }
  .general-insurance-section-1 .container-section .section-left img {
    top: 0;
    left: -25px;
    width: 100%;
  }
  .general-insurance-section-1 .container-section .section-right {
    padding: 0;
    width: 100%;
  }
  .general-insurance-section-1 .container-section .section-right h3 {
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .general-insurance-section-1 .container-section .section-right p {
    padding: 0 20px;
    width: initial;
  }
  .general-insurance-section-1 .container-section .section-right .btn {
    margin-left: 20px;
  }
  /*---- End of General Insurance Section 1 ----*/


  /*---- General Insurance Section 2 ----*/
  .general-insurance-section-2 {
    padding: 50px 0 0 0;
  }
  .general-insurance-section-2 .container-section {
    flex-direction: column-reverse;
  }
  .general-insurance-section-2 .container-section .section-left {
    padding: 0;
    width: 100%;
    text-align: left;
    align-items: start;
  }
  .general-insurance-section-2 .container-section .section-left h3 {
    margin-bottom: 20px;
    padding: 5px 20px 0 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .general-insurance-section-2 .container-section .section-left p {
    padding: 0 20px;
    width: initial;
  }
  .general-insurance-section-2 .container-section .section-left .btn {
    margin-left: 20px;
  }
  .general-insurance-section-2 .container-section .section-right {
    width: 100%;
    overflow: hidden;
  }
  .general-insurance-section-2 .container-section .section-right img {
    top: 0;
    left: -32px;
    width: 100%;
  }
  /*---- End of General Insurance Section 2 ----*/


  /*---- General Insurance Detail Banner ----*/
  .general-insurance-detail-banner {
    padding-top: 180px;
  }
  .general-insurance-detail-banner .container div {
    padding: 0;
    width: 100%;
  }
  .general-insurance-detail-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of General Insurance Detail Banner ----*/


  /*---- General Insurance Detail Section 1 ----*/
  .general-insurance-detail-section-1 {
    padding: 40px 15px 70px 15px;
  }
  .general-insurance-detail-section-1 .container-section {
    flex-direction: column-reverse;
  }
  .general-insurance-detail-section-1 .container-section .section-left {
    padding: 70px 0 0 0;
    width: 100%;
  }
  .general-insurance-detail-section-1 .container-section .section-right {
    width: 100%;
  }
  .general-insurance-detail-section-1 .container-section .section-right .big-image {
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .general-insurance-detail-section-1 .container-section .section-right h2 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  .general-insurance-detail-section-1 .container-section .section-right p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .general-insurance-detail-section-1 .container-section .section-right ol {
    padding-left: 45px;
  }
  .general-insurance-detail-section-1 .container-section .section-right ol li,
  .general-insurance-detail-section-1 .container-section .section-right ol li h5 {
    font-size: 16px;
    line-height: 22px;
  }
  .general-insurance-detail-section-1 .container-section .section-right ol > li:before {
    left: -45px;
  }
  .general-insurance-detail-section-1 .container-section .section-right .container-box {
    margin-bottom: 20px;
    flex-direction: column;
  }
  .general-insurance-detail-section-1 .container-section .section-right .container-box .box-left img {
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .general-insurance-detail-section-1 .container-section .section-right .container-box .box-right {
    padding: 0;
    flex: initial;
  }
  .general-insurance-detail-section-1 .container-section .section-right .container-box .box-right h4 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 24px;
  }
  /*---- End of General Insurance Detail Section 1 ----*/


  /*---- Sharia Insurance Slider ----*/
  .sharia-insurance-slider {
    margin-top: 60px;
  }
  .sharia-insurance-slider .content .container div {
    padding-top: 120px;
    width: 100%;
  }
  .sharia-insurance-slider .content {
    background-position: center right -350px;
  }
  .sharia-insurance-slider .content img {
    margin-left: 15px;
  }
  .sharia-insurance-slider .content p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .sharia-insurance-slider .content a {
    margin-left: 15px;
  }
  .sharia-insurance-slider .swiper-pagination {
    bottom: 86px;
  }
  /*---- End of Sharia Insurance Slider ----*/


  /*---- Sharia Insurance Section 1 ----*/
  .sharia-insurance-section-1 {
    padding: 70px 15px 100px 15px;
  }
  .sharia-insurance-section-1 .container-section {
    flex-direction: column;
    border-bottom: none;
  }
  .sharia-insurance-section-1 .container-section .section-left {
    width: 100%;
  }
  .sharia-insurance-section-1 .container-section .section-left img {
    display: block;
    position: relative;
    top: initial;
    left: initial;
    margin: 0 auto 20px auto;
    width: 70%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .sharia-insurance-section-1 .container-section .section-left .shape-1 {
    margin-top: 0;
    margin-left: -40px;
    width: 70%;
    height: auto;
  }
  .sharia-insurance-section-1 .container-section .section-left .shape-2 {
    margin-top: -40px;
    margin-left: 20px;
    width: 55%;
    height: auto;
  }
  .sharia-insurance-section-1 .container-section .section-right {
    padding: 0;
    width: 100%;
    height: auto;
    overflow-y: initial;
  }
  .sharia-insurance-section-1 .container-section .section-right h3 {
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Sharia Insurance Section 1 ----*/


  /*---- Sharia Insurance Section 2 ----*/
  .sharia-insurance-section-2 {
    padding: 50px 15px 100px 15px;
  }
  .sharia-insurance-section-2 .container-section {
    flex-direction: column;
  }
  .sharia-insurance-section-2 .container-section .section-left {
    width: 100%;
    border-radius: 25px 25px 0 0;
  }
  .sharia-insurance-section-2 .container-section .section-left div {
    padding: 20px 15px 60px 15px;
    text-align: center;
  }
  .sharia-insurance-section-2 .container-section .section-left h2 {
    margin: 30px 0 40px 0;
    font-size: 28px;
    line-height: 34px;
  }
  .sharia-insurance-section-2 .container-section .section-left .btn {
    margin-bottom: 5px;
    padding: 10px 15px;
    width: 100%;
    height: 68px;
    color: #0069ab;
    font-size: 16px;
    text-align: center;
    line-height: 22px;
    background-color: transparent;
    border: 2px solid #0069ab !important;
    border-radius: 8px;
  }
  .sharia-insurance-section-2 .container-section .section-left .btn.active {
    background-color: #fff;
    border: 2px solid #0069ab !important;
    box-shadow: none !important;
  }
  .sharia-insurance-section-2 .container-section .section-left .btn.active:before {
    display: none;
  }
  .sharia-insurance-section-2 .container-section .section-right {
    width: 100%;
    border-radius: 0 0 25px 25px;
  }
  .sharia-insurance-section-2 .container-section .section-right .container-content {
    padding: 50px 15px;
  }
  .sharia-insurance-section-2 .container-section .section-right .container-content img {
    margin-bottom: 30px;
  }
  .sharia-insurance-section-2 .container-section .section-right .container-content ol {
    padding-left: 45px;
  }
  .sharia-insurance-section-2 .container-section .section-right .container-content ol li,
  .sharia-insurance-section-2 .container-section .section-right .container-content ol > li h5 {
    font-size: 16px;
    line-height: 22px;
  }
  .sharia-insurance-section-2 .container-section .section-right .container-content ol > li:before {
    left: -45px;
  }
  /*---- End of Sharia Insurance Section 2 ----*/


  /*---- Sharia Insurance Section 3 ----*/
  .sharia-insurance-section-3 {
    padding: 0 15px 30px 15px;
  }
  .sharia-insurance-section-3 .container-section {
    padding: 40px 15px;
  }
  .sharia-insurance-section-3 .container-section .section-top {
    width: 100%;
  }
  .sharia-insurance-section-3 .container-section .section-top h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
  .sharia-insurance-section-3 .container-section .section-top p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .sharia-insurance-section-3 .container-section .section-bottom {
    padding-bottom: 40px;
  }
  .sharia-insurance-section-3 .container-section .section-bottom .box {
    display: block;
    margin: 0 5px;
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .sharia-insurance-section-3 .container-section .section-bottom .box img {
    display: block;
    width: 100%;
    height: auto;
  }
  .sharia-insurance-section-3 .container-section .section-bottom .box h4 {
    right: 5px;
    bottom: 10px;
    left: 5px;
    width: calc(100% - 20px);
    height: 40px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
  }
  .sharia-insurance-section-3 .container-section .section-bottom .box h4:before {
    width: 2px;
  }
  /*---- End of Sharia Insurance Section 3 ----*/


  /*---- Sharia Insurance Detail Banner ----*/
  .sharia-insurance-detail-banner {
    padding-top: 180px;
  }
  .sharia-insurance-detail-banner .container div {
    padding: 0;
    width: 100%;
  }
  .sharia-insurance-detail-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Sharia Insurance Detail Banner ----*/


  /*---- Sharia Insurance Detail Section 1 ----*/
  .sharia-insurance-detail-section-1 {
    padding: 25px 15px 70px 15px;
    background-color: #fff;
  }
  .sharia-insurance-detail-section-1 .container-section {
    flex-direction: column;
  }
  .sharia-insurance-detail-section-1 .container-section .section-left {
    padding: 0;
    width: 100%;
  }
  .sharia-insurance-detail-section-1 .container-section .section-left ul {
    display: flex;
    margin: 0 -5px;
    flex-wrap: wrap;
  }
  .sharia-insurance-detail-section-1 .container-section .section-left ul li {
    width: 50%;
  }
  .sharia-insurance-detail-section-1 .container-section .section-left ul li a {
    position: relative;
    margin: 5px;
    padding: 0;
    height: 70px;
    border: 1px solid #dddfdf;
    border-radius: 10px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-left ul li a.active {
    background-color: #f4f4f4;
    border-color: #f4f4f4;
  }
  .sharia-insurance-detail-section-1 .container-section .section-left ul li a img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65%;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .sharia-insurance-detail-section-1 .container-section .section-right {
    padding-top: 30px;
    width: 100%;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .big-image {
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right h2 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right h4 {

  }
  .sharia-insurance-detail-section-1 .container-section .section-right img {
    width: 100%;
    height: auto;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-desktop {
    display: none;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile {
    display: flex;
    margin-top: 50px;
    flex-wrap: wrap;
    background-color: #0069ab;
    border-radius: 25px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-6 {
    position: relative;
    width: 50%;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-6:nth-child(4) {
    display: flex;
    width: 45%;
    align-items: end;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-6:nth-child(5) {
    width: 55%;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-12 {
    width: 100%;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-6 div,
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-12 div {
    padding: 15px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-6:nth-child(1) div {
    padding: 20px 8px 0 15px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-6:nth-child(2) div {
    padding: 20px 15px 0 8px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile .container-col-6:nth-child(5) div {
    padding-bottom: 50px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row.show-mobile img {
    position: initial;
    margin: 0 auto;
    width: 90%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row h5 {
    font-weight: 700;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row h4 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
  }
  .sharia-insurance-detail-section-1 .container-section .section-right .container-row h4 span {
    display: block;
    padding: 10px 12px;
  }
  /*---- End of Sharia Insurance Detail Section 1 ----*/


  /*---- About Banner ----*/
  .about-banner {
    padding-top: 180px;
  }
  .about-banner .container div {
    padding: 0;
    width: 100%;
  }
  .about-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .about-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of About Banner ----*/


  /*---- About Section 1 ----*/
  .about-section-1 {
    padding: 40px 15px 60px 15px;
  }
  .about-section-1 .container-section {
    flex-direction: column-reverse;
  }
  .about-section-1 .container-section .section-left {
    width: 100%;
    height: 420px;
  }
  .about-section-1 .container-section .section-right {
    width: 100%;
  }
  .about-section-1 .container-section .section-right div {
    padding: 30px 15px;
  }
  .about-section-1 .container-section .section-right h3 {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 38px;
  }
  .about-section-1 .container-section .section-right p {
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of About Section 1 ----*/


  /*---- About Section 2 ----*/
  .about-section-2 {
    padding: 50px 0 60px 0;
  }
  .about-section-2 .section-top {
    margin: 0;
    padding: 0 15px 50px 15px;
    width: initial;
  }
  .about-section-2 .section-top h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .about-section-2 .section-top p {
    font-size: 16px;
    line-height: 22px;
  }
  .about-section-2 .section-bottom .container-row {
    flex-direction: column;
  }
  .about-section-2 .section-bottom .container-row .container-col-4 {
    padding: 0;
    width: 100%;
  }
  .about-section-2 .section-bottom .container-row .container-col-4 h3 {
    margin: 20px 0;
  }
  .about-section-2 .section-bottom .container-row .container-col-4 p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .about-section-2 .section-bottom .container-row .container-col-4 div {
    height: auto;
  }
  .about-section-2 .section-bottom .container-row .container-col-4 img {
    display: block;
  }
  .about-section-2 .section-bottom .container-row .container-col-4 span,
  .about-section-2 .section-bottom .container-row .container-col-4:nth-child(2) span:before {
    display: none;
  }
  .about-section-2 .section-bottom .container-row .container-col-4:nth-child(2) {
    position: relative;
    margin: 90px 0;
    background-color: #fff;
  }
  .about-section-2 .section-bottom .container-row .container-col-4:nth-child(2):before {
    content: '';
    position: absolute;
    top: -70px;
    left: 50%;
    width: 1px;
    height: 55px;
    background-color: #0069ab;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .about-section-2 .section-bottom .container-row .container-col-4:nth-child(2):after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 50%;
    width: 1px;
    height: 55px;
    background-color: #0069ab;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  /*---- End of About Section 2 ----*/


  /*---- About Section 3 ----*/
  .about-section-3 {
    margin-bottom: 60px;
    padding-bottom: 70px;
  }
  .about-section-3 .parallax {
    background-position: center;
  }
  .about-section-3 .container-section {
    padding-top: 50px;
    flex-direction: column;
  }
  .about-section-3 .section-left {
    width: 100%;
  }
  .about-section-3 .section-left h3 {
    padding: 0 15px 30px 15px;
    font-size: 32px;
    line-height: 38px;
  }
  .about-section-3 .section-right {
    width: 100%;
  }
  .about-section-3 .section-right p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of About Section 3 ----*/


  /*---- About Section 4 ----*/
  .about-section-4 {
    padding: 0 15px 60px 15px;
  }
  .about-section-4 .container-section {
    flex-direction: column;
  }
  .about-section-4 .container-section .section-left {
    width: 100%;
  }
  .about-section-4 .container-section .section-left div {
    padding: 40px 20px 50px 20px;
  }
  .about-section-4 .container-section .section-left h3 {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 38px;
  }
  .about-section-4 .container-section .section-left p {
    font-size: 16px;
    line-height: 22px;
  }
  .about-section-4 .container-section .section-right {
    width: 100%;
    height: 420px;
  }
  /*---- End of About Section 4 ----*/


  /*---- About Section 5 ----*/
  .about-section-5 {
    padding: 0 15px 60px 15px;
  }
  .about-section-5 .container-section {
    flex-direction: column;
  }
  .about-section-5 .container-section .section-left {
    flex: none;
    padding: 80px 0 130px 0;
    width: 100%;
  }
  .about-section-5 .container-section .section-left div {
    position: relative;
    top: initial;
    left: initial;
    width: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .about-section-5 .container-section .section-left h4 {
    padding: 0 20px;
    font-size: 30px;
    line-height: 36px;
  }
  .about-section-5 .container-section .section-left h4:first-child {
    font-size: 24px;
    line-height: 30px;
  }
  .about-section-5 .container-section .section-left h4 .double-quotes-1 {
    left: 0;
  }
  .about-section-5 .container-section .section-left h4 .double-quotes-2 {
    right: 0;
  }
  .about-section-5 .container-section .section-right {
    width: 100%;
  }
  .about-section-5 .container-section .section-right div {
    padding: 70px 20px;
  }
  .about-section-5 .container-section .section-right div h4 {
    text-align: center;
  }
  .about-section-5 .container-section .section-right div ul li {
    font-size: 18px;
    line-height: 24px;
  }
  /*---- End of About Section 5 ----*/


  /*---- Director Welcome Banner ----*/
  .director-welcome-banner {
    padding-top: 180px;
  }
  .director-welcome-banner .container div {
    padding: 0;
    width: 100%;
  }
  .director-welcome-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Director Welcome Banner ----*/


  /*---- Director Welcome Menu ----*/
  .director-welcome-menu {
    padding: 15px 0;
  }
  .director-welcome-menu ul li {
    display: block;
  }
  .director-welcome-menu ul li a {
    padding: 15px;
  }
  /*---- End of Director Welcome Menu ----*/


  /*---- Director Welcome Section 1 ----*/
  .director-welcome-section-1 {
    padding: 50px 15px 60px 15px;
  }
  .director-welcome-section-1 h2 {
    margin: 0 0 40px 0;
    font-size: 32px;
    line-height: 38px;
  }
  .director-welcome-section-1 .container-section {
    flex-direction: column-reverse;
  }
  .director-welcome-section-1 .container-section .section-left {
    padding-top: 30px;
    width: 100%;
  }
  .director-welcome-section-1 .container-section .section-left img {
    display: block;
    position: initial;
    left: initial;
    margin: 0 auto;
    width: 80%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .director-welcome-section-1 .container-section .section-right {
    padding: 40px 0;
    width: 100%;
    text-align: center;
  }
  .director-welcome-section-1 .container-section .section-right p {
    padding: 0 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .director-welcome-section-1 .container-section .section-right h5 {

  }
  /*---- End of Director Welcome Section 1 ----*/


  /*---- Board of Commissioners Banner ----*/
  .board-of-commissioners-banner {
    padding-top: 180px;
  }
  .board-of-commissioners-banner .container div {
    padding: 0;
    width: 100%;
  }
  .board-of-commissioners-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Board of Commissioners Banner ----*/


  /*---- Board of Commissioners Menu ----*/
  .board-of-commissioners-menu {
    padding: 15px 0;
  }
  .board-of-commissioners-menu ul li {
    display: block;
  }
  .board-of-commissioners-menu ul li a {
    padding: 15px;
  }
  /*---- End of Board of Commissioners Menu ----*/


  /*---- Board of Commissioners Section 1 ----*/
  .board-of-commissioners-section-1 {
    padding: 50px 15px 0 15px;
  }
  .board-of-commissioners-section-1 h2 {
    margin: 0 0 40px 0;
    font-size: 32px;
    line-height: 38px;
  }
  .board-of-commissioners-section-1 .container-section {
    flex-direction: column;
  }
  .board-of-commissioners-section-1 .container-section .section-left {
    width: 100%;
  }
  .board-of-commissioners-section-1 .container-section .section-left img {
    height: 300px;
  }
  .board-of-commissioners-section-1 .container-section .section-right {
    padding: 30px 0;
    width: 100%;
  }
  .board-of-commissioners-section-1 .container-section .section-right h4 {
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
    line-height: 30px;
  }
  .board-of-commissioners-section-1 .container-section .section-right p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Board of Commissioners Section 1 ----*/


  /*---- Board of Commissioners Section 2 ----*/
  .board-of-commissioners-section-2 {
    padding: 50px 15px 0 15px;
  }
  .board-of-commissioners-section-2 .container-section {
    flex-direction: column-reverse;
  }
  .board-of-commissioners-section-2 .container-section .section-left {
    padding: 30px 0;
    width: 100%;
  }
  .board-of-commissioners-section-2 .container-section .section-left h4 {
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
    line-height: 30px;
  }
  .board-of-commissioners-section-2 .container-section .section-left p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .board-of-commissioners-section-2 .container-section .section-right {
    width: 100%;
  }
  .board-of-commissioners-section-2 .container-section .section-right img {
    height: 300px;
  }
  /*---- End of Board of Commissioners Section 2 ----*/


  /*---- Board of Directors Banner ----*/
  .board-of-directors-banner {
    padding-top: 180px;
  }
  .board-of-directors-banner .container div {
    padding: 0;
    width: 100%;
  }
  .board-of-directors-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Board of Directors Banner ----*/


  /*---- Board of Directors Menu ----*/
  .board-of-directors-menu {
    padding: 15px 0;
  }
  .board-of-directors-menu ul li {
    display: block;
  }
  .board-of-directors-menu ul li a {
    padding: 15px;
  }
  /*---- End of Board of Directors Menu ----*/


  /*---- Board of Directors Section 1 ----*/
  .board-of-directors-section-1 {
    padding: 50px 15px 0 15px;
  }
  .board-of-directors-section-1 h2 {
    margin: 0 0 40px 0;
    font-size: 32px;
    line-height: 38px;
  }
  .board-of-directors-section-1 .container-section {
    flex-direction: column;
  }
  .board-of-directors-section-1 .container-section .section-left {
    width: 100%;
  }
  .board-of-directors-section-1 .container-section .section-left img {
    height: 300px;
  }
  .board-of-directors-section-1 .container-section .section-right {
    padding: 30px 0;
    width: 100%;
  }
  .board-of-directors-section-1 .container-section .section-right h4 {
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
    line-height: 30px;
  }
  .board-of-directors-section-1 .container-section .section-right p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Board of Directors Section 1 ----*/


  /*---- Board of Directors Section 2 ----*/
  .board-of-directors-section-2 {
    padding: 50px 15px 0 15px;
  }
  .board-of-directors-section-2 .container-section {
    flex-direction: column-reverse;
  }
  .board-of-directors-section-2 .container-section .section-left {
    padding: 30px 0;
    width: 100%;
  }
  .board-of-directors-section-2 .container-section .section-left h4 {
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
    line-height: 30px;
  }
  .board-of-directors-section-2 .container-section .section-left p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .board-of-directors-section-2 .container-section .section-right {
    width: 100%;
  }
  .board-of-directors-section-2 .container-section .section-right img {
    height: 300px;
  }
  /*---- End of Board of Directors Section 2 ----*/


  /*---- Head of Division Banner ----*/
  .head-of-division-banner {
    padding-top: 180px;
  }
  .head-of-division-banner .container div {
    padding: 0;
    width: 100%;
  }
  .head-of-division-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Head of Division Banner ----*/


  /*---- Head of Division Menu ----*/
  .head-of-division-menu {
    padding: 15px 0;
  }
  .head-of-division-menu ul li {
    display: block;
  }
  .head-of-division-menu ul li a {
    padding: 15px;
  }
  /*---- End of Head of Division Menu ----*/


  /*---- Head of Division Section 1 ----*/
  .head-of-division-section-1 {
    padding: 50px 15px 0 15px;
  }
  .head-of-division-section-1 h2 {
    margin: 0 0 40px 0;
    font-size: 32px;
    line-height: 38px;
  }
  .head-of-division-section-1 .container-section.even {
    flex-direction: column;
  }
  .head-of-division-section-1 .container-section.odd {
    flex-direction: column-reverse;
  }
  .head-of-division-section-1 .container-section.even .section-left,
  .head-of-division-section-1 .container-section.odd .section-right {
    width: 100%;
  }
  .head-of-division-section-1 .container-section.even .section-left img,
  .head-of-division-section-1 .container-section.odd .section-right img {
    height: 300px;
  }
  .head-of-division-section-1 .container-section.even .section-right,
  .head-of-division-section-1 .container-section.odd .section-left {
    padding: 30px 0;
    width: 100%;
  }
  .head-of-division-section-1 .container-section.even .section-right h4,
  .head-of-division-section-1 .container-section.odd .section-left h4 {
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
    line-height: 30px;
  }
  .head-of-division-section-1 .container-section.even .section-right p,
  .head-of-division-section-1 .container-section.odd .section-left p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Head of Division Section 1 ----*/


  /*---- Organizational Structure Banner ----*/
  .organizational-structure-banner {
    padding-top: 180px;
  }
  .organizational-structure-banner .container div {
    padding: 0;
    width: 100%;
  }
  .organizational-structure-banner h1 {
    padding: 0 15px;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Organizational Structure Banner ----*/


  /*---- Organizational Structure Menu ----*/
  .organizational-structure-menu {
    padding: 15px 0;
  }
  .organizational-structure-menu ul li {
    display: block;
  }
  .organizational-structure-menu ul li a {
    padding: 15px;
  }
  /*---- End of Organizational Structure Menu ----*/


  /*---- Organizational Structure Section 1 ----*/
  .organizational-structure-section-1 {
    padding: 50px 15px 70px 15px;
  }
  .organizational-structure-section-1 h2 {
    margin: 0 0 40px 0;
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Organizational Structure Section 1 ----*/


  /*---- Company Culture Banner ----*/
  .company-culture-banner {
    padding-top: 180px;
  }
  .company-culture-banner .container div {
    padding: 0;
    width: 100%;
  }
  .company-culture-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .company-culture-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Company Culture Banner ----*/


  /*---- Company Culture Section 1 ----*/
  .company-culture-section-1 {
    padding: 50px 15px 60px 15px;
  }
  .company-culture-section-1 .container-section {
    flex-direction: column-reverse;
  }
  .company-culture-section-1 .container-section .section-left {
    width: 100%;
  }
  .company-culture-section-1 .container-section .section-right {
    padding: 0 0 50px 0;
    width: 100%;
  }
  .company-culture-section-1 .container-section .section-right h3 {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 30px;
  }
  .company-culture-section-1 .container-section .section-right p {
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Company Culture Section 1 ----*/


  /*---- Company Culture Section 2 ----*/
  .company-culture-section-2 {
    padding: 50px 15px 80px 15px;
  }
  .company-culture-section-2 h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .company-culture-section-2 p {
    width: 95%;
    font-size: 16px;
    line-height: 22px;
  }
  .company-culture-section-2 img {
    width: 100%;
    height: auto;
  }
  /*---- End of Company Culture Section 2 ----*/


  /*---- Company Culture Section 3 ----*/
  .company-culture-section-3 {
    padding: 60px 15px;
  }
  .company-culture-section-3 h3 {
    font-size: 32px;
    line-height: 38px;
  }
  /*---- End of Company Culture Section 3 ----*/


  /*---- Company Culture Section 4 ----*/
  .company-culture-section-4 {
    padding: 40px 15px 70px 15px;
  }
  .company-culture-section-4 .container:first-child p {
    margin: 0;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
  }
  .company-culture-section-4 .container-section {
    flex-direction: column;
  }
  .company-culture-section-4 .container-section .section-left {
    width: 100%;
  }
  .company-culture-section-4 .container-section .section-left img {
    position: initial;
    width: 100%;
  }
  .company-culture-section-4 .container-section .section-right {
    padding: 0;
    width: 100%;
  }
  /*---- End of Company Culture Section 4 ----*/


  /*---- Award Banner ----*/
  .award-banner {
    padding-top: 180px;
  }
  .award-banner .container div {
    padding: 0;
    width: 100%;
  }
  .award-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .award-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Award Banner ----*/


  /*---- Award Section 1 ----*/
  .award-section-1 {
    padding: 60px 15px 0 15px;
  }
  .award-section-1 .container-content {
    padding: 30px 20px;
  }
  .award-section-1 .container-content ul {
    padding-left: 40px;
  }
  .award-section-1 .container-content ul li {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .award-section-1 .container-content ul li:before {
    left: -40px;
  }
  .award-section-1 .container-content ul li h5 {
    padding: 0;
  }
  .award-section-1 .container-content ul li span {
    margin-top: 10px;
    width: 100%;
    text-align: left;
  }
  /*---- End of Award Section 1 ----*/


  /*---- Award Section 2 ----*/
  .award-section-2 {
    padding: 50px 15px 70px 15px;
  }
  .award-section-2 .box {
    margin: 0 0 10px 0 !important;
    padding: 10px;
    width: 43%;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  /*---- End of Award Section 2 ----*/


  /*---- Management Banner ----*/
  .management-banner {
    padding-top: 180px;
  }
  .management-banner .container div {
    padding: 0;
    width: 100%;
  }
  .management-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .management-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Management Banner ----*/


  /*---- Management Section 1 ----*/
  .management-section-1 {
    padding: 50px 15px 60px 15px;
  }
  .management-section-1 .container-section {
    flex-direction: column;
  }
  .management-section-1 .container-section .section-left {
    width: 100%;
  }
  .management-section-1 .container-section .section-left h3 {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 30px;
  }
  .management-section-1 .container-section .section-left p {
    font-size: 16px;
    line-height: 22px;
  }
  .management-section-1 .container-section .section-left ul {
    padding-left: 40px;
  }
  .management-section-1 .container-section .section-left ul li {
    font-size: 16px;
    line-height: 22px;
  }
  .management-section-1 .container-section .section-left ul li:before {
    left: -40px;
  }
  .management-section-1 .container-section .section-right {
    padding-top: 40px;
    width: 100%;
  }
  .management-section-1 .container-section .section-right img {
    position: initial;
    width: 100%;
    height: auto;
  }
  /*---- End of Management Section 1 ----*/


  /*---- Management Section 3 ----*/
  .management-section-3 {
    padding: 50px 15px 80px 15px;
  }
  .management-section-3 .container-section {
    flex-direction: column;
  }
  .management-section-3 .container-section .section-left {
    width: 100%;
  }
  .management-section-3 .container-section .section-left ol {
    padding-left: 20px;
  }
  .management-section-3 .container-section .section-left h3 {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 30px;
  }
  .management-section-3 .container-section .section-left h5,
  .management-section-3 .container-section .section-left p {
    font-size: 16px;
    line-height: 22px;
  }
  .management-section-3 .container-section .section-right {
    padding-top: 40px;
    width: 100%;
  }
  .management-section-3 .container-section .section-right img {
    position: initial;
    width: 100%;
    height: auto;
  }
  /*---- End of Management Section 3 ----*/


  /*---- Risk Management Banner ----*/
  .risk-management-banner {
    padding-top: 180px;
  }
  .risk-management-banner .container div {
    padding: 0;
    width: 100%;
  }
  .risk-management-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .risk-management-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Risk Management Banner ----*/


  /*---- Risk Management Section 1 ----*/
  .risk-management-section-1 {
    padding: 60px 15px 70px 15px;
  }
  .risk-management-section-1 .container-section {
    flex-direction: column;
  }
  .risk-management-section-1 .container-section .section-left {
    width: 100%;
  }
  .risk-management-section-1 .container-section .section-right h3 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  .risk-management-section-1 .container-section .section-right p {
    font-size: 16px;
    line-height: 22px;
  }
  .risk-management-section-1 .container-section .section-right {
    padding: 20px 0 0 0;
    width: 100%;
  }
  /*---- End of Risk Management Section 1 ----*/


  /*---- SMAP Banner ----*/
  .smap-banner {
    padding-top: 180px;
  }
  .smap-banner .container div {
    padding: 0;
    width: 100%;
  }
  .smap-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .smap-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of SMAP Banner ----*/


  /*---- Risk Management Section 1 ----*/
  .smap-section-1 {
    padding: 60px 15px 60px 15px;
  }
  .smap-section-1 .container-section {
    flex-direction: column;
  }
  .smap-section-1 .container-section .section-left {
    width: 100%;
  }
  .smap-section-1 .container-section .section-left h3 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  .smap-section-1 .container-section .section-left ul {
    padding-left: 40px;
  }
  .smap-section-1 .container-section .section-left ul li {
    font-size: 16px;
    line-height: 22px;
  }
  .smap-section-1 .container-section .section-left ul li:before {
    left: -40px;
  }
  .smap-section-1 .container-section .section-right {
    padding-top: 30px;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .smap-section-1 .container-section .section-right .box {
    margin: 20px;
    width: 100%;
  }
  .smap-section-1 .container-section .section-right .box img {
    width: 75%;
  }
  /*---- End of Risk Management Section 1 ----*/


  /*---- Corporate Social Responsibility Banner ----*/
  .corporate-social-responsibility-banner {
    padding-top: 180px;
  }
  .corporate-social-responsibility-banner .container div {
    padding: 0;
    width: 100%;
  }
  .corporate-social-responsibility-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .corporate-social-responsibility-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Corporate Social Responsibility Banner ----*/


  /*---- Corporate Social Responsibility Section 1 ----*/
  .corporate-social-responsibility-section-1 {
    padding: 80px 15px 70px 15px;
  }
  .corporate-social-responsibility-section-1 .container {
    width: 100% !important;
  }
  .corporate-social-responsibility-section-1 h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .corporate-social-responsibility-section-1 p {
    font-size: 16px;
    line-height: 22px;
  }
  .corporate-social-responsibility-section-1 .box {
    margin: 0 0 25px 0 !important;
    width: 100%;
    background-color: transparent;
  }
  /*---- End of Corporate Social Responsibility Section 1 ----*/


  /*---- Financial Report Banner ----*/
  .financial-report-banner {
    padding-top: 180px;
  }
  .financial-report-banner .container div {
    padding: 0;
    width: 100%;
  }
  .financial-report-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  .financial-report-banner p {
    padding: 0 15px;
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Financial Report Banner ----*/


  /*---- Financial Report Section 1 ----*/
  .financial-report-section-1 {
    padding: 50px 15px 60px 15px;
  }
  .financial-report-section-1 .container-section {
    flex-direction: column-reverse;
  }
  .financial-report-section-1 .container-section .section-left {
    width: 100%;
  }
  .financial-report-section-1 .container-section .section-right {
    width: 100%;
  }
  .financial-report-section-1 .container-section .section-right h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .financial-report-section-1 .container-section .section-right .container-content ol li {
    margin: 15px;
    padding: 15px;
    flex-direction: column;
  }
  .financial-report-section-1 .container-section .section-right .container-content ol li p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .financial-report-section-1 .container-section .section-right .container-content ol li a {
    font-size: 16px;
    line-height: 22px;
  }
  .financial-report-section-1 .container-section .section-right .container-content .pagination li:nth-child(5),
  .financial-report-section-1 .container-section .section-right .container-content .pagination li:nth-child(6) {
    display: none;
  }
  .financial-report-section-1 .container-section .section-right .realization-report-content {
    padding: 50px 20px;
  }
  .financial-report-section-1 .container-section .section-right .realization-report-content .box {
    margin: 0 0 35px 0;
    width: 100%;
  }
  .financial-report-section-1 .container-section .section-right .realization-report-content .box:last-childs {
    margin: 0;
  }
  .financial-report-section-1 .container-section .section-right .realization-report-content .box img {
    display: block;
    margin: 0 auto 10px auto;
  }
  /*---- End of Financial Report Section 1 ----*/


  /*---- Financial Report Section 2 ----*/
  .financial-report-section-2 {
    padding: 50px 15px 60px 15px;
  }
  .financial-report-section-2 .container-section {
    flex-direction: column-reverse;
  }
  .financial-report-section-2 .container-section .section-left {
    width: 100%;
  }
  .financial-report-section-2 .container-section .section-right {
    width: 100%;
  }
  .financial-report-section-2 .container-section .section-right .box {
    margin: 10px;
    width: 40%;
  }
  .financial-report-section-2 .container-section .section-right .pagination li:nth-child(5),
  .financial-report-section-2 .container-section .section-right .pagination li:nth-child(6) {
    display: none;
  }
  /*---- End of Financial Report Section 2 ----*/


  /*---- Network Banner ----*/
  .network-banner {
    padding-top: 180px;
  }
  .network-banner .container div {
    padding: 0;
    width: 100%;
  }
  .network-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  /*---- End of Network Banner ----*/


  /*---- Network Section 1 ----*/
  .network-section-1 {
    padding: 70px 15px;
  }
  .network-section-1 .container-section {
    flex-direction: column;
  }
  .network-section-1 .container-section .section-left {
    width: 100%;
  }
  .network-section-1 .container-section .section-left img {
    width: 100%;
    height: auto;
  }
  .network-section-1 .container-section .section-right {
    padding: 20px 0 0 0;
    width: 100%;
  }
  .network-section-1 .container-section .section-right p {
    font-size: 16px;
    line-height: 22px;
  }
  /*---- End of Network Section 1 ----*/


  /*---- Network Section 2 ----*/
  .network-section-2 {
    padding: 50px 15px 70px 15px;
  }
  .network-section-2 h3 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
    line-height: 30px;
  }
  .network-section-2 .box {
    margin: 0 0 20px 0 !important;
    padding: 0;
    width: 100%;
    height: auto;
  }
  .network-section-2 .box div {
    padding: 20px;
  }
  .network-section-2 .box p {
    font-size: 16px;
    line-height: 22px;
  }
  .network-section-2 .box .btn {
    margin-top: 30px;
  }
  /*---- End of Network Section 2 ----*/


  /*---- Contact Us Banner ----*/
  .contact-us-banner {
    padding-top: 180px;
  }
  .contact-us-banner .container div {
    padding: 0;
    width: 100%;
  }
  .contact-us-banner h1 {
    padding: 0 15px;
    font-size: 40px;
    line-height: 46px;
  }
  /*---- End of Contact Us Banner ----*/


  /*---- Contact Us Section 1 ----*/
  .contact-us-section-1 {
    padding: 50px 15px 60px 15px;
  }
  .contact-us-section-1 .container-section {
    flex-direction: column-reverse;
  }
  .contact-us-section-1 .container-section .section-left {
    margin: 0;
    padding-top: 40px;
    width: 100%;
  }
  .contact-us-section-1 .container-section .section-right {
    width: 100%;
  }
  .contact-us-section-1 .container-section .section-right .container-box h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .contact-us-section-1 .container-section .section-right .container-box p {
    font-size: 16px;
    line-height: 22px;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-contact-form {
    padding: 50px 20px;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-contact-form p {
    font-size: 16px;
    line-height: 22px;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-contact-form form,
  .contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing form {
    margin: 0;
    width: 100%;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse {
    margin: 0 20px;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-faq .faq-collapse .faq-question {
    font-size: 16px;
    line-height: 22px;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing {
    padding: 40px 20px;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing .container-button .btn {
    display: block;
    margin: 0 0 10px 0;
    padding: 10px 15px;
    width: 100%;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing .container-button .btn:last-child {
    margin-bottom: 0;
  }
  .contact-us-section-1 .container-section .section-right .container-box .container-whistleblowing:last-child p {
    width: 100%;
  }
  /*---- End of Contact Us Section 1 ----*/


  /*---- Footer ----*/
  .footer .footer-top {
    padding: 0 15px;
  }
  .footer .footer-top .top-row .top-col-8 {
    width: 100%;
  }
  .footer .footer-top .top-row .top-col-8:last-child {
    display: none;
  }
  .footer .footer-top .top-row .top-col-3,
  .footer .footer-top .top-row .top-col-2 {
    display: none;
  }
  .footer .footer-top .top-row .top-col-4:nth-child(1) {
    display: block;
    width: 100%;
  }
  .footer .footer-bottom {
    padding: 10px 15px 0 15px;
    text-align: center;
  }
  .footer .footer-bottom .container-row .container-col-6 {
    width: 100%;
  }
  .footer .footer-bottom .container-row .container-col-6:last-child {
    display: none;
  }
  /*---- End of Footer ----*/


  /*---- Modal ----*/
  .container-modal .modal-content {
    padding: 30px 15px;
    width: calc(100% - 60px);
  }
  .container-modal .modal-content .modal-body img {
    width: 100%;
  }
  /*---- End of Modal ----*/


  /*---- WhatsApp ----*/
  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }
  .floating-whatsapp a {
    display: block;
  }
  .floating-whatsapp a img {
    width: 60px;
    height: 60px;
  }
  /*---- End of WhatsApp ----*/

}
