@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
    font-family: 'Nueu Haas';
    src: url('/resources/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayMediu.ttf') format('truetype');
    letter-spacing: 1px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", 'Nueu Haas';
    color: white;
}

a {
    text-decoration: none;
    display: block;
}

ul,
li {
    list-style: none;
}

.left-heading {
    text-align: left;
}

html {
    /* background: radial-gradient(circle at center, #111, #000, #222, #111); */
    background-position: center center;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    width: 100%;
    max-width: 1600px;
    background-color: #111;
    margin: auto;
    overflow-x: hidden;
}

.section-padding {
    padding: 1rem 10.5rem;
}

.section-heading {
    text-align: center;
    margin: auto;
    font-size: 2rem;
    margin-bottom: 2rem;
}


/* .bg-black {
    background-color: #000;
} */

:root {
    --header-height: 5rem;
}


/* ***************** HEADER ********************** */

#nav {
    position: fixed;
    z-index: 5;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border 0.3s ease, height 0.3s ease, transform .5s ease;
    /* padding: 1rem 10rem; */
    justify-content: space-between;
    height: var(--header-height);
}

#nav.scrolled,
#navbottom {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* height: 4rem;
    border-bottom: 1px solid #dadada; */
}

#nav.hide {
    transform: translateY(-100%);
}

.logo img {
    width: 4rem;
}


/* ***************** MAIN NAVIGATION BAR *************** */

.navbar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.navbar .navtabs span {
    padding: 10px 15px;
    font-size: .85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 1s linear;
}

.navbar .navtabs span:hover a {
    color: #FFAF00;
}

.navbar .navtabs span:hover {
    color: #FFAF00;
}

.navbar .navtabs .dropdown ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    height: 100%;
    width: 100%;
}

.navbar .navtabs .dropdown {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 0;
    opacity: 0;
    left: 0;
    padding: 0 2rem;
    background: rgba(20, 20, 20, .9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, .2);
    z-index: 5;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    overflow: hidden;
    transition: height 1s ease, opacity 1s ease;
}

.navbar .navtabs:hover .dropdown {
    height: 3rem;
    opacity: 1;
}

.icon {
    display: flex;
    flex-wrap: wrap;
    transform: translateX(-14px);
}

.icon i {
    cursor: pointer;
    margin: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: none;
    font-size: 1.2rem;
    color: white;
    transition: .5s;
}

.icon i:hover {
    border: 1px solid white;
    background-color: #FFAF00;
    color: white;
}

.navbar a {
    transition: color .3s linear;
}

.navbar .navtabs .dropdown a:hover {
    color: #FFAF00;
}


/* **************** MAIN NAVIGATIONBAR ENDS ********************* */

.left-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menu {
    --s: 2rem;
    --c: #fff;
    height: var(--s);
    aspect-ratio: 1;
    border: none;
    padding: 0;
    border-inline: calc(var(--s)/2) solid #0000;
    box-sizing: content-box;
    --_g1: linear-gradient(var(--c) 20%, #0000 0 80%, var(--c) 0) no-repeat content-box border-box;
    --_g2: radial-gradient(circle closest-side at 50% 12.5%, var(--c) 95%, #0000) repeat-y content-box border-box;
    background: var(--_g2) left var(--_p, 0px) top, var(--_g1) left calc(var(--s)/10 + var(--_p, 0px)) top, var(--_g2) right var(--_p, 0px) top, var(--_g1) right calc(var(--s)/10 + var(--_p, 0px)) top;
    background-size: 20% 80%, 40% 100%;
    position: relative;
    clip-path: inset(0 25%);
    -webkit-mask: linear-gradient(90deg, #0000, #000 25% 75%, #0000);
    cursor: pointer;
    transition: background-position 1s var(--_s, .75s), clip-path 0s var(--_s, .75s);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

#menu:before,
#menu:after {
    content: "";
    position: absolute;
    border-radius: var(--s);
    inset: 40% 0;
    background: var(--c);
    transition: transform 1s calc(.75s - var(--_s, .75s));
}

#menu:checked {
    clip-path: inset(0);
    --_p: calc(-1*var(--s));
    --_s: 0s;
}

#menu:checked:before {
    transform: rotate(45deg);
}

#menu:checked:after {
    transform: rotate(-45deg);
}

#menu:focus-visible {
    clip-path: none;
    -webkit-mask: none;
    border: none;
    outline: 2px solid var(--c);
    outline-offset: 5px;
}

#navbottom {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    height: 0;
    width: 80%;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    transition: height .2s;
    overflow: hidden;
    z-index: -1;
    display: flex;
    justify-content: space-around;
}

