@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&family=PT+Sans+Caption:wght@400;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,500;1,600;1,700&display=swap');
:root {
    --c1: #16b3d3;
    --c2: #aba4a4;
    --c3: #444c99;
    --white: #ffffff;
    --black: #1e1e1e;
}
body {
    background-color: var(--black);
    color: var(--white);
}

body.ov-hidden {
    overflow: hidden;
}

::selection {
    color: var(--white);
    background: var(--c1);
}

a {
    transition: all .7s;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--c1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--c3);
}

.wrapper {
    overflow: hidden;
}

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--c3);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.15s;
    transition: 0.15s;
    z-index: 9999999999;
    mix-blend-mode: difference;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--c3);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 999999999;
    mix-blend-mode: difference;
}

.container-th {
    width: 90%;
    max-width: 1531px;
    margin: 0 auto;
}

section.main-banner {
    position: relative;
    height: 100vh;
    min-height: 810px;
    font-family: 'Kanit', sans-serif;
    margin: 0;
}

header.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    padding: 25px 0;
    background: transparent;
    transition: all .7s;
}

header.main-header.fixed .main-logo img {
    height: 97px;
}

.footer-logo img {
    width: 100%;
}
.main-logo img {
    transition: all .7s;
    height: 99px;
}

section.main-banner .banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.main-banner .banner-content-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

section.main-banner .banner-video {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

section.main-banner .banner-video:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 85%);
    background-image: url('../images/banner-icon.png');
}

header.main-header .header-contact ul {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    list-style: none;
    align-items: center;
    margin: 0;
}

header.main-header .header-contact ul ul li {
    color: --var();
}

header.main-header .header-contact ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    transition: all .7s;
}

.banner-content-area .align-items-center {
    align-items: start !important;
}

#more {display: none;}
.read-more-button {
    color: #FFF;
    cursor: pointer;
    FONT-SIZE: 18PX;
}

header.main-header .header-contact ul li a i {
    margin-right: 5px;
}

header.main-header .header-contact ul li.contact-list-top a:before {
    content: '';
    display: table;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: var(--c1);
    transition: all .7s;
}

header.main-header .header-contact ul li.contact-list-top a:hover:before {
    width: 100%;
}

header.main-header .header-contact ul li a:hover {
    color: var(--c1);
}

section.main-banner .banner-content h2,
section.main-banner .banner-content h1 {
    font-size: 90px;
    font-weight: 600;
    position: relative;
    padding-bottom: 45px;
    color: #fff;
    line-height: 100%;
    margin-bottom: 40px;
}

section.main-banner .banner-content p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
}

section.main-banner .banner-content h2:before,
section.main-banner .banner-content h1:before {
    content: '';
    display: table;
    position: absolute;
    right: 0;
    top: 18px;
    background-image: url('../images/icons/icon-1.png');
    width: 30px;
    height: 33px;
    background-repeat: no-repeat;
}

section.main-banner .banner-content h2:after,
section.main-banner .banner-content h1:after {
    content: '';
    display: table;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(../images/icon-2.gif);
    width: 100%;
    height: 33px;
    background-repeat: no-repeat;
}

section.main-banner .banner-content {
    padding-right: 125px;
}

.form-style-01 .input-field input,
.form-style-01 .input-field textarea {
    background: no-repeat;
    border: none;
    border-bottom: 2px solid #fff;
    width: 100%;
    color: #fff;
    line-height: 46px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.form-style-01 .input-field input::placeholder,
.form-style-01 .input-field textarea::placeholder {
    color: #fff;
}

.form-style-01 .input-field {
    padding: 26px 0;
}

.form-style-01 .input-field input:focus,
.form-style-01 .input-field textarea:focus {
    outline: none;
    border-color: var(--c2);
}

section.main-banner .checkbox-field label {
    font-weight: 300;
}

section.main-banner .checkbox-field {
    padding-bottom: 60px;
}

.btn-style-2 input {
    background: border-box;
    color: #fff;
    border: none;
    background-image: url('../images/icons/button-icon1.png');
    padding: 20px 40px 0 0;
    background-repeat: no-repeat;
    font-weight: 300;
}

.btn-style-2 input:before {
    content: '';
    width: 100px;
    height: 10px;
    background: #fff;
    display: table;
    position: absolute;
}

.btn-style-2 .arrow-button {
    transform: rotate(180deg);
    padding: 20px 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: 0 0;
}

.btn-style-2 .button {
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-radius: 0;
    background-color: var(--white);
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
}

.btn-style-2 .arrow-button .text {
    position: absolute;
    right: 0;
    bottom: -10px;
    transform: rotate(180deg);
    background: linear-gradient(to right, var(--c1), var(--c1) 50%, var(--white) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    font-size: .85rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    transition: background-position .4s ease;
    padding: 20px 3px;
    text-align: center;
    margin: 0 auto;
}

.btn-style-2 .arrow-button:hover .text,
.parent:hover .arrow-button .text {
    background-position: 0 100%;
}

.btn-style-2 .arrow-button .line {
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100px;
    height: 2px;
    background: var(--white);
}

.btn-style-2 .arrow-button .line:after {
    content: '';
    position: absolute;
    left: 100%;
    width: 100100%;
    height: 2px;
    display: block;
    background: var(--c1);
    transition: .4s ease;
}

.btn-style-2 .arrow-button:hover .line:after {
    left: 0;
}

.btn-style-2 .button.arrow-button.next span.arrow {
    overflow: hidden;
    position: absolute;
    left: -21px;
    bottom: 0px;
    z-index: 0;
    width: 20px;
    height: 2px;
    background: var(--white);
    transform-origin: left bottom;
    transform: rotate(45deg) translate3d(15px, -15px, 0);
}

.btn-style-2 .button.arrow-button.next span.arrow:after {
    content: '';
    background: var(--c1);
    width: 100%;
    height: 0;
    display: table;
    transition: .4s ease;
    position: absolute;
}

.btn-style-2 .button.arrow-button.next:hover span.arrow:after {
    height: 100%;
    transition-delay: .2s;
}

header.main-header a#mobile-menu-openbtn span {
    display: table;
    height: 4px;
    width: 39px;
    background: var(--white);
    border-radius: 4px;
    position: relative;
    transition: .4s ease;
}

header.main-header a#mobile-menu-openbtn span:before {
    content: '';
    display: table;
    width: 25px;
    height: 4px;
    background: var(--white);
    top: -11px;
    position: absolute;
    border-radius: 5px;
    transition: .4s ease;
}

header.main-header a#mobile-menu-openbtn span:after {
    content: '';
    display: table;
    width: 25px;
    height: 4px;
    background: var(--white);
    top: 11px;
    position: absolute;
    border-radius: 5px;
    transition: .4s ease;
}

header.main-header a#mobile-menu-openbtn {
    display: table;
    padding: 15px 3px;
    width: 45px;
}

header.main-header a#mobile-menu-openbtn:hover span {
    background: var(--c1);
    width: 30px;
}

header.main-header a#mobile-menu-openbtn:hover span:before,
header.main-header a#mobile-menu-openbtn:hover span:after {
    background: var(--c1);
    width: 39px;
}

header.main-header.fixed {
    background: rgb(0 0 0 / 70%);
    padding: 10px 0;
    border-bottom: 1px solid var(--c2);
    z-index: 9999;
}

section.performance-box {
    padding: 100px 0;
}

.working-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.working-list .working-item {
    width: 180px;
    border: 1px solid var(--c2);
    height: 180px;
    border-radius: 5px;
    text-align: center;
    line-height: 180px;
    transition: all .4s;
}

.working-list .working-item a {
    color: var(--c2);
    font-size: 100px;
}

.working-list .working-item:hover {
    border-color: var(--c3);
}

.working-list .working-item:nth-child(even):hover {
    transform: rotate(-10deg);
}

.working-list .working-item:nth-child(odd):hover {
    transform: rotate(10deg);
}

.working-list .working-item:first-child {
    animation: animation-top 3s infinite;
}

/* the animation code */

@keyframes animation-top {
    0% {
        margin-top: 0;
    }
    50% {
        margin-top: -20px;
    }
    100% {
        margin-top: 0;
    }
}

.extraordinary-area .extraordinary-content h2 {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
}

.extraordinary-area .extraordinary-content h2 span.text-outline {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
}

.extraordinary-area .extraordinary-content h2 span.text-underline {
    color: var(--c3);
    font-weight: 600;
    text-transform: uppercase;
    font-style: italic;
    position: relative;
}

/*.extraordinary-area .extraordinary-content h2 span.text-underline:before {*/

/*    content: '';*/

/*    position: absolute;*/

/*    bottom: 11px;*/

/*    right: 0;*/

/*    background: var(--c1);*/

/*    height: 14px;*/

/*    width: 100%;*/

/*    z-index: -1;*/

/*}*/

section.performance-box .extraordinary-content p {
    font-size: 19px;
    line-height: 160%;
    color: var(--c2);
    letter-spacing: 0.4px;
}

.extraordinary-area .extraordinary-list {
    display: flex;
    gap: 40px;
}

.extraordinary-list .extraordinary-title h4 {
    text-align: center;
    font-size: 52px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 70%;
    font-weight: 700;
}

.extraordinary-list .extraordinary-item .extraordinary-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.extraordinary-list .extraordinary-item {
    position: relative;
}

section.performance-box .extraordinary-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.extraordinary-list .extraordinary-item {
    width: 27%;
}

.extraordinary-item .extraordinary-icon h5 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--c2);
}

section.our-services {
    padding: 60px 0 0;
}

.content-style-01 h2,
.content-style-01 h3 {
    font-size: 56px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
}

.content-style-01 h2 span,
.content-style-01 h3 span {
    -webkit-text-fill-color: var(--c3);
    -webkit-text-stroke-width: 0;
    font-weight: 700;
    font-style: italic;
}

.content-style-01 p {
    font-size: 17px;
}

.services-slider-main {
    border-bottom: 1px solid #fff;
    border-top: 1px solid #ffff;
    margin-top: 70px;
}

.service-slide .service-slide-icon {
    min-height: 150px;
    display: flex;
    align-items: center;
    position: relative;
}

.services-slider .service-slide {
    padding: 0 25px;
}

.swiper.services-slider .swiper-slide {
    height: 100% !important;
    border-right: 1px solid #fff;
}

.service-slide .service-slide-icon:after {
    content: '';
    display: table;
    width: 70px;
    height: 1px;
    background: var(--c1);
    position: absolute;
    bottom: 0;
    transition: all .7s;
}

.service-slide .service-slide-content h3 {
    color: #fff;
    font-size: 36px;
}

