/*
** Theme Variables
*/
:root {
    --green: #399c39;
    --red: #FF4C1B;
    --white: #ffffff;
    --black: #000000;

    --primary:  #2C2E35;
    --secondary: #ff4c1b;

    --body: var(--primary);

    --gray: #F8F8F9;
    --sky: #EFF7F9;
    
    --link: var(--primary);

    --formfieldbg: var(--white);
    --formfieldplaceholder: var(--body);
    --formtextcolor: var(--body);
    --formfieldborder: #EDEDED;

    --siteradius: 12px;
    --siteradius: 8px;

    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 140px
}

/*
** Fonts
*/
@font-face {
    font-family: 'satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'satoshi-md';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'satoshi-bd';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/Satoshi-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'satoshi-bk';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
        url('../fonts/Satoshi-Black.woff') format('woff');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}

/*
** Font Icons
*/
@font-face {
  font-family: 'ng';
  src:  url('../fonts/icons/ng.ttf?fpj1ir') format('truetype'),
        url('../fonts/icons/ng.woff?fpj1ir') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'ng';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-whatsapp:before {
    content: "\e909";
}
.icon-angle-down:before {
    content: "\e903";
}
.icon-facebook:before {
    content: "\e904";
}
.icon-instagram:before {
    content: "\e905";
}
.icon-mail:before {
    content: "\e906";
}
.icon-pin:before {
    content: "\e907";
}
.icon-phone:before {
    content: "\e908";
}
.icon-plus:before {
    content: "\e900";
}
.icon-link:before {
    content: "\e901";
}
.icon-sub-art:before {
    content: "\e902";
}

/*
** Custom Reset
*/
*,:after,:before { -webkit-box-sizing: border-box; box-sizing: border-box }
img { max-width: 100%; height: auto; vertical-align: top; }
a, span, i, label { display: inline-block; }
a { color: var(--link); text-decoration: none; transition: 0.3s ease-in-out; }
a:hover { color: var(--link-a); }
a:focus { outline: none; }
strong, b { font-family: 'satoshi-bd', serif; }

header ul,
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header ul li,
footer ul li {
    margin: 0;
}

p:last-child,
ul:last-child,
li:last-child {
  margin-bottom: 0;
}

button,
button:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

input:focus {
    outline: none;
    box-shadow: none;
}

ul, ol { padding-left: 20px; }

li { margin-bottom: 10px; }


/*
** Globals
*/

/*Typo*/
body {
    font-family: 'satoshi', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: var(--body);
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'satoshi-bd', serif;
    font-style: normal;
    font-weight: normal;
    margin-top: 0;
    color: var(--body);
}

h1, .h1 { --fsize: 120px; font-size: var(--fsize); line-height: calc(var(--fsize) + 20px); margin-bottom: 30px; }
h2, .h2 { --fsize: 52px; font-size: var(--fsize); line-height: calc(var(--fsize) + 12px); margin-bottom: 40px; }
h3, .h3 { --fsize: 40px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); margin-bottom: 12px; }
h4, .h4 { --fsize: 32px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); margin-bottom: 12px; }
h5, .h5 { --fsize: 20px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 12px; }
h6, .h6 { --fsize: 16px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 10px; }

p { margin-top: 0; }

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Form Fields */
form {
    --fieldsize: 50px;
    --fieldpadds: 0px 0px;
    --fieldtop: 11px;
    --fieldfsize: 18px;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="num"],
input[type="tel"],
input[type="url"],
select,
textarea {
    font-family: 'satoshi', sans-serif;
    font-size: var(--fieldfsize);
    line-height: calc(var(--fieldsize) - 2px);
    width: 100%;
    height: var(--fieldsize);
    padding: var(--fieldpadds);
    border-radius: var(--siteradius16);
    background-color: transparent;
    border: 0px solid;
    border-bottom: 1px solid #d3d1d1;
    outline: 0 !important;
    vertical-align: top;
    color: var(--formtextcolor);
}

