/*devbox*/
.devbox {
    position: fixed;
    right: 0;
    top: 20vh;
    font-size: 14px;
    line-height: 18px;
    padding: 8px 4px;
    color: var(--white);
    background: var(--beta);
    z-index: 100;
}

/*
** Theme Variables
*/
:root {
    --green: #399c39;
    --red: #C9002C;
    --white: #ffffff;
    --dark: #1A1A1A;
    --black: #000000;

    --alpha:  #0D00EE;
    --alpha-a:#0900b4;

    --beta:  #05014A;

    --gama:  #FFA700;

    --body: var(--beta);

    --link: var(--alpha);
    --link-a: var(--alpha-a);

    --formfieldbg: transparent;
    --formfieldplaceholder: #D6D6D6;
    --formtextcolor: var(--white);
    --formfieldborder: var(--white);

    --siteradius: 10px;
    --siteradius40: 40px;

    /*Custom Cursor*/
    --cursor-ring-size: 70px;
    --cursor-ring-size-more: 100px;
    --cursor-dot-size: 40px;
    --cursor-ring-color: rgba(13, 0, 238, 0.3);
    --cursor-dot-color: var(--gama);
    
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 120px
}

::selection {
    color: var(--white);
    background: var(--alpha);
}


/*
** Fonts
*/
@font-face {
    font-family: 'gsf';
    src: url('../fonts/GoogleSansFlex-Regular.woff2') format('woff2'),
        url('../fonts/GoogleSansFlex-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gsf-md';
    src: url('../fonts/GoogleSansFlex-Medium.woff2') format('woff2'),
        url('../fonts/GoogleSansFlex-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gsf-bd';
    src: url('../fonts/GoogleSansFlex-Bold.woff2') format('woff2'),
        url('../fonts/GoogleSansFlex-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'playfd-mdi';
    src: url('../fonts/PlayfairDisplay-MediumItalic.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'playfd-sbi';
    src: url('../fonts/PlayfairDisplay-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'playfd-bi';
    src: url('../fonts/PlayfairDisplay-BoldItalic.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}


/*
** Font Icons
*/
@font-face {
  font-family: 'aad';
  src:  url('../fonts/icons/aad.ttf?sr2hop') format('truetype'),
    url('../fonts/icons/aad.woff?sr2hop') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'aad';
  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-angle-down:before {
  content: "\e900";
}
.icon-arrow-circle:before {
  content: "\e901";
}
.icon-back-arrow:before {
  content: "\e902";
}
.icon-equals:before {
  content: "\e903";
}
.icon-in:before {
  content: "\e904";
}
.icon-li:before {
  content: "\e905";
}
.icon-lio:before {
  content: "\e906";
}
.icon-mail:before {
  content: "\e907";
}
.icon-pin:before {
  content: "\e908";
}
.icon-plus:before {
  content: "\e909";
}
.icon-quotes:before {
  content: "\e90a";
}
.icon-wa:before {
  content: "\e90b";
}


/*
** Custom Reset
*/
*,:after,:before { -webkit-box-sizing: border-box; box-sizing: border-box }
img, video { 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: 'gsf-bd', sans-serif; font-weight: normal; }

header ul,
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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 {
    --headerbg: var(--white);
    font-family: 'gsf', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: var(--body);
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'gsf-bd', serif;
    font-style: normal;
    font-weight: normal;
    margin-top: 0;
    color: var(--body);
}

h1, .h1 { --fsize: 200px; font-size: var(--fsize); line-height: calc(var(--fsize) - 20px); margin-bottom: 30px; letter-spacing: -6px; }
h2, .h2 { --fsize: 120px; font-size: var(--fsize); line-height: calc(var(--fsize) + 4px); margin-bottom: 12px; letter-spacing: -2px; }
h3, .h3 { --fsize: 90px; font-size: var(--fsize); line-height: calc(var(--fsize) + 4px); margin-bottom: 12px; letter-spacing: -1.8px; }
h4, .h4 { --fsize: 60px; font-size: var(--fsize); line-height: calc(var(--fsize) + 15px); margin-bottom: 12px; letter-spacing: -2px; }
h5, .h5 { --fsize: 50px; font-size: var(--fsize); line-height: calc(var(--fsize) + 17px); margin-bottom: 12px; }
h6, .h6 { --fsize: 30px; font-size: var(--fsize); line-height: calc(var(--fsize) + 16px); margin-bottom: 10px; }

.h3s span { --fsdiff: 10px; --fsizein: calc(var(--fsize) - var(--fsdiff)); font-size: var(--fsizein); line-height: calc(var(--fsizein) + 4px); }


h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span {
    display: inline;
    font-family: 'playfd-sbi', serif;
}

p { margin-top: 0; }

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Form Fields */
form {
    --fieldsize: 70px;
    --fieldpadds: 0 20px;
    --fieldtop: 20px;
    --fieldfsize: 20px;
}

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: 'gsf', sans-serif;
    font-size: var(--fieldfsize);
    line-height: calc(var(--fieldsize) - 2px);
    width: 100%;
    height: var(--fieldsize);
    padding: var(--fieldpadds);
    color: var(--formtextcolor);
    border: 0;
    border-bottom: 2px solid var(--formfieldborder);
    border-radius: 0;
    outline: 0 !important;
    vertical-align: top;
    background-color: var(--formfieldbg);
}

input::placeholder,
textarea::placeholder {
    color: var(--formfieldplaceholder);
}

form input:focus,
form textarea:focus {
    color: var(--beta);
    background: var(--white);
}

form input:focus::placeholder,
form textarea:focus::placeholder {
    color: var(--beta);
}

textarea {
    padding-top: var(--fieldtop);
    line-height: 26px;
    min-height: 300px;
    resize: vertical;
}

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;
}

.wpcf7 label {
    font-family: 'gsf-md', sans-serif;
    color: var(--body);
}

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-not-valid-tip {
    font-family: 'playfd-bi';
    font-size: 14px;
    line-height: 1.3;
    padding: 6px 0px 3px;
    margin-top: 0px;
    color: var(--red);
}

.wpcf7 form .form-row + .wpcf7-response-output {
    font-size: 16px;
    line-height: 1.4em;
    width: 100%;
    padding: 8px 15px;
    margin: 20px 0 0 0;
    border: 0;
    border-radius: 0;
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
    background: var(--green);
}

.wpcf7 form.invalid .wpcf7-response-output {
    color: var(--white);
    padding: 8px 10px;
    border: 0;
    background: var(--red);
}


/*Background Utilities*/
.bg--alpha { color: var(--white); background-color: var(--alpha); }
.bg--beta { color: var(--white); background-color: var(--beta); }
.bg--gama { color: var(--beta); background-color: var(--gama); }
.bg--white { background-color: var(--white); }
.bg--black { color: var(--white); background-color: var(--black); }

.bg--beta h2 { color: var(--white); }
.bg--beta h3 { color: var(--white); }

/*Text Utilities*/
.text-rg { font-family: 'gsf', sans-serif; }
.text-md { font-family: 'gsf-md', sans-serif; }
.text-bd { font-family: 'gsf-bd', sans-serif; }
.text-pmd { font-family: 'playfd-mdi', serif; }
.text-psb { font-family: 'playfd-sbi', serif; }
.text-pbd { font-family: 'playfd-bi', serif; }

.text--alpha { color: var(--alpha); }
.text--beta { color: var(--beta); }
.text--gama { color: var(--gama); }
.text--body { color: var(--body); }
.text--white { color: var(--white); }
.text--black { color: var(--black); }

.text-upercase { text-transform: uppercase; }
.text-italic { font-style: italic; }
.text-underline { text-decoration: underline; }

.font-200 { font-size: 200px; line-height: 180px; letter-spacing: -6px; }
.font-120 { font-size: 120px; line-height: 124px; }
.font-90 { font-size: 90px; line-height: 94px; }
.font-80 { font-size: 80px; line-height: 107px; }
.font-60 { font-size: 60px; line-height: 75px; letter-spacing: -2px; letter-spacing: -0.02em; }
.font-50 { font-size: 50px; line-height: 67px; }
.font-30 { font-size: 30px; line-height: 46px; }
.font-20 { font-size: 20px; line-height: 30px; }

/*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); }
.fullradius { border-radius: 100%; }
.siteimg, .siteimg img { border-radius: var(--siteradius40); }
.fitimg, .fitvid { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.w100 { width: 100%; }
.h100 { height: 100%; }
.ohidden { overflow: hidden; }

/*
** Buttons
*/
.bttn {
    --btnsize: 70px;
    font-family: 'playfd-bi', serif;
    font-size: 30px;
    line-height: calc(var(--btnsize) - 4px);
    min-width: 160px;
    height: var(--btnsize);
    padding: 0 32px;
    text-align: center;
    text-transform: lowercase;
    border: 2px solid transparent;
    border-radius: var(--siteradius);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.bttn-auto { min-width: 0; }

.bttn-lg { --btnsize: 150px; padding: 0 60px; }

.bttn-alpha {
    color: var(--alpha);
    border-color: var(--alpha);
    background-color: transparent;
}

.bttn-alpha:hover {
    color: var(--white);
    border-color: var(--white);
    background-color: var(--alpha);
}

.bttn-white {
    color: var(--white);
    border-color: var(--white);
    background-color: transparent;
}

.bttn-white:hover {
    color: var(--alpha);
    border-color: var(--white);
    background-color: var(--white);
}

/*
** Bootstrap Extends & Overrides
*/
.container { max-width: 100%; padding-left: 30px; padding-right: 30px; }
.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;
}

/*
** 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; vertical-align: top; }
.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: var(--lblue);
    opacity: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.slick-dots li.slick-active button { background-color: var(--primary); }

/*Body Offset for Inverse Header*/
.header-alt { --headH: 80px; padding-top: calc(var(--headH) + 110px); }

/*
** Header
*/
.sub-menu { display: none; }

.site-header {
    font-family: 'gsf', sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px 0;
    background-color: transparent;
    transition: background 0.3s ease 0.3s, padding 0.3s ease 0.3s, box-shadow 0.3s ease 0.3s, top 0.3s ease 0s;
    z-index: 15;
}

.site-header.inverse {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0px 10px 35px rgba(13, 0, 238, 0.6);
}

.site-header.scrolled { top: -120px; }

.site-header .container { position: relative; }

.site-header .custom-logo {
    width: auto;
    height: 40px;
    transition: 0.2s ease;
}

.logo-secondary {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease 0.3s;
}

.custom-logo-link { transition: 0.3s ease 0.3s; }

.logo-secondary, .inverse .custom-logo-link { visibility: hidden; opacity: 0; }


.inverse .logo-secondary { visibility: visible; opacity: 1; }

.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: 60px;
}

.headernav li { margin-bottom: 0; }

.headernav a {
    padding: 5px 0;
    color: var(--white);
    transition: 0.3s ease 0.3s;
}

/*
.headernav a:hover,
.headernav .current-menu-ancestor>a,
.headernav .current-menu-parent>a,
.headernav .current-menu-item>a {
    color: var(--white);
}
*/

.inverse .headernav a {
    color: var(--beta);
}

/*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;
    */
    display: block;
    width: 33px;
    height: 2px;
    margin-left: auto;
    margin-bottom: 9px;
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
    border-radius: 6px;
    transform-origin: 5px 5px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0) 0.3s, opacity 0.55s ease 0.3s;
    z-index: 1;
}

.inverse .site-menutoggle span { background: var(--beta); }

.site-menutoggle span:last-child {
    margin-bottom: 0;
}

.site-menutoggle span:nth-last-child(2) {
    width: 22px;
    transform-origin: 0% 100%;
}

.site-menutoggle input:checked~span {
    margin: 0;
    opacity: 1;
    transform: rotate(45deg) translate(-8px, -12px);
    transform: rotate(45deg) translate(-7px, -8px);
}

.site-menutoggle input:checked~span:nth-last-child(2) {
    width: 33px;
    transform: rotate(-45deg) translate(1px, 20px);
    transform: rotate(-45deg) translate(-4px, 13px);
}

.site-menutoggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    transition: 0s;
}

/*Common Sections*/
section.section, .foo-main { --padds: 120px; padding: var(--padds) 0; }
.sec100 { display: flex; flex-direction: column; justify-content: center; min-height: 100vh; }

/*Common Text Colors*/
.text--white h1, .text--white .h1, .text--white h2, .text--white .h2 { color: var(--white); }

/*CUSTOM CURSOR*/
.cursor-ring, .cursor-dot { position: fixed; }

/*
** Home
*/
/*Hero - Common*/
.hero-vid {
    max-width: 100%;
    /* max-height: 960px; */
    max-height: 1080px;
    min-height: 800px;
    height: 100vh;
    height: 100dvh;
    /* aspect-ratio: 2/1; */
}

.hero-vid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 1, 74, 0.6);
}