.service-slide .service-slide-content {
    padding-top: 30px;
}

.services-slider .service-slide {
    padding: 30px 30px 60px;
    position: relative;
}

.service-slide .service-slide-content p {
    color: #fff;
    font-weight: 300;
    /* line-height: 170%; */
    min-height: 220px;
    max-height: 220px;
}

.services-slider .service-slide:before {
    content: '';
    display: table;
    position: absolute;
    width: 0;
    height: 0;
    background: #111;
    left: 0;
    right: 0;
    top: 0;
    border: 0;
    z-index: -1;
    display: table;
    margin: 0 auto;
    transition: all .7s;
}

.services-slider .service-slide:hover:before {
    width: 100%;
    height: 100%;
}

.services-slider .service-slide:hover img {
    filter: brightness(100);
}

.services-slider .service-slide img {
    transition: all .4s;
}

.services-slider .service-slide:hover .service-slide-icon:after {
    background: #fff;
}

/*button style*/

.btn-style-1 a.button {
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-radius: 0;
    background-color: var(--white);
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    transform: rotate(180deg);
}

.btn-style-1 a.button span.text {
    position: absolute;
    right: 0;
    bottom: 10px;
    transform: rotate(180deg);
    background: linear-gradient(to right, var(--c1), var(--c1) 50%, var(--white) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    font-size: .85rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    transition: background-position .4s ease;
    padding: 20px 3px;
    text-align: center;
    margin: 0 auto;
}

.btn-style-1 a.button span.line {
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100px;
    height: 2px;
    background: var(--white);
}

.btn-style-1 a.button {
    transform: rotate(180deg);
    padding: 20px 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: 0 0;
}

.btn-style-1 a.button span.arrow {
    overflow: hidden;
    position: absolute;
    left: -21px;
    bottom: 20px;
    z-index: 0;
    width: 20px;
    height: 2px;
    background: var(--white);
    transform-origin: left bottom;
    transform: rotate(45deg) translate3d(15px, -15px, 0);
}

.btn-style-1 .button:hover .text {
    background-position: 0 100%;
}

.btn-style-1 .button:hover .line:after {
    left: 0px;
}

.btn-style-1 .button .line:after {
    content: '';
    position: absolute;
    left: 100%;
    width: 100%;
    height: 2px;
    display: block;
    background: var(--c1);
    transition: .4s ease;
}

.btn-style-1 .button:hover span.arrow:after {
    height: 100%;
    transition-delay: .2s;
}

.btn-style-1 .button span.arrow:after {
    content: '';
    background: var(--c1);
    width: 100%;
    height: 0;
    display: table;
    transition: .4s ease;
    position: absolute;
}

.services-slider .swiper-button-next {
    right: -60px;
}

.services-slider .swiper-button-prev {
    left: -60px;
}

.services-slider-main .swiper.services-slider {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 0;
    margin: 0 -3px;
}

/*marquee */

.marquee-slider .marquee {
    overflow: hidden;
    position: relative;
    height: 84px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-slider .marquee--inner {
    display: block;
    width: 200%;
    position: absolute;
    animation: marquee 20s linear infinite;
    display: flex;
}

.marquee-slider .marquee--inner:hover {
    animation-play-state: paused;
    color: red;
}

.marquee-slider .marquee--inner span {}

.marquee-slider .slider-left-right {
    transition: all .7s;
    background: #fff;
}

.marquee-slider .marquee span {
    font-size: 24px;
    color: #000;
    word-spacing: 40px;
    font-weight: 600;
    transition: all .7s;
}

.marquee-slider .slider-left-right:hover .marquee span {
    color: #fff;
}

.marquee-slider .slider-left-right:hover {
    background: #111;
}

.marquee-slider {
    background: var(--c1);
}

.marquee-slider .slider-right-left .marquee span {
    color: #fff;
}

.marquee-slider .slider-right-left {
    background: var(--c1);
    transition: all .7s;
}

.marquee-slider .slider-right-left:hover .marquee span {
    color: #fff;
}

.marquee-slider .slider-right-left:hover {
    background: #111;
}

.marquee-slider .slider-right-left .marquee--inner {
    animation: marquee-right 20s linear infinite;
}

.marquee-slider .slider-right-left .marquee--inner:hover {
    animation-play-state: paused;
    color: red;
}

@keyframes marquee {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

@keyframes marquee-right {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}

.our-portfolio-are {
    padding: 100px 0 300px;
}

.content-style-02 h2 {
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    font-size: 200px;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.portfolio-list-01 {
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0px 30px;
    position: relative;
    margin-bottom: 0;
}

.portfolio-list-01 .portfolio-item {
    padding-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    scale: 0.5;
    opacity: 0;
    -webkit-transform: perspective(4000px) rotateX(90deg);
    transform: perspective(4000px) rotateX(90deg);
}

.portfolio-list-01 .portfolio-item:nth-child(even) {
    top: 50%;
}

.row_v2 {
    height: 80vh;
    max-height: 680px;
}

.portfolio-btn-area {
    position: relative;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-content: flex-end;
    height: 100%;
    align-items: flex-end;
}

.portfolio-btn-area .btn-style-1 a.button span.text {
    font-size: 20px;
    text-align: center;
    padding-left: 10px;
}

.portfolio-btn-area .btn-style-1 a.button span.line {
    width: 150px;
}

.portfolio-btn-area .btn-style-1 a.button span.line:after {
    width: 100%;
}

.why-chose-us-wrapper {}

.why-chose-us-wrapper .why-chose-us-step-1 {
    background: #1e1e1e;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}

.content-large-1 h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 200px;
    font-weight: 600;
    color: #fff;
    line-height: 100%;
    text-transform: uppercase;
}

.why-chose-us-mian {
    overflow: hidden;
    background-color: var(--pink-4);
    padding-top: 0px;
    direction: ltr;
}

.why-chose-us-wrapper {
    width: 400%;
    min-height: 700px;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: no-wrap;
    flex-wrap: no-wrap;
}

.wcu-slide {
    width: 100%;
    height: 100%;
    will-change: transform;
    opacity: 1 !important;
}

section.our-brands {
    padding: 100px 0;
}

.content-style-01 h4 {
    color: #fff;
    font-weight: 600;
}

.font-large h2 {
    font-size: 64px;
}

section.our-brands .brand-list {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid var(--c2);
    border-bottom: 1px solid var(--c2);
    margin-top: 45px;
}

.brand-list .brand-item {
    width: 16.66%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--c2);
    border-right: 1px solid var(--c2);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}

.brand-list .brand-item .brand-item-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 100%;
    transition: all .4s;
}

.brand-list .brand-item:hover .brand-item-inner {
    left: 0;
}

.brand-list .brand-item:hover {
    background: #111;
}

footer.main-footer {
    padding-top: 200px;
    background: #000000;
    position: relative;
    color: #fff;
}

footer.main-footer .footer-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 80%;
    background: url('../images/footer-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
}

footer.main-footer .footer-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer.main-footer .footer-top {
    position: relative;
}

footer.main-footer .footer-top .container-th {
    margin: 0;
    background: #171717;
}

footer.main-footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    padding: 120px 0 70px 18%;
}

.main-footer .footer-content p {
    color: inherit;
}

.main-footer .footer-content {
    padding-top: 30px;
}

.footer-menu h4,
.footer-detail h4 {
    font-family: 'Poppins', sans-serif;
    color: inherit;
    font-size: 20px;
    padding-bottom: 12px;
}

.footer-row .footer-col-4 {
    width: 37%;
}

.footer-row .footer-col-3 {
    width: 33%;
}

footer.main-footer .footer-menu ul li a {
    font-family: 'Poppins', sans-serif;
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    position: relative;
    display: table;
}

footer.main-footer .footer-menu ul {
    list-style: none;
    padding: 0;
}

footer.main-footer .footer-menu ul li {
    padding: 7px 0;
}

.footer-detail ul li stronge {
    display: block;
    font-weight: 500;
    color: var(--c1);
}

.footer-detail ul {
    list-style: none;
    padding: 0;
}

.footer-detail ul li {
    padding: 10px 0;
}

.footer-detail ul li a {
    color: inherit;
    text-decoration: none;
}

footer.main-footer .footer-menu ul li a:hover {
    color: var(--c1);
}

footer.main-footer .footer-menu ul li a:after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--c1);
    display: table;
    transition: all .7s;
}

footer.main-footer .footer-menu ul li a:hover:after {
    width: 100%;
}

/*.footer-detail ul li:nth-child(2) a {*/

/*    font-size: 20px;*/

/*    font-weight: 600;*/

/*}*/

.footer-detail ul li a:hover {
    color: var(--c1);
}

.footer-top .footer-menu {
    padding-left: 40px;
}

.footer-top .contact-us {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background: #2C2C2C;
}

.footer-top .contact-us h2 {
    font-size: 36px;
    text-align: center;
}

.footer-top .btn-style-1 {
    margin-top: 30px;
}

.btn-style-1.btn-large span.text {
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 20px 0 !important;
}

.btn-style-1.btn-large span.line {
    width: 170px !important;
}

.main-copyright {
    border-top: 2px solid #2c2c2c;
    padding: 23px 40px;
}

.main-copyright .copyright-text {
    padding-left: 20%;
}

.main-copyright .copyright-form {
    position: relative;
}

.main-copyright .copyright-form .input-text input {
    width: 100%;
    background: #2C2C2C;
    border: none;
    padding: 20px 20px;
    border: 1px solid #2C2C2C;
    transition: all .7s;
    color: var(--c3);
}

.main-copyright .copyright-form .input-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.main-copyright .copyright-form .input-btn button {
    background: transparent;
    color: #ffffff;
    font-size: 26px;
    height: 100%;
    border: none;
    padding: 12px 15px;
    transition: all .7s;
}

.main-copyright .copyright-form .input-text input:focus,
.main-copyright .copyright-form .input-text input:hover {
    outline: none;
    border-color: var(--c3);
}

.main-copyright .copyright-form .input-btn button:hover {
    color: var(--c3);
}

.main-copyright .copyright-text p {
    margin: 0;
}

.footer-row .footer-col-2 {
    width: 25%;
}

.why-chose-us-step-2 {
    background: #171717;
}

section.why-chose-us-section .why-choose-us-step-2 {
    padding: 150px 0;
}

.why-chose-us-mian .choose-us-content-style-01 h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    text-transform: uppercase;
}

.why-chose-us-mian .why-choose-us-step-2 {
    color: #fff;
}

.why-chose-us-mian .choose-us-content-style-01 h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 64px;
    line-height: 110%;
    padding: 70px 0 80px;
}