.animated-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 1px;
    background-color: #dadada;
    width: 0%;
    transform: translateX(-50%);
}

.nav-sublinks {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    margin-top: calc(var(--header-height));
}

#navbottom .nav-sublinks .sublink-section .sublinks {
    overflow: hidden;
    margin-bottom: 1rem;
}

#navbottom .nav-sublinks .sublink-section .sublinks span {
    display: none;
}

#navbottom .nav-sublinks .sublink-section h5 span {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    overflow: hidden;
    text-transform: uppercase;
}

.sublink-section ul {
    list-style: none;
    padding: 0;
}

.sublink-section ul li {
    margin-bottom: 5px;
    overflow: hidden;
}

.sublink-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.sublink-section ul li a:hover {
    color: #FFAF00;
}

.sublink-section ul .icon {
    display: flex;
    flex-wrap: wrap;
    transform: translateX(-14px);
}


/* .sublink-section ul .icon i {
    cursor: pointer;
    margin: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: none;
    font-size: 1.2rem;
    color: white;
    transition: .5s;
} */


/* .sublink-section ul .icon i:hover {
    border: 1px solid white;
    background-color: #FFAF00;
    color: white;
} */


/********************** NAVIGATION BUTTON ***************/

nav button {
    display: flex;
    align-items: center;
    width: 8.5rem;
    border-radius: 50px;
    font-size: .85rem;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    height: 2.5rem;
    justify-content: center;
    padding-left: 15px;
    position: relative;
    background: transparent;
    cursor: pointer;
}

nav button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background-color: #FFAF00;
    border-radius: 50px;
    z-index: -1;
    opacity: 1;
    transition: width .5s ease-in-out, opacity 1s ease-in-out;
}

nav button span {
    transition: transform .5s linear;
}

nav button:hover span {
    transform: translateX(-10px);
}

nav button:hover::after {
    width: 34%;
}


/* Transition effects for SVG */

nav button svg path {
    transition: opacity .3s ease-in-out;
}

nav button:hover #icon-path {
    opacity: 0;
}

nav button:hover #fire-icon-path {
    opacity: 1;
}

nav button svg {
    background-color: transparent;
    height: 100%;
    margin-left: .5rem;
    border-radius: 20px;
    padding: 10px;
}


/*  main page */

#main {
    z-index: 1;
    width: 100%;
    height: 100%;
}


/* ***************** HERO SECTION STARTS ****************/

.hero {
    height: 100vh;
    margin: auto;
    max-height: 700px;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* position: relative; */
    width: 100%;
    max-width: 1600px;
    margin: auto;
    /* position: fixed; */
    /* width: 100rem; */
    /* left: 0%; */
    /* transform: translateX(-50%); */
    z-index: 1;
    background: #111;
    transition: transform 0.5s ease-out;
    will-change: transform;
}

.hero h1,
.hero p,
.hero .headline {
    z-index: 3;
    position: relative;
}

.hero h1 {
    font-size: 8rem;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 8rem;
}

.hero p {
    text-align: center;
    font-weight: 400;
    max-width: 600px;
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
}

.hero h1 svg {
    height: 6rem;
    width: 6rem;
    background-color: #FFAF00;
    border-radius: 50%;
    animation: morph 5s infinite;
}

.hero h1 #line {
    display: none;
}

.hero .headline {
    width: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.hero .headline span {
    padding: 10px 15px;
    border: 1px solid white;
    color: white;
    border-radius: 25px;
    background-color: #ffae003d;
    font-size: 1rem;
}

.hero .client-section {
    position: absolute;
    bottom: 2%;
    width: 50%;
    margin: 2rem auto 0;
    white-space: nowrap;
    padding: 1.5rem;
    overflow: hidden;
}

.hero .client-section .move {
    display: inline-block;
    animation: slideLeft 40s linear infinite;
}

.hero .client-section .move img {
    height: 2.5rem;
    margin: 0 2rem;
}

.hero .client-section .move .sm-img {
    height: 3.5rem;
}

#left-blur,
#right-blur {
    height: 100%;
    width: 20%;
    position: absolute;
    top: 0;
    z-index: 2;
}

#left-blur {
    left: 0;
    background: linear-gradient(to right, #111, transparent);
}

#right-blur {
    right: 0;
    background: linear-gradient(to right, transparent, #111);
}


/* ***************** HERO SECTION ENDS ****************/


/* ***************** PAGE CONTENT STARTS ****************/

