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

*, a {
  -webkit-tap-highlight-color: transparent !important;
}

body, html {
  font-family: "cormorant-garamond";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
}

@media screen and (max-width: 980px) {
  body, html {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
}

h1 {
  font-size: 6rem;
  line-height: 6.5rem;
  font-family: "cormorant-garamond";
  font-style: normal;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
}

p {
  text-align: left;
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.5rem;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a, div {
  -webkit-tap-highlight-color: transparent;
}

a[href^="tel"] {
  color: inherit;
}

/*** GLOBAL CLASSES ***/
.subtitle {
  font-family: "cormorant-garamond";
  font-style: italic;
  font-weight: 400;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.25rem;
}

.global-btn {
  font-size: 1.05rem;
  line-height: 1.4rem;
  color: #fff;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  font-weight: 400;
  max-width: max-content;
}

.global-btn .circle {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
  border: solid 1px #AFC6E1;
  transition: all .4s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}

.global-btn .circle img {
  display: block;
  width: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.global-btn .circle::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(0);
  background: rgba(175, 198, 225, 0.2);
  transition-duration: 0.4s;
}

.global-btn:hover .circle {
  border-color: rgba(175, 198, 225, 0.2);
}

.global-btn:hover .circle:before {
  transform: scale(1);
}

/*** SECTION + CONTAINS ***/
section.padSml {
  padding: 4.5rem 0;
}

section.padMed {
  padding: 6rem 0;
}

section.padLrg {
  padding: 8rem 0;
}

.contain, .container {
  width: calc(100% - 5rem);
  max-width: 1300px;
  margin: 0 auto;
}

.flex_wrapper {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
}

.flex_wrapper.--space_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_wrapper.--item_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/***** FORM *****/
form input, form textarea {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

form input:focus, form textarea:focus, form button:focus, form select:focus {
  outline: none;
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form textarea:-webkit-autofill,
form textarea:-webkit-autofill:hover,
form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

.contact-form {
  padding: 8rem 0;
  background: #1A2B57;
}

.contact-form .contain, .contact-form .container {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.contact-form .left {
  width: 40%;
}

.contact-form .left h2 {
  font-weight: 300;
  font-size: 4.2rem;
  line-height: 4.8rem;
}

.contact-form .right {
  width: 60%;
  padding-left: 3rem;
}

.contact-form .right form input.hidhp {
  display: none;
}

.contact-form .right form input {
  display: block;
  width: 100%;
  max-width: 640px;
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: solid 1px #fff;
  padding-bottom: 15px;
  -webkit-appearance: none;
  margin-bottom: 1rem;
}

.contact-form .right form ::placeholder {
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #fff;
}

.contact-form .right form textarea {
  display: block;
  height: 150px;
  width: 100%;
  max-width: 640px;
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: solid 1px #fff;
  -webkit-appearance: none;
  resize: none;
  margin-bottom: 2rem;
}

.contact-form .right form button {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
}

.contact-form .right .response {
  position: relative;
  top: 2rem;
}

/***** VISUALLY HIDDEN *****/
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  border: 0 !important;
  clip-path: inset(50%) !important;
  /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  width: 1px !important;
  white-space: nowrap !important;
  /* 3 */
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(caption):not(:focus):not(:focus-within) {
  position: absolute !important;
}

.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}

/***** INNER HERO *****/
.inner .s1 {
  width: 100%;
  height: 100vh;
  min-height: 980px;
  max-height: 1080px;
  position: relative;
  overflow: hidden;
}

.inner .s1 .contain, .inner .s1 .container {
  max-width: 1660px;
  height: 100%;
  position: relative;
}

.inner .s1 .text-wrap {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 500px;
  z-index: 1;
}

.inner .s1 .text-wrap h1 {
  margin-bottom: 2rem;
}

.inner .s1 .text-wrap .subtitle {
  margin-bottom: 1rem;
}

.inner .s1 .text-wrap p {
  text-align: center;
}

.inner .s1 img {
  display: block;
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.inner .s1 .link-wrap {
  position: absolute;
  width: 100%;
  bottom: 3rem;
  border-top: 1px solid rgba(175, 198, 225, 0.25);
}

.inner .s1 .link-wrap ul {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 3rem;
  text-align: center;
}

.inner .s1 .link-wrap ul li a {
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  display: inline-block;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.225rem;
  color: #fff;
  opacity: 0.5;
  padding-top: 1.5rem;
  border-top: solid 1px transparent;
  transition: all .3s ease;
}

.inner .s1 .link-wrap ul li a:hover {
  opacity: 1;
  border-color: #fff;
}

/***** HEADER *****/
header {
  width: 100%;
  position: fixed;
  z-index: 99;
  padding: 1rem 0;
  transition: background-color .5s ease;
}

header .container {
  height: 70px;
  max-width: none;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

header .logo {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 70px;
  margin: 0 auto;
  background: url(/i/svg/DGFG_logo_white.svg) no-repeat center/contain;
  transition: width .3s ease;
}

header .left #menu_btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 50px;
  height: 24px;
  position: relative;
}

header .left #menu_btn i {
  transition-delay: .6s;
  transition: all 0.2s ease-out;
  height: 1px;
  width: 50px;
  background-color: #fff;
  position: absolute;
  left: 0;
}

header .left #menu_btn i:nth-child(1) {
  top: 0;
}

header .left #menu_btn i:nth-child(2) {
  top: 12px;
}

header .left #menu_btn i:nth-child(3) {
  top: 24px;
}

header .right a {
  color: #FFFFFF;
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  display: inline-block;
  margin-left: 1.5rem;
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2.6px;
  transition: opacity .5s ease;
}

header .right a:hover {
  opacity: 0.7;
}

/***** NAVIGATION *****/
nav {
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -100vw;
  background: #fff;
  transition: all .8s ease;
  max-width: 500px;
  z-index: 101;
  overflow-y: scroll;
}

nav .wrap {
  padding: 1.5rem 2.5rem;
}

nav .close {
  display: block;
  margin-bottom: 5rem;
}

nav .nav-links {
  list-style-type: none;
}

nav .nav-links li a {
  display: block;
  font-size: 3.5rem;
  line-height: 3.9rem;
  letter-spacing: -0.7px;
  color: #1A2B57;
  margin-bottom: 1rem;
  transition: opacity .5s ease;
}

nav .nav-links li a:hover {
  opacity: 0.7;
}

nav .nav-links .selNav a {
  opacity: 0.7;
}

nav .nav-links .first a {
  margin-top: 5rem;
}

nav .nav-links .bottom a {
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.225rem;
  color: #1A2B57;
  margin-bottom: 1.5rem;
}

nav .nav-links .bottom a:nth-last-child {
  margin-bottom: 0;
}

header.scroll {
  background-color: #fff;
}

header.scroll .logo {
  background-image: url(/i/svg/DGFG_logo_color.svg);
}

header.scroll .left #menu_btn i {
  background-color: #2B2F36;
}