.why-chose-us-mian .choose-us-content-style-01 p {
    width: 62%;
    padding-left: 100px;
    font-size: 17px;
}

.choose-us-pro-list .choose-us-pro-list-item {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    margin: 20px 0;
}

.choose-us-pro-list-item .choose-us-item-value {
    width: 230px;
    height: 230px;
    border: 3px solid var(--c1);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.choose-us-pro-list-item .choose-us-item-value h4 {
    margin: 0;
    padding: 0;
    font-size: 64px;
}

.choose-us-pro-list-item .choose-us-item-text {
    width: 40%;
}

.choose-us-pro-list-item .choose-us-item-value:before {
    content: '';
    display: table;
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    background: var(--c1);
    transition: all .4s;
    z-index: -1;
    border-radius: 100%;
}

.choose-us-pro-list-item .choose-us-item-value:hover:before {
    left: 0;
}

.choose-us-pro-list-item .choose-us-item-text h4 {
    text-transform: uppercase;
    color: var(--c1);
    font-weight: 600;
    font-family: 'Kanit', sans-serif;
}

.choose-us-pro-list-item .choose-us-item-text p {
    font-size: 15px;
    font-weight: 600;
}

.choose-us-pro-list .choose-us-pro-list-item:nth-child(2) {
    margin-left: -150px;
}

.why-choose-us-step-3 {
    background: #1e1e1e;
    padding: 130px 0;
}

.why-chose-us-mian .choose-us-counter {
    display: flex;
    flex-wrap: wrap;
}

.why-chose-us-mian .choose-us-counter .choose-us-counter-item {
    width: 50%;
    margin: 50px 0;
}

.why-chose-us-mian .choose-us-counter-item h2 {
    font-size: 124px;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    line-height: 100%;
}

.why-chose-us-mian .choose-us-counter-item p {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
}

.why-choose-us-step-4 {
    background: #121212;
    display: flex;
    align-items: center;
}

.why-chose-us-mian .make-something-content {
    text-align: center;
}

.why-chose-us-mian .make-something-content h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 48px;
}

.why-chose-us-mian .make-something-content h2 {
    font-size: 84px;
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    color: var(--c1);
    line-height: 100%;
    padding: 30px 0;
}

.why-chose-us-mian .choose-us-counter .choose-us-counter-item:first-child h2,
.why-chose-us-mian .choose-us-counter .choose-us-counter-item:last-child h2 {
    color: var(--c1);
}

section.why-chose-us-section {
    position: relative;
    z-index: 1;
}

/*Mobile Menu*/

.mobile-menu-mian {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    overflow: hidden;
    transition: all .7s;
    visibility: hidden;
    opacity: 0;
}

.mobile-menu-list {
    display: flex;
    flex-wrap: wrap;
}

.mobile-menu-list .mobile-col-4 {
    width: 40%;
}

.mobile-menu-item.mobile-col-6 {
    width: 60%;
}

.mobile-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all .6s;
}

.mobile-menu-image {
    height: 60vh;
    overflow: hidden;
    position: relative;
}

.mb-service-title h2 {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    margin: 0px auto;
    position: relative;
    align-items: center;
    gap: 10px;
    justify-content: start;
}

.mb-service-title h2:before {
    /* display: table; */
    content: '';
    width: 30px;
    height: 1px;
    background: var(--c2);
}

.mb-service-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mb-service-menu ul li a {
    color: var(--c2);
    text-decoration: none;
    font-size: 15px;
    transition: all .7s;
}

.mb-service-menu ul li {
    padding: 4px 0;
    text-align: left;
}

.mobile-menu-list .mb-service-title {
    margin-bottom: 30px;
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
}

.mb-service-menu ul li a:hover {
    color: var(--c1);
}

.mobile-menu-image:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.mobile-menu-mian .mobile-menu-box1 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    bottom: -100%;
    background: #1e1e1e;
    transition: all .5s;
}

.mobile-menu-mian .container-fluid {
    padding: 0;
}

.mobile-menu-box1 .mb-social-media ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 10px 0 0;
    padding: 0;
}

.mobile-menu-box1 .mb-social-media ul li a {
    color: var(--c2);
}

.mobile-menu-box1 .mb-social-media ul li a:hover {
    color: var(--c1);
}

.mobile-menu-image.mobile-menu-image2 {
    height: 40vh;
}

.mobile-menu-image .mobile-menu-image-content {
    position: absolute;
    left: 0;
    top: 100px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all .7s;
    transform: scale(.8);
    opacity: 0;
}

.mobile-menu-image .mobile-menu-image-content a {
    color: #fff;
    font-size: clamp(16px, 3vw, 20px) !important;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    font-family: 'Kanit', sans-serif;
    line-height: 22px;
}

.mobile-menu-image:hover .mobile-menu-image-content {
    background: rgb(0 0 0 / 60%);
    transform: scale(01);
    top: 0;
    opacity: 1;
}

.mobile-menu-parent-area .mobile-menu-parent ul li a {
    color: #fff;
    font-size: 74px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Kanit', sans-serif;
    position: relative;
    line-height: 100%;
}

.mobile-menu-parent-area .mobile-menu-parent ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu-parent-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #121212;
    position: relative;
    bottom: -100%;
    transition: all .7s;
}

.mobile-menu-parent-area .mobile-menu-parent ul li a:hover {
    color: var(--c1);
}

.mobile-menu-parent-area .mobile-menu-parent ul li a:hover:before {
    width: 100%;
}

.mobile-menu-parent-area .mobile-menu-parent ul li a:before {
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0;
    height: 3px;
    background: var(--c1);
    content: '';
    transition: all .7s;
}

.mobile-menu-parent-area .mobile-menu-parent ul li {
    padding: 20px 0;
}

.mobile-menu-parent-area .mb-label-vertical-1 {
    position: absolute;
    z-index: 3;
    top: 30px;
    left: -10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0;
}

.mb-label-vertical-2 {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    right: -10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0;
}

.mobile-menu-mian .mobile-menu-mian-inner {
    position: relative;
}

.mobile-menu-mian .mobile-menu-cancel {
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 1;
    transform: rotate(45deg);
}

.mobile-menu-mian .mobile-menu-cancel a {
    display: table;
    width: 65px;
    height: 65px;
    border: 3px solid #fff;
    border-radius: 70px;
    position: relative;
    transition: all 1.2s;
}

.mobile-menu-mian .mobile-menu-cancel a:before {
    content: '';
    display: table;
    width: 4px;
    height: 35px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    margin: 8px 0;
    transition: all .7s;
    bottom: 0;
    right: 0;
    margin: auto;
}

.mobile-menu-mian .mobile-menu-cancel a:after {
    content: '';
    display: table;
    width: 4px;
    height: 35px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto auto;
    transform: rotate(89deg);
    transition: all .7s;
    bottom: 0;
    right: 0;
}

.mobile-menu-mian .mobile-menu-cancel a:hover {
    border-color: var(--c3);
    transform: rotate(268deg);
}

.mobile-menu-mian .mobile-menu-cancel a:hover:before {
    background: var(--c3);
}

.mobile-menu-mian .mobile-menu-cancel a:hover:after {
    background: var(--c3);
}

a#mobile-menu-openbtn {
    display: block;
}

.mobile-menu-mian.active {
    visibility: visible;
    opacity: 1;
    direction: block;
}

.mobile-menu-hover1 {
    height: 100%;
    overflow: hidden;
}

.mobile-menu-mian.active .mobile-menu-box1 {
    bottom: 0;
}

.mobile-menu-box1 .mb-service-menu {
    transition: all .4s;
    margin-top: 100px;
    opacity: 0;
    transition-delay: .7s;
}

.mobile-menu-mian.active .mobile-menu-box1 .mb-service-menu {
    margin-top: 0;
    opacity: 1;
}

.mobile-menu-list .mobile-menu-hover2 {
    overflow: hidden;
    height: 100%;
}

.mobile-menu-hover2 .mobile-menu-box1 {
    position: relative;
    top: -100%;
    transition: all .7s;
}

.mobile-menu-mian.active .mobile-menu-hover2 .mobile-menu-box1 {
    top: 0;
}

.mobile-menu-hover2 .mobile-menu-image {
    left: -100%;
    transition: all .7s;
}

.mobile-menu-mian.active .mobile-menu-hover2 .mobile-menu-image {
    left: 0;
}

.mobile-menu-hover3 .mobile-menu-image {
    right: -100%;
    transition: all .7s;
}

.mobile-menu-mian.active .mobile-menu-hover3 .mobile-menu-image {
    right: 0px;
}

.mobile-menu-hover5 {
    height: 100%;
    overflow: hidden;
}

.mobile-menu-mian.active .mobile-menu-hover5 .mobile-menu-parent-area {
    bottom: 0;
}

.mobile-menu-hover {
    overflow: hidden;
}

.why-chose-us-mian .choose-us-logo img {
    width: 80%;
}

.choose-us-logo {
    text-align: center;
    margin: 0;
}

section.our-packages {
    padding: 100px 0;
    margin-top: -180px;
    background: #121212;
    position: relative;
}

.why-chose-us-mian .why-choose-us-step-2 {
    background: #121212;
}

.package-button-list ul li button.nav-link {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 6px 20px;
    color: #fff;
    transition: all .7s;
    position: relative;
}

.package-button-list ul li {
    padding: 0 5px;
}

section.our-packages .package-button-list ul li {}

.package-button-list ul li button.nav-link:before {
    border-radius: 50px;
    content: '';
    display: table;
    position: absolute;
    width: 0%;
    height: 100%;
    background: var(--c1);
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
    margin: 0 auto;
    transition: all .7s;
}

.package-button-list ul li button.nav-link:hover:before {
    width: 100%;
}

.package-button-list ul li button.nav-link.active {
    background: transparent;
}

section.our-packages .package-button-list ul {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.package-button-list ul li button.nav-link span {
    position: relative;
}

.package-button-list ul li button.nav-link.active:before {
    width: 100%;
}

.package-item {
    border: 1px solid var(--c1);
    padding: 30px 30px 20px;
    border-radius: 5px;
    margin: 15px 0;
    transition: all .5s;
    min-height: 100%;
}

.package-item .package-header h3 {
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 22px;
}

.package-item .package-header {
    text-align: center;
}

.package-item .package-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    color: var(--c1);
    word-spacing: 0;
}

.package-item .package-header h2 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    font-size: 28px;
    position: relative;
    top: -7px;
    color: var(--c2);
    display: block;
}

section.our-packages .package-button-list {
    padding: 30px 0 10px;
}