#page2 {
    width: 100%;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
    margin-top: 5rem;
    /* background: rgba(1, 1, 1, 0.85); */
    /* background: rgba(1, 1, 1, 0.8); */
    /* margin-top: 100px; */
    /* transform: translateY(700px);
    transform: translate3d(0, 700px, 0);
    will-change: transform; */
    /* background-color: #111; */
    /* height: 500vh;
    height: 100vh;
    max-height: 700px; */
}

.video-section {
    padding-top: 0 !important;
}

.video-section .background-video {
    position: relative;
    max-width: 950px;
    margin: auto;
    /* margin-top: 3rem; */
}

.video-section .background-video::before {
    position: absolute;
    content: '';
    width: 60%;
    height: 95%;
    background-color: #fff;
    top: 5px;
    left: 0;
    border-radius: 45%;
    background: radial-gradient( rgba(255, 255, 255, 0.1), rgba(100, 100, 193, 0.5), rgba(100, 133, 200, 0.6), transparent);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(100, 100, 193, 0.5) 0px 40px 100px -20px, rgba(0, 0, 0, 0.3) 0px 55px 63px -83px, rgba(100, 133, 200, 0.6) 0px -60px 100px -20px, rgba(0, 0, 0, 0.3) 0px -30px 60px -30px;
    z-index: -1;
}

.video-section .background-video video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5);
    border-radius: 25px;
    z-index: -1;
}

.video-section .background-video video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background-color: blue;
    z-index: 1;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.text-overlay h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.text-overlay p {
    font-size: 1.2rem;
    margin-top: 10px;
    line-height: 1.5;
    color: #e0e0e0;
}

.video-section-section .background-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5);
    z-index: -1;
}

.brief {
    width: 100%;
    margin-top: 3rem;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.brief::before {
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #909090;
}

.brief .section-heading h3 {
    margin-bottom: 3rem;
    font-weight: 500;
}

.brief .brief-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    justify-content: space-between;
    gap: 1rem;
}

.brief-left p,
.brief-left h4 {
    max-width: 450px;
    text-align: justify;
}

.brief-left p {
    font-size: .8rem;
    font-weight: 200;
}

.brief-left h4 {
    font-size: 1.15rem;
    font-weight: 400;
}

.image-container {
    position: relative;
    min-width: 300px;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #222, #444);
    margin: 2rem 0;
    transition: transform 0.4s ease-in-out;
}

.image-container:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.05);
}

.imgarray img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.imgarray img.active {
    opacity: 1;
    transform: scale(1.05);
}

.brief-right .Q-bank {
    border-bottom: 1px solid #dadada;
}

.brief-right .Q-bank .Qs {
    position: relative;
    /* background: #454545; */
    padding-top: 1rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.brief-right .Q-bank .Qs::before {
    content: '';
    width: 100%;
    height: 1px;
    opacity: 0.5;
    background-color: #dadada;
    position: absolute;
    top: 0;
    transition: opacity .5s linear, background-color .5s linear;
}

.brief-right .Q-bank .Qs:hover::before {
    opacity: 1;
    height: 2px;
    background-color: #fff;
}

.brief-right .Q-bank .Qs h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-left: 1px;
}

.brief-right .Q-bank .Qs a .pop {
    height: 7.5rem;
    width: 7.5rem;
    border-radius: 50%;
    background-color: #ffae00;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    padding: 5px;
    opacity: 0;
    scale: 0;
    transition: opacity .1s ease, scale .1s ease;
}

@media screen and (max-width: 886px) {
    .brief-right .Q-bank .Qs a .pop{
        opacity: 1;
        scale: 1;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}

.overview {
    width: 100%;
    margin-top: 5rem;
}

.overview .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    width: 100%;
    gap: 1rem;
}