input::placeholder,
textarea::placeholder {
    color: var(--formfieldplaceholder);
}

textarea {
    padding-top: var(--fieldtop);
    line-height: 22px;
    height: 120px;
    resize: none;
}

select {
    width: 100%;
    padding-right: 42px;
    background-image: url('../images/angle-down.svg');
    background-size: 10px;
    background-position: right 20px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
}


/*Background Utilities*/
.bg--primary { background-color: var(--primary); color: var(--white); }
.bg--sky { background-color: var(--sky); }
.bg--gray { background-color: var(--gray); }

/*Text Utilities*/
.text-rg { font-family: 'satoshi', sans-serif; }
.text-md { font-family: 'satoshi-md', sans-serif; }
.text-bd { font-family: 'satoshi-bd', sans-serif; }
.text-bk { font-family: 'satoshi-bk', sans-serif; }

.text--primary { color: var(--primary); }
.text--body { color: var(--body); }
.text--white { color: var(--white); }
.text--black { color: var(--black); }

.text-upercase { text-transform: uppercase; }
.text-justify { text-align: justify; }

.font-32 { --fsize: 32px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); }
.font-30 { --fsize: 30px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); }
.font-28 { --fsize: 28px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); }
.font-24 { --fsize: 24px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); }
.font-22 { --fsize: 22px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); }
.font-20 { font-size: 20px; line-height: 30px; }
.font-18 { font-size: 18px; line-height: 24px; }
.font-16 { font-size: 16px; line-height: 24px; }
.font-14 { font-size: 14px; line-height: 22px; }
.font-10 { font-size: 10px; line-height: 18px; }

/*Gaps*/
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }

/*
** Buttons
*/
.bttn {
    --btnsize: 60px;
    font-family: 'satoshi-md', sans-serif;
    font-size: 20px;
    line-height: calc(var(--btnsize) - 2px);
    min-width: 156px;
    height: var(--btnsize);
    padding: 0 30px;
    text-align: center;
    border: 0px solid transparent;
    border-radius: 60px;
    cursor: pointer;
    vertical-align: top;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.bttn-primary {
    color: var(--white);
    background-color: var(--primary);
}

.bttn-primary:hover {
    color: var(--white);
    background-color: var(--black);
}

.bttn-transparent {
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: transparent;
}

.bttn-transparent:hover {
    background-color: var(--primary);
    color: var(--white);
}

.bttn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bttn-icon .icon-link {
    font-size: 0.7em;
}

/*Other Utilities*/
.list-unstyled, .list-unstyled ul, .list-unstyled ol { padding: 0; margin: 0; list-style: none; }
.transition { transition: 0.3s ease-in-out; }
.unlink { pointer-events: none; cursor: none; }
.siteradius { border-radius: var(--siteradius); }

.iialist,
.iialist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*
** Bootstrap Extends & Overrides
*/
.container, .container-fluid, .row>* { padding-left: 15px; padding-right: 15px; }
.row { margin-left: -15px; margin-right: -15px; }
/* .gx-0.row>* { padding-left: 0; padding-right: 0; } */
/* .gx-0.row { margin-left: 0; margin-right: 0; } */
/* .row-20 { margin-left: -10px; margin-right: -10px; } */
/* .row-20>* { padding-left: 10px; padding-right: 10px; } */

.visually-hidden,
.sr-only {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important;
}

.overflow-hidden { overflow: hidden; }

/*
** WP Overrides
*/
.screen-reader-text { position: absolute; visibility: hidden; opacity: 0; }

/*
** Slick Slider
*/
.slick-initialized { z-index: 0; position: relative; }
.slide .slick-slide, .slide { display: none; float: left; height: 100%; min-height: 1px; }
.slick-initialized .slick-list { position: relative; overflow: hidden; }
.slick-initialized .slick-slide { display: inline-block; width: auto; }
.slick-initialized .slick-slide:focus { outline: none; }
.slick-dots { display: flex; align-items: center; justify-content: center; list-style: none; padding: 0; }
.slick-dots li { margin: 0; }
.slick-dots li + li { margin: 0; margin-left: 10px; }
.slick-dots li button {
    display: block;
    font-size: 0px;
    width: 12px;
    max-width: 12px;
    height: 12px;
    padding:0;
    border: 0px solid transparent;
    border-radius: 12px;
    background-color: #cccccc;
    opacity: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.slick-dots li.slick-active button { background-color: var(--primary); }


/*
** Header
*/
.sub-menu { display: none; }

.site-header {
    font-family: 'satoshi-md', sans-serif;
    position: sticky;
    top: 0;
    padding: 24px 0;
    background-color: transparent;
    background-color: var(--sky);
    transition: all 0.3s ease;
    z-index: 15;
}

.site-header.siteheader-sticky {
    /* padding: 14px 0; */
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.14);
}

.custom-logo {
    width: auto;
    height: 92px;
    transition: 0.2s ease;
}

.siteheader-sticky .custom-logo {
    height: 60px;
    height: 70px;
}

.site-header .row {
    align-items: center;
}

.colheadright {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 30px;
}

.headernav {
    display: inline-flex;
    align-items: center;
    column-gap: 40px;
}

.headernav li { margin-bottom: 0; }

.headernav a {
    padding: 10px 5px;
    color: var(--body);
}

.siteheader-sticky .headernav a {
    font-size: 18px;
}

.headernav a:hover,
.headernav .current-menu-ancestor>a,
.headernav .current-menu-parent>a,
.headernav .current-menu-item>a {
    color: var(--primary);
}

/*Site Menu Toggle*/
.site-menutoggle {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    position: relative;
    margin-bottom: 0;
}

.site-menutoggle span {
    display: block;
    width: 33px;
    height: 5px;
    margin-bottom: 5px;
    position: relative;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary) 100%);
    border-radius: 6px;
    transform-origin: 5px 5px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    z-index: 1;
}