.hero-vid video {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-vid .vid-sm {
    display: none;
}

.hero-cont {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

/*Hero - Home*/
.hero-h .hero-cont {
    padding-bottom: 100px;
}

.hero-h .hero-wrap {
    max-width: 1615px;
}

/*
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

.hero p {
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}
*/

/*Years of Experience*/
.hexp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100dvh;
    max-height: 960px;
    max-width: 100%;
}

.hexp-wrap {
    display: flex;
    align-items: center;
    width: 1570px;
    max-width: 100%;
    gap: 160px;
}

.hexp-in {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hexp-l { flex: 0 0 auto; animation: rotate 15s linear infinite; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* .hexp-rotate { animation: rotate 15s linear infinite; } */

.hexp-r .h3 { color: var(--alpha); }

.hexp-r .h3 span { color: var(--beta); }

.cagency  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.cagency-row {
    --gap: 30px;
    --lsize: 1045px;
    --rsize: 544px;
    display: flex;
    gap: var(--gap);
    justify-content: space-between;
}

.cagency-l {
    --thisW: var(--lsize);
    flex: 1 0 var(--thisW);
    width: 100%;
    max-width: var(--thisW);
}

.cagency-r {
    flex: 1 0 var(--rsize);
    width: 100%;
    max-width: var(--rsize);
}

.cagency h2 {
    /* line-height: calc(1em - 10px); */
    /* letter-spacing: -2px; */
    margin-bottom: 0;
}

    /* .cagency h2 strong,
    .cagency h2 span, */
.cagency h2 img {
    display: inline;
    vertical-align: middle;
    vertical-align: baseline;
    margin-bottom: 2px;
}

.cagency h2 img:nth-of-type(3) { margin-bottom: -3px; }

.cagency h2 strong { color: var(--gama); }

.cagency h2 span {
    display: block;
    font-family: 'playfd-sbi', serif;
    font-size: calc(var(--fsize) - 40px);
    line-height: calc(var(--fsize) - 40px);
    text-transform: none;
}

/*Section - Aside Headings*/
.sec-row {
    display: grid;
    gap: 60px;
    grid-template-columns: 312px 1fr;
    align-items: flex-start;
}

.sec-l {
    position: sticky;
    top: 100px;
}

.sec-l h2 {
    width: auto;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    transform: rotate(180deg);
    transform-origin: 0;
}

.sec-r { min-width: 0; }

.sec-r h3 {
    letter-spacing: -2px;
    letter-spacing: -3.3px;
    max-width: 100%;
}

.sec-r h3 span { display: inline; font-family: 'playfd-sbi', serif; }

/*Work Section*/
.worksec-r h3 {
    width: 984px;
}

.worksec-r h3 span { color: var(--alpha); }

.workh-list {
    display: grid;
    gap: 50px;
    margin-top: 38px;
    margin-bottom: 50px;
}

.work-thumb { overflow: hidden; }
.work-thumb img { transition: all 800ms cubic-bezier(0.4, 0, 0.2, 1); }
.work-thumb:hover img { transform: scale(1.1); }


/*We Do*/
.wedosec-r h3 { width: 874px; }

.wedocont ul {
    display: grid;
    margin: 0;
    padding-left: 0;
    list-style-type: none;
    gap: 15px;
}

.wedocont li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
}

.wedocont li::before {
    content: "-";
}

.wedosec-link {
    --fsize: 200px;
    position: absolute;
    right: 7.8125vw;
    bottom: 7.8125vw;
    font-size: var(--fsize);
    line-height: var(--fsize);
    line-height: calc(var(--fsize) - 38px);
}

.wedosec-link i {
    transform: rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wedosec-link:hover i {
    color: var(--gama);
    transform: translateX(10px) rotate(-90deg);
}

/*Support*/
.suppcont h4 {
    font-family: 'gsf', sans-serif;
    color: var(--white);
    margin-bottom: 8px;
}

.suppcont ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    list-style-type: none;
    gap: 20px;
    margin-top: 0;
}

.suppcont li {
    padding: 12px 20px;
    margin: 0;
    color: var(--beta);
    border-radius: var(--siteradius);
    background-color: var(--white);
}

.htagsec span { font-family: 'gsf-bd', sans-serif; }

.htagsec h2 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

/*Tagline*/
.htagarr {
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.htagarr-up { bottom: 100%; }
.htagarr-dw { top: 100%; }

.homecta a { vertical-align: top; }

/*
** Footer
*/
.foom-row {
    display: grid;
    grid-template-columns: 1fr 445px;
    align-items: flex-start;
    gap: 40px;
}

.foom-l {
    min-width: 0;
}

.foom-l .h3 { margin-bottom: 40px; }

.foonav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 70px;
    margin-top: 70px;
}

.foonav li { margin: 0; }

.foonav a { color: var(--white); }

.foonav a:hover,
.foonav .current-menu-item a {
    color: var(--gama);
}


.foom-clinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 60px;
    margin-top: 60px;
}

.foom-clinks a {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 30px;
    line-height: 30px;
    color: var(--white);
}

.foom-clinks i {
    --fsize: 60px;
    font-size: var(--fsize);
    line-height: var(--fsize);
    color: var(--gama);
}

.foom-clinks i.icon-mail { font-size: calc(var(--fsize) - 8px); }

.foo-copy {
    padding: 35px 0;
}

.fooc-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.fooc-row a { color: var(--beta); }

.fooc-l, .fooc-r { --colw: 460px; flex: 1 0 var(--colw); min-width: var(--colw); }

.fooc-m {
    --fsize: 60px;
    display: flex;
    align-items: center;
    font-size: var(--fsize);
    line-height: var(--fsize);
    gap: 80px;
}

.fooc-m .icon-mail { font-size: 0.86em; }

.fooc-l { display: flex; align-items: center; gap: 17px; }

.fooc-row a:hover { color: var(--alpha); }

.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);
    border: 1px solid var(--white);
    border-left: 0;
    background: var(--alpha);
    z-index: 9000;
}


