*,
:after,
:before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif
}

img {
    height: auto
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%
}

body {
    box-sizing: border-box;
    font-family: Montserrat, sans-serif
}

body .container {
    max-width: 127.5rem !important
}

@media screen and (width<=1440px) {
    body .container {
        max-width: 99.5rem !important
    }
}

html,
body {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0
}

html.has-scroll-smooth {
    overflow: hidden
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.has-scroll-smooth body {
    overflow: hidden
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh
}

[data-scroll-direction=horizontal] [data-scroll-container] {
    white-space: nowrap;
    height: 100vh;
    display: inline-block
}

[data-scroll-direction=horizontal] [data-scroll-section] {
    vertical-align: top;
    white-space: nowrap;
    height: 100%;
    display: inline-block
}

.c-scrollbar {
    transform-origin: 100%;
    opacity: 0;
    width: 11px;
    height: 100%;
    transition: transform .3s, opacity .3s;
    position: absolute;
    top: 0;
    right: 0
}

.c-scrollbar:hover {
    transform: scaleX(1.45)
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
    opacity: 1
}

[data-scroll-direction=horizontal] .c-scrollbar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    transform: scaleY(1)
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
    transform: scaleY(1.3)
}

.c-scrollbar_thumb {
    opacity: .5;
    width: 7px;
    cursor: -webkit-grab;
    cursor: grab;
    background-color: #000;
    border-radius: 10px;
    margin: 2px;
    position: absolute;
    top: 0;
    right: 0
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
    bottom: 0;
    right: auto
}

.nav {
    opacity: 1;
    z-index: 100;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    margin: auto;
    padding: 2rem 16%;
    font-size: 1.4em;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate(0)
}

.nav .logo {
    cursor: pointer;
    align-items: center;
    font-size: 1.4em;
    font-weight: 350
}

.nav .logo img {
    width: 4em
}

.nav .menu {
    justify-content: space-between;
    align-items: center;
    font-weight: 450;
    display: flex
}

.nav .menu a {
    cursor: pointer;
    color: #000;
    letter-spacing: .5px;
    margin: 5px 20px;
    text-decoration: none;
    position: relative
}

.nav .menu a:after {
    content: "";
    background-color: #ef0d33;
    width: 0;
    height: 3px;
    transition: all .5s;
    position: absolute;
    bottom: -6px;
    left: 0
}

.nav .menu a:hover:after {
    width: 100%
}

.nav .join-us-btn a {
    cursor: pointer;
    color: #fff;
    background: #000;
    border-style: none;
    margin-right: 0;
    padding: .6em 1em;
    text-decoration: none;
    transition: all .3s ease-in-out;
    font-size: 1em !important
}

.nav .join-us-btn a:hover {
    background: #ec153a
}

.nav .join-us-btn a:hover:after {
    width: 0%
}

.mobile-menu,
.mobile-nav {
    display: none
}

@keyframes zoom {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    to {
        opacity: 1
    }
}

@media (width<=600px) {
    .join-us-btn button {
        margin-top: 0
    }

    .mobile-nav {
        z-index: 9999;
        background: #fff;
        justify-content: space-between;
        height: 6.5em;
        transition: all .3s ease-in-out;
        display: flex;
        top: -2px;
        left: 0;
        position: sticky !important
    }

    .mobile-nav .logo img {
        width: 6em;
        margin: 2em;
        transition: all .3s ease-in-out
    }

    .mobile-nav .toggle-div a {
        text-decoration: none;
        transition: all .3s ease-in-out
    }

    .mobile-nav .toggle-div img {
        width: 3em;
        margin: 2em;
        transition: all .3s ease-in-out
    }

    .nav {
        display: none
    }

    .mobile-menu.open {
        display: block
    }

    .mobile-menu {
        z-index: 2147483647;
        padding: min(30vh, 10erm) 2em;
        backdrop-filter: blur(5rem);
        z-index: 9999;
        background: #e9ecef3d;
        transition: all .3s ease-in-out;
        animation: .1s cubic-bezier(.4, 0, 1, 1) zoom;
        display: none;
        position: fixed;
        inset: 0 0 0 30%
    }

    .mobile-menu ul li {
        margin: 2em 0;
        list-style: none;
        transition: all .3s ease-in-out
    }

    .mobile-menu ul li a {
        color: #ec153a;
        text-shadow: 1px 1px #9c9595ab;
        font-size: 1.4em;
        text-decoration: none;
        transition: all .3s ease-in-out;
        animation: .3s cubic-bezier(.4, 0, 1, 1) zoom
    }

    .mobile-menu button {
        background: #000000ba;
        border: none;
        padding: .4em 2.2em;
        transition: all .3s ease-in-out;
        animation: .3s cubic-bezier(.4, 0, 1, 1) zoom
    }

    .mobile-menu .toggle-div {
        justify-content: flex-end;
        transition: all .3s ease-in-out;
        display: flex
    }

    .mobile-menu .toggle-div a {
        text-decoration: none;
        transition: all .3s ease-in-out
    }

    .join-us-btn button a {
        color: #fff !important
    }

    .mobile-menu .toggle-div img {
        width: 3em;
        margin: 2em;
        transition: all .3s ease-in-out
    }

    .mobile-menu .join-us-btn button {
        border-radius: 4px
    }

    .mobile-menu .menu {
        display: none
    }
}