.package-item .package-header h3:before {
    content: '';
    height: 13px;
    width: 100%;
    display: table;
    position: absolute;
    bottom: -5px;
    background-image: url(../images/line-icon.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.package-item .package-header h3:after {}

.package-item .package-body-data ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.package-item .package-body h6 {
    color: #fff;
    font-size: 20px;
    display: table;
    background: 1px solid var(--c1);
    padding: 0px;
}

.package-item .package-body h6:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-weight: 900;
    padding-right: 10px;
    color: var(--c1);
}

.package-item .package-body-data ul li {
    font-size: 16px;
    line-height: 220%;
    position: relative;
    padding-left: 28px;
}

.package-item .package-body-data ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 13px;
    color: var(--c1);
    position: absolute;
    left: 0;
}

.package-item .package-body-data {
    height: 280px;
    overflow-y: auto;
    margin: 20px 0 30px;
}

.package-item .package-footer a {
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 5px;
    width: 46%;
    text-align: center;
    margin: 0 1%;
    position: relative;
    overflow: hidden;
}

.package-item .package-footer a:before {
    display: table;
    width: 100%;
    height: 100%;
    background: var(--c1);
    left: 0;
    top: 0;
}

.package-item .package-footer p {
    text-align: center;
    margin-top: 11px;
}

.package-item .package-footer {
    position: relative;
}

.package-item .package-footer a:hover {
    background: var(--c1);
    border-color: var(--c1);
}

.package-item:hover {
    transform: scale(1.05);
    background: #010101;
}

section.inner-header {
    height: 600px;
}

.pb-space {
    margin-bottom: 180px;
}

section.inner-header.bg-image {
    background: url('../images/header-banner.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 260px;
    margin-top: 0 !important;
}

section.inner-header.bg-image:before {
    content: '';
    display: table;
    background: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

section.inner-header .container-th {
    position: relative;
}

.inner-header .header-title h4 {
    font-size: 120px;
    font-family: 'Kanit', sans-serif;
    line-height: 110%;
}

.inner-header .header-title {
    color: var(--white);
}

.inner-header .header-title p {
    font-size: 19px;
    margin: 0;
}

.inner-header .header-title h4 span {
    display: block;
    font-size: 30px;
    text-transform: uppercase;
}

section.contact-us-page {
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-us-page .contact-details {
    color: #fff;
}

.contact-us-page .contact-details ul {
    padding: 15px 0 0;
    margin: 0;
    list-style: none;
    width: 340px;
}

.contact-us-page .contact-details ul li {
    padding: 10px 0;
}

.contact-us-page .contact-details ul li a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
}

.contact-us-page .contact-details ul li a:hover {
    color: var(--c1);
}

.contact-us-page .form-style-01 .input-field textarea {
    height: 200px;
}

.contact-us-page .btn-style-2 .arrow-button .line {
    width: 108px;
}

.portfolio-list-02 {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #444;
    border-right: 1px solid #444;
    border-top: 1px solid #444;
}

.portfolio-list-02 .portfolio-item-2 {
    width: 33.33%;
    padding: 50px 40px;
    border-bottom: 1px solid;
    border-right: 1px solid #444;
}

.portfolio-list-02 .portfolio-item-2 img {
    width: 100%;
}

.portfolio-list-02 .portfolio-item-2:nth-child(3n+3) {
    border-right: none;
}

.mt-200 {
    margin-top: 200px;
}

section#our-portfolio-2-are {
    padding: 100px 0 50px;
    background: #121212;
}

.button-list-style-1 ul {
    display: flex;
    justify-content: center;
}

.button-list-style-1 ul li button.nav-link {
    padding: 0;
}

.button-list-style-1 ul li button.nav-link {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 6px 20px;
    color: #fff;
    transition: all .7s;
    position: relative;
}

.button-list-style-1 ul li button.nav-link:before {
    border-radius: 50px;
    content: '';
    display: table;
    position: absolute;
    width: 0%;
    height: 100%;
    background: var(--c1);
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
    margin: 0 auto;
    transition: all .7s;
}

.button-list-style-1 ul li button.nav-link.active {
    background: transparent;
}

.button-list-style-1 ul li button.nav-link.active:before {
    width: 100%;
}

.button-list-style-1 ul li button.nav-link:hover:before {
    width: 100%;
}

.button-list-style-1 ul li {
    padding: 0 5px;
}

.button-list-style-1 ul li button.nav-link span {
    position: relative;
}

section#our-portfolio-2-are .button-list-style-1 {
    padding: 30px 0 50px;
}

.image-box-01 img {
    width: 100%;
    transition: all .7s;
}

.image-box-01 {
    overflow: hidden;
}

.image-box-01:hover img {
    transform: scale(1.1);
    filter: grayscale(1);
}

.my-10 {
    padding: 100px 0;
}

.about-us-page .extraordinary-content {
    padding-bottom: 40px;
}

section.about-us-page {
    background: #121212;
}

.portfolio-list-01 .portfolio-item img {
    width: 100%;
}

.footer-menu h4 i,
.footer-detail h4 i {
    display: none;
}

section.thank-you-page {
    background: #121212;
    min-height: 800px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.content-thank-you h2 {
    color: var(--c1);
    font-size: 80px;
    text-align: center;
    font-family: 'Kanit', sans-serif;
}

section.thank-you-page .content-thank-you {
    text-align: center;
}

div#preloader {
    position: fixed;
    z-index: 999999999;
    background: #212121;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.main-header .header-contact ul li a i {
    color: var(--c1);
}

.pb-space2 {
    margin-bottom: 150px;
}

.portfolio-list-02 .website-portfolio {
    height: 650px;
    position: relative;
    overflow: hidden;
}

.portfolio-list-02 .website-portfolio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all 2s ease-in-out;
}

.portfolio-list-02 .website-portfolio:hover img {
    object-position: bottom;
}

.font-small h4 {
    font-size: 86px !important;
}

.header-title h6 {
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.header-title h6:before {
    content: '';
    width: 30px;
    height: 3px;
    background: #fff;
}

section.services-main-area {
    padding: 120px 0;
    background: #121212;
}

.services-main-area .service-box-02 {
    border: 1px solid #303030;
    padding: 80px 25px 60px;
    cursor: pointer;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 437px;
}

.services-main-area .service-box-02 h3 {
    font-size: 36px;
    font-family: 'Kanit', sans-serif;
    color: #fff;
    transition: all .7s;
}

.services-main-area .service-box-02 h3 span {
    display: flex;
    align-items: center;
    color: var(--c1);
    transition: all .7s;
}

.services-main-area .service-box-02 h3 span:before {
    content: '';
    display: table;
    width: 50px;
    height: 3px;
    background: var(--c1);
    margin-right: 15px;
    transition: all .7s;
}

.services-main-area .service-box-02:hover h3 span:before {
    background: #fff;
}

.services-main-area .service-box-02 h3:hover span:before {
    width: 0;
    margin-right: 0;
}

.services-main-area .service-box-02:hover h3 {
    color: #fff;
}

.services-main-area .service-box-02 p {
    font-size: 18px;
    margin: 30px 0;
    min-height: 54px;
}

.services-main-area .service-box-02 ul {
    padding: 0;
    list-style: none;
    font-size: 18px;
}

.services-main-area .service-box-02 ul li {
    padding: 4px 0;
}

.services-main-area .service-box-02 ul li span {
    transition: all .7s;
    display: inline-block;
}

.services-main-area .service-box-02 ul li:hover span {
    transform: rotate(90deg);
}

.services-main-area .service-box-02 ul li:hover {
    color: var(--c3);
}

.service-box-02-bg {
    width: 100%;
    position: absolute;
    right: -300%;
    top: 0;
    height: 100%;
    width: 300%;
    overflow: hidden;
}

.service-box-02 .service-box-02-bg:before {
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0 0 0 / 85%);
}

.service-box-02 .service-box-02-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-box-02:hover .service-box-02-bg {
    transition: all 2.7s;
    right: 0;
}

.service-box-02 .service-box-02-content {
    position: relative;
}

section.simple-page-content {
    padding: 60px 0;
}

section.simple-page-content h4 {
    font-size: 30px;
    color: #fff;
    margin-top: 40px;
}

section.simple-page-content a {
    color: var(--c3);
    text-decoration: none;
}

section.simple-page-content a:hover {
    color: var(--c1);
}

div#GetAQuote .modal-body {
    padding: 25px;
    border: 2px solid var(--c1);
    overflow: hidden;
}

div#GetAQuote button.btn-close {
    position: absolute;
    right: 26px;
    top: 27px;
    color: #fff !important;
    opacity: 1;
    z-index: 1;
    background: none !important;
}

div#GetAQuote button.btn-close i {
    font-size: 24px;
    transition: all .7s;
}

div#GetAQuote button.btn-close i:hover {
    color: var(--c1);
}

div#GetAQuote .heading-form h6 {
    color: var(--c1) !important;
    font-size: 22px;
    text-align: center;
    margin: 0;
}

div#GetAQuote .heading-form h3 {
    text-align: center;
    color: #fff;
}

div#GetAQuote .heading-form {
    padding-bottom: 20px;
}

div#GetAQuote .modal-content {
    background: #222;
    border: none;
}

form.myform .form-control,
form.myform textarea {
    background: transparent;
    border: 1px solid var(--c1);
    margin: 15px 0;
    height: 50px;
    color: #fff;
    border-radius: unset;
}

form.myform .form-control::placeholder,
form.myform textarea::placeholder {
    color: #fff;
}

form.myform .form-control:focus,
form.myform textarea {
    outline: none !important;
    border-color: var(--c3);
}

form.myform textarea {
    height: 110px;
    width: 100%;
    margin: 0;
    padding: 8px;
}

form.myform button#submit {
    background: var(--c1);
    color: #fff;
    border: none;
    padding: 13px 24px;
    font-size: 16px;
    border-radius: 30px 0;
    transition: all .7s;
    margin-top: 20px;
    z-index: 1;
}

form.myform button#submit:hover {
    border-radius: 0 30px;
    background: var(--c3);
    color: #222;
}

.services-slider .swiper-slide {
    height: 100%;
}

div#GetAQuote {
    z-index: 999999999;
}

/* single services */

section.header-design-02 {
    padding: 140px 0 90px;
    position: relative;
    background-position: center;
}

section.header-design-02:before {
    content: '';
    display: table;
    background: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.header-title-02 h1 {
    font-size: 70px;
    font-family: 'Kanit', sans-serif;
    line-height: 110%;
    color: #fff;
}

.header-title-02 h1 span {
    color: var(--c3);
}

.header-title-02 p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
}

section.header-design-02 .container-th {
    position: relative;
}

section.header-design-02 .header-title-02 {
    width: 80%;
}

.button-list-01 ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

section.header-design-02 .btn-style-1 span.text {
    font-size: 18px;
}