.overview .overview-grid .boxes {
    width: 100%;
    text-align: center;
    background: #000;
    border-radius: 20px;
    padding: 10px;
    box-shadow: rgba(255, 255, 255, 0.3) 0px 1px 1px 0px inset, rgba(224, 179, 83, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.overview .overview-grid .boxes .icon-box {
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 2rem;
    border-radius: 50%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 10px;
    width: min-content;
    background-color: transparent;
    transition: background-color .75s ease;
}

.overview .overview-grid .boxes:hover .icon-box {
    background-color: #FFAF00;
}

.overview .overview-grid .boxes .icon-box i {
    font-size: 2rem;
    color: #FFAF00;
    transition: color .75s ease;
}

.overview .overview-grid .boxes:hover .icon-box i {
    color: white;
}

.overview .overview-grid .boxes .text {
    margin: 1.75rem 0 1.2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.overview .overview-grid .boxes .para {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.842);
}


#playback {
    margin-top: 5rem;
    /* height: 100vh;
    max-height: 800px; */
    height: auto;
    width: 100%;
    background-color: #111;
    position: relative;
    /* background-image: url(/playback.jpg);
    background-position: center bottom;
    background-size: cover; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#playback video {
    height: auto;
    width: 100%;
    /* position: absolute; */
    object-fit: cover;
    opacity: 1;
    z-index: 99;
}


.glowing-cards {
    position: relative;
    margin-top: 5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.glowing-cards .gcp{
    text-align: justify;
}

.glowing-cards .service-card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
}

.glowing-cards .card {
    position: relative;
    width: 100%;
    height: 450px;
    background: rgba(45, 45, 45, 1);
    border-radius: 20px;
    overflow: hidden;
    --x: 50%;
    --y: 50%;
}

.glowing-cards .card::before {
    content: '';
    position: absolute;
    top: calc(var(--y) - 200px);
    /* Adjust for centering */
    left: calc(var(--x) - 200px);
    /* Adjust for centering */
    height: 400px;
    width: 400px;
    border-radius: 50%;
    transition: 0.1s ease-out;
    pointer-events: none;
    opacity: 0;
    transition: top 0s ease, left 0s ease, opacity .3s ease;
}

.glowing-cards .card:hover::before {
    opacity: 1;
}

.glowing-cards #card1::before {
    background: radial-gradient(circle, red, transparent, transparent);
}

.glowing-cards #card2::before {
    background: radial-gradient(circle, green, transparent, transparent);
}

.glowing-cards #card3::before {
    background: radial-gradient(circle, yellow, transparent, transparent);
}

.glowing-cards #card4::before {
    background: radial-gradient(circle, purple, transparent, transparent);
}

.glowing-cards #card5::before {
    background: radial-gradient(circle, orangered, transparent, transparent);
}

.glowing-cards #card6::before {
    background: radial-gradient(circle, blue, transparent, transparent);
}

.glowing-cards .card::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 18px;
    background: rgba(45, 45, 45, .75);
}

.glowing-cards .card .card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.glowing-cards .card .card-inner i {
    color: #FFAF00;
    font-size: 3rem;
    padding: 2rem;
    border-radius: 50%;
    margin-top: 2rem;
}

.glowing-cards .card .card-inner h3 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 0 10px;
}

.glowing-cards .card .card-inner p {
    font-size: 1.15rem;
    margin-top: 1rem;
    padding: 0 10px;
    font-weight: 400;
}

.process {
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.process .process-brief::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 100%;
    height: 1px;
    border-radius: 2px;
    background-color: #dadada;
}

.process .process-brief {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 2rem;
    position: relative;
}

.process .process-brief .l-w-320 {
    min-width: 320px;
    padding: 0 10px;
}

.process .process-brief .l-w-320 a {
    width: max-content;
    margin: auto;
}

.process .process-brief .l-w-320 p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.buttons {
    margin-top: 50px;
    text-align: center;
    border-radius: 30px;
}

.buttons svg {
    display: none;
}

.blob-btn {
    z-index: 1;
    position: relative;
    padding: 20px 46px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #FFAF00;
    font-size: 16px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    transition: all .5s ease;
}

.blob-btn:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.blob-btn:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: calc(2px * 1.5);
    top: calc(2px * 1.5);
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
}

.blob-btn:hover {
    color: #FFFFFF;
    border-radius: 30px;
    background: #ffaf00;
}

.blob-btn:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
}

.blob-btn i {
    color: #FFAF00;
    font-size: 1.2rem;
    transition: all .4s ease;
}

.blob-btn:hover i {
    color: white;
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #ffffff;
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}

.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: calc(100% / 4);
    height: 100%;
    background: #FFAF00;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

@supports (filter: url('#goo')) {
    .blob-btn__blob {
        transform: translate3d(0, 150%, 0) scale(1.4);
    }
}

.blob-btn__blob:nth-child(1) {
    left: calc((1 - 1) * (120% / 4));
    transition-delay: calc((1 - 1) * 0.08s);
}

.blob-btn__blob:nth-child(2) {
    left: calc((2 - 1) * (120% / 4));
    transition-delay: calc((2 - 1) * 0.08s);
}

.blob-btn__blob:nth-child(3) {
    left: calc((3 - 1) * (120% / 4));
    transition-delay: calc((3 - 1) * 0.08s);
}

.blob-btn__blob:nth-child(4) {
    left: calc((4 - 1) * (120% / 4));
    transition-delay: calc((4 - 1) * 0.08s);
}