@media screen and (width>=1900px) {
    .nav {
        padding: 2rem 5.7%
    }
}

@media screen and (width<=1366px) {
    .nav {
        padding: 1.5em 4em
    }
}

.popup {
    backdrop-filter: blur(3px);
    z-index: 9999;
    background: #00000036;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    left: 0
}

.close-popup {
    cursor: pointer;
    color: #fff;
    font-size: 40px;
    position: absolute;
    top: 15px;
    right: 22px
}

iframe {
    width: 50%;
    height: 57%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.life {
    margin-top: 25rem;
    padding: 0
}

.life .text .head {
    width: 17ch;
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 70px
}

.video-wrap {
    position: relative
}

.video-wrap img {
    width: 100%
}

.play.vm_open {
    cursor: pointer;
    text-decoration: unset;
    color: #db2b42;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.play.vm_open svg {
    color: #fff;
    background: #db2b42;
    border-radius: 50%;
    width: 37px;
    height: 37px;
    padding: .3vw .3vw .3vw .4vw;
    animation: 3s linear infinite videowave
}

@keyframes videowave {
    0% {
        box-shadow: 0 0 #fdaf52
    }

    to {
        box-shadow: 0 0 0 10px #f3f3f3
    }
}

@media only screen and (width<=768px) {
    iframe {
        width: 70%;
        height: 43%
    }
}

.text-reveal,
.dr-text-reveal,
.btn-reveal {
    opacity: 1
}

.building-bg {
    background-image: url(../assets/Header/building.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 620px
}

.between {
    justify-content: space-between;
    padding: 0 1em
}

.paragraph {
    color: #212121;
    width: 60ch;
    margin: 4rem 0;
    font-size: 1.5em;
    font-weight: 500
}

.paragraph p {
    line-height: 20px
}

.cell {
    opacity: 1;
    place-items: center;
    padding-bottom: 4rem;
    transition: all 2s cubic-bezier(.32, .94, .9, 1);
    display: grid;
    transform: translate(-50em)
}

.cell img {
    object-fit: cover;
    width: 78%
}

.join-us-btn {
    align-items: center
}

.join-us-btn button {
    cursor: pointer;
    color: #fff;
    background: #000;
    border-style: none;
    padding: .7em 1.2em;
    font-size: 1.3em;
    transition: all .3s ease-in-out
}

.join-us-btn button:hover {
    background: #ec153a
}

.header-container {
    background: #f9f9f9;
    place-content: center space-between;
    align-items: center;
    padding: 0 1em;
    display: flex
}

.video-section {
    align-items: center;
    display: flex
}

.dr-container {
    place-content: center space-around;
    padding-top: 2em;
    display: flex
}

.latest {
    font-size: 1.8em
}

.quote {
    text-align: justify;
    margin: 0 5em 1em 0;
    font-size: 2rem;
    font-weight: 600
}

.name {
    font-size: 1.5em;
    font-weight: 600
}

.chief {
    color: #212121;
    font-size: 1.2em
}

.video img {
    width: 28em
}

.vr {
    width: 2px;
    height: 12em;
    margin: 2em 2em 0
}

.dr-image img {
    width: 12em;
    box-shadow: 0 50px 50px #000
}

.play-btn {
    margin: 2em
}

.play-btn button {
    background: 0 0;
    border: none
}

.bg-color {
    background: #f9f9f9;
    padding: 1.5rem 0;
    transition: all 2s cubic-bezier(.32, .94, .9, 1)
}

.clip {
    transform-origin: 0 100%;
    transform: translateY(100px)scaleY(1)
}

.cell-rotate {
    animation: 100s linear infinite cell-rotation
}

@keyframes cell-rotation {
    0% {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg)
    }
}

.quote.full-width {
    display: block !important
}

.quote.mobile {
    display: none !important
}

@media screen and (width>=320px) and (width<=400px) {
    .card-info {
        width: 86% !important;
        top: 8% !important;
        left: 8% !important
    }

    .card-title .play-btn {
        position: absolute !important;
        top: 0 !important;
        right: -43px !important
    }
}

@media screen and (width<=650px) {
    .between {
        padding: 0 3em
    }

    .join-us-btn {
        justify-content: left !important
    }

    .dr-container .quote {
        font-weight: 700 !important
    }

    .card-info {
        width: 86% !important;
        top: 8% !important;
        left: 8% !important
    }

    .card-title .play-btn {
        position: absolute !important;
        top: 0 !important;
        right: -43px !important
    }
}

@media screen and (width>=510px) and (width<=820px) {

    .life .text .paragraph,
    .life .text .head {
        text-align: center
    }
}

@media screen and (width<=820px) {
    .life {
        margin-top: auto !important
    }

    .life .text .head {
        width: auto
    }

    .nav {
        margin: 2em
    }

    .head {
        font-size: 3em !important;
        line-height: 40px !important
    }

    .paragraph {
        width: auto
    }

    .header-container {
        flex-direction: column
    }

    .logo img {
        width: 64%
    }

    .video-section {
        flex-direction: column;
        display: block
    }

    .vr {
        display: none
    }

    .between {
        flex-direction: column;
        margin-top: auto;
        display: flex
    }

    .building-bg {
        height: auto
    }

    .dr-container {
        text-align: center;
        flex-direction: column-reverse;
        display: flex
    }

    .dr-container .quote {
        text-align: center;
        margin: 1em 0;
        font-size: 1.5em;
        font-weight: 600
    }

    .latest {
        float: right;
        width: 70%;
        margin: 1em 0
    }

    .dr-image img {
        width: 24em
    }

    .play-btn {
        float: left;
        text-align: right;
        width: 20%;
        margin: 2em auto 2em 2em
    }

    .cell {
        width: 100%
    }

    .cell img {
        object-fit: cover;
        width: 60%;
        margin: 1em
    }

    .text {
        width: 100%;
        margin: 0;
        padding: 2rem
    }

    .text .paragraph {
        margin: 2rem 0;
        font-size: 1.2em
    }

    .join-us-btn {
        justify-content: center;
        display: flex
    }

    .join-us-btn button {
        font-size: 1.2em
    }

    br {
        display: none
    }

    .card-info {
        padding: 6em
    }

    .tab-container .tab-link li {
        font-size: 1em
    }

    .video img {
        width: 100%
    }

    .quote.full-width {
        display: none !important
    }

    .quote.mobile {
        display: block !important
    }

    .sub-title {
        margin: 2em auto
    }
}

@media screen and (width<=1020px) {
    .quote {
        margin: 0 1em 1em 0
    }
}

@media screen and (width<=1366px) {
    .between {
        width: 100%;
        padding: 0 5em
    }

    .bg-color {
        padding: 0 2em
    }
}

.iac {
    grid-template-columns: 67% auto;
    gap: 9rem;
    margin-top: 12rem;
    margin-bottom: 8rem;
    display: grid
}

.iac img {
    width: 100%
}

.iac .iac-content {
    color: #141414;
    font-size: 1.4em;
    line-height: 23px
}

.iac h4 {
    margin: 0 0 .5em;
    font-size: 1.9em;
    font-weight: 600;
    animation: 1s cubic-bezier(.4, 0, 1, 1) _ngcontent-ng-c2170997113_zoom
}

@media screen and (width<=1366px) {
    .iac {
        padding: 0 5em
    }
}

@media screen and (width<=820px) {
    .iac {
        padding: 0 2em
    }
}

@media screen and (width<=500px) {
    .iac {
        grid-template-columns: auto;
        gap: 4rem;
        margin-bottom: 4rem;
        display: grid
    }
}

.view_size {
    height: auto;
    margin-top: 125px
}

.mobile-tab-div {
    display: none
}

.title {
    font-size: 4em;
    font-weight: 600
}

.box-size .main-content .content {
    width: 66ch
}

@media screen and (width<=1440px) {
    .box-size .main-content .content {
        width: 55ch
    }
}

.content ul.tab1-list {
    margin-top: 2rem;
    margin-left: 1rem;
    list-style: none
}

.content ul.tab1-list li:before {
    content: "•";
    color: #ff4545;
    width: 1em;
    margin-left: -1em;
    font-size: 17px;
    font-weight: 700;
    display: inline-block
}

.content ul.tick-list {
    margin-top: 70px;
    list-style: none
}

.content ul.tick-list li:hover {
    background: #064453
}

.content ul.tick-list li:hover p {
    color: #fff
}

.content ul.tick-list li:hover img.active-tick {
    display: none
}

.content ul.tick-list li:hover img.hover-tick {
    display: block
}

.content ul.tick-list li {
    cursor: pointer;
    align-items: center;
    width: 70%;
    margin-bottom: 20px;
    padding: 9px 12px;
    display: flex;
    box-shadow: 0 7px 16px 5px #0000001a
}

.content ul.tick-list li img.hover-tick {
    display: none
}

.content ul.tick-list li img {
    width: 20px
}

.content ul.tick-list li p {
    color: #000;
    width: 100%;
    margin-bottom: 0;
    padding-left: 8px;
    font-weight: 600
}

.para {
    color: #666;
    width: 45ch;
    margin: 1em 0 4em;
    font-size: 1.5rem
}

.number-container {
    text-align: center;
    justify-content: space-evenly;
    align-items: center;
    margin: 11rem 0;
    display: flex
}

.number-container .box {
    width: 41em;
    height: 11em
}

.number-container .box:first-of-type,
.number-container .box:nth-of-type(2) {
    border-right: 2px solid #e9e9e9
}

.detail {
    color: #666;
    font-size: 1.2em
}

.tabs-container {
    cursor: pointer;
    border-bottom: 1.5px solid #e9e9e9;
    width: 100%;
    height: 55px;
    margin: 2em 0 6rem;
    padding-left: 0;
    list-style-type: none
}

.tabs-container .tab-link {
    float: left;
    text-align: center;
    color: #9b9b9b;
    width: 24.33%;
    height: 100%;
    padding: 10px;
    font-size: 1.8em;
    font-weight: 400;
    position: relative
}

.tab-link:after {
    content: "";
    color: #000;
    border-bottom: 4px solid #ef0d33;
    font-size: 2em;
    font-weight: 500;
    transition: all .65s ease-in-out;
    display: block;
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 4px;
    transform: scaleX(0)
}

.active:after {
    transform: scaleX(1)
}

.active {
    color: #000 !important
}

.box-size {
    min-height: 36em;
    display: none
}

.box-size.show {
    display: block
}

.box-size .box {
    margin-top: 2rem
}

.box-size .title {
    margin: 0 0 .5em;
    font-size: 2.5em;
    font-weight: 600;
    animation: 1s cubic-bezier(.4, 0, 1, 1) zoom
}

.box-size .content {
    color: #141414;
    min-height: 13.7em;
    font-size: 1.4em;
    line-height: 23px;
    animation: 1s cubic-bezier(.4, 0, 1, 1) zoom
}

.box-size button {
    color: #000;
    background: #fff;
    border: 1px solid #000;
    margin: 2em 0 0;
    padding: 1em 1.6em;
    font-size: 1em;
    transition: all .3s ease-in-out;
    animation: 1s cubic-bezier(.4, 0, 1, 1) zoom
}

.box-size button:hover {
    color: #fff;
    background: #ec153a;
    border: 1px solid #fff
}

.main-img {
    margin-right: 13%;
    position: relative
}

.main-img img {
    width: 100%;
    position: relative
}

.main-img .btn-click {
    cursor: pointer;
    opacity: 0;
    animation: none;
    transform: none
}

.main-img .img-1 {
    width: 25%;
    animation: 1s cubic-bezier(.4, 0, 1, 1) zoom;
    position: absolute;
    transform: translate(-164%, 16%)
}

.main-img .img-1 img {
    transition: all .3s ease-in-out
}

.main-img .img-2 {
    width: 25%;
    animation: 1s cubic-bezier(.4, 0, 1, 1) zoom;
    position: absolute;
    transform: translate(22%, 17%)
}

.main-img .img-2 img {
    transition: all .3s ease-in-out
}

.main-img .img-3 {
    width: 25%;
    animation: 1s cubic-bezier(.4, 0, 1, 1) zoom;
    position: absolute;
    transform: translate(21%, 270%)
}

.main-img .img-3 img {
    transition: all .3s ease-in-out
}

.main-img .img-4 {
    width: 25%;
    animation: 1s cubic-bezier(.4, 0, 1, 1) zoom;
    position: absolute;
    transform: translate(-164%, 270%)
}

.main-img .img-4 img {
    transition: all .3s ease-in-out
}

@media screen and (width<=500px) {
    ul li {
        font-size: .9em !important
    }

    .detail {
        font-size: 1em !important
    }

    .number {
        font-size: 2.5em
    }

    .number-container {
        margin: 6rem 0
    }

    .number-container .box {
        height: 5em
    }
}

@media screen and (width<=1024px) {
    .box-size .main-content .content {
        width: unset
    }
}

@media screen and (width<=820px) {
    .title {
        font-size: 2em
    }

    .para {
        width: 100%;
        font-size: 1.3em
    }

    .tab-container {
        margin: 2em 0 3rem
    }

    .tab-container .tab-link {
        font-size: 1em !important
    }

    .mobile {
        flex-direction: column;
        align-items: center;
        display: flex
    }

    .box-size {
        width: auto;
        min-height: auto
    }

    .box-size .title {
        font-size: 2em
    }

    .box-size .content {
        width: auto;
        font-size: 1.2em
    }

    .main-img {
        justify-content: space-around;
        width: auto;
        margin: 0
    }

    .main-img .img-1 {
        transform: translate(-74%, 16%)
    }

    .main-img .img-2 {
        transform: translate(112%, 17%)
    }

    .main-img .img-3 {
        transform: translate(112%, 270%)
    }

    .main-img .img-4 {
        transform: translate(-74%, 270%)
    }

    .main-img img {
        margin: 0
    }

    .box-container .box {
        width: auto;
        height: auto;
        padding: 1em
    }

    .box-container .box .number {
        font-size: 1.5em !important
    }

    .box-container .box .detail {
        font-size: 1em !important
    }

    .number-container {
        display: block
    }

    .number-container .box {
        float: none;
        border-bottom: 1px solid #ddd;
        width: 70%;
        height: auto;
        margin: 2em auto;
        border-right: 0 !important
    }

    .number-container .box .detail {
        padding-bottom: 3em
    }

    .number-container .box.last-child {
        border-bottom: 0 solid #ddd !important
    }

    .mobile-tab-div {
        text-align: center;
        border-bottom: 4px solid #ef0d33;
        height: 40px;
        display: block
    }

    .mobile-tab-div select.mobile-tab {
        color: #000;
        text-align: center;
        border: 0;
        font-family: Montserrat;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 113%
    }

    .mobile-tab-div select.mobile-tab:focus-visible {
        outline: 0
    }

    .tabs-container.full-width {
        display: none
    }

    .view_size {
        padding: 0 2em !important
    }
}

@media screen and (width<=768px) {
    .content ul.tick-list {
        padding-left: 0
    }

    .content ul.tick-list li {
        width: 100%
    }
}

@media screen and (width<=1366px) {
    .view_size {
        padding: 0 5em
    }
}

.main-container {
    max-width: 100vw;
    height: 63em;
    margin: 8em 0 11em;
    position: relative;
    overflow: hidden
}

.card-info:hover {
    transition: all .5s ease-in-out
}

.card-info {
    opacity: .95;
    color: #fff;
    background-image: linear-gradient(51deg, #161616, #161616, #161616, #161616);
    width: 43em;
    height: 50em;
    padding: 5em;
    position: absolute;
    top: 11%;
    left: 16%;
    overflow: hidden
}

.card-info .card-title {
    width: 14ch;
    font-size: 2.5em;
    font-weight: 600;
    line-height: 1.5em
}

.card-info .card-desc {
    margin: 1em 0;
    font-size: 1.8em;
    line-height: 1.6em;
    font-weight: 400 !important
}

.card-info button {
    color: #fff;
    background: #000;
    border: 1px solid #fff;
    margin: 2em 0 0;
    padding: 1em 1.6em;
    font-size: 1em;
    transition: all .3s ease-in-out
}

.card-info button:hover {
    background: #ec153a
}

.card-info {
    transition: all .5s ease-in-out;
    height: 47em !important;
    top: 8em !important
}

.text-section {
    position: relative
}

.text-section .background-red {
    mix-blend-mode: normal;
    filter: blur(60px);
    background: #ec153a;
    border-radius: 52%;
    width: 10em;
    height: 10em;
    position: absolute;
    top: -54px;
    right: -49px
}

.bg-image-golf {
    background-image: url(../assets/Header/golf.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 63em;
    transition: all .5s cubic-bezier(.4, 0, 1, 1);
    overflow: hidden
}

.bg-image-golf .card-info {
    height: 44em !important;
    top: 5% !important
}

.card-info.container.content.card-crop {
    opacity: .95;
    color: #fff;
    background-image: linear-gradient(51deg, #161616, #161616, #161616, #161616);
    width: 43em;
    padding: 5em;
    transition: all .5s ease-in-out;
    position: absolute;
    overflow: hidden;
    height: 47em !important;
    top: 8em !important;
    left: auto !important;
    right: 16% !important
}

.main-container:hover .bg-image-golf {
    transition: all 1s cubic-bezier(.25, .46, .45, .94);
    transform: scale(1.04)
}

@media screen and (width<=1140px) {
    .bg-image-golf {
        background-size: cover
    }
}

@media screen and (width<=820px) {
    .card-info.container.content.card-crop {
        position: absolute;
        width: 30em !important;
        height: 70% !important;
        padding: 4em !important;
        top: 15% !important;
        left: 10% !important;
        right: auto !important
    }

    .card-title {
        font-size: 2em !important
    }

    .card-desc {
        font-size: 1.2em !important
    }

    .bg-image-golf {
        height: 600px
    }

    .card-info {
        left: 10%;
        width: 30em !important;
        height: 70% !important;
        padding: 4em !important;
        top: 15% !important
    }
}

.title-div {
    text-align: center;
    place-items: center;
    margin: 2em 0;
    display: grid
}

.title-div .title {
    text-align: center;
    text-transform: capitalize;
    font-size: 4em;
    font-weight: 600;
    line-height: 80px
}

.title-div .para {
    color: #666;
    width: 43ch;
    margin: 0 0 2em;
    font-size: 1.5em;
    line-height: 22px
}

.img-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    display: grid
}

.img-card {
    position: relative
}

.img-card .hover-overlay {
    background: linear-gradient(#d9d9d900 -58.1%, #0009 0%);
    padding: 15px 19px 10px;
    display: none;
    position: absolute;
    bottom: 0;
    left: 0
}

.img-card .hover-overlay .title {
    color: #fff;
    font-size: 13px;
    font-weight: 600
}

.img-card .hover-overlay p {
    color: #fff;
    margin: 0;
    font-weight: 400;
    line-height: 1.9
}

.img-card .overlay {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    bottom: 17px;
    left: 19px;
    right: 19px
}

.img-card img {
    width: 100%
}

.img-card:hover .hover-overlay {
    display: block
}

.img-card:hover .overlay {
    display: none
}

@media screen and (width<=1366px) {
    .img-wrap {
        padding: 0 5em
    }
}

@media screen and (width<=820px) {
    .img-wrap {
        padding: 0 2em
    }

    .title-div .title {
        font-size: 2em
    }

    .title-div .para {
        width: auto;
        font-size: 1.2em
    }
}

@media screen and (width<=500px) {
    .img-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem
    }
}

.specifications-table {
    margin-bottom: 11rem
}

.specifications-table h2 {
    text-transform: capitalize;
    font-size: 4em;
    font-weight: 600;
    line-height: 80px
}

.table-scrool {
    overflow-x: auto
}

.divTableRow {
    display: table-row
}

.divTableRow:hover {
    background: #f7f2f2
}

.divTableHeading {
    display: table-header-group
}

.divTableCell,
.divTableHead {
    border-bottom: 1px solid #e9e9e9;
    padding: 30px 10px;
    display: table-cell
}

.divTableHeading {
    font-weight: 700;
    display: table-header-group
}

.divTableFoot {
    font-weight: 700;
    display: table-footer-group
}

.divTableBody {
    display: table-row-group
}

.divTableRow .divTableCell:first-child {
    width: 300px;
    padding-left: 50px;
    padding-right: 90px;
    font-weight: 400
}

.divTableRow .divTableCell:nth-child(2) {
    width: 300px;
    padding-right: 90px
}

.divTableBody .divTableRow.header .divTableCell,
.divTableCell {
    color: #000;
    font-size: 13px
}

@media screen and (width<=1366px) {
    .specifications-table.container {
        padding: 0 5em
    }
}

@media screen and (width<=820px) {
    .specifications-table h2 {
        font-size: 2em
    }

    .specifications-table.container {
        padding: 0 2em
    }
}

@media screen and (width<=500px) {
    .divTable {
        width: 700px
    }

    .divTableRow .divTableCell:first-child {
        width: 165px;
        padding-right: 0
    }

    .divTableRow .divTableCell:nth-child(2) {
        width: 250px;
        padding-right: 0
    }
}

#formSubmit:hover {
    color: #fff;
    background: #ec153a
}

#formSubmit {
    cursor: pointer;
    cursor: pointer;
    color: #5b5b5b;
    background: #fff;
    border: none;
    outline: none;
    margin: 6em 0 0;
    padding: 12px 24px;
    font-size: 1.1em;
    font-weight: 500;
    transition: all .3s;
    display: inline-block
}

.contact_clicked {
    pointer-events: none;
    position: relative;
    overflow: hidden
}

#formSuccess {
    color: green
}