section.header-design-02 .btn-style-1 span.line {
    width: 130px;
}

section.single-service-section-1 .single-service-content-1 h2 {
    font-size: 60px;
    font-family: 'Kanit', sans-serif;
    color: #fff;
}

.s-content-design-01 {
    display: flex;
    gap: 50px;
    color: #fff;
}

.s-content-design-01 p {
    font-size: 18px;
}

.s-list-design-01 ul {
    font-size: 20px;
    color: #ffffff !important;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.s-list-design-01 ul li {
    width: 50%;
    padding: 5px 0;
}

.bt-2 {
    border-bottom: 2px solid;
    padding-bottom: 20px;
}

section.single-service-section-1 {
    padding: 100px 0;
}

section.single-service-section-1 .s-list-design-01 {
    margin-top: 30px;
}

section.our-process {
    background-size: cover;
    background-attachment: fixed;
    padding: 200px 0 0;
}

section.our-process .our-process-list {
    display: flex;
    background: #1e1e1e;
    margin-bottom: -1px;
    padding: 0 40px;
}

section.our-process .our-process-list .our-process-item {
    width: 25%;
}

.our-process-item .our-process-item-inner {
    padding: 60px 20px;
    margin-top: 60px;
    border-right: 1px solid #5a5a5a;
    height: 100%;
}

.our-process-item .our-process-item-inner h4 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}

.our-process-item .our-process-item-inner h4 span {
    color: var(--c1);
    display: flex;
    align-items: center;
    transition: all .7s;
}

.our-process-item .our-process-item-inner h4 span:before {
    content: '';
    width: 40px;
    height: 3px;
    background: #fff;
    transition: all .7s;
    margin-right: 15px;
}

.our-process-item:hover .our-process-item-inner h4 span:before {
    width: 0;
    margin-right: 0;
}

.our-process-item:hover .our-process-item-inner h4 span {
    color: #fff;
}

.our-process-item .our-process-item-inner p {
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
}

section.our-process .our-process-list .our-process-item {
    position: relative;
}

.our-process-list .our-process-item:before {
    content: '';
    display: table;
    width: 100%;
    height: 1px;
    background: #5a5a5a;
    top: 60px;
    position: absolute;
}

.our-process-list .our-process-item:first-child .our-process-item-inner {
    border-left: 1px solid #5a5a5a;
}

.our-process-list .our-process-item:after {
    content: '';
    display: table;
    width: 11px;
    height: 11px;
    background: #fff;
    top: 55px;
    position: absolute;
    border-radius: 11px;
    left: -5px;
    animation: our_process_icon 2s infinite;
}

@keyframes our_process_icon {
    0% {
        transform: scale(.8);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(.8);
    }
}

.bg-gr {
    background: #1e1e1e !important;
}

section.single-service-faqs {
    padding: 100px 0;
}

.service-faqs-list .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c2);
}

.service-faqs-list .accordion-item p {
    margin: 0;
    font-size: 16px;
}

.service-faqs-box h2 {
    font-size: 48px;
    font-family: 'Kanit', sans-serif;
    color: #fff;
}

.service-faqs-box .service-faqs-list {
    margin-top: 30px;
    border-top: 1px solid var(--c2);
}

.service-faqs-box h2 button {
    background: transparent;
    color: var(--c2);
    font-size: 22px;
    padding: 25px 0;
}

.service-faqs-list .accordion-item .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.service-faqs-box h2 button.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.service-faqs-list .accordion-item .accordion-button:after {
    background: transparent;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    transform: rotate(0);
    opacity: 1;
}

.service-faqs-list .accordion-item .accordion-body {
    padding: 10px 0 30px;
}

.service-faqs-box h2 button.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.service-faqs-list .accordion-item .accordion-button:after {
    color: #fff !important;
}

.service-faqs-list .accordion-item .accordion-body {
    padding: 10px 0 30px;
}

.service-faqs-list .accordion-item .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

section.service-content-3-area {
    padding: 100px 0;
}

.service-content-3-area .service-content-3 h2 {
    font-size: 48px;
    font-family: 'Kanit', sans-serif;
    color: #fff;
}

.service-content-3-area .service-content-3 {
    padding-bottom: 60px;
}

.services-main-area .service-box-02:hover h3 span {
    color: #fff;
}

main.single-service-page .portfolio-list-02 .portfolio-item-2:nth-child(n+10) {
    display: none;
}

main.single-service-page section#our-portfolio-2-are {
    padding-bottom: 120px;
}

.image-styl-01 {
    overflow: hidden;
}

.image-styl-01:hover img {
    transform: scale(1.2);
}

.image-styl-01 img {
    transition: all .7s;
    max-width: 100%;
}

main.single-service-page .btn-style-2 .arrow-button .line {
    width: 115px;
}

.content-box-style-02 {
    background: #1e1e1e;
    margin: 65px 0 0;
    position: relative;
    border-radius: 25px 0;
}

.content-box-style-02-inner:hover .content-box-style-02-icon i {
    color: var(--c3);
}

.content-box-style-02-inner .content-box-style-02-icon i {
    color: var(--c1);
    font-size: 38px;
    transition: all .7s;
}

section.digital-marketing-content-01 {
    padding: 100px 0;
}

.bg-dark {
    background-color: #121212 !important;
}

.bg-light {
    background: #1e1e1e !important;
}

.content-box-style-02-inner .content-box-style-02-content h4 {
    font-size: 26px;
    color: #fff;
    margin: 17px 0 12px;
}

.content-box-style-02-inner .content-box-style-02-content h4 span {
    color: var(--c1);
    font-weight: 600;
}

.content-box-style-02-inner .content-box-style-02-content p {
    font-size: 16px;
    margin: 0;
}

.content-box-style-02:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 0%;
    background: #000;
    right: 0;
    left: 0;
    top: 0;
    margin: 0 auto;
    display: table;
    transition: all .7s;
    z-index: 0;
    border-radius: 25px 0;
}

.content-box-style-02:hover:before {
    width: 100%;
    height: 100%;
}

.content-box-style-02-inner .content-box-style-02-icon {}

.content-box-style-02 .content-box-style-02-inner {
    padding: 40px 25px 0;
    min-height: 280px;
    position: relative;
}

.content-style-04 .heading-small {
    color: #fff;
    font-size: 18px;
}

.content-style-04 .heading-large {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    padding: 0;
}

.content-style-04 .heading-large span {
    color: var(--c1);
}

section.service-content-options {
    padding: 100px 0;
}

section.service-content-options .mb-5 {
    margin-bottom: 3rem !important;
}

.service-options-list ul#pills-tab {
    display: flex;
    flex-direction: column;
    counter-reset: service;
    margin: 0;
    padding: 0;
    border-top: 1px solid #3c3c3c;
}

.service-options-list ul#pills-tab li button {
    width: 100%;
    text-align: left;
    color: var(--c2);
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    line-height: 130%;
    padding: 20px 0;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all .7s;
    position: relative;
}

.service-options-list ul#pills-tab li button.active {
    color: #fff;
    background: transparent;
}

.service-options-list ul#pills-tab li.nav-item {
    border-bottom: 1px solid #3c3c3c;
}

.service-options-list ul#pills-tab li button:before {
    counter-increment: service;
    content: "0" counter(service);
    display: table;
}

.service-options-list ul#pills-tab li button:hover {
    color: #fff;
}

.service-options-content-01 .service-options-01-content h2,
.service-options-content-01 .service-options-01-content h3,
.service-options-content-01 .service-options-01-content h4 {
    color: #fff;
    font-size: 42px;
    font-family: 'Kanit', sans-serif;
}

.service-options-content-01 .service-options-01-content p {
    font-size: 18px;
}

.float-right {
    float: right;
}

.service-options-list ul#pills-tab li button>span {
    font-size: 27px;
    overflow: hidden;
    width: 50px;
    height: 30px;
    line-height: 50px;
    position: absolute;
    right: 0;
}

.service-options-list ul#pills-tab li button span span {
    display: flex;
    width: 200%;
    transition: all .7s;
}

.service-options-list ul#pills-tab li button span span i {
    padding: 0 10px;
    font-size: 30px;
}

.service-options-list ul#pills-tab li button:hover span span {
    margin-left: -100%;
}

section.service-sticky-content-main {
    padding: 100px 0;
}

.service-sticky-content-01 .heading-01 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
    font-family: 'PT Sans Caption', sans-serif;
    font-weight: 600;
}

section.services-main-area .service-box-02 a {
    text-decoration: none;
    color: #fff;
}

.service-sticky-content-01 .heading-01 span {
    color: var(--c1);
}

section.service-sticky-content-main .service-sticky-content-01 {
    font-size: 18px;
    line-height: 160%;
}

section.service-sticky-content-main .service-sticky-content-01 strong {
    color: #fff;
}

section.service-sticky-content-main .service-sticky-content-01 a {
    color: #fff;
    text-decoration: none;
}

section.service-sticky-content-main .service-sticky-content-01 a:hover {
    color: var(--c1);
}

.service-sticky-content-01 ul li {
    line-height: 180%;
}

.service-sticky-content-01 ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 16px;
    padding-left: 20px;
}

.content-box-style-02-inner .content-box-style-02-icon {
    position: absolute;
    top: -45px;
    width: 90px;
    height: 90px;
    background: #1e1e1e;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.image-style-01 {
    overflow: hidden;
}

.image-style-01 img {
    transition: all .7s;
}

.image-style-01:hover img {
    transform: scale(1.1);
}

section.our-brands {
    background: #1e1e1e !important;
    min-width: 100%;
    max-width: 100%;
}

.copyright-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}

.copyright-menu ul li a {
    color: #fff;
    text-decoration: none;
    transition: all .6s;
}

.copyright-menu ul li a:hover {
    color: var(--c1);
}

.content-box-style-02-inner .content-box-style-02-icon img {
    width: 40px;
}

/* end single services */

/* Responsive Menu */

.mobile-menu-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: -100;
    background: #000;
    width: 100%;
    background: rgb(219, 255, 0);
    /* background: linear-gradient(90deg, #CDDC39 0%, rgba(255,23,145,1) 100%); */
    z-index: 9999;
    /* background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,23,145,1) 49%, rgba(0,0,0,1) 100%); */
    background-color: #16b3d3;
}

.mobile-menu-button .mobile-menu-button-list ul li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    display: table;
    width: 100%;
    border: 1px solid var(--c1);
    text-align: center;
    font-size: 18px;
    border-radius: 20px 0;
    background: rgb(0 0 0 / 70%);
}

.mobile-menu-button .mobile-menu-button-list ul li a i {
    color: var(--c1);
}