.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}

@supports (filter: url('#goo')) {
    .blob-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.4);
    }
}

.process .process-brief img {
    width: 100%;
    height: auto;
    margin: 1rem auto 2.5rem;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.process .process-brief #flowimage2 {
    display: none;
}

.process .process-brief .brief-text>p {
    font-size: 1.5rem;
    text-align: justify;
    margin-bottom: 3rem;
}

.process .process-brief .brief-text>p span {
    display: inline-block;
    float: left;
    width: 200px;
    height: 50px;
    font-size: .85rem;
    color: #a09f9f;
}

.process .process-brief .brief-text {
    padding: 0 10px;
}

.process .process-brief .brief-text h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: none;
}

.service {
    width: 100%;
    padding: 1rem 0;
    border-top: 2px solid rgb(81, 81, 81);
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
}

.service:hover {
    border-top: 2px solid rgb(255, 255, 255);
}

.service i {
    position: absolute;
    top: 1rem;
    right: 0;
    font-size: 1.5rem;
    transition: transform .3s linear;
}

.service.active i {
    transform: rotate(180deg);
    transition: transform .3s linear;
}

.service .service-head {
    font-size: 2.25rem;
    font-weight: 500;
}

.service .flex {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    margin: 2rem 0;
}

.service .flex p {
    font-size: 1rem;
    padding: 7px 18px;
    border: 1px solid;
    border-radius: 50px;
    cursor: pointer;
}

.workflow {
    border-bottom: 2px solid #fff;
}

.workflow-content .step-container {
    display: none;
}

.workflow-content .step-container .step {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 0 3rem;
    column-gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all .3s linear;
}

.workflow-content .step-container .overlay {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #222c;
    z-index: -1;
    transform: translateY(-100%);
    transition: all .3s linear;
}

.workflow-content .step-container .step:hover .overlay {
    transform: translateY(0);
}

.workflow-content .step-container .step::after {
    content: '';
    width: 99.9999%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    background-color: #5c5c5c7c;
    z-index: -1;
    transform: translateX(-50%);
    transition: all .5s linear;
}

.workflow-content .step-container .step:hover::after {
    background-color: white;
}

.workflow-content .step-container .step h4 {
    min-width: 280px;
    font-size: 1.5rem;
    font-weight: 400;
    transition: all .3s linear;
}

.workflow-content .step-container .step:hover h4 {
    padding-left: 10px;
}

.workflow-content .step-container .step p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify;
}

.eyeview {
    width: 100%;
    position: relative;
    background-color: #000;
    padding-bottom: 4rem;
}

.eyeview p {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #FFAF00;
    width: 100%;
    text-align: center;
}

.eyeview .eye-container {
    width: 100%;
    height: 100vh;
    max-height: 800px;
    /* background: radial-gradient(circle at center, blue, purple); */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    perspective: 1000px;
    position: relative;
}

.eyeview .eye-container .buttons {
    margin-top: 0;
}

.eyeview .eye-container .call {
    font-size: 4rem;
    font-weight: 500;
}

.eyeview .eye-container .card {
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffaf00;
    transform-style: preserve-3d;
    transition: transform 0.9s ease;
    transform: perspective(5000px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg));
    position: relative;
    border-radius: 25px;
    /* box-shadow: rgba(255, 255, 255, 0.282) 0px 1px 1px 0px inset, rgba(131, 99, 48, 0.25) 0px 50px 100px -20px, rgba(97, 97, 97, 0.3) 0px 30px 60px -30px; */
    /* box-shadow: rgba(255, 255, 255, 0.3) 0px 19px 38px, rgba(255, 255, 255, 0.22) 0px 15px 12px; */
    box-shadow: rgba(255, 255, 255, 0.56) 0px 22px 70px 4px;
}

.eyeview .eye-container .card .eye-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.eyeview .eye-container .card .eye {
    position: relative;
    height: 135px;
    width: 80px;
    background-color: white;
    --interactive-quotes-gradient: linear-gradient(70.41deg, #5d3730 -52%, #8b5f4d 26.88%, #343357 75%);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: perspective(5000px);
}

.eyeview .eye-container .card .pupil {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    transition: all .5s ease;
    transform: perspective(5000px) translateZ(-5px);
}

.smile-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    /* Adjusted width to match the updated SVG width */
    height: 120px;
    /* Adjusted height to match the updated SVG height */
}

.smile {
    fill: none;
    stroke: white;
    stroke-width: 8;
    stroke-linecap: round;
}

#eye-btn {
    padding: 10px 20px;
    background-color: #FFAF00;
    border-radius: 20px;
}