/*
** About Us
*/
/*Hero - Home*/
.hero-a .hero-cont {
    bottom: 50%;
    text-align: center;
    transform: translateY(50%);
}

.hero-a .hero-wrap {
    position: relative;
}

.hero-a .hero-head {
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 auto;
    transform: translateY(-50%);
}

.hero-a h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 345px;
}

.heroa-sphere {
    position: relative;
    right: 4.3vw;
    top: 1vw;
}

/*We Are*/
.wersec-row { align-items: stretch; }

.werhead h2 { line-height: calc(var(--fsize) - 3px); width: 100%; max-width: 1080px; margin-bottom: 40px; }

.werhead h2 img { transform: translateY(-6px); }

.werhead h2 span {
    display: block;
    font-family: 'playfd-sbi', serif;
    font-size: calc(var(--fsize) - 40px);
    line-height: calc(var(--fsize) - 40px);
    text-transform: none;
    margin-top: 4px; 
}

.werhead h2 strong,
.werhead h2 img {
    display: inline;
    vertical-align: middle;
}

.werhead h2 strong { padding-left: 12px; }

/*Amit Bhavsar*/
section.absec {
    --imgwid: 29%;
    padding: 56px 0 63px;
}

.absec-wrap {
    max-width: calc(100% - var(--imgwid) - 50px);
}