.site-menutoggle span:last-child {
    margin-bottom: 0;
}

.site-menutoggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

.site-menutoggle input:checked~span {
    margin: 0;
    opacity: 1;
    transform: rotate(45deg) translate(-8px, -12px);
}

.site-menutoggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(1px, 20px);
    transform: rotate(-45deg) translate(-2px, 13px);
}

.site-menutoggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    transition: 0s;
}

/*
** Common
*/
section.section {
    --padds: 120px;
    padding-top: var(--padds);
    padding-bottom: var(--padds);
}

.section-head {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'satoshi-md', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 16px 32px;
    border: 1px solid var(--body);
    border-radius: 60px;
}

.section-title i {
    font-size: 12px;
}

.page-header {
    background: linear-gradient(180deg, #EFF7F9 0%, #BFE5E7 100%);
    overflow: hidden;
}


/*
** Homepage
*/
/* .home .site-header {
    background-color: var(--sky);
} */

.hero-home {
    position: relative;
    background-color: var(--sky);
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-home h1 {
    line-height: 1;
    padding-top: 30px;
}

.hero-home p {
    width: 857px;
    max-width: 100%;
    margin: 0 auto 30px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.hero-since {
    position: relative;
    font-size: 345px;
    line-height: 0;
    margin-top: 190px;
    margin-bottom: -40px;
    margin-bottom: 0px;
    z-index: 1;
}

.hero-since img {
    width: 100vw;
    vertical-align: top;
}

.home-abt {
    background-image: url('../images/section-art.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 46.35vw;
}

.abt-imgcol img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.statlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    padding: 22px 40px;
    border: 1px solid var(--formfieldborder);
    background-color: var(--white);
}

.statitem {
    padding: 42px 0;
}

.statitem:nth-child(-n+2) {
    background-image: linear-gradient(to right, transparent 25%, var(--formfieldborder) 26%, var(--formfieldborder) 75%, transparent 76%, transparent 100%);
    background-position: bottom center;
    background-size: 100% 1px;
    background-repeat: no-repeat;
}

.statcount {
    font-size: 42px;
    line-height: 36px;
    color: var(--primary);
    
}

.statnum {
    display: flex;
    justify-content: center;
    line-height: 1;
    margin-bottom: 16px;
}

.statitem .icon-plus {
    font-size: 10px;
    line-height: 1;
    color: var(--red);
}

.stattitle {
    color: #ABABAB;
}

.ourp, .ourp .container { position: relative; }

.ourp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/section-art.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 46.25vw;
    transform: scaleX(-1);
    z-index: 0;
}

.home-servcard {
    position: relative;
    overflow: hidden;
}

.home-servcard::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 221px;
    background: linear-gradient(180deg, rgba(44, 46, 53, 0) 0%, #2C2E35 100%);
}

.home-servcont {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 1;
}

.home-servcont h3 {
    margin-bottom: 7px;
}

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

.proj-media {
    display: block;
    width: 100%;
    max-height: 426px;
    aspect-ratio: 717/426;
    overflow: hidden;
}

.proj-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: all 0.6s ease-out;
}

.proj-media:hover img {
    transform: scale(1.1);
}

.proj-cont {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.proj-link {
    display: inline-flex;
    align-items: center;
    gap: 7.5px;
    margin-top: 20px;
}

.proj-link i {
    font-size: 14px;
}

.proj-item + .proj-item {
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--formfieldborder);
}

.proj-more a {
    --size: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: var(--size);
    height: var(--size);
    border: 1px solid var(--body);
    border-radius: 100%;
}

.proj-more a i { transition: 0.3s ease; }

.proj-more a:hover i {
    transform: rotate(45deg) translateY(1px);
}

.partlist {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    text-align: center;
}

.partitem {
    display: flex;
}

.partcard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1 0 auto;
    max-width: 100%;
    /* min-height: 260px; */
    padding: 25px 25px;
    border-radius: 40px;
    background-color: var(--white);
}