.get-in-touch-section {
    position: relative;
    z-index: 1;
    color: #000;
    padding: 4rem 6rem;
}

.get-in-touch-section .dark-bg {
    position: absolute;
    background-color: #232427;
    width: 100%;
    height: 350px;
    left: 0;
    top: 0;
    z-index: -2;
    padding-top: 80px
}

.get-in-touch-section:before {
    background-image: url(../resources/images/map-pattern.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1
}

.get-in-touch-section.dark-background h2 {
    color: black
}

.get-in-touch-section.dark-background span {
    color: black
}

.get-in-touch-section .contact-form {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
    position: relative;
}

.get-in-touch-section .form-section,
.get-in-touch-section .contact-num {
    padding: 20px;
}

.get-in-touch-section .form-section {
    flex: 1;
}

.get-in-touch-section .contact-num {
    width: 300px;
    background-color: #ffaf00;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.get-in-touch-section .contact-num h3 {
    margin-bottom: 10px;
    text-align: center;
}

.get-in-touch-section .info-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.get-in-touch-section .info-tab i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.get-in-touch-section .info-tab p {
    font-size: 1.5rem;
}

.get-in-touch-section form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.get-in-touch-section label {
    width: 100%;
    margin: 10px 0 5px;
    color: black;
}

.get-in-touch-section .form-group {
    flex: 1;
    min-width: 250px;
    margin-right: 10px;
    margin-bottom: 20px;
    position: relative;
}

.get-in-touch-section .form-group input,
.get-in-touch-section .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ffaf00;
    outline: none;
    background: none;
    color: #000;
}

.get-in-touch-section .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.get-in-touch-section .required {
    color: red;
}

.default-btn {
    color: black;
    outline: none;
    border: 1px solid #ffaf00;
    padding: 10px 20px;
    font-size: 1rem;
    width: 120px;
    border-radius: 20px;
    background: #fff;
    position: relative;
    transition: all .5s ease;
    z-index: 1;
    cursor: pointer;
}

.default-btn a {
    color: #ffaf00;
    transition: all .5s ease;
}

.default-btn:hover a {
    color: #ffffff;
}

.default-btn:hover {
    color: #ffffff;
}

.default-btn::before {
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 20px;
    background-color: #ffaf00;
    position: absolute;
    top: 0;
    left: 0;
    scale: 0;
    transition: all .5s ease;
    z-index: -1;
}

.default-btn:hover::before {
    scale: 1;
}

.career-hero {
    width: 100%;
    height: auto;
}

.career-hero img {
    width: 100%;
    aspect-ratio: 3/1.5;
    height: auto;
}

.career-hero .bg-video {
    position: relative;
    width: 100%;
    aspect-ratio: 2/1;
    height: auto;
    overflow: hidden;
}

.career-hero .bg-video video {
    position: absolute;
    width: 100%;
    height: auto;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.head-txt {
    margin: 5rem 0;
    width: 100%;
}

.head-txt .intro-txt {
    margin: auto;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.head-txt .intro-txt h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.head-txt .intro-txt p {
    line-height: 120%;
    letter-spacing: 1px;
}

.why-join-us {
    width: 100%;
    margin-bottom: 5vw;
}

.why-join-us .join-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    place-content: center;
    align-items: center;
    gap: 50px;
}

.why-join-us .join-grid .join-t,
.why-join-us .join-grid .join-i {
    width: 100%;
    min-height: fit-content;
    overflow: hidden;
    text-align: justify;
}

.why-join-us .join-grid .join-t h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.why-join-us .join-grid .join-t p,
.why-join-us .join-grid .join-t ul li {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: .5rem;
}

.why-join-us .join-grid .join-i img {
    width: 100%;
    height: auto;
    margin: auto;
    border-radius: 20px;
}

.career-form .section-heading p {
    max-width: 700px;
    font-size: 1rem;
    margin: auto;
    line-height: 150%;
}

.career-form .section-heading p a {
    display: inline;
    color: beige;
    transition: all .5s ease;
}

.career-form .section-heading p a:hover {
    color: #ffae00;
}


/* footer */

footer {
    background-color: #000;
    margin-top: 4rem;
    padding: 5rem 10.5rem 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: rgba(255, 255, 255, 0.3) 0px 1px 1px 0px inset, rgba(224, 179, 83, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.footer-top {
    width: 100%;
    padding-bottom: 3rem;
    border-bottom: 1px solid #dadada;
}

.footer-top .footer-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    justify-content: center;
    gap: 2rem;
}

.footer-top .footer-row .footer-box {
    width: 100%;
}

.footer-top .footer-row .footer-box .tagline {
    margin: 1rem 0;
    font-size: .9rem;
}

.footer-top .footer-row .footer-box h5 {
    font-size: 1.2rem;
    margin: 1rem 0;
    font-weight: 500;
}

.footer-top .footer-row .footer-box ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: .75rem;
}

.footer-top .footer-row .footer-box ul li i {
    font-size: 1rem;
    margin-right: .5rem;
}

.footer-top .footer-row .footer-box ul li a {
    font-size: .9rem;
    transition: all .3s ease;
}

.footer-top .footer-row .footer-box ul li a:hover {
    color: #FFAF00;
}

.footer-top .footer-row .footer-box ul li p {
    font-size: .9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    row-gap: .5rem;
}

.footer-bottom .bot-link {
    min-width: 300px;
}

.footer-bottom * a {
    display: inline;
    color: #FFAF00;
}

.footer-bottom h6 {
    font-size: .9rem;
    font-weight: 400;
}


/* ***************** PAGE CONTENT ENDS ****************/


/* ***************** CONTACT US PAGE STYLING ********** */

.mapouter {
    position: relative;
    top: var(--header-height);
    text-align: right;
    height: 350px;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 350px;
    width: 100%;
}

.contact-section {
    position: relative;
    z-index: 1;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 5rem;
}

.contact-section .dots {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../resources/images/bg-dots.png) 0 0 repeat;
    z-index: -1;
    opacity: .2;
}

