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

::selection {
  background-color: #3d3d3d;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background-color: #3d3d3d;
  color: #ffffff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ce152e;
}

body {
  font-family: 'Open Sans', sans-serif;
}

/* Typography */
html>body .text-grey {
  color: #666666;
}

html>body .lh-lg2 {
  line-height: 1.8;
}

html>body .fs20 {
  font-size: 1rem;
}

html>body .fs60 {
  font-size: 2.75rem;
  line-height: 1.36666667;
}

@media (min-width: 576px) {
  html>body .fs60 {
    font-size: 4.75rem;
    line-height: 1.36666667;
  }
}

hr {
  margin: 0;
  border: 0;
}

.para-align {
  text-align: justify;
}

.font-libre {
  font-family: 'Libre Baskerville', serif;
}

.font-opensans {
  font-family: 'Open Sans', sans-serif;
}

.container {
  width: 80%;
  margin: 2rem auto;
}
.container-fluid{
  width: 90%;
  margin: 1rem auto;
}

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

.container p {
  margin: 1rem 0;
}

.headline h1 {
  color: #000;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

html>body .mt70 {
  margin-top: 4.375rem;
}

html>body .mb20 {
  margin-bottom: 1.25rem;
}

.flex-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -100px;
}

.header-clip {
  display: grid;
  top: 40px;
  position: relative;
  padding: 0 20px;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.header-clip .item-1 {
  grid-column: 3 / span 4;
  grid-row: 1 /span 2;
}

.header-clip .item-2 {
  grid-column: 1 / span 3;
  grid-row: 2 /span 2;
}

.header-clip .item-2 h1 {
  font-size: 22px;
  text-align: right;
  font-weight: 400;
  color: #000;
}

@media (min-width:768px) {
  .header-clip .item-2 h1 {
    font-size: 35px;
    margin-right: 60px;
  }

  .header-clip {
    top: -80px;
    padding: 0 100px;
  }

  .flex-container {
    margin-bottom: -240px;
  }
}

/*-------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------*/
.header {
  background-color: #f5f0e8;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  display: block;
  width: 100%;
  z-index: 100;
  transition: all 0.5s;
  align-items: center;
}

.header .sticky {}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.header ul a {
  display: block;
  padding: 20px;
  text-decoration: none;
}

.header ul a:hover {
  background-color: #ddd;
}

.header .logo {
  float: left;
  display: block;
  font-size: 1.5625em;
  padding: 20px 20px;
  font-weight: 900;
  color: #0b4f6d;
  text-decoration: none;
}

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

.header .menu-icon {
  padding: 35px 35px;
  position: relative;
  float: right;
  cursor: pointer;
}

.header .menu-icon .nav-icon {
  background: #333;
  display: block;
  height: 3px;
  width: 20px;
  position: relative;
  transition: background .2s ease-out;
}

.header .menu-icon .nav-icon:before {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all .2s ease-out;
  top: 7px;
}

.header .menu-icon .nav-icon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all .2s ease-out;
  top: -7px;
}

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked~.menu {
  max-height: 640px;
}

.header .menu-btn:checked~.menu-icon .nav-icon {
  background: transparent;
}

.header .menu-btn:checked~.menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}

.header .menu-btn:checked~.menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

@media (min-width:48em) {
  .header {
    height: 85px;
    line-height: 45px;
  }

  .header .logo {
    padding: 20px 30px;
  }

  .header li {
    float: left;
  }

  .header li a {
    padding: 20px 25px;
  }

  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }

  .header .menu-icon {
    display: none;
  }
}

.report-file a{
  font-size: 1.4rem;
  font-weight: 600;
color: #000;
}

.form-file a{
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
color: #666;
}

/*-------------------------------------------------------------------------------
experience
-------------------------------------------------------------------------------*/
.experience-grid {
  display: grid;
}

.experience-grid .exp-1 {
  grid-column: 1 / span 10;
  grid-row: 1 / span 10;
  z-index: 1;
}

.experience-grid .exp-2 {
  grid-column: 2 / span 6;
  grid-row: 8 /span 6;
  font-size: 20vmin;
  font-weight: 700;
  z-index: 2;
}

.experience-grid .exp-3 {
  font-size: 3vmin;
  grid-column: 5 / span 6;
  grid-row: 10 / span 6;
  //margin-top: 80px;
  z-index: 3;
}