.absec-wrap h2 { margin-bottom: 5px; }

.absec-roles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 36px;
}

.absec-roles span { color: var(--gama); }

.absec-socs {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.absec-soli {
    --size: 65px;
    width: var(--size);
    height: var(--size);
    font-size: 45px;
    text-align: center;
    color: var(--beta);
    border-radius: var(--siteradius);
    background: var(--white);
}

.absec-soli:hover { background: var(--gama); color: var(--beta); }

.absec-soli i { line-height: var(--size); }

.absec-soli i.icon-mail { font-size: 0.87em; }

.absec-para {
    width: 1118px;
    max-width: 100%;
}

.absec-quote {
    --quoteIcon: 65px;
    --quoteWid: 874px;
    position: relative;
    max-width: calc(var(--quoteWid) + var(--quoteIcon));
    padding-left: var(--quoteIcon);
    margin-top: 120px;
}

.absec-quote::before {
    position: absolute;
    left: 0%;
    top: 0%;
    content: "\e90a";
    font-family: 'aad';
    font-size: calc(var(--quoteIcon) - 12px);
    line-height: 1;
    color: var(--gama);
}

.absec-pic {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--imgwid);
    height: 100%;
}

/*How*/
.termrow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.termcell {
    --termW: 355px;
    --termSmDiff: 66px;
    flex: 0 0 var(--termW);
    min-width: 0;
}