.contact_clicked:before {
    content: "";
    z-index: 1;
    background-image: url(../assets/loaderwhite.gif);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.contact_clicked:after {
    content: "";
    opacity: .5;
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.iso {
    color: #1e1c1c;
    background: #fff;
    justify-content: center;
    align-items: center;
    padding: 2em 26em;
    position: absolute;
    transform: translate(13%, -50%);
    box-shadow: 0 -7px 50px #000
}

.iso .title {
    color: #1e1c1c;
    font-size: 2em;
    font-weight: 600
}

.iso .detail-2013 {
    color: #1e1c1c;
    font-size: 1.3em;
    font-weight: 600
}

.iso .detail-2013 img {
    max-width: 33%;
    margin-right: 2em
}

.iso .detail-2015 {
    color: #1e1c1c;
    font-size: 1.3em;
    font-weight: 600
}

.iso .detail-2015 img {
    max-width: 38%;
    margin-right: 2em
}

footer {
    margin-top: 7em;
    display: flex;
    position: relative;
    overflow: hidden
}

footer .left {
    color: #fff;
    background: #252323;
    width: 50%
}

footer .right {
    color: #fff;
    background: #2c2c2c;
    width: 50%
}

.box-1 {
    padding: 14.5em 9em 0 11em;
    position: relative
}

.box-1 .logo {
    margin-top: 1em !important
}

.box-1 .logo img {
    width: 8em
}

.box-1 .connect {
    width: 8ch;
    margin: 1em 0 .5em;
    font-size: 5em;
    font-weight: 300;
    line-height: 1.2em
}

.box-1 .mail {
    margin-top: -.6em
}

.box-1 .mail a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300
}

.box-1 .map {
    transition: all .3s;
    position: relative
}

.box-1 .map img {
    width: 37em;
    margin: 7em 1em
}

.box-1 .map:hover+.address {
    visibility: visible;
    opacity: 1;
    z-index: 5;
    transition: all .3s
}

.box-1 .address:hover {
    visibility: visible;
    opacity: 1;
    transition: all .3s
}

.box-1 .pulse img {
    width: 7em;
    position: absolute;
    transform: translate(219%, -406%)
}

.box-1 .address {
    border-left: 1.6px solid #fff ab;
    border-bottom: 1.3px solid #fff a1;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    background: #595959;
    border-radius: 16.0422px;
    width: 30em;
    padding: 1em 1.5em;
    transition: all .3s ease-in-out;
    position: absolute;
    top: 78%;
    left: 65%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1.83339px 76.5441px #0000000a
}

.box-1 .address .title {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
    transition: all .3s
}

.box-1 .address .sub a {
    letter-spacing: .01em;
    color: #fff;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.8em;
    text-decoration: none;
    transition: all .3s ease-in-out
}

.box-1 .address .sub a:hover {
    color: #d6d6d6;
    transition: all .3s ease-in-out
}

.box-1 .copy-right {
    margin: 7em 0 2px;
    font-size: 1.1em
}

.box-2 {
    padding: 16.5em 11em 0 7em
}

.box-2 .form-title {
    margin: 2em 0 .3em;
    font-size: 3em;
    font-weight: 300
}

.social {
    justify-content: flex-end;
    display: flex
}

.social .icons img {
    margin-right: 4em;
    transition: all .3s
}

.social .icons img:hover {
    transition: all .3s;
    transform: scale(1.2)
}

.form-title {
    font-size: .5em
}

.para {
    font-size: 1.5em;
    font-weight: 300
}

.space {
    justify-content: space-between;
    margin-top: 4em;
    display: flex
}

.message {
    margin-top: 3em
}

input,
textarea {
    outline: none;
    color: #aeaeae !important;
    background: 0 0 !important;
    border: none !important;
    width: 100% !important;
    padding: 10px 10px 4px 0 !important;
    font-size: 1.4em !important
}

textarea,
input:focus {
    background-color: #fff;
    border-color: none !important;
    box-shadow: none !important;
    outline: none !important
}

.iti--allow-dropdown input {
    padding-bottom: 3px
}

.line-box {
    background: #b3b4bd;
    width: 100%;
    height: .5px;
    position: relative
}

.line {
    background: #ef0d33;
    width: 0%;
    height: 2px;
    transition: all .6s;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%)
}