@media (min-width: 768px) {
  .experience-grid .exp-1 {
    grid-column: 1 / span 6;
    grid-row: 1 / span 6;
    z-index: 1;
  }

  .experience-grid .exp-2 {
    grid-column: 6 / span 5;
    grid-row: 2 /span 5;
    font-size: 33vmin;
    font-weight: 700;
    z-index: 2;
    //margin-top: 80px;
  }

  .experience-grid .exp-3 {
    //text-align: right;
    font-size: 5vmin;
    grid-column: 7 / span 6;
    grid-row: 4 / span 6;
    //margin-top: 80px;
    z-index: 3;
  }
}

.establised {
  display: none;
  position: relative;
  left: 80px;
  top: 60px;
  //z-index: 300;
  //margin-top: -1.625rem;
  text-transform: uppercase;
  letter-spacing: .625rem;
  color: #999999;
  font-size: 1.125rem;
  transform: rotate(-90deg) translate(-50%, 0%);
  transform-origin: bottom left;
}

@media (min-width: 768px) {
  .establised {
    display: block;
  }
}

/*-------------------------------------------------------------------------------

-------------------------------------------------------------------------------*/
.section-item {
  text-align: center;
}

.who-we-are .paragraph__r p {
  position: relative;
  margin-top: 3.472vw;
}

.who-we-are .paragraph__r p:before {
  display: none;
  left: 20px;
  top: 3.2vw;
  height: 2px;
  width: 12.533vw;
  content: "";
  background: #ff4338;
  position: absolute;
}

@media (min-width: 768px) {
  .who-we-are .paragraph__r p {
    padding: 0 0.889vw 0 15.111vw
  }

  .who-we-are .paragraph__r p:before {
    display: block;
    width: 6.944vw;
    top: 1.2vw;
  }

  html {
    font-size: 13px;
  }

  html>body .fs20 {
    font-size: 1.25rem;
  }

  html>body .mt70 {
    margin-top: 4.375rem;
  }

  html>body .mb20 {
    margin-bottom: 1.25rem;
  }
}

/*****************************************

******************************************/
canvas {
  display: inline-block;
  vertical-align: baseline;
}

.contact-slide {
  display: -ms-flexbox;
  display: flex;
  min-height: 85vh;
  background-size: cover;
  text-align: center;
  position: relative !important;
  z-index: 0 !important;
  color: #fff;
}

.ofice-slide {
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  background-size: cover;
  text-align: center;
  position: relative !important;
  z-index: 0 !important;
  color: #fff;
}

.intro-slide {
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  background-size: cover;
  background-position: 50%;
  text-align: center;
  position: relative !important;
  z-index: 0 !important;
  color: #fff;
}

.intro-slide__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 90px;
}

.intro-slide__inner {
  position: relative;
  left: auto !important;
}

.intro-slide__title-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 10px;
}

.intro-slide__title {
  font-family: 'Teko', sans-serif;
  font-size: 100px;
  line-height: 0.875;
  font-weight: 700;
  color: #ffd500;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.intro-slide__title_subpage {
  font-family: 'Teko', sans-serif;
  font-size: 80px;
  line-height: 0.875;
  font-weight: 600;
  color: #ffd500;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.titleline {
  font-size: 30px;
  font-weight: 700;
  max-width: 820px;
  color: #f2f2f2;
  //margin-bottom: 80px;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  margin-left: auto;
  margin-right: auto;
  white-space: initial !important;
}

.Background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.Background:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.Background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 10%, rgba(0, 0, 0, 0.8));
}