.termc-1 { flex: 0 0 calc(var(--termW) - var(--termSmDiff)); }

.termimg {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 200px;
    width: 100%;
    object-fit: contain;
    object-position: left bottom;
    margin-bottom: 20px;
}

.termimg img { max-height: 100%; width: auto; }

.termc-icon {
    --termIcon: 38px;
    flex: 0 0 var(--termIcon);
    align-self: center;
    width: var(--termIcon);
    font-size: var(--termIcon);
}

.termc-icon .icon-equals { font-size: 0.579em; }

/*Milestones*/
.milsec-line {
    width: 100%;
    height: 4px;
    background-color: var(--white);
    margin-top: 25px;
}

.milsec-l {
    --imgW: 210px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.milsec-i {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 25%;
    padding-top: 70px;
}

.milsec-i::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--imgW) / 2 - 2px);
    width: 4px;
    height: 73px;
    background-color: var(--white);
}

.mils-img {
    width: var(--imgW);
    border: 3px solid var(--white);
    border-radius: 30px;
}

.mils-year {
    align-self: flex-start;
    padding: 8px 11px;
    margin: 30px 0 20px;
    border-radius: 10px;
}

.mils-link { color: var(--white); text-decoration: underline; }
.mils-link:hover { color: var(--gama); }

/* Why - About */
.whyseccont ul {
    display: grid;
    margin: 0;
    padding-left: 0;
    list-style-type: none;
    gap: 15px;
}