label {
    color: #aeaeae;
    font-size: 1.2em;
    font-weight: 500
}

::placeholder {
    color: #565656;
    font-size: 1em
}

form {
    margin: 6em 0 4em
}

button {
    cursor: pointer;
    color: #5b5b5b;
    background: #fff;
    border: none;
    outline: none;
    padding: 12px 24px;
    font-size: 1.1em;
    font-weight: 500;
    transition: all .3s;
    display: inline-block
}

button:hover {
    color: #fff;
    background: #ec153a
}

.terms_wrap {
    color: #a1a1a1;
    flex-direction: row;
    justify-content: flex-end;
    margin: 1em 0;
    font-size: 1.1em;
    display: flex
}

.terms_wrap span {
    margin-right: 10px
}

.bottom {
    background-color: #1e1c1c;
    place-items: center;
    height: 5rem;
    display: grid
}

.bottom .heart-img img {
    width: 4%
}

.bottom .davin-img img {
    width: 6%
}

.bottom .content {
    padding: .3em
}

.bottom .design-clr {
    color: #595959;
    margin: 0 .5em
}

.bottom .by {
    color: #fff;
    margin: 0 .5em
}

.bottom .frijo {
    color: #fff;
    font-size: 1em;
    font-weight: 600
}

.bottom .davin {
    color: #fff;
    margin: 0 .5em;
    text-decoration: none
}