.partcard img { margin: auto; }


/*
** About Us
*/
.page-title-img {
    margin-top: 105px;
    margin-bottom: -35.35px;
}

.wwa-img img {
    object-fit: cover;
    object-position: center;
    max-height: 725px;
    border-radius: var(--siteradius);
}

.wwastat {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 62px;
    margin-top: 62px;
}

.wwastat-num {
    display: flex;
    justify-content: center;
    line-height: 1;
    margin-bottom: 16px;
}

.wwastat-num .icon-plus {
    font-size: 10px;
    line-height: 1;
    color: var(--red);
}

.wwastat-title { color: #ABABAB; }

.mpitem {
    --spaces: 60px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spaces);
    align-items: flex-start;
    padding: var(--spaces);
    border: 1px solid var(--formfieldborder);
    border-radius: var(--siteradius);
}

.mpitem + .mpitem {
    margin-top: var(--spaces);
}

.mptxt li:not(:last-child) {
    margin-bottom: 16px;
}

.mpimg { width: 565px; max-width: 100%; border-radius: var(--siteradius); overflow: hidden; }

.mpitem:nth-child(even) .mpimg { order: 1; }

.misvis { position: relative; }

.misvis > .container { position: relative; z-index: 1; }

.mistxt { margin-top: 128px; margin-bottom: -4px; }

.vistxt { margin-top: 282px; }

.misimg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    text-align: right;
}

.visimg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
}

.ovis .section-title {
    color: var(--white);
    border-color: var(--white);
}

/*
** Contact Us
*/
.ngmap iframe {
    width: 100%;
    height: 600px;
}

.cus-cont {
    width: 100%;
    max-width: 737px;
}

.cusd-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    margin-top: 60px;
    text-align: center;
}

.cusd-list i {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    font-size: 20px;
    line-height: var(--size);
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--body);
    border-radius: var(--size);
    margin-bottom: 16px;
    text-align: center;
}