header.scroll .right a {
  color: #2B2F36;
}

nav.active {
  opacity: 1;
  visibility: visible;
  left: 0;
}

body .cookie-disclaimer {
  background-color: #fff;
  border-radius: 10px;
  width: 90% !important;
  max-width: 1320px !important;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px !important;
  z-index: 1000;
}

body .cookie-disclaimer * {
  color: #1A2B57;
  text-transform: none !important;
}

body .cookie-disclaimer .c-disclaimer.c-on {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

body .cookie-disclaimer .c-disclaimer.c-on p {
  margin: 0 1rem 0 0;
}

body .cookie-disclaimer .c-disclaimer.c-on > a, body .cookie-disclaimer .c-disclaimer.c-on button {
  min-width: 175px;
  margin: 0 !important;
}

body .cookie-disclaimer .c-content a:nth-child(5), body .cookie-disclaimer .c-content button:nth-child(5) {
  color: #fff;
  background-color: #d13e3e !important;
}

body .cookie-disclaimer .c-content a:nth-child(6), body .cookie-disclaimer .c-content button:nth-child(6) {
  color: #fff;
  background-color: #93aac5 !important;
}

body .cookie-disclaimer p, body .cookie-disclaimer div {
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  font-size: .8rem;
  line-height: 1.33em;
}

body .cookie-disclaimer a, body .cookie-disclaimer button {
  text-decoration: none;
}

body .cookie-disclaimer ul {
  list-style-type: none;
}

body .cookie-disclaimer .c-content h2 {
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: normal;
}

body .cookie-disclaimer h2 {
  font-family: "cormorant-garamond" !important;
}

body .cookie-disclaimer h3 {
  font-family: "cormorant-garamond";
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2em;
}

body .cookie-disclaimer h3.c-on {
  color: #4F81BD !important;
}

body .cookie-disclaimer .btn-agree, body .cookie-disclaimer li > a, body .cookie-disclaimer li > button {
  background-color: #4F81BD;
  color: #fff;
}

body .cookie-disclaimer li > button {
  width: 100%;
  text-align: left;
  text-decoration: none !important;
}

body .cookie-disclaimer .btn-preferences, body .cookie-disclaimer .c-nav .btn-close-pref a, body .cookie-disclaimer .c-nav .btn-close-pref button {
  background-color: #1A2B57;
  color: #fff;
}

body .cookie-disclaimer .c-nav .btn-close-pref button {
  text-align: left;
}

body .cookie-disclaimer .btn-agree, body .cookie-disclaimer .btn-preferences {
  border-radius: 3.5rem;
  padding: .5rem 1rem;
  text-align: center;
}

body .cookie-disclaimer .btn-close {
  background-image: url(/i/svg/x-close.svg);
}

/***** FOOTER *****/
footer {
  background-color: #010101;
}

footer .container {
  text-align: center;
}

footer .top-sec {
  padding: 5rem 0 3rem 0;
}

footer .top-sec .logo {
  display: block;
  width: 300px;
  height: 70px;
  margin: 0 auto 3rem auto;
  background: url(/i/svg/DGFG_logo_white.svg) no-repeat center/contain;
}

footer .top-sec .nav-links {
  list-style-type: none;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

footer .top-sec .nav-links li a {
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.1rem;
  letter-spacing: 0.225rem;
  color: #fff;
  transition: opacity .5s ease;
}

footer .top-sec .nav-links li a:hover {
  opacity: 0.7;
}

footer .top-sec .social-link-list {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

footer .top-sec .social-link-list li a {
  transition: opacity .3s ease;
}

footer .top-sec .social-link-list li a:hover {
  opacity: 0.7;
}

footer .bottom-sec {
  border-top: solid 1px #636467;
  padding: 1.5rem 0;
}

footer .bottom-sec .container {
  text-align: center;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  color: #E6EBF1;
}

footer .bottom-sec span {
  display: inline-block;
  margin: 0 10px;
}

footer .bottom-sec p, footer .bottom-sec a, footer .bottom-sec button {
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  color: #E6EBF1;
  transition: opacity .3s ease;
}

footer .bottom-sec a:hover, footer .bottom-sec button:hover {
  opacity: 0.7;
}

footer .private-conf {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  width: calc(100% - 2rem);
  margin-top: 1rem;
}

footer .private-conf p, footer .private-conf a {
  text-align: center;
  font-weight: 100;
  font-size: 12px;
}

footer .private-conf p span {
  font-weight: 300;
  margin: 0;
}

/**** FINANCE ***/
.finance .slides {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.finance .slides .left {
  width: 50%;
  padding: 5rem 0;
  background: #F2F5F9;
}

.finance .slides .left .service {
  width: calc(100% - 5rem);
  height: 100vh;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.finance .slides .left .service h3 {
  font-weight: 300;
  font-size: 3rem;
  line-height: 3.2rem;
  margin-bottom: 3rem;
}

.finance .slides .left .service h3, .finance .slides .left .service p {
  color: #1A2B57;
}

.finance .slides .left .service .image-mob {
  display: none;
  margin-top: 3rem;
}

.finance .slides .left .service .image-tab {
  display: none;
  height: 500px;
  margin-top: 3rem;
}

.finance .slides .right {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.finance .slides .right .image-wrap {
  position: relative;
  height: 100%;
  height: 100%;
}

.finance .slides .right .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transition: opacity 1s ease;
  transform: scale(1);
}

.finance .slides .right .image.active {
  opacity: 1;
  z-index: 1;
}

/**** TEXT IMAGE ****/
.text-image-section {
  background: url(/i/strategy_bg.png) no-repeat center 43%/cover;
  position: relative;
  z-index: 2;
  padding: 8rem 0;
}

.text-image-section .text-wrap {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.text-image-section .text-wrap h2 {
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 5rem;
  margin-bottom: 3rem;
  color: #1A2B57;
}

.text-image-section .text-wrap > div:nth-child(1) {
  width: 40%;
}

.text-image-section .text-wrap .wrap {
  width: 60%;
}

.text-image-section .text-wrap .wrap > div {
  border-top: solid 1px #B2B4B6;
  padding: 2rem 0 2rem 3rem;
  max-width: 690px;
  margin-bottom: 3rem;
}

.text-image-section .text-wrap .wrap > div:last-of-type {
  margin-bottom: 0;
}

.text-image-section .text-wrap .wrap p {
  color: #1A2B57;
}

.text-image-section .text-wrap .wrap .spec {
  font-family: "cormorant-garamond";
  font-style: normal;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #2B2F36;
}

.text-image-section .mob-img {
  display: none;
  width: 100%;
  height: auto;
  object-position: top;
}

#shade {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;
}

#shade.show {
  opacity: 1;
  visibility: visible;
}

/**** MEDIA ***/
@media screen and (max-width: 1300px) {
  .inner .s1 h1 {
    font-size: 4.5rem;
    line-height: 5rem;
  }
  footer .top-sec .nav-links {
    display: none;
  }
  .finance .slides {
    display: block;
    padding: 0;
  }
  .finance .slides .left {
    width: 100%;
    padding: 0;
  }
  .finance .slides .left .service {
    width: 100%;
    max-width: none;
    height: auto;
    padding-top: 5rem;
  }
  .finance .slides .left .service h3, .finance .slides .left .service p {
    padding: 0 2.5rem;
  }
  .finance .slides .left .service .image-tab {
    display: block;
    height: auto;
  }
  .finance .slides .right {
    display: none;
  }
  .contact-form .left h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  body .cookie-disclaimer {
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    bottom: 0 !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on {
    display: block !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > p {
    margin-bottom: 1.5rem;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > a {
    margin-bottom: .5rem !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > .btn-agree {
    margin-right: .75rem !important;
  }
}

@media screen and (max-width: 767px), (max-height: 980px) {
  nav .close {
    margin-bottom: 3rem;
  }
  nav .nav-links li a {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  nav .nav-links .first a {
    margin-top: 3rem;
  }
}

@media screen and (max-height: 500px) {
  nav {
    overflow-y: scroll;
  }
}

@media screen and (max-width: 1200px) {
  header .right {
    display: none;
  }
  .inner .s1 .link-wrap ul {
    gap: 1rem;
  }
  .inner .s1 .link-wrap ul li a {
    font-size: 0.8rem;
    letter-spacing: 0.18rem;
  }
  .text-image-section {
    padding: 8rem 0 0;
    background: #fff !important;
  }
  .text-image-section .text-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .text-image-section .text-wrap h2 {
    font-size: 3.5rem;
    line-height: 4rem;
    margin-bottom: 2rem;
  }
  .text-image-section .text-wrap h2 br {
    display: none;
  }
  .text-image-section .text-wrap > div:nth-child(1), .text-image-section .text-wrap .wrap {
    width: 100%;
  }
  .text-image-section .text-wrap .wrap > div {
    max-width: none;
    padding-left: 0;
  }
  .text-image-section .mob-img {
    display: block;
  }
  .contact-form .contain, .contact-form .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  .contact-form .left, .contact-form .right {
    width: 100%;
  }
  .contact-form .left h2 br {
    display: none;
  }
  .contact-form .right {
    padding-left: 0;
  }
  .contact-form .right form input, .contact-form .right form textarea {
    max-width: none;
  }
}

@media screen and (max-width: 1023px) {
  .inner .s1 .link-wrap ul li a {
    letter-spacing: 0.13rem;
  }
  nav .nav-links li a {
    font-size: 2.8rem;
    line-height: 3.3rem;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  .contain, .container {
    width: calc(100% - 2rem);
  }
  .subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .subtitle br {
    display: none;
  }
  .inner .s1 {
    min-height: 650px;
  }
  .inner .s1 .link-wrap {
    display: none;
    border: none;
    bottom: 1rem;
  }
  .inner .s1 .link-wrap ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .inner .s1 .link-wrap ul li a {
    padding-top: 0;
    border: none;
  }
  .inner .s1 .text-wrap {
    min-height: auto;
  }
  .inner .s1 .text-wrap h1 {
    margin-bottom: 1rem;
  }
  .inner .s1 .text-wrap .subtitle {
    max-width: 350px;
    margin: 0 auto 1rem auto;
  }
  .inner .s1 h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
  .global-btn {
    font-size: 1rem;
  }
  .global-btn .circle {
    width: 45px;
    height: 45px;
  }
  .global-btn .circle img {
    width: 12px;
  }
  header {
    padding: 0.5rem 0;
  }
  header .container {
    height: 50px;
  }
  header .logo {
    width: 170px;
    height: 50px;
  }
  header .left #menu_btn {
    width: 35px;
  }
  header .left #menu_btn i {
    width: 35px;
  }
  header .left #menu_btn i:nth-child(2) {
    top: 10px;
  }
  header .left #menu_btn i:nth-child(3) {
    top: 20px;
  }
  nav {
    max-width: none;
  }
  nav .wrap {
    padding: 1.5rem 1rem;
  }
  nav .close img {
    width: 85%;
  }
  nav .nav-links li a {
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center;
  }
  footer .top-sec {
    padding: 3rem 0 2rem 0;
  }
  footer .top-sec .logo {
    width: 170px;
    height: 50px;
    margin-bottom: 1.5rem;
  }
  footer .bottom-sec .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
  footer .bottom-sec p, footer .bottom-sec a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 16px;
  }
  footer .bottom-sec span {
    display: none;
  }
  footer .bottom-sec button {
    font-size: 14px;
    line-height: 16px;
  }
  footer .private-conf a {
    margin: 0;
  }
  .finance .slides .left .service h3 {
    font-size: 1.8rem;
    line-height: 2.3rem;
    margin-bottom: 2rem;
  }
  .finance .slides .left .service h3, .finance .slides .left .service p {
    padding: 0 1rem;
  }
  .finance .slides .left .service .image-mob {
    display: block;
  }
  .finance .slides .left .service .image-tab {
    display: none;
  }
  .text-image-section {
    padding: 5rem 0 0;
  }
  .text-image-section .text-wrap .wrap > div {
    margin-bottom: 2rem;
  }
  .text-image-section .text-wrap .wrap > div:last-of-type {
    margin-bottom: 0;
  }
  .text-image-section .text-wrap h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  .contact-form {
    padding: 5rem 0;
  }
  .contact-form .left h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