.bottom .davin span {
    text-transform: uppercase
}

.bottom a {
    cursor: pointer !important
}

.social.mobile {
    display: none
}

.social.full-width {
    display: block
}

@media screen and (width<=820px) {
    .connect {
        font-size: 2.5em !important
    }

    .mail a {
        font-size: 1em !important
    }

    .footer {
        flex-direction: column;
        display: flex
    }

    .footer .left {
        width: auto;
        height: auto
    }

    .footer .left .box-1 {
        padding: 20px
    }

    .footer .right {
        width: auto;
        height: auto
    }

    .footer .right .box-2 {
        padding: 20px 20px 2px
    }

    .footer .map img {
        width: 100%;
        margin: 2em 0
    }

    .footer .map .pulse img {
        width: 14%;
        margin: 0;
        top: 40%;
        left: 52%;
        transform: translate(-50%, -50%)
    }

    .footer .space {
        flex-direction: column;
        display: flex
    }

    .footer .space .number {
        margin-top: 32px
    }

    form {
        margin: 4em 0 0
    }

    form button {
        width: 50%;
        margin: 2em auto
    }

    .form-title {
        font-size: 2em !important
    }

    .box-2 .para,
    .box-2 label {
        font-size: 1em
    }

    .logo {
        margin-top: 1em !important
    }

    .logo img {
        width: 5em !important
    }

    .copy-right {
        margin: 0;
        font-size: .8em
    }

    .terms_wrap {
        justify-content: center
    }

    .social.mobile {
        float: right;
        margin-top: 10px;
        margin-right: -30px;
        display: block !important
    }

    .social.full-width {
        display: none !important
    }

    .bottom {
        height: 10rem
    }

    .bottom .content {
        width: 58%;
        margin: 0 auto
    }
}