.mobile-menu-button .mobile-menu-button-list ul {
    display: flex;
    margin: 0;
    padding: 8px;
    gap: 10px;
    list-style: none;
}

.mobile-menu-button .mobile-menu-button-list ul li {
    width: 25%;
}

.mobile-menu-button .mobile-menu-button-list ul li a:hover {
    background: rgb(255 255 255 / 70%);
    color: #222;
}

.service-menu-box-area {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 87%);
    z-index: 999999;
    backdrop-filter: blur(8px);
    padding: 20px 20px;
    transition: all .7s;
}

.service-menu-box-area .service-menu-box-closed a {
    color: #fff;
    font-size: 20px;
}

.service-menu-box-area .service-menu-box-closed {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-menu-box-area .service-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    box-sizing: border-box;
}

.service-menu-box-area .service-menu-list .service-menu-item {
    width: 47%;
    background: #121212;
    padding: 25px 15px 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #121212;
    position: relative;
}

.service-menu-box-area .service-menu-list .service-menu-item img {
    height: 60px;
}

.service-menu-box-area .service-menu-list .service-menu-item h3 {
    font-size: 18px;
    color: #fff;
}

.service-menu-box-area .service-menu-list .service-menu-item .service-menu-item-title {
    margin-top: 30px;
}

.service-menu-box-area .service-menu-list .service-menu-item h3 span {
    display: block;
    color: var(--c1);
}

.service-menu-box-area .service-menu-box-heading h4 {
    color: #fff;
    text-align: left;
    font-size: 22px;
    margin: 20px 0;
    text-align: center;
}

.service-menu-box-area .service-menu-box img {
    height: 60px;
}

.service-menu-box-area .service-menu-box-heading h4 span {
    color: var(--c1);
}

.service-menu-box-area .service-menu-list .service-menu-item:first-child {
    border-color: var(--c1);
}

.service-menu-box-area.active {
    left: 0;
}

.service-menu-list .service-menu-item .service-menu-item-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.service-menu-list .service-menu-item .service-menu-item-overlay a {
    display: table;
    height: 100%;
    width: 100%;
}

.service-menu-box-area .service-menu-box-area-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

/* End Responsive Menu */

.package-item .package-body-data ul strong {
    margin-top: 10px;
    display: inline-block;
}

.service-slide .service-slide-content h3 a {
    color: #ffffff;
    text-decoration: none;
}

.service-slide .service-slide-content h3 a:hover {
    color: var(--c1);
}

.content-thank-you h2 span {
    color: #fff;
}

section.header-design-02 .large-btn-style-1 span.line {
    width: 160px !important;
}

.footer-detail ul li i {
    color: var(--c1);
}

.contact-us-page .contact-details ul li stronge {
    font-weight: 600;
    color: var(--c1);
    display: block;
}

.contact-us-page .contact-details ul li i {
    color: var(--c1);
}

section.page_404 {
    padding: 70px 0;
}

section.page_404 h1 {
    font-size: 60px;
    color: var(--c3);
}

section.page_404 .contant_box_404 .h2 {
    color: var(--white);
}

section.page_404 .contant_box_404 .link_404 {
    background: var(--c1);
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    display: inline-block;
}

section.page_404 .contant_box_404 .link_404:hover {
    background: var(--c3);
    color: #222;
}

.inner-header .header-title h1 {
    font-size: 120px;
    font-family: 'Kanit', sans-serif;
    line-height: 110%;
}

.package-item .package-header h2 span.sml {
    display: block;
    font-size: 19px;
}

.doublewrap {
    margin-top: 50px;
    padding: 35px 40px 20px;
    min-height: 612px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 30px 0 rgb(0 0 0 / 14%);
    background: var(--white);
}

.doublewrap h6 {
    text-transform: uppercase;
    font-size: 20px;
    color: white;
    margin: 0px;
    text-align: center;
}

.doublewrap h3 {
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    color: white;
    margin: 15px auto 30px;
    text-align: center;
}

.jack li {
    position: relative;
    font-size: 13px;
    line-height: 22px;
    text-align: left;
    list-style: none;
    margin: 0px;
    opacity: 1;
    /* color: #000; */
    padding-bottom: 6px;
    padding-left: 20px;
    font-weight: 500;
}

.jack li:before {
    position: absolute;
    left: 0;
    top: 5px;
    height: 5px;
    width: 5px;
    color: #d12e49;
    border-radius: 50%;
    /* background: #7b7b7b; */
}

.chatt {
    padding-top: 0;
    text-align: left;
}

a.action-no .fa {
    color: #16b3d3;
}

section.pricing h2,
section.testimonials h2 {
    padding: 0;
    font-size: 38px;
    margin: 0;
    line-height: 38px;
    font-weight: 900;
    text-transform: none;
    color: #2e2e2e;
}

span.old-price {
    display: inherit;
    font-size: 25px;
    font-weight: 400;
    position: relative;
    width: 100%;
    margin: 0px auto 7px;
    color: var(--pink);
    text-decoration: line-through;
}

.doublewrap span.price {
    font-size: 40px;
    font-weight: bold;
    color: #16b3d3;
    margin: 0 0 20px;
    display: inline-block;
    line-height: 36px;
    background: -webkit-linear-gradient(to right, #932987, #e92747);
    /* background: linear-gradient(to right, #141232, #a4001b); */
    -webkit-background-clip: text;
    background-clip: text;
    /* color: transparent; */
}

.chatt .actions .action-chat {
    color: #16b3d3;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
}

.chatt a.action-no {
    font-size: 20px;
    color: #16b3d3;
    text-decoration: none;
}

.actions a {
    margin-right: 20px;
    min-width: 230px;
    font-weight: bold;
}

.priccc {
    padding-top: 20px;
    width: 49%;
    float: left;
    text-align: left;
}

.wrapk {
    text-align: right;
    width: 49%;
    float: right;
    padding-top: 0;
}

.chatt h2 {
    font-size: 20px;
}

.doublewrap {
    margin-top: 50px;
    padding: 35px 40px 20px;
    min-height: 612px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 50px;
    border: 1px solid #16b3d3;
    /* box-shadow: 0 6px 30px 0 rgb(0 0 0 / 14%); */
    background: transparent;
}

.view-detail {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin: 10px 0;
    display: block;
    line-height: normal;
}

.wrapk.btn_pkg .view-detail:hover {
    color: #e92747;
}

.jack li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 13px;
    color: var(--c1);
    position: absolute;
    left: 0;
}

.button-area.white-btn a {
    color: white;
    text-decoration: none;
    transition: all 0.7s;
}

.button-area.white-btn a:hover {
    color: #16b3d3;
}

.product_detail_sec {
    padding: 130px 0;
    background: var(--light_white);
    position: relative;
    z-index: 1;
}

.pkg_detail_sec:before {
    content: '';
    border: 3px solid var(--pink);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    z-index: -1;
    right: -20px;
    bottom: -20px;
}

.pkg_detail_sec:after {
    content: '';
    background: var(--red);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    z-index: -1;
    left: -20px;
    top: -20px;
}

.pkg_list_detail {
    margin: 0 10px 0 60px;
}

.pkg_list_detail ul.pkg-list {
    height: 510px;
    overflow-y: scroll;
}

.pkg_list_detail {}

.pkg_list_detail ul.pkg-list li {
    border-bottom: 1px solid #ccc;
    padding: 15px 0px;
    font-size: 14px;
    color: #cacaca;
    font-weight: 400;
    margin-right: 20px;
    list-style: none;
}

.pkg_detail_sec {
    padding: 40px 30px;
    background: transparent;
    display: inline-block;
    vertical-align: top;
    box-shadow: 0 6px 40px 0 rgb(0 0 0 / 14%);
    margin-top: 40px;
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #16b3d3;
}

.pkg_detail_sec span.h5 {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 45px;
    font-weight: bold;
    color: var(--c1);
}

.pkg_detail_sec h4 {
    color: white;
}

.pkg_detail_sec .line_through {
    margin: 10px 0;
    color: white;
}

.product_detail_sec ul.pkg-list::-webkit-scrollbar {
    width: 7px;
    border-radius: 10px;
}

.pkg_detail_sec a {
    background: #ff1791;
    width: 150px;
    display: block;
    padding: 10px;
    border-radius: 10px 0 10px 0;
    border: 2px solid var(--c1)
}

.pkg_detail_sec a:hover {
    background: white;
    color: var(--c1)
}

.product_detail_sec ul.pkg-list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e6e5e5;
    border-radius: 10px;
    background: transparent;
}

.product_detail_sec ul.pkg-list::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 10px;
}

.product_detail_sec ul.pkg-list::-webkit-scrollbar-thumb:hover {
    background: var(--c2);
    ;
    border-radius: 10px;
}

.pkg_list_detail h4 {
    font-weight: bold;
    font-size: 32px;
    color: white;
}

.pkg_list_detail ul.pkg-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 13px;
    color: var(--c1);
}

/*Support Section Begin*/

.support_sec_tab {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 30px 20px;
    height: 140px;
}

.support_content_Sec p {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.icon_support {
    margin-right: 20px;
}

.support_sec_main .row .col-lg-3:nth-child(2) .support_sec_tab,
.support_sec_main .row .col-lg-3:nth-child(4) .support_sec_tab {
    background: #16b3d3;
}

.about_sec {
    padding: 100px 0 120px;
    background: var(--light_white);
    position: relative;
    z-index: 1;
}

.web_content_sec h3 {
    font-size: 30px;
    text-transform: capitalize;
    color: var(--c1);
    font-weight: bold;
}

.web_content_sec p {
    font-size: 16px;
    line-height: 28px;
    color: white;
}

ul.list_tab_sec {
    padding: 0 0 0 20px;
}

ul.list_tab_sec li {
    position: relative;
    font-size: 14px;
    padding: 0 0px 21px 0px;
    font-weight: 400;
    font-family: sans-serif;
    color: white;
}

ul.list_tab_sec li:before {
    position: absolute;
    left: 0;
    color: black;
    font-size: 21px;
}

.about_sec .row {
    align-items: center;
}

.about_sec_list .button-area.white-btn a,
.our_portfolio_Sec .button-area.white-btn a {
    background: #16b3d3;
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 10px 0;
}

.about_sec_list .button-area.white-btn a:hover,
.our_portfolio_Sec .button-area.white-btn a:hover {
    color: black;
    background: yellow;
}

.about_sec_list a.newbutton2,
.our_portfolio_Sec a.newbutton2 {
    background: yellow !important;
    color: black !important;
    border-radius: 0 10px !important;
}

.about_sec_list a.newbutton2:hover,
.our_portfolio_Sec a.newbutton2:hover {
    background: #16b3d3 !important;
    color: white !important;
}

/*Support Section End*/

/*Bussniess Section Begin*/

.business_box_sec {
    box-shadow: 0 4px 12px 0 rgb(0 0 0 / 12%);
    padding: 50px 20px;
    /* text-align: center; */
    min-height: 410px;
    margin: 30px 10px;
    background: transparent;
    position: relative;
    z-index: 99;
    border: 1px solid #16b3d3;
}

.business_content h4 {
    font-size: 19px;
    font-weight: bold;
    color: var(--pink);
}

.business_content p {
    font-size: 15px;
    line-height: 30px;
    max-height: 113px;
}

span.number-bg {
    left: 0;
    right: 0;
    z-index: -1;
    top: 20px;
    color: #efefef;
    font-size: 115px;
    line-height: 120px;
    font-weight: 700;
    position: absolute;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
    text-align: center;
}

.business_icon {
    padding-bottom: 20px;
    margin-top: 30px;
}

.business_icon img {
    /* width: 80px; */
    object-fit: contain;
    margin: 0 auto;
    display: block;
    width: auto;
}

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
}