address {
    font-style: normal;
}

.cusd-ph a { display: block;; }

.cusd-ph a:hover { color: var(--secondary); }

.form-block {
    padding: 60px;
    text-align: left;
    background-color: var(--gray);
}

.wpcf7 label,
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 .row {
    row-gap: 30px;
}

.wpcf7-not-valid-tip {
    font-size: 16px;
    line-height: 1.3;
    padding: 6px 0 3px;
    margin-top: -4px;
    color: #c41010;
    /* background: #a60000; */
    border-radius: 0px 0px 10px 10px;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 16px;
    line-height: 1.4em;
    padding: 8px 10px;
    margin: 20px 0 0 0;
    border: 0;
    border-radius: 5px;
    background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: var(--green);
    color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output {
    background: #c41010;
    color: #ffffff;
}

.wpcf7-spinner {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    transform: translateX(191px) translateY(-15px);
}

/*Contact Form Quiz*/
.input-quiz label {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-quiz label input {
    width: 50px;
    flex: 1 0 auto;
    min-width: 0;
}

.input-quiz label span {
    flex: 0 0 auto;
}

.input-quiz .wpcf7-not-valid-tip {
    margin-left: 177px;
    margin-left: 211px;
    margin-top: 0;
}


/*
** Project Detail
*/
.prjintro-row { margin-top: 60px; }

.prjilist {
    position: sticky;
    top: 150px;
    display: grid;
    gap: 30px;
}

.prjmedia img {
    border-radius: var(--siteradius);
}

.floorp-box {
    position: relative;
    /* padding: 15px; */
    border-radius: 30px;
    cursor: pointer;
    background-color: var(--gray);
    overflow: hidden;
}

.floorp-box img {
    width: 100%;
    /* height: 500px; */
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top center;
    border-radius: 30px;
}

.floorp-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.floorp-box::after {
    font-family: 'satoshi-bd', sans-serif;
    content: "+";
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 100%;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.floorp-box:hover:before,
.floorp-box:hover:after {
    visibility: visible;
    opacity: 1;
}

.amelist {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 20px;
    /* justify-content: center; */
}

.ameitem {
    --amecol: calc(16.66% - 20px);
    flex: 1 0;
    min-width: var(--amecol);
    max-width: var(--amecol);
}

.ameitem h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: center;
}

.ameicon {
    --amsize: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--amsize);
    height: var(--amsize);
    margin: 0 auto 16px;
    border: 1px solid var(--primary);
    border-radius: var(--amsize);
    overflow: hidden;
}

.ameicon img {
    --ameisize: 50px;
    width: auto;
    height: var(--ameisize);
    max-width: var(--ameisize);
    max-width: 100%;
    max-height: var(--ameisize);
}

.pgal-box {
    position: relative;
    display: block;
    /* height: 280px; */
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.pgal-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.pgal-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}


.pgal-box:after {
    font-family: 'satoshi-bd', sans-serif;
    content: "+";
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 100%;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.pgal-box:hover:before,
.pgal-box:hover:after {
    visibility: visible;
    opacity: 1;
}

/*
** Our Projects
*/
.opstatabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.opstablink {
    font-size: 20px;
    padding: 5px 15px;
    border-radius: var(--siteradius);
    color: var(--primary);
    background: var(--formfieldborder);
}

.opstablink:hover {
    color: var(--primary);
    background: var(--formfieldborder);
}

.opstablink.active {
    color: var(--white);
    background: var(--primary);
}

.opstablink.active:hover {
    opacity: 0.86;
}

.oplist {
    display: grid;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.opitem {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    min-width: calc(33.33% - 20px);
    margin: 10px;

    border-radius: 12px;
    overflow: hidden;
}

.opimg {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 2;
    /* border-radius: 5px; */
    /* box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(33, 33, 38, 0.2) 0px 2px 10px 0px; */
    overflow: hidden;
}

.opitem:hover .opimg {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.2) 0px 0px 0px 0px, rgba(33, 33, 38, 0.2) 0px 2px 15px 0px;
}

.opimg-na {
    font-family: Impact, 'satoshi-bd', sans-serif;
    font-size: 41px;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #c5c5c5;
}

.opimg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.opimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    transition: all 0.4s ease-out;
}

.opitem:hover img {
    transform: scale(1.1);
}

.opinfo {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 20px;
    flex: 1 0 auto;
    background: var(--gray);
    /* background-color: var(--secondary);
    background-image: url('../images/case-study-card-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left 250px top 70%; */
    z-index: 1;
}

.opinfo h3 a {
    color: var(--primary);
    transition: 0.3s ease-in-out;
}

.opinfo h3 a:hover {
    color: var(--secondary);
}

.optypes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 5px;
    font-size: 12px;
    line-height: 28px;
    margin-bottom: 5px;
}