@media screen and (width>=769px) and (width<=1125px) {
    .left {
        height: auto
    }

    .left .box-1 {
        padding: 7.5em 3em 0
    }

    .right {
        height: auto
    }

    .right .box-2 {
        padding: 7.5em 3em 0
    }

    .space {
        flex-direction: column;
        display: flex
    }

    .space .number {
        margin-top: 32px
    }
}

@media screen and (width<=1440px) {
    .paragraph {
        width: 100%
    }
}

@media screen and (width<=820px) {
    .col-md-5.video-col {
        display: contents
    }

    .life .text {
        margin: 12em 0 0
    }

    .nav .logo {
        margin-top: 0 !important
    }

    .life {
        margin-top: auto !important
    }

    .life .text .head {
        width: auto
    }

    .nav {
        margin: 0
    }

    .nav .join-us-btn a {
        padding: .6em;
        font-size: 12px !important
    }

    .nav .menu a {
        cursor: pointer;
        letter-spacing: .5px;
        margin: 5px 6px;
        font-size: 10px;
        text-decoration: none;
        position: relative
    }
}

@media screen and (width<=500px) {
    .life .text {
        margin: 1em 0 0
    }

    .between {
        padding: 3em 1em 0
    }

    .iac {
        margin-top: 80px
    }

    .mobile-tab-div select.mobile-tab {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: linear-gradient(45deg, #0000 50%, gray 50%), linear-gradient(135deg, gray 50%, #0000 50%), linear-gradient(90deg, #ccc, #ccc);
        background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) .5em;
        background-repeat: no-repeat;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        width: 100%;
        padding: 15px 0
    }

    .mobile-tab-div {
        height: 58px !important
    }

    .card-info {
        width: 83vw !important;
        height: unset !important
    }

    .card-info.container.content.card-crop {
        position: absolute;
        width: 83vw !important;
        height: 67% !important;
        padding: 4em !important;
        top: 20% !important;
        left: auto !important;
        right: 9% !important
    }

    .main-container {
        margin: 8em 0 6em
    }
}