.bussniess_Sec_main {
    background: var(--light_white);
    position: relative;
    z-index: 1;
}

.inner_about {
    background: var(--white);
}

.inner_portfolio {
    background: var(--white);
}

.content-style-1 h2 {
    color: var(--c1);
    text-align: center;
    ;
    margin: 10px auto;
}

.content-style-1 p {
    color: white;
    text-align: center;
    ;
    margin: 20px auto;
}

/*Freedom Section Begin*/

.freedom_img_sec img {
    width: 100%;
}

.freedom_Sec_main .row {
    align-items: center;
}

.freedom_content_Sec {
    padding: 0 80px;
}

.freedom_content_Sec h3 {
    font-size: 29px;
    font-weight: bold;
    /* color: var(--heading_color); */
    width: 80%;
    line-height: 40px;
    margin: 20px 0;
    color: var(--c1);
}

.freedom_content_Sec p {
    color: var(--heading_color);
    font-size: 15px;
    line-height: 23px;
    width: 90%;
    margin-bottom: 20px;
    font-weight: 400;
}

.freedom_list ul li h4 {
    font-size: 17px;
    font-weight: bold;
    color: var(--c1);
}

.freedom_list ul li p {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 400;
}

.freedom_Sec_main {
    background: transparent;
}

.freedom_list ul li {
    position: relative;
    padding: 0 0px 30px 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
}

.freedom_list ul li span {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border: 5px solid var(--c1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #e6e6e6;
}

.freedom_list ul li span img {
    width: 75%;
}

/*Freedom Section End*/

/*Our Portfolio Section Begin*/

.our_portfolio_Sec {
    background: var(--light_white);
}

.inner_portfolio .our_portfolio_Sec {
    background: var(--white);
}

.tab_content_sec ul {
    border: 0;
    text-align: center;
    justify-content: center;
}

.tab_content_sec ul li {
    margin: 0;
}

.tab_content_sec ul li a {
    background: var(--white);
    color: var(--pink);
    border-radius: 45px !important;
    padding: 8px 17px;
    margin: 0 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--pink) !important;
}

.tab_content_sec ul li a:hover,
.tab_content_sec ul li a.active {
    background: -moz-linear-gradient(left, rgb(144, 41, 139) 0%, rgb(163, 41, 116) 50%, rgb(184, 40, 90) 100%);
    background: -webkit-linear-gradient(left, rgb(144, 41, 139) 0%, rgb(163, 41, 116) 50%, rgb(184, 40, 90) 100%);
    background: linear-gradient(to right, rgb(144, 41, 139) 0%, rgb(163, 41, 116) 50%, rgb(184, 40, 90) 100%);
    color: var(--white) !important;
}

.portfolio_box_img {
    display: inline-block;
    margin: 10px 0;
}

.portfolio_box_img figure img {
    width: 100%;
}

.our_portfolio_Sec .container-fluid {
    padding: 0;
}

.portfolio_box_img:hover a:after {
    opacity: 1;
    position: absolute;
    content: "+";
    left: 50%;
    top: 48%;
    width: 48px;
    margin-left: -24px;
    margin-top: -24px;
    color: #fff;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    text-shadow: 0 0 10px rgb(0 0 0 / 25%);
    z-index: 999;
}

.portfolio_box_img:hover a:before {
    content: '';
    background: rgb(0 0 0 / 25%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 99;
}

.portfolio_box_img a figure img {
    width: 100%;
    position: relative;
    top: 0;
    transition: 2s all;
}

.portfolio_box_img a {
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.portfolio_box_img a figure {
    margin-bottom: 0;
    /* height: 500px; */
}

.pkg-list ul li {
    list-style: url("../images/right.jpg") !important;
}

ul.pkg-list {
    padding-left: 23px;
}

.content-style-5 h2 {
    text-align: center;
    color: var(--c1)
}

.content-style-5 p {
    text-align: center;
    color: white
}

.uwy.userway_p1 .userway_buttons_wrapper {
    top: 92% !important;
    left: 50px !important;
    transform: translate(-100%);
}

.tp-logo img {
    width: 250px;
    /* object-fit:contain; */
}

#cookie-popup {
    display: none;
    position: fixed;
    top: 5%;
    left: 40%;
    width: 400px;
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px #16b3d3;
    z-index: 10002;
    border-radius: 20px;
    border: 2px solid #16b3d3;
}

button#accept-cookie {
    background: #16b3d3;
    padding: 7px 20px;
    border: none;
    color: white;
    border-radius: 10px 0 10px 0;
}

button#reject-cookie {
    background: #ffff00;
    padding: 7px 20px;
    border: none;
    color: black;
    border-radius: 0 10px 0 10px;
    margin-left: 10px;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    z-index: 10000;
    /* Place it below the popup */
}

.mb-social-media a {
    color: white;
    text-decoration: none;
    transition: all 0.7s;
    font-size: 22px;
}

.mb-social-media a:hover {
    color: var(--c1);
}

/*! CSS Used from: https://www.creativewebsitestudios.com/css/m-style.css */