.whyseccont li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
}

.whyseccont li::before {
    content: "-";
}

/*
** WE DO
*/

/*Hero - We Do*/
.hero-wed p {
    width: 1390px;
    max-width: 100%;
}

.hero-wed h1 {
    width: 1370px;
    max-width: 100%;
}

/*Work - We Do*/
.wimpsec-row { align-items: stretch; }

.wimpsec-h h2 {
    line-height: calc(var(--fsize) + 4px);
    width: 1255px;
    max-width: 100%;
    margin-bottom: 50px;
}

.wimpsec-h h2 span {
    display: block;
    font-family: 'playfd-sbi', serif;
    font-size: calc(var(--fsize) - 10px);
    /*
    font-size: calc(var(--fsize) - 40px);
    line-height: calc(var(--fsize) - 32px);
    */
    text-transform: none;
    margin-top: 4px; 
}


.wimpsec-h h2 img {
    display: inline;
    vertical-align: middle;
    transform: translateY(-11px); 
}

.wimpsec-h h2 strong { padding-left: 12px; }

/*Service Listing*/
section.servisec.sec100 { --padds: 80px; }

.servisec {
    position: sticky;
    top: 0;
    background: var(--white);
}

.servisec + .servisec {
    border-top: 1px solid var(--alpha);
}