.voltrac-glance-section {
    background: #f8f8f8;
    border-radius: 8px;
    margin: 4em auto;
    padding: 6em 2em
}

.voltrac-glance-section h2 {
    color: #161616;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2
}

.voltrac-glance-section .intro-para {
    color: #666;
    text-align: center;
    max-width: 800px;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.6rem;
    line-height: 1.6
}

.timeline-tracks {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    display: grid
}

.track {
    background: #fff;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 2px 10px #00000014
}

.track:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px #0000001f
}

.track h3 {
    color: #ec153a;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600
}

.timeline-list {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative
}

.timeline-list:before {
    content: "";
    opacity: .3;
    background: linear-gradient(#ec153a, #f0f0f0);
    width: 2px;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0
}

.timeline-list li {
    color: #444;
    padding: .8rem 0 .8rem 2rem;
    font-size: 1.3rem;
    line-height: 1.6;
    transition: color .3s;
    position: relative
}

.timeline-list li:before {
    content: "";
    opacity: .6;
    background: #ec153a;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 1.2rem;
    left: -3px
}

.timeline-list li:hover {
    color: #161616
}

.timeline-list li:hover:before {
    opacity: 1;
    transform: scale(1.2)
}

.timeline-list li strong {
    color: #ec153a;
    min-width: 80px;
    font-weight: 600;
    display: inline-block
}

@media screen and (width<=1024px) {
    .timeline-tracks {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .track {
        padding: 2.5rem 2rem
    }

    .voltrac-glance-section {
        padding: 4em 1.5em
    }
}

@media screen and (width<=768px) {
    .voltrac-glance-section h2 {
        font-size: 2.4rem
    }

    .voltrac-glance-section .intro-para {
        margin-bottom: 3rem;
        font-size: 1.4rem
    }

    .track {
        padding: 2rem 1.5rem
    }

    .track h3 {
        font-size: 1.6rem
    }

    .timeline-list li {
        padding-left: 1.5rem;
        font-size: 1.2rem
    }

    .timeline-list li strong {
        min-width: 70px;
        font-size: 1.1rem
    }
}

@media screen and (width<=500px) {
    .voltrac-glance-section {
        margin: 2em auto;
        padding: 3em 1em
    }

    .voltrac-glance-section h2 {
        font-size: 2rem
    }

    .voltrac-glance-section .intro-para {
        font-size: 1.2rem
    }

    .track {
        padding: 1.5rem 1rem
    }

    .track h3 {
        margin-bottom: 1.5rem;
        font-size: 1.4rem
    }

    .timeline-list li {
        padding: .6rem 0 .6rem 1.2rem;
        font-size: 1.1rem
    }

    .timeline-list:before {
        left: -2px
    }

    .timeline-list li:before {
        width: 6px;
        height: 6px;
        left: -5px
    }
}