/* ===================================
    wm-studio78
====================================== */

/* manrope-200 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/manrope-v15-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* manrope-300 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/manrope-v15-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* manrope-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/manrope-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* manrope-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/manrope-v15-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* manrope-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/manrope-v15-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* manrope-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/manrope-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* manrope-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/manrope-v15-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
/* variable */
:root {     
    --base-color: #BF1C39;
    --medium-gray:#9ea09d;
    --light-gray: #cbcbcb;
    --alt-font: 'Playfair Display', serif;
    --primary-font: 'Manrope', sans-serif;
}
/* custom cursor */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor .circle-cursor-outer {
        border: 1px solid transparent;
        background: var(--base-color);
    }
    .custom-cursor .circle-cursor-inner {
        background: var(--light-gray);
    }
    .custom-cursor .circle-cursor-inner.cursor-link-hover {
        background-color: var(--light-gray);
        width: 10px;
        height: 10px;
        margin-left: -5px;
        margin-top: -5px;

    }
}
body {
    font-size: 18px;
    line-height: 34px;
}
.showDesk {display: block;}
.showMob {display: none;}
/* header */
header .navbar-brand img {
    max-height: 74px;
}
.navbar .navbar-nav .nav-link {
    font-weight: 600;
    padding: 10px 25px;
    font-size: 18px;
}
.navbar .navbar-nav .nav-item:last-child .nav-link{
    padding-right: 0;
}
header .navbar-brand {
    padding: 42px 0;
}
header .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
}
/* font size */
.fs-220 {
    font-size: 13.75rem;
    line-height: 11.7rem;
}
.fs-280 {
    font-size: 17.5rem;
    line-height: 17.5rem;
}
/* margin */
.mb-50 {
    margin-bottom: 50%;
}
.small-icon li {
    margin: 0 8px;
}
/* btn */
.btn {
    font-family: var(--primary-font);
    font-weight: 800;
}
/* contact form-style 03 */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: var(--black) !important; text-overflow: ellipsis; opacity:1; }
input::-moz-placeholder, textarea::-moz-placeholder { color: var(--black) !important; text-overflow: ellipsis; opacity:1; }
input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: var(--black) !important; text-overflow: ellipsis; opacity:1; }
input, select, textarea, .form-control, .form-select {
    color: var(--black) !important;
}

.portfolio-simple .portfolio-box:hover .portfolio-image img {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .text-right {
    text-align: right !important;
  }

  .border-top-2px {
    border-top: 2px var(--bs-border-style) #000!important;
  }
  .table {
    --bs-table-bg: transparent;
    --bs-table-border-color: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: transparent;
  --bs-table-striped-bg: transparent;
  
  --bs-table-hover-bg: transparent;
  border-color: transparent;
  }
  tbody, td, tfoot, th, thead, tr {
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.table-bordered > :not(caption) > * {
  border-width: 0 0;
}
.footable.breakpoint > tbody > tr > td > span.footable-toggle {
  display: inline-block;
  font-family: var(--primary-font);
  speak: none;
  font-style: normal;
  font-weight: 700;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  padding: 0px 0px 13px 0px;
  font-size: 35px;
  color: #888888;
  transform: translateX(-14px) rotate(-90deg);
  margin-top: -13px;
}
.footable.breakpoint > tbody > tr > td > span.footable-toggle::before {
  content: "<";
  transform: rotate(-90deg);
}
.footable.breakpoint > tbody > tr.footable-detail-show > td > span.footable-toggle::before {
  content: ">";
}
.footable-row-detail-name {
  display: table-cell;
  font-weight: 600;
  padding-right: 0.5em;
  text-align: left;
}
.footable-row-detail-inner {
  display: table;
  margin-top: -15px;
  margin-bottom: 20px;
  margin-left: 35px;
}
/* table {border-collapse: collapse; margin: 0; padding: 0;width: 100%;table-layout: fixed;}

table caption {font-size: 1.5em; margin: .5em 0 .75em;}

table tr { padding: .35em;}

table th,
table td { padding: .625em;text-align: center;} */

/* @media screen and (max-width: 600px) {
  table { border: 0;}
  table thead {border: none; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
  table tr { border-bottom: 1px solid; border-color: var(--dark-gray) !important; display: block; margin-bottom: .625em;}
  table tr.border-top { border-top: 0px solid !important; }
  table td { border-bottom: 1px solid #ddd; display: block; text-align: right; padding: 15px 5px; }
  table td::before { font-weight: 500 !important; content: attr(data-label); float: left; }
  table td:last-child { border-bottom: 0; }
} */

/* media query responsive */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px; 
    }
}
@media only screen and (min-width: 1366px) and (orientation: landscape) { 
    .fs-200 {
        font-size: 11.5rem;
      }
      .fs-120 {
        font-size: 6rem;
        line-height: 6.5rem;
      }
      .fs-70 {
        font-size: 4rem;
      }
      .outside-box-left-7 {
        margin-left: -17vw;
      }
 }
@media (max-width: 1199px) {
    .fs-220 {
        font-size: 12.5rem;
        line-height: 12.5rem;
    }
    .fs-280 {
        font-size: 15rem;
        line-height: 15rem;
    }
}


@media only screen and (min-width: 1024px) and (orientation: portrait) { 
    .fs-120 {
        font-size: 6rem;
        line-height: 6.5rem;
      }
      .fs-200 {
        font-size: 11.5rem;
        line-height: 11.5rem;
      }
      .lg-h-auto {
        height: 70vh !important;
      }
      .offset-lg-1 {
        margin-left: 0;
      }
      .col-lg-6 {
        flex: 0 0 auto;
        width: 100%;
      }
      .col-lg-4 {
        flex: 0 0 auto;
        width: 100%;
      }
      .col-lg-5 {
        flex: 0 0 auto;
        width: 100%;
      }
      .outside-box-left-7 {
        margin-left:0vw;
      }
      .outside-box-left-25 {
        margin-left: 0vw;
      }
      .row > * {
        padding-right: 15px;
        padding-left: 15px;
      }
 }
 @media only screen and (min-width: 1194px) and (orientation: landscape) { 
    .lg-h-auto {
    height: 100vh !important;
    }
    .fs-200 {
        font-size: 8.5rem;
        line-height: 12.5rem;
    }
    .fs-120 {
        font-size:5.3rem;
        line-height: 6.5rem;
    }
    .fs-70 {
        font-size: 3.4rem;
        line-height: 4.375rem;
      }
    .outside-box-left-7 {
        margin-left: -22vw;
      }
      
}
@media (max-width: 991px) {
  .showDesk {display: none;}
.showMob {display: block;}
    .navbar.bg-transparent {
        background-color: transparent !important;
    }
    .fs-220 {
        font-size: 10rem;
        line-height: 10rem;
    } 
    header .navbar-brand {
        padding: 30px 0;
    }
    .fs-280 {
        font-size: 12rem;
        line-height: 12rem;
    }
    .navbar-collapse-show[data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner {
        background-image: url(../../images/vertical-line-bg-small.svg) !important;
    }
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav {
        text-align: center;
    }
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav > .nav-item {
        border-bottom: 0;
        padding: 0;
    }
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .nav-link {
        font-size: 42px;
        line-height: 46px;
    }
}
@media (max-width: 575px) {
  .showDesk {display: none;}
.showMob {display: block;}
    header .navbar-brand {
        padding: 15px 0;
    }
    header .navbar-brand img {
        max-height: 55px;
    }
    .fs-220 {
        font-size: 5.625rem;
        line-height: 5.625rem;
    } 
    .fs-280 {
        font-size: 8rem;
        line-height: 8rem;
    }
}