.servi-row {
    --thisGap: 40px;
    --thisGap: 80px;
    --servLW: 500px;
    display: flex;
    /* grid-template-columns: 500px 1fr; */
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--thisGap);
}

.servi-l {
    flex: 0 0 var(--servLW);
    max-width: var(--servLW);
}

.servi-r {
    flex: 1 0 calc(100% - var(--servLW) - var(--thisGap));
    max-width: 1180px;
}

.servi-hr {
    width: 100%;
    height: 1px;
    border:0;
    background: var(--alpha);
}

.feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    gap: 40px 60px;
}

.feats-i h3 { letter-spacing: 0; }

.servi-l p {
    margin-top: 60px;
}

/*
** Contact Us
*/
section.section.cussec {
    --padds: 140px 0 60px;
    padding: var(--padds);
}

.cussec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 50px;
}

.cuspara {
    width: 100%;
    max-width: 791px;
    margin-bottom: 30px;
}

.cussec-form fieldset { display: none; }

.cuscont {
    display: grid;
    gap: 24px;
}

.cuscont a {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 30px;
    line-height: 1em;
    color: var(--white);
}

.cuscont a:hover { color: var(--gama); }

.cuscont a i {
    --fsize: 37px;
    width: 37px;
    font-size: var(--fsize);
    line-height: var(--fsize);
    color: var(--gama);
}

.cuscont .icon-mail::before { font-size: 0.86em; }
.cuscont .icon-pin::before { font-size: 1.1em; }

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.formcol-6 {
    flex: 1 0 calc(50% - 30px);
}

.formcol-12 {
    flex: 1 0 100%;
}

.formbtn { margin-top: 20px; }

.cusvid {
    position: relative;
    border-radius: var(--siteradius40);
    margin: 20px 0 50px;
    overflow: hidden;
}

.cusvid video {
    width: 100%;
}

.cusvid-ctrls {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 1, 74, 0.4);
}

[data-video="0"] .cusvid-ctrls { opacity: 1; }
[data-video="1"] .cusvid-ctrls { opacity: 0; }

/*
** WORK ARCHIVE / Listing
*/
.wopcta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wopcta .bttn {
    --btnsize: 150px;
    font-size: 80px;
    padding: 0 40px;
    border-radius: 30px;
}

.worplist {
    display: flex;
    flex-wrap: wrap;
    gap: 90px 60px;
}

.workpi {
    --workpiWid: calc(50% - 30px);
    flex: 1 0 var(--workpiWid);
    max-width: var(--workpiWid);
}

.workpi.workpi-lg {
    display: flex;
    flex: 1 0 100%;
    max-width: 100%;
    gap: 60px;
}

.workp-cont {
    padding-top: 20px;
}

.workpi-lg .workp-cont {
    --workpCWid: 312px;
    flex: 1 0 var(--workpCWid);
    max-width: var(--workpCWid);
    min-width: var(--workpCWid);
    padding-top: 100px;
}