/********************************************
years of experience
-------------------------------------------------------------------------------*/
.text-texture {
  display: inline-block;
  background-position: 50% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section {
  padding-top: 6rem;
  padding-bottom: 0rem;
}

.section-mem {
  padding-top: 4rem;
  padding-bottom: 0rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .section-mem {
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
}

/*-------------------------------------------------------------------------------

-------------------------------------------------------------------------------*/
.solution-num {
  background-image: url("../img/bg-letter-solution.jpg");
  background-size: cover;
  font-family: 'Libre Baskerville', serif;
  line-height: 1;
}

.solution-num {
  display: inline-block;
  //margin-bottom: 5vmin;
}

@media (min-width: 992px) {
  .solution-num {
    margin-bottom: 0;
    margin-right: 0;
  }
}

/*-------------------------------------------------------------------------------

-------------------------------------------------------------------------------*/
.key-personwrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.person {
  padding-bottom: 40px;
}

.person-text {
  font-size: 15px;
  padding-top: 10px;
  font-weight: 400;
  text-align: center;
}

.key-person .text-headline {
  text-align: center;
  padding-bottom: 40px;
}

.key-person .text-headline p {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Libre Baskerville', serif;
}

.key-person .text-headline .line {
  height: 2px;
  width: 18.33vw;
  margin: 2.8vw 0;
  background: #ff4338;
  margin-left: auto;
  margin-right: auto;
}

.person img {
  background-size: cover;
  background-position: center;
  width: 145px;
  height: 230px;
  box-sizing: border-box;
  border-radius: 50% 50% 50% 50% / 25% 25% 25% 25%;
}

@media (min-width: 768px) {
  .key-person .text-headline p {
    line-height: 0.3;
  }

  .key-person .text-headline .line {
    width: 8.33vw;
  }

  .key-personwrap {
    padding-bottom: 0;
    flex-direction: row;
  }

  .person img {
    width: 160px;
    height: 250px;
  }

  .person-text {
    font-size: 18px;
  }

  .key-person {
    padding-top: 100px;
  }

  .key-person p {
    font-size: 20px;
  }
}

/*-------------------------------------------------------------------------------
  Pan grid
-------------------------------------------------------------------------------*/
.pan-grid {
  padding-top: 60px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
}

.pan-left {
  display: grid;
}

.pan-left .imt-1,
.pan-left .imt-2 {
  width: 250px;
}

.pan-left .imt-1 {
  grid-column: 2 / span 10;
  grid-row: 1 / span 10;
  z-index: 2;
}

.pan-left .imt-2 {
  grid-column: 3 / span 10;
  grid-row: 3 / span 10;
  z-index: 1;
}

.pan-left .imt-3 .text {
  font-size: 23px;
  font-weight: 400;
  color: #0a4875;
}

.pan-left .imt-3 {
  display: none;
  grid-column: 2 / span 12;
  grid-row: 1 / span 18;
  z-index: 3;
}

.pan-right {
  padding-top: 30px;
  color: #666666;
}

.pan-right h2 {
  font-size: 18px;
}

@media (min-width: 768px) {
  .pan-grid {
    flex-direction: row;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .pan-right {
    width: 380px;
    padding-top: 30px;
    margin-left: 40px;
  }

  .pan-right h2 {
    font-size: 25px;
  }

  .pan-left .imt-1,
  .pan-left .imt-2 {
    width: 400px;
  }

  .pan-left .imt-3 .text {
    font-size: 38px;
    font-weight: 700;
  }

  .pan-left .imt-3 {
    display: block;
    grid-column: 12 / span 12;
    grid-row: 10 / span 12;
  }
}

/*-------------------------------------------------------------------------------
  Objective
-------------------------------------------------------------------------------*/
.objective-section {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.objective-section-reg {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.bg-patt {
  background: url("../img/bg-pattern.png") 50% 0 no-repeat;
  background-size: cover;
}

.obj-left {
  width: 40%;
  font-size: 35px;
  font-weight: 700;
}

.obj-right {
  font-weight: 600;
  color: #666666;
}

.obj-right ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  margin: 0;
  padding: 0;
}

.obj-right ol li {
  counter-increment: my-awesome-counter;
  display: flex;
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.obj-right ol li::before {
  content: ""counter(my-awesome-counter);
  font-weight: bold;
  font-size: 1.5rem;
  color: #ff4338;
  margin-right: 2rem;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .objective-section {
    flex-direction: column;
  }
}

/*-------------------------------------------------------------------------------
  Objective
-------------------------------------------------------------------------------*/
.objective-section-reg {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.objective-section-reg {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.bg-patt-reg {
  background: url("../img/bg-pattern.png") 50% 0 no-repeat;
  background-size: cover;

}

.obj-left-reg {
  width: 80%;
  font-size: 35px;
  font-weight: 700;
}

.obj-right-reg {
  font-weight: 600;
  color: #666666;
}

.obj-right-reg ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  margin: 0;
  padding: 0;
}

.obj-right-reg ol li {
  counter-increment: my-awesome-counter;
  display: flex;
  font-size: 1.5rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.obj-right-reg ol li::before {
  content: ""counter(my-awesome-counter);
  font-weight: bold;
  font-size: 1.9rem;
  color: #ff4338;
  margin-right: 2rem;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .objective-section-reg {
    flex-direction: column;
  }
}

.office-person p{
  text-align: center;
  font-size: 24px;
  color: #666;

}
/*-------------------------------------------------------------------------------
  Objective
-------------------------------------------------------------------------------*/
.bank-details {
  margin-top: 200px;
}

.bank-bg {
  width: 100%;
  height: auto;
  color: #ffffff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url("../img/bg-bank.jpg");
  background-size: cover;
  background-position: 50%;
  display: flex;
  flex-flow: column;
  background-repeat: no-repeat;
}

.text-bank {
  text-align: center;
  font-size: 25px;
  line-height: 1.6;
  padding: 50px 50px;
  background-color: #0b4f6d;
  height: 250px;
  width: 100%;
  position: relative;
  top: -120px;
}

.right {}

.right-text {
  text-align: center;
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem;
  font-weight: 500;
}

.text-bank .line {
  height: 2px;
  width: 22vw;
  margin: 2.8vw 0;
  background: #ff4338;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width:768px) {
  .right-text {
    font-size: 1.5rem;
  }
}

/*-------------------------------------------------------------------------------
  footer
-------------------------------------------------------------------------------*/
.container-footer {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto
}

@media (min-width: 768px) {
  .container-footer {
    padding-right: 100px;
    padding-left: 100px;
  }
}

.footer-flexbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-bottom-flexbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

button,
input {
  line-height: normal;
}

button {
  text-transform: none;
}

button {
  overflow: visible;
}

button {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: none;
  padding: 0;
}

button,
input {
  background-image: none;
}

input {
  border-radius: 0;
  box-shadow: none;
}

input {
  resize: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

[placeholder]:focus:-ms-input-placeholder {
  color: transparent;
}

ul {
  margin-bottom: 0;
}

button:focus {
  outline: none;
}

.footer-studio {
  padding-top: 120px;
  padding-bottom: 15px;
  background-size: cover;
  background-position: 50%;
  background-color: #252525;
  color: #fff;
  font-size: 15px;
  line-height: 1.875;
}

.footer-studio__column {
  margin-bottom: 40px;
}

.footer-studio__group-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 17px;
}

.footer-studio__list {
  color: #999;
  list-style: none;
}

.footer-studio p {
  color: #999;
  margin-bottom: 0;
}

.footer-studio p a {
  color: currentColor;
  font-family: inherit;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.footer-studio p a:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: opacity 0.3s;
  opacity: 0;
}

.footer-studio p a:hover {
  color: #ff4338;
}

.footer-studio p a:hover:after {
  opacity: 1;
}

.footer-studio p a:hover {
  color: #fff;
}

.footer-studio__list-item {
  margin-bottom: 0;
}

.footer-studio__list-link {
  color: currentColor;
  font-family: inherit;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.footer-studio__list-link:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: opacity 0.3s;
  opacity: 0;
}

.footer-studio__list-link:hover {
  color: #ff4338;
}

.footer-studio__list-link:hover:after {
  opacity: 1;
}

.footer-studio__list-link:hover {
  color: #fff;
}

.footer-studio__socials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-studio__social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border-radius: 100%;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.footer-studio__social:not(:last-child) {
  margin-right: 24px;
}

.footer-studio__social:hover {
  color: #ff4338;
}

.footer-studio__social.icofont-behance,
.footer-studio__social.icofont-google-plus {
  font-size: 26px;
}

.footer-studio__social.icofont-linkedin {
  font-size: 22px;
}

.footer-studio__form {
  width: 100%;
  position: relative;
  margin-top: 16px;
}

.footer-studio__input {
  font-size: 16px;
  height: 54px;
  width: 100%;
  color: #fff;
  padding: 2px 120px 0 20px;
  background: #333;
  border: 0;
}

.footer-studio__input::-webkit-input-placeholder {
  color: #666 !important;
  opacity: 1;
  transition: 0.3s ease;
}

.footer-studio__input:-moz-placeholder {
  color: #666 !important;
  opacity: 1;
  transition: 0.3s ease;
}

.footer-studio__input::-moz-placeholder {
  color: #666 !important;
  opacity: 1;
  transition: 0.3s ease;
}

.footer-studio__input:-ms-input-placeholder {
  color: #666 !important;
  opacity: 1;
  transition: 0.3s ease;
}

.footer-studio__input:focus::-webkit-input-placeholder {
  color: #666 !important;
  opacity: 0;
}

.footer-studio__input:focus:-moz-placeholder {
  color: #666 !important;
  opacity: 0;
}

.footer-studio__input:focus::-moz-placeholder {
  color: #666 !important;
  opacity: 0;
}

.footer-studio__input:focus:-ms-input-placeholder {
  color: #666 !important;
  opacity: 0;
}

.footer-studio__submit {
  height: 100%;
  padding-top: 2px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 12px;
  white-space: nowrap;
  border: 0;
  background: none;
  transition: all 0.3s;
  color: #fff;
}

.footer-studio__submit:hover {
  color: #ff4338;
}

.footer-studio__submit-icon {
  font-weight: 700;
  font-size: 12px;
  margin-left: 1px;
  transform: translateY(-1px);
  display: inline-block;
}

.footer-studio__bottom {
  margin-top: 58px;
  color: #999;
}

.footer-studio__bottom strong {
  color: #fff;
  font-weight: 600;
}

.footer-studio__copyright a {
  color: currentColor;
  font-family: inherit;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

.footer-studio__copyright a:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: opacity 0.3s;
  opacity: 0;
}

.footer-studio__copyright a:hover {
  color: #ff4338;
}

.footer-studio__copyright a:hover:after {
  opacity: 1;
}

a:not([class]) {
  color: currentColor;
  font-family: inherit;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

a:not([class]):after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: opacity 0.3s;
  opacity: 0;
}

a:not([class]):hover {
  color: #ff4338;
}

a:not([class]):hover:after {
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/* ------------------------------------------------------------------------------


-------------------------------------------------------------------------------*/
h2,
h3 {
  font-weight: bold;
}

.text-underline {
  text-decoration: underline;
}

html>body .text-black {
  color: #000000;
}

html>body .text-grey {
  color: #666666;
}

html>body .fs30 {
  font-size: 1.2rem;
}

html>body .fs42 {
  font-size: 1.1rem;
}

.h1-lg {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -.025em;
}

/* 1.3 Fields */
html>body .mt50 {
  margin-top: 3.125rem;
}

html>body .mt90 {
  margin-top: 3rem;
}

html>body .mb20 {
  margin-bottom: 1.25rem;
}

html>body .mb60 {
  margin-bottom: 3.75rem;
}

html>body .mb120 {
  margin-bottom: 7.5rem;
}

html>body .fs36 {
  font-size: 2.25rem;
}

.phone-link,
.phone-link:hover {
  color: inherit;
  text-decoration: none;
}

.phone-link {
  cursor: default;
}

.contact-grid-wrapper {
  display: grid;
}

.contact-slide {
  grid-column: 1 / span 2;
  grid-row: 1 / span 9;
  z-index: 1;
}

.contact-seal {
  text-align: center;
  grid-column: 1 / span 2;
  grid-row: 8 / span 4;
  z-index: 1;
}

.seal-size {
  width: 300px;
  height: 300px;
}

.rounded-logo {
  width: 11.5rem;
  height: 11.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.rounded-logo svg {
  transform: rotate(175deg);
  text-transform: uppercase;
  letter-spacing: 2.65px;
  word-spacing: 4px;
  font-weight: bold;
  fill: #999999;
}

.rounded-logo .logo {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: .625rem;
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Libre Baskerville', serif;
  color: #666666;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.rounded-logo-md {
  width: 14.125rem;
  height: 14.125rem;
}

.rounded-logo-md .logo {
  font-size: 2rem;
}

a.phone-link {
  color: inherit;
  text-decoration: none;
  cursor: default;
}

.form-flexbox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  max-width: 880px;
}

@media (min-width: 768px) {
  .h1-lg {
    font-size: 4.5rem;
    line-height: 1.13888889;
  }

  html>body .fs42 {
    font-size: 2.8rem;
  }

  html>body .fs30 {
    font-size: 2rem;
  }

  .seal-size {
    width: 500px;
    height: 500px;
  }

  html>body .mt90 {
    margin-top: 5.625rem;
  }

  .contact-detail {
    //top: -400px;
  }
}

/*-------------------------------------------------------------------------------
Contact
-------------------------------------------------------------------------------*/
.section-form {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-form {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}

.form-wrap {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  padding: 30px 20px;
}

.web-form textarea {
  background: #f5f5f5;
}

.web-form button, .web-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.web-form textarea {
  margin-bottom: 24px
}

::-webkit-input-placeholder {
  //text-transform:uppercase;
  //font-weight:bold;
  letter-spacing: 1px;
  color: #777;
  font-size: 14px
}

:-moz-placeholder {
  //text-transform:uppercase;
  //font-weight:bold;
  letter-spacing: 1px;
  color: #777;
  font-size: 14px
}

::-moz-placeholder {
  //text-transform:uppercase;
  //font-weight:bold;
  letter-spacing: 1px;
  color: #777;
  font-size: 14px
}

:-ms-input-placeholder {
  //text-transform:uppercase;
  //font-weight:bold;
  letter-spacing: 1px;
  color: #777;
  font-size: 14px
}

.web-form input[type=text], .web-form input[type=email], .web-form textarea, .web-form ul {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  color: #3d3d3d;
  background-color: #fff;
  border: 0;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  padding: .2rem 1rem 0;
  height: 3.6em;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-transition: all .15s;
  -o-transition: all .15s;
  transition: all .15s
}

.web-form textarea {
  padding-top: .8rem;
  height: 15rem;
  resize: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s
}

.web-form input[type=text]:focus, .web-form input[type=email]:focus, .web-form textarea:focus {
  border-color: #ff4338;
  outline: 0
}

.web-form input.input-gray, .web-form textarea.input-gray, .web-form ul.input-gray {
  background: #f6f6f6
}

.web-form input.input-gray:focus, .web-form textarea.input-gray:focus {
  background: #fff
}

.web-form input::-moz-placeholder {
  color: #999;
  opacity: 1
}

.web-form input:-ms-input-placeholder {
  color: #999
}

.web-form input::-webkit-input-placeholder {
  color: #999
}

.web-form textarea::-moz-placeholder {
  color: #999;
  opacity: 1
}

.web-form textarea:-ms-input-placeholder {
  color: #999
}

.web-form textarea::-webkit-input-placeholder {
  color: #999
}

.web-form .form-group {
  margin-bottom: 18px
}

.web-form .btn {
  border: 3px solid #222222;
  padding: 0 26px;
  height: 40px;
  min-width: 150px;
  line-height: 36px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  color: #46b8da;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  margin-right: 8px;
  margin-bottom: 24px
}

.web-form .btn:last-child, .web-form .btn:last-of-type {
  margin-right: 0
}

.web-form .btn:focus, .web-form .btn:hover {
  opacity: 0.5;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0 !important
}

.web-form .btn-lg {
  height: 50px;
  line-height: 46px;
  min-width: 200px
}

.web-form .btn-filled {
  background: transparent;
  color: #222222;
}

.web-form .btn-rounded {
  border-radius: 0px
}

.web-form .btn:visited {
  color: #46b8da
}

.web-form .btn:visited:hover {
  color: #fff
}

.web-form .btn-filled:visited {
  color: #fff
}

.web-form .text-primary {
  color: #46b8da
}

.web-form .error-message, .web-form .success-message {
  display: none;
  margin-top: 2rem
}

/*-------------------------------------------------------------------------------
Office
-------------------------------------------------------------------------------*/
.office-personwrap {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.office-flex {
  width: 90%;
  padding: 30px 0 20px 0;
}

.office-flex h3 {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 7px;
}

.office-flex .mob_num{
  font-size: 14px;
  font-weight: 600;
  color: #999999;
  letter-spacing: 0.6px;
}
.office-flex h4 {
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.office-person .text-headline {
  text-align: center;
}

.office-person .text-headline p {
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Libre Baskerville', serif;
}

.office-person .text-headline-ec .line {
  height: 2px;
  width: 22vw;
  margin: 1.8vw 0;
  background: #ff4338;
  margin-left: auto;
  margin-right: auto;
}

.office-person .text-headline-ec {
  text-align: center;
}

.office-person .text-headline-ec p {
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Libre Baskerville', serif;
}

.office-person .text-headline .line {
  height: 2px;
  width: 8vw;
  margin: 1.8vw 0;
  background: #ff4338;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width:768px) {
  .office-personwrap {
    flex-direction: row;
    flex-flow: row wrap;
  }

  .office-flex {
    width: 33.33333%;
    padding: 20px 20px;
  }

  .office-flex h3 {
    font-size: 1.5rem;
    color: #666666;
    margin-bottom: 7px;
  }

  .office-flex h4 {
    font-size: 1.2rem;
    color: #999;
    text-transform: uppercase;
  }
}

/*-------------------------------------------------------------------------------
Gallery
-------------------------------------------------------------------------------*/
.row {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 25%;
  /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