.contact-section .section-heading p {
    font-size: 1.25rem;
    margin-top: 1rem;
    padding: 10px;
    margin: auto;
    max-width: 600px;
    width: 100%;
}

.contact-section .contact-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-section .contact-wrapper .address {
    width: 100%;
}

.contact-section .contact-wrapper .address span {
    color: #ffaf00;
}

.contact-section .contact-wrapper .address h3 {
    font-size: 1.85rem;
    line-height: 120%;
    margin-bottom: 1rem;
}

.contact-section .contact-wrapper .address p {
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1rem;
    max-width: 520px;
    text-align: justify;
}

.contact-section .contact-wrapper .address h4 {
    font-size: 1.1rem;
    line-height: 150%;
    font-weight: 400;
}

.contact-section .contact-wrapper .address h5 {
    font-size: 1.1rem;
    line-height: 150%;
    margin-bottom: 1rem;
    font-weight: 400;
}

.message-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-row.row {
    flex-direction: row;
}

.form-row #name,
.form-row #email {
    width: 48%;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    color: #000;
}

.form-row #name:focus,
.form-row #email:focus,
.form-row .message:focus {
    border-color: #ffae00;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 157, 0, 0.605);
}

.form-row .message {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    resize: none;
    color: black;
}

.form-row #form-messages {
    margin-top: 15px;
    font-size: 14px;
}

.founder {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #00000070;
}

.founder .message-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 30px 0;
}

.founder .message-wrapper .message .name {
    width: fit-content;
    margin: auto;
    text-align: right;
    margin-bottom: 2rem;
}

.founder .message-wrapper .message .name h3 {
    font-weight: 400;
    color: #ffae00;
}

.founder .message-wrapper .message p {
    margin-bottom: .75rem;
    text-align: justify;
    font-weight: 400;
}

.founder-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-img img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: rgba(255, 255, 255, 0.2) 0px 7px 15px 0px; */
}


.tcpp-container{
    max-width: 800px;
    width: 100%;
    margin: auto;
    margin-top: calc(var(--header-height) + 6rem);
}

.tcpp-container h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.tcpp-container .tcpp-head{
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.tcpp-container p{
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 140%;
    text-align: justify;
}

.tcpp-container ul{
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 140%;
    text-align: justify;

}

.tcpp-container ul li{
    list-style: disc;
    margin-left: 20px;
}

/* **************** CUSTOM ANIMATIONS ************************/

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* *********************** RESPONSIVE STYLES *********************** */

@media screen and (max-width: 1250px) {
    html {
        font-size: 90%;
    }
    .section-padding {
        padding: 1rem 9rem;
    }
    .process .process-brief #flowimage1 {
        display: none;
    }
    .process .process-brief #flowimage2 {
        display: block;
    }
    .process .process-brief {
        flex-direction: column-reverse;
    }
    .process .process-brief .brief-text h2 {
        display: block;
    }
}