section {
  display: block;
}
h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}
img {
  vertical-align: middle;
  border-style: none;
}
button {
  border-radius: 0;
}
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  overflow: visible;
}
button {
  text-transform: none;
}
button {
  -webkit-appearance: button;
}
h2 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h2 {
  font-size: 2rem;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-md-10,
.col-md-3,
.col-md-4,
.col-md-9 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}
.fade {
  opacity: 1;
  transition: opacity 0.15s linear;
}
.collapse {
  display: none;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.m-0 {
  margin: 0 !important;
}
.p-0 {
  padding: 0 !important;
}
@media print {
  *,
  ::after,
  ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  img {
    page-break-inside: avoid;
  }
  h2,
  p {
    orphans: 3;
    widows: 3;
  }
  h2 {
    page-break-after: avoid;
  }
  .container {
    min-width: 992px !important;
  }
}
/*! CSS Used from: https://www.creativewebsitestudios.com/css/style.min.css */
.sec-breif .nav-tabs {
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-tabs {
  border-bottom: none !important;
  text-align: center;
  display: block;
}
.fold .sec-breif ul li:first-child {
  margin-left: 0;
}
.fold.portfolio .sec-breif ul li {
  width: 164px;
}
.fold .sec-breif ul li {
  padding: 0;
  border-radius: 0;
  color: #58518b;
  border: 2px solid #58518b;
  font-size: 16px;
  font-weight: 700;
  transition: 1s all;
  display: inline-block;
  margin: 30px 0px 0;
  cursor: pointer;
  text-align: center;
  margin: 6px;
}
.nav-tabs .nav-link.active {
  color: #000 !important;
  background-color: #16b3d3;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef2639', endColorstr='#ad1f67',GradientType=1 );
  border: 2px solid #000;
}
.nav-tabs .nav-link {
  color: #fff;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-search:before {
  content: "\f002";
}
.fa-play:before {
  content: "\f04b";
}

.p-0 {
  padding: 0;
}
.m-0 {
  margin: 0;
}

.fold .sec-breif ul li {
  padding: 0;
  border-radius: 0;
  color: #16b3d3;
  border: 2px solid #16b3d3;
  font-size: 16px;
  font-weight: 700;
  transition: 1s all;
  display: inline-block;
  margin: 30px 0px 0;
  cursor: pointer;
}
.fold.portfolio .sec-breif ul li {
  width: 193px;
}
.fold .sec-breif ul li:first-child {
  margin-left: 0;
}
@media screen and (min-width: 992px) {
  .fold {
    padding: 60px 0 60px;
  }
  p {
    font-size: 16px !important;
  }
  .sec-breif p {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: #000;
    font-family: CerebriSansLight;
    color: #20232a;
    font-family: CerebriSansLight;
  }
}
button:focus {
  outline: 0;
}
span.card img {
  object-position: center top;
  object-fit: cover;
}
.tabs {
  display: none;
  width: 100%;
}
.tabs.current {
  display: inline-block;
  text-align: left;
}
::selection {
  color: #ffffff !important;
  background: #ad1f67;
  -webkit-text-fill-color: #fff !important;
}
.tabs-logoport .col-md-9 .prtflo {
  text-align: center;
  padding: 10px 0 0;
  position: relative;
  margin: 60px 0 0;
  width: 100%;
}
.prtflo .secwrp {
  overflow: hidden;
  padding: 0 0 0;
  margin: 5px;
  position: relative;
}
.prtflo .secwrp:hover {
  z-index: 9;
}
.prtflo .secwrp:hover span {
  background: #fffefe87;
  opacity: 1;
}
.prtflo .secwrp:hover i {
  display: inline-block;
  width: 50px;
  padding: 13px 0;
  background: #133d92;
  border-radius: 50px;
  height: 50px;
}
.prtflo .secwrp:hover img {
  transform: scale(1);
}
.prtflo .secwrp span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fffefe87;
  left: 0;
  opacity: 0;
  transition: 1s all;
}
.prtflo .secwrp span i {
  display: none;
  font-size: 25px;
  color: #fff;
  margin: 0 auto;
  left: 0;
  position: absolute;
  top: 40%;
  right: 0;
}
.prtflo .secwrp img {
  padding: 0 0 0;
  width: 100%;
  height: calc(100%);
  transition: 1s all;
}
@media only screen and (max-width: 767px) {
  .new ul.tabs li img {
    width: 32% !important;
    padding: 4px;
  }
  section.fold.case.portfolio {
    overflow: hidden;
  }
  .prtflo .secwrp.portl span {
    height: 0 !important;
  }
  .sec-breif h2 {
    font-size: 36px;
  }
  .sec-breif p {
    font-size: 16px;
  }
  .fold {
    padding: 40px 0;
  }
  .fold .sec-breif ul li {
    margin: 20px 5px 0;
    padding: 17px 5px;
    width: 40%;
  }
  .fold .sec-breif ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tabs.current {
    margin: 0 !important;
}

ul.tabbing-links.web {
    padding: 0;
}
  .fold.portfolio .sec-breif ul li {
    width: 42%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1054px) {
  .sec-breif h2 {
    font-size: 36px;
  }
  .sec-breif p {
    font-size: 16px;
  }
  .fold {
    padding: 40px 0;
  }
  .fold .sec-breif ul li {
    margin: 20px 5px 0;
    padding: 17px 5px;
    width: 40%;
  }
  .fold .sec-breif ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fold.portfolio .sec-breif ul li {
    width: 29%;
  }
}
@media only screen and (min-width: 920px) and (max-width: 1054px) {
  .fold.portfolio .sec-breif ul li {
    width: 15%;
  }
}
.fold {
  padding: 0 0 20px;
}
.tabbing-links {
  text-align: center;
}
.tabbing-links:after,
.tabbing-links:before {
  content: " ";
  display: table;
}
.tabbing-links li {
  border-bottom: 2px solid #fff;
  font-size: 20px;
  padding-bottom: 4px;
  cursor: pointer;
  margin: 0 20px;
  position: relative;
}
.tabbing-links {
  text-align: center;
}
.tabbing-links li.current,
.tabbing-links li:hover {
  color: #3575ff;
  border-bottom: 2px solid #ef3d5b;
}
.tabbing-links li {
  border-bottom: 2px solid #fff;
  font-size: 20px;
  padding-bottom: 4px;
  cursor: pointer;
  margin: 0 20px;
  position: relative;
}
.tabbing-links:after {
  clear: both;
}
.tabbing-links:after,
.tabbing-links:before {
  content: " ";
  display: table;
}
.tabs.current {
  display: block;
}
.tabs {
  display: none;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.new ul.tabs li {
  display: inline;
}
.new ul.tabs li img {
  width: 24%;
  padding: 4px;
}
.tabbing-links li.current {
  color: #fff !important;
  border: 1px solid #fff;
  background: #ff4081;
  border-radius: 26px;
  padding: 5px 0 !important;
  margin-bottom: 10px;
}

.sec-breif {
    text-align: center;
}

.sec-breif p {
    color: #fff;
}

section.fold.case.portfolio .row {
    justify-content: center;
}

.sec-breif h2 {
    color: #fff;
}

ul.tabbing-links.tabs-left-wrap.extra.btnwidth.web li {
  border-bottom: 0;
  color: #fff;
  padding-bottom: 15px;
  text-transform: capitalize;
}
ul.tabbing-links.web {
  height: 400px;
  overflow: hidden;
  overflow-y: scroll;
  margin-top: 20px;
}
ul.tabbing-links.web::-webkit-scrollbar {
  width: 5px;
}
ul.tabbing-links.web::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
ul.tabbing-links.web::-webkit-scrollbar-thumb {
  background: #16b3d3;
  border-radius: 10px;
}
.to-win-box.secwrp:hover span {
  background: #fffefe87;
  opacity: 1;
}
.prtflo .secwrp.portl {
  padding: 0 0 0;
  margin: 0;
  position: relative;
}
.prtflo .secwrp.portl:hover {
  z-index: 9;
}
.prtflo .secwrp.portl:hover span {
    background: transparent;
    opacity: 1;
}
.prtflo .secwrp.portl:hover i {
  display: inline-block;
  width: 50px;
  padding: 13px 0;
  background: #133d92;
  border-radius: 50px;
  height: 50px;
}
.prtflo .secwrp.portl:hover img {
  transform: scale(1);
}
.prtflo .secwrp.portl span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fffefe87;
    left: 0;
    opacity: 0;
    top: 0;
    transition: 1s all;
}
.prtflo .secwrp.portl span i {
  display: none;
  font-size: 25px;
  color: #fff;
  margin: 0 auto;
  left: 0;
  position: absolute;
  top: 40%;
  right: 0;
}
.prtflo .secwrp.portl span .fa-search:before {
  content: "\f002";
  padding-left: 13px;
}
#text {
  display: none;
}
.btn-container {
  margin: auto;
  width: max-content;
  margin-top: 20px;
}
.btn-container button {
  padding: 17px 78px;
  min-width: 244px;
  border-radius: 30px;
  color: #3697fe;
  border: 2px solid #3697fe;
  font-size: 16px;
  font-weight: 700;
  transition: 1s all;
  cursor: pointer;
  background: 0 0;
}
.tabs.animal li.to-win-box.secwrp.portl {
  float: left;
  width: 25%;
}
.tabs.animal li.to-win-box.secwrp.portl a {
  display: block;
  width: 100%;
}
.tabs.animal li.to-win-box.secwrp.portl a img.lazy.imgadded.loaded {
  width: 100%;
  height: auto;
}
section.fold.case.portfolio .secwrp a img.lazy {
  height: auto;
}
@media only screen and (min-width: 300px) and (max-width: 767px) {
  .fold {
    padding: 0 0 10px;
  }
}
/*! CSS Used from: https://www.creativewebsitestudios.com/css/testi-main.css */
.card {
  border-radius: 8px;
  background-color: #fff !important;
  padding: 32px;
  -webkit-transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 24px;
  box-shadow: 0 2px 8px 0 rgba(103, 151, 255, 0.09),
    0 4px 32px 0 rgba(103, 151, 255, 0.09) !important;
}
/*! CSS Used from: https://www.creativewebsitestudios.com/css/style_for_port.css */
.tabbing-links li.current {
  color: #000 !important;
  border: 1px solid #fff;
  background-color: #16b3d3;
  border-radius: 26px;
  padding: 7px 20px !important;
  margin-bottom: 10px;
  font-size: 12px;
}
.tabbing-links li {
  border-bottom: 2px solid #fff;
  font-size: 20px;
  padding-bottom: 4px;
  cursor: pointer;
  margin: 0 20px;
  position: relative;
  font-size: 13px;
  padding: 7px 13px !important;
}
.card {
  border-radius: 8px;
  background-color: #fff !important;
  padding: 32px;
  -webkit-transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 24px;
  box-shadow: 0 2px 8px 0 rgba(103, 151, 255, 0.09),
    0 4px 32px 0 rgba(103, 151, 255, 0.09) !important;
}
section {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: relative;
  margin-top: 48px;
  margin-bottom: 48px;
}
.column {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-width: 100%;
}
@media only screen and (min-width: 769px) {
  .three-column .column-container {
    -webkit-box-flex: 0 !important;
    flex: 0 0 33.33333333% !important;
    max-width: 33.33333333% !important;
  }
  .three-column .column-container:nth-of-type(-n + 3) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) and (min-width: 671px) {
  .three-column .column-container {
    -webkit-box-flex: 0 !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .three-column .column-container:nth-of-type(-n + 2) {
    margin-top: 0;
  }
  .three-column-tablet .column-container {
    -webkit-box-flex: 0 !important;
    flex: 0 0 33.33333333% !important;
    max-width: 33.33333333% !important;
    margin-top: 5%;
  }
  .three-column-tablet .column-container:nth-of-type(-n + 3) {
    margin-top: 0;
  }
  .three-column-tablet .column-container {
    margin-top: 5%;
  }
}
.website-pack-preview {
  position: relative;
  /* -webkit-box-align: center; */
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.website-pack-preview span {
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.website-pack-preview span:first-child {
  width: 160px;
  height: 240px;
  z-index: 3;
}
.website-pack-preview span:nth-child(2),
.website-pack-preview span:nth-child(3) {
  position: absolute;
  top: 12px;
  width: 180px;
  height: 200px;
  opacity: 0.8;
  z-index: 2;
}
.website-pack-preview span:nth-child(2) {
  left: 25px;
}
.website-pack-preview span:nth-child(3) {
  right: 25px;
  top: 13px;
}
.website-pack-preview:hover span {
  padding: 0;
  overflow: hidden;
}
.website-pack-preview:hover span:first-child {
  transform: scale(1.1, 1.1);
}
.website-pack-preview:hover span:nth-child(2),
.website-pack-preview:hover span:nth-child(3) {
  width: 160px;
  height: 220px;
  opacity: 1;
}
.website-pack-preview:hover span:nth-child(2) {
  left: 0;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
.website-pack-preview:hover span:nth-child(3) {
  right: 0;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}
.tabbing-links li.current,
.tabbing-links li:hover {
  border-bottom: none;
}
.row.three-column .column-container {
  padding: 15px;
}
@media only screen and (min-width: 320px) and (max-width: 520px) {
  .column-container {
    width: 100%;
    margin-left: 0;
  }
}
/*! CSS Used from: https://www.creativewebsitestudios.com/css/font-awesome.min.css */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-search:before {
  content: "\f002";
}
.fa-play:before {
  content: "\f04b";
}
/*! CSS Used from: Embedded */
.active {
  color: #fff !important;
  pacity: 1 !important;
}
/*! CSS Used fontfaces */
@font-face {
  font-family: CerebriSansLight;
  src: url(https://www.creativewebsitestudios.com/fonts/CerebriSans-Light.woff);
}



.mb-service-menu.justify-center li {
    text-align: center;
}

.userway_buttons_wrapper {
    display: none !important;
}

.whatsapp {
    position: fixed;
    z-index: 999;
    bottom: 2%;
    background-color: #55cd6c;
    padding: 8px 8px;
    border-radius: 8px;
    left: 1%;
    transition: all 0.5s;
     animation: shake 1.3s infinite;

}

.whatsapp img {
    width: 30px;
    margin-right: 10px;
}

.whatsapp a {
    color: #fff;
    font-size: clamp(13px, 3vw, 16px);
}

.whatsapp a:hover {
    text-decoration: unset;
}

.whatsapp:hover {
    background-color: #16b3d3;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}


div#pills-website .col-md-6:first-child .package-item h2 span::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background-color: #838b7e;
    width: 34%;
    height: 3px;
    top: 0;
    bottom: 0;
    margin: auto;
}

div#pills-seo .col-md-6 .package-header h2 span::after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background-color: #838b7e;
    width: 34%;
    height: 3px;
    top: 0;
    bottom: 0;
    margin: auto;
}

section.combo-package .package-header span::after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background-color: #838b7e;
    width: 34%;
    height: 3px;
    top: 0;
    bottom: 0;
    margin: auto;
}

div#pills-Branding .col-md-6:nth-child(4) {
    display: none;
}