.optypes span {
    padding: 0 15px;
    border-radius: 100px;
    color: var(--primary);
    background: var(--formfieldborder);
    transition: 0.3s ease-in-out;
}

.optypes span a { color: var(--secondary); }

/*
.optypes span:hover {
    color: var(--white);
    background: var(--secondary-a);
}
*/

.optypes span:hover a { color: var(--white); }

/*Default Page (Privacy Policy)*/
.section-page h2,
.section-page h2 {
    --fsize: 40px;
    line-height: calc(var(--fsize) + 8px);
    margin-bottom: 16px;
}


/*Footer Edit*/
.post-edit-link,
.wp-logout {
    position: fixed;
    left: 0;
    bottom: 28px;
    font-size: 16px;
    line-height: 16px;
    padding: 6px 12px;
    min-width: 70px;
    text-align: center;
    color: var(--white) !important;
    background-color: var(--primary);
    z-index: 9000;
}


/*
** Footer
*/
.foo-cta {
    padding-top: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--formfieldborder);
}

.foo-cta .row { row-gap: 30px; }

.bttn-gtc { position: relative; }

.bttn-gtc span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    --size: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    margin: auto;
    background-color: var(--body);
    color: var(--white);
    border-radius: 100%;
}

.bttn-gtc i { font-size: 25px; transition: 0.3s ease; }

.bttn-gtc img { animation: rotate 20s linear infinite forwards; }

.bttn-gtc:hover i { transform: translate(5px, -5px); }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.foo-btm {
    padding-top: 60px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--formfieldborder);
}

.foo-title {
    margin-bottom: 40px;
}

.foonav {
    display: grid;
    gap: 15px;
}

.foonav a:hover,
.foonav .current_page_item a {
    color: var(--secondary);
}

.fooreach li {
    display: flex;
    gap: 7px;
}

.fooreach li i {
    line-height: 28px;
}

.fooreach span a {
    display: block;
}

.fooreach .icon-pin:before { font-size: 21px; }
.fooreach .icon-mail:before { font-size: 18px; }
.nirg-email { word-break: break-all; }

.foo-copy {
    padding-top: 32px;
    padding-bottom: 32px;
}


/*
** POPUP
*/


.popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    background: rgba(0,0,0,0.6);
    overflow: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.popup.popup-open {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    width: 550px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 35px;
    background: #FFFFFF;
    border-radius: var(--siteradius);
    transform: scale(0.95);
    transition: all 0.3s ease-in-out;
}

.popup-open .popup-container {
    transform: scale(1);
}

.popup-close {
    font-family: 'satoshi-bd';
    font-size: 16px;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: 0;
    border-radius: 100%;
    outline: none;
    transition: 0.3s ease;
}

.popup-close:hover {
    color: var(--white);
    background-color: var(--primary);
}

.popup-title {
    padding: 0 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.popup-form form {
    --fieldsize: 40px;
}

.popup-form label {
    font-family: 'satoshi-md', sans-serif;
    font-size: 18px;
    line-height: 1;
}