@media screen and (max-width: 1025px) {
    .section-padding {
        padding: 1rem 6rem;
    }
    footer {
        padding: 5rem 6rem 0;
    }
    .hero h1 {
        font-size: 6rem;
        line-height: 6rem;
    }
    .hero h1 svg {
        height: 4.5rem;
        width: 4.5rem;
    }
    .overview .overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .process {
        margin-bottom: 3rem;
    }
    /* #playback {
        height: 90vh;
        max-height: 550px;
    } */
}

@media screen and (max-width:800px) {
    .section-padding {
        padding: 1rem 3rem;
    }
    footer {
        padding: 5rem 3rem 0;
    }
    #menu {
        display: block;
    }
    .navbar {
        display: none;
    }
    nav {
        padding: .5rem 1rem;
    }
    .logo img {
        width: 4rem;
    }
    #navbottom {
        width: 100%;
    }
    .nav-sublinks {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        justify-content: center;
        width: 100%;
        padding: 0 30px;
        overflow: scroll;
    }
    .text-overlay {
        width: 80%;
    }
    .brief-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        column-gap: 1rem;
    }
    .glowing-cards .card {
        height: auto;
        padding-bottom: 3rem;
    }
    .get-in-touch-section .info-tab p {
        font-size: 1.25rem;
    }
    .get-in-touch-section .contact-form {
        flex-direction: column;
    }
    .get-in-touch-section .contact-num {
        width: 100%;
    }
    /* #playback {
        height: 70vh;
        max-height: 430px;
    } */
}

@media screen and (max-width: 700px) {
    .hero h1 {
        font-size: 4rem;
        line-height: 4rem;
    }
    .hero h1 svg {
        height: 3rem;
        width: 3rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero .client-section {
        position: absolute;
        bottom: 10%;
    }
}

@media screen and (max-width: 550px) {
    #icon-button {
        display: none;
    }
    .text-overlay {
        padding: 10px;
    }
    .text-overlay h1 {
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 120%;
        letter-spacing: 0px;
    }
    .text-overlay p {
        font-size: .9rem;
        line-height: 120%;
        color: #e0e0e0;
    }
    .brief-left {
        grid-template-columns: 1fr;
    }
    .vdoplayer .playicon {
        padding: 1rem;
    }
    .vdoplayer .playicon i {
        font-size: 1.5rem;
    }
    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .service .service-head {
        font-size: 1.5rem;
    }
    .service .flex {
        margin: 1rem 0;
    }
    .service .flex p {
        font-size: .8rem;
    }
    .process .process-brief .brief-text>p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .process .process-brief .brief-text>p span {
        width: 100%;
        height: 30px;
    }
    .workflow-content .step-container .step h4 {
        font-size: 1.25rem;
    }
    .workflow-content .step-container .step {
        flex-direction: column;
        row-gap: 1rem;
    }
    .blob-btn {
        padding: 10px 26px;
        font-size: 15px;
    }
    .blob-btn i {
        font-size: 16px;
    }
    .eyeview .eye-container .call {
        font-size: 2rem;
    }
    .eyeview p {
        font-size: 1.2rem;
    }
    .get-in-touch-section {
        padding: 4rem 3rem;
    }
    .get-in-touch-section form {
        gap: 1rem;
    }
    .footer-bottom {
        padding: 1rem 0;
    }
    .footer-top .footer-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media screen and (max-width: 450px) {
    .hero h1 #line {
        display: initial;
    }
    .section-padding {
        padding: 1rem 1rem;
    }
    footer {
        padding: 3rem 2rem 0;
    }
    .get-in-touch-section {
        padding: 4rem 1rem;
    }
    .hero h1 {
        font-size: 3rem;
        line-height: 3rem;
    }
    .hero h1 svg {
        height: 2.5rem;
        width: 2.5rem;
    }
    .glowing-cards .card .card-inner h3 {
        font-size: 1.5rem;
    }
    .glowing-cards .card .card-inner p {
        font-size: 1rem;
    }
    .brief-left p {
        font-size: .9rem;
    }
}

@media screen and (max-width: 350px) {
    .hero{
        height: 89vh;
    }
    .hero .headline .flex {
        gap: 5px;
    }
    .hero .headline span {
        padding: 7px 9px;
        border: 1px solid white;
        color: white;
        border-radius: 25px;
        background-color: #ffae003d;
        font-size: .8rem;
    }
    .brief .brief-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .image-container {
        min-width: 280px;
        width: 100%;
    }
    .process .process-brief .l-w-320 {
        min-width: 250px;
        padding: 0 10px;
    }
    .eyeview .eye-container .card {
        width: 270px;
        height: 285px;
    }
    .footer-bottom .bot-link {
        min-width: 250px;
    }
}