/*Testimonials*/
.testimain { position: relative; }

.slick-initialized .slick-slide.testisl { display: inline-flex; }
.testislider .slick-track { display: flex; }

.testisl {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.testiwrap {
    width: 67.71vw;
    padding-left: 120px;
    margin-left: auto;
}

.testiimg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 67.71vw);
    height: 100%;
}

.testisl-p {
    margin-bottom: 40px;
}

.testisl-p::before {
    display: block;
    font-family: 'aad';
    content: "\e90a";
    font-size: 52px;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--gama);
}

.testisl-logo {
    margin-bottom: 20px;
}

.testi-ctrls {
    --size: 100px;
    --pos: 60px;
    position: absolute;
    bottom: var(--pos);
    right: var(--pos);
    display: flex;
    align-items: center;
    gap: 30px;
}

.testi-ctrls button {
    width: var(--size);
    height: var(--size);
    padding: 0;
    margin: 0;
    font-size: var(--size);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    vertical-align: top;
}

.testi-ctrls button:hover { color: var(--gama); }

.testi-ctrls i { vertical-align: top; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.prev-arrow i { transform: rotate(90deg); }
.prev-arrow:hover i { transform: rotate(90deg) translateY(5px); }
.next-arrow i { transform: rotate(-90deg) }
.next-arrow:hover i { transform: rotate(-90deg) translateY(5px); }

/*
** Work Single
*/
.hero-back {
    --size: 107px;
    position: absolute;
    top: 140px;
    right: 20px;
    width: var(--size);
    height: var(--size);
    font-size: 63px;
    line-height: calc(var(--size) + 7px);
    color: var(--alpha);
    text-align: center;
    border: 2px solid rgba(13, 0, 238, 0.2);
    outline: 3px solid var(--white);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0px 10px 15px rgba(13, 0, 238, 0.6);
    z-index: 9;
}

.hero-back:focus { outline: 2.5px solid var(--white); }

.workintro-wrap {
    width: 100%;
    max-width: 1180px;
}

.wmoresec-row {
    position: sticky;
    top: 0;
    grid-template-columns: 252px 1fr;
    align-items: stretch;
    height: 100vh;
}

.wmoresec-l {
    position: static;
    align-self: center;
}

.wmoresec-r {
    position: relative;
}

.wmorelist {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    will-change: transform;
}

.wmorei {
    --minw: 650px;
    --minw: 68.78vh;
    flex: 0 0 auto;
    width: min(70vw, var(--minw));
    width: min(63vw, var(--minw));
    overflow: hidden;
}

.wmorei-img { aspect-ratio:  1/1; }

.wmorei-cont a:hover { color: var(--gama); }

.worktpest { margin-top: 60px; }

/*Work Sections*/
.worksecs-wrap { display: grid; gap: 60px; }
.py-150 { --padds: 90px; padding: var(--padds) 0; }

/*Work Full Image*/
.workfmed-link { margin-top: 60px; }

/*Work Wide Content*/
.widecont-wrap {
    width: 100%;
    max-width: 1180px;
}

.workcont h2,
.workcont .h2,
.workcont h3,
.workcont .h3 {
    --fsize: 30px;
    font-family: 'gsf-md', sans-serif;
    line-height: calc(var(--fsize) + 10px);
    margin-bottom: 4px;
    color: var(--alpha);
}

/*Work Half Images*/
.halves-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.halves img { width: 100%; }

/*Work Full Tags*/
.worktags ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
    gap: 20px;
    margin-top: 15px;
}

.worktags li {
    padding: 12px 20px;
    margin: 0;
    color: var(--beta);
    border-radius: var(--siteradius);
    background-color: rgba(13, 0, 238, 0.1);
}

/*Work Img + Tags && Img + Cont*/
.wimgcont-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: flex-start;
}

.wimgcont-imglg .wimgcont-r {
    width: max(61.45vw, 50vw);
}

.wimgcont .worktags { padding-top: 90px; }
