@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Prompt:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Prompt', sans-serif;
    font-family: 'Inter', sans-serif;
}
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-700 {
    font-weight: 700 !important;
}
header .container,
.row-item {
    height: 100vh;
    position: relative;
}
.btn-black,
.btn-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.item-content {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.banner {
    position: absolute;
    width: 100%;
    top: 50%;
}
.sticky-menu {
    position: fixed;
    left: 20px;
    top: 20%;
    z-index: 999;
}
.sticky-menu a {
    color: grey;
    text-transform: uppercase;
}
.sticky-menu .navbar-nav {
    display: none;
}
.sticky-menu a.active {
    color: #000;
    font-weight: 600;
}
.text-why-absolute {
    position: absolute;
    width: 100%;
    bottom: 90px;
}
.banner h1 {
    color: black;
    font-size: 8.5rem;
    font-weight: 500;
}
.banner h2 {
    color: black;
    font-size: 1.5rem;
    font-weight: 300;
}
.banner-service h1 {
    color: black;
    font-size: 5vw;
    font-weight: 600;
}
.align-link {
    margin: auto;
}
.go-down {
    position: absolute;
    bottom: 0;
    width: 100%;
}
#nav-hamburger {
    width: 40px;
    height: 40px;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    background: #000;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
#nav-hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 1;
    right: 15%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
#nav-hamburger span:nth-child(1) {
    top: 30%;
    width: 70%;
    margin-top: -2px;
}
#nav-hamburger span:nth-child(2) {
    top: 50%;
    width: 70%;
    margin-top: -2px;
}
#nav-hamburger span:nth-child(3) {
    top: 70%;
    width: 70%;
    margin-top: -2px;
}
#nav-hamburger.open span:nth-child(1) {
    top: 51%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
#nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    right: 60px;
}
#nav-hamburger.open span:nth-child(3) {
    top: 51%;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.navbar.open {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 51;
}
.main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff url(assets/images/bg-menu.png) no-repeat left bottom;
    background-size: 30%;
    z-index: 50;
}
.main-menu.open .main-menu-content ul li {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.main-menu-content {
    align-items: center;
    display: grid;
    height: 100%;
}
.main-menu-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.main-menu-content ul li {
    list-style-type: none;
    padding: 0;
    margin: 1em 0;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1),
        -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 1);
    transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1),
        opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
    transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1),
        opacity 0.5s cubic-bezier(0.5, 0, 0, 1),
        -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 1);
    -webkit-transform: scale(2);
    transform: scale(2);
}
.main-menu-content ul li a,
.main-menu-content ul li a:hover {
    font-size: 2em;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}
.desktop-menu {
    margin: 0;
    padding: 0;
}
.desktop-menu li {
    margin: 0.5rem 1rem;
    padding: 0;
    display: inline-block;
}
.desktop-menu li a {
    color: #2d2d2d;
    text-decoration: none;
    padding: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.desktop-menu li a.active,
.desktop-menu li a:hover {
    opacity: 1;
    text-decoration: underline;
}
.desktop-menu li a.active {
    font-weight: 700;
}

.carousel {
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
}
.text-why {
    /* color: #f3f3f3; */
    color: #d4d3d3;
    font-size: 5vw;
    line-height: 1;
    margin-top: -90px;
}
.text-why span {
    color: #000;
    font-weight: 600;
}
.portfolio {
    position: relative;
}
.portfolio-title {
    text-align: center;
    color: #fff;
    font-size: 17vw;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 600;
    text-shadow: 0px 0px 1px rgba(150, 150, 150, 0.75);
    position: relative;
    z-index: 2;
}
.portfolio-title span {
    position: relative;
    z-index: 2;
}
.portfolio-title-background {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    width: 100%;
    background-color: #000;
    z-index: 0;
}
.portfolio-wrap {
    position: relative;
}
.portfolio-background {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 500px;
    background-color: #000;
}
.portfolio-content {
    background: #fff;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
}

.btn-animated {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    padding: 0;
    margin: 0;
    overflow: visible;
    text-decoration: none;
    background: none;
    cursor: pointer;
    color: #000;
    z-index: 10;
}
.btn-animated:hover {
    text-decoration: none;
    color: #000;
}
.btn-text {
    margin-right: 8px;
    text-transform: uppercase;
    font-size: 30px;
}
.btn-animated:hover .btn-circle:after,
.btn-animated:hover .btn-circle:before {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
}
.btn-animated.is-hovering .btn-icon,
.btn-animated:hover .btn-icon {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}
.btn-icon {
    display: block;
    width: 96px;
    right: 0;
    transition: all 0.5s cubic-bezier(0.8, 0, 0, 1);
}
.btn-icon,
.btn-icon:after,
.btn-icon:before {
    position: absolute;
    height: 48px;
    top: 0;
    border-radius: 100%;
}
.btn-icon:after,
.btn-icon:before {
    content: "\f061";
    width: 48px;
    display: inline-block;
    text-align: center;
    line-height: 48px;
    font-size: 14px;
    color: #000;
    left: 0;
}
.btn-icon:after {
    left: 48px;
}
.btn-circle {
    height: 48px;
    width: 48px;
    min-height: 48px;
    min-width: 48px;
    position: relative;
    overflow: hidden;
}
.btn-circle:after,
.btn-circle:before {
    content: "";
    height: 48px;
    width: 48px;
    border-radius: 100%;
    transition: all 0.5s cubic-bezier(0.8, 0, 0, 1);
    position: absolute;
    top: 0;
    right: 0;
}
.btn-circle:before {
    box-shadow: inset -2px 0 0 0 #000;
}
.btn-circle:after {
    box-shadow: inset -2px 0 0 0 #000;
    transition-delay: 0.1s;
}
.btn-circle-white .btn-icon:after,
.btn-circle-white .btn-icon:before {
    color: #fff;
}
.btn-circle-white:before {
    box-shadow: inset -2px 0 0 0 #fff;
}
.btn-circle-white:after {
    box-shadow: inset -2px 0 0 0 #fff;
    transition-delay: 0.1s;
}
.btn-circle-top:before {
    box-shadow: inset 0 2px 0 0 #fff;
}
.btn-circle-top:after {
    box-shadow: inset 0 2px 0 0 #fff;
    transition-delay: 0.1s;
}
.btn-circle-bottom:before {
    box-shadow: inset 0 -2px 0 0 #000;
}
.btn-circle-bottom:after {
    box-shadow: inset 0 -2px 0 0 #000;
    transition-delay: 0.1s;
}

.btn-circle-top {
    margin: 0 auto;
}
.btn-circle-top .btn-icon {
    height: 96px;
}
.btn-circle-top .btn-icon:after,
.btn-circle-top .btn-icon:before {
    content: "\f062";
    width: 48px;
    display: inline-block;
    text-align: center;
    line-height: 48px;
    font-size: 14px;
    color: #fff;
    left: 0;
}
.btn-circle-top .btn-icon:after {
    bottom: -48px;
}

.btn-circle-bottom {
    margin: 0 auto 1em auto;
}
.btn-circle-bottom .btn-icon {
    height: 96px;
}
.btn-circle-bottom .btn-icon:after,
.btn-circle-bottom .btn-icon:before {
    content: "\f063";
    width: 48px;
    display: inline-block;
    text-align: center;
    line-height: 48px;
    font-size: 14px;
    color: #000;
    left: 0;
}
.btn-circle-bottom .btn-icon:after {
    top: -48px;
}
.btn-circle-top .btn-icon,
.btn-circle-top .btn-icon:after,
.btn-circle-top .btn-icon:before {
    position: absolute;
    height: 48px;
    width: 48px;
    top: unset;
    left: 0;
    border-radius: 100%;
}
.btn-circle-bottom .btn-icon,
.btn-circle-bottom .btn-icon:after,
.btn-circle-bottom .btn-icon:before {
    position: absolute;
    height: 48px;
    width: 48px;
    left: 0;
    border-radius: 100%;
}
.btn-animated.is-hovering .btn-circle-top .btn-icon,
.btn-animated:hover .btn-circle-top .btn-icon {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.btn-animated.is-hovering .btn-circle-bottom .btn-icon,
.btn-animated:hover .btn-circle-bottom .btn-icon {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}
.btn-animated-top {
    display: grid;
    color: #fff;
}
.btn-animated-top,
.btn-animated-top:hover {
    display: grid;
    color: #fff;
}
.btn-animated-bottom {
    display: inline-grid;
}
.btn-animated-bottom,
.btn-animated-bottom:hover {
    display: inline-grid;
}

.request-proposal {
    position: fixed;
    right: 0;
    top: 20%;
    z-index: 30;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
}
.box {
    position: relative;
}
.box .no {
    position: absolute;
}
.box-img img {
    -webkit-box-shadow: -5px 5px 15px 0px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: -5px 5px 15px 0px rgba(0, 0, 0, 0.45);
    box-shadow: -5px 5px 15px 0px rgba(0, 0, 0, 0.45);
}
.box-content {
    padding: 3em;
    -webkit-box-shadow: -10px 10px 15px 0px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: -10px 10px 15px 0px rgba(0, 0, 0, 0.45);
    box-shadow: -10px 10px 15px 0px rgba(0, 0, 0, 0.45);
}
.box-content h2 {
    font-style: italic;
    text-transform: uppercase;
}
.box-1 .no {
    top: 100px;
    left: 0;
}
.box-2 .no {
    top: 200px;
    right: 155px;
}
.box-3 .no {
    top: 100px;
    left: 0;
}
.box-4 .no {
    top: 0;
    right: 0;
}
.box-5 .no {
    top: 100px;
    left: 0;
}
.box-6 .no {
    top: 200px;
    right: 155px;
}
.box-2 .box-img img,
.box-4 .box-img img,
.box-6 .box-img img {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.45);
}

.contact-box h2 {
    color: #fff;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.95);
    font-size: 4em;
    font-weight: 600;
}
.career span a {
    color: #495057;
    text-decoration: none;
}
.contact-box form {
    color: #495057;
}

.form-control,
.form-control:focus {
    border: none;
    border-bottom: 1px solid #ced4da;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.contact-form .form-control,
.contact-form .form-control:focus {
    border: 1px solid #ced4da;
    padding: 0.75rem;
    margin-bottom: 2rem;
}

footer {
    background-color: #000;
    color: #fff;
}
footer img {
    margin: 0 1em;
}

/* Dew Add more */
.top-header {
    position: relative;
}
.bookmark {
    position: fixed;
    top: 31%;
    width: 30px;
    margin: 0 0 0 -60px;
    z-index: 999;
}
.bookmark a {
    display: block;
    margin: 0 0 1em 0;
}
.text-grey {
    color: #828282;
}

/* home */
.home-wrap {
    overflow: hidden;
}
.home-wrap h2 {
    font-size: 3em;
}
.home-1 {
    background: #333;
}
.home-3 {
    background: #FAF8F9;
}
.home-events a {
    color: #333;
    text-decoration: none;
}
.home-events-header {
    border-bottom: 1px solid #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}
.service-box {
    font-weight: 700;
    z-index: 100;
}
.service-box a {
    background: #E0E0E0;
    display: block;
    color: #333;
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 100;
    transition: transform 0.25s;
    border: 1px solid #D9D9D9;
}
.service-box a:hover {
    background: #1A1A1A;
    color: #fff;
    text-decoration: none;
    transform: scale(1.2);
    position: relative;
    z-index: 101;
    box-shadow: 0px 0px 15px rgba(26, 26, 26, 0.24);
    border: 1px solid #1A1A1A;
}
.service-box img {
    padding: 0 2rem 1rem 2rem;
}

/* about-us */
.about-us h2 {
    font-weight: 600;
    font-size: 2.5em;
    margin: 0.3em 0;
    text-transform: uppercase;
}
.border-left-1 {
    min-height: 400px;
    border-left: 1px solid #ccc;
}
.border-left-2 {
    min-height: 200px;
    border-left: 1px solid #ccc;
}
.about-us h3,
.career h3 {
    font-size: 1.2em;
    margin: 0;
    padding: 0;
}
.about-us-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 1.5em;
    background: none;
    border: none;
}
.about-us-link:hover {
    color: #000;
    text-decoration: none;
}
.about-us-link:focus {
    outline: none;
}
.text-hr {
    color: #b3b3b3;
    margin-top: -30px;
}
.text-hr span {
    display: inline-block;
    background: #fff;
    padding-left: 5px;
}
.qoute:before {
    content: "“";
    font-family: arial;
    font-size: 3em;
    line-height: 1;
    position: relative;
    top: 30px;
    left: -15px;
}
.qoute:after {
    content: "”";
    font-family: arial;
    font-size: 3em;
    line-height: 1;
    position: absolute;
    top: 40%;
    right: -60px;
}

/* career */
.career {
    margin-top: 80px;
}
.career h2 {
    font-weight: 600;
    font-size: 2.5em;
    margin: 0.3em 0;
}
.career-accordion {
    margin: 1em 0 0 0;
}
.career-accordion .card {
    border: none;
    border-top: 1px solid #ccc;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.career-accordion .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 0 solid #ccc;
}
.career-accordion .card-body {
    padding: 2em 2.5em;
}
.career-accordion .btn-link {
    padding: 0.4em 1.3em;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.5em;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    background: url(../assets/images/career/bullet-up.png) no-repeat left center !important;
}
.career-accordion .btn-link.collapsed {
    background: url(../assets/images/career/bullet-down.png) no-repeat left
        center !important;
}
.career .video-content {
    position: absolute;
    padding: 5rem 2rem;
    right: 3rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    max-width: 300px;
}
.career .video-content.content-black {
    background: url(../assets/images/career/textoverlay-black.png) no-repeat
        center bottom;
    background-size: 100% auto;
    color: #fff;
}
.career .video-content.content-white {
    background: url(../assets/images/career/textoverlay-white.png) no-repeat
        center bottom;
    background-size: 100% auto;
}
.career .video-content h3 {
    font-weight: 600;
    font-size: 1.7em;
    margin-bottom: 1rem;
}
.career .video-content h4 {
    font-weight: 600;
    font-size: 1.3em;
}
.career-video-slick .slick-dots {
    bottom: 1rem;
}
.career-video-slick .slick-dots li button:before {
    color: #fff;
    opacity: 1;
}
.career-video-slick .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #6c6c6c;
}
.career .our-hiring-process h3 {
    font-weight: 500;
    border-bottom: 1px solid #000;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.career .our-hiring-process p {
    color: #555;
}
/*.career .work-and-thriving h2 {
    font-weight: 600;
    font-size: 1.7em;
    margin-bottom: 1.5rem;
}*/
.career .work-and-thriving h3 {
    font-weight: 600;
    font-size: 1.3em;
    margin-bottom: 0.5rem;
}
/*.career .work-and-thriving p {
    margin-bottom: 0;
    color: #555;
}*/
.career .work-and-thriving .card {
    background: #faf8f9;
    border: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.career .work-and-thriving .card .card-body {
    padding: 1rem 1rem 1rem 6rem;
}
.career .work-and-thriving .card .free-lunch {
    background: url(../assets/images/career/icon/coffee.png) no-repeat 1.5rem
        center;
    background-size: 50px auto;
}
.career .work-and-thriving .card .health-insurance {
    background: url(../assets/images/career/icon/growth.png) no-repeat 1.5rem
        center;
    background-size: 50px auto;
}
.career .work-and-thriving .card .birthday {
    background: url(../assets/images/career/icon/pro.png) no-repeat 1.5rem
        center;
    background-size: 50px auto;
}
.career .work-and-thriving .card .macbook {
    background: url(../assets/images/career/icon/macbook.png) no-repeat 1.5rem
        center;
    background-size: 50px auto;
}
.career .work-and-thriving .card .annual-bonus {
    background: url(../assets/images/career/icon/health.png) no-repeat 1.5rem
        center;
    background-size: 50px auto;
}
.career .work-and-thriving .card .company-outings {
    background: url(../assets/images/career/icon/outing.png) no-repeat 1.5rem
        center;
    background-size: 50px auto;
}

.optimize-content {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    margin-top: 0;
}
.optimize-content .card {
    border: none;
    border-bottom: 1px solid #222;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.optimize-content .card-header {
    padding: 1rem 0;
    background: none;
    border: none;
}
.optimize-content .card-body {
    padding: 0.5rem 0;
    color: #555;
}
.optimize-content p.lead {
    cursor: pointer;
}
.optimize-content p.lead:after {
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
    -webkit-transform: translate(0, -50%) rotate(-180deg);
    -ms-transform: translate(0, -50%) rotate(-180deg);
    transform: translate(0, -50%) rotate(-180deg);
}
.optimize-content p.lead.collapsed:after {
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
    -webkit-transform: translate(0, -50%) rotate(0deg);
    -ms-transform: translate(0, -50%) rotate(0deg);
    transform: translate(0, -50%) rotate(0deg);
}
.career-contact {
    background: #faf8f9;
}
.career-contact .form-control, .home-contact .form-control {
    border: 1px solid #ededed;
}
.career-contact label.error, .home-contact label.error {
    font-weight: 500;
    color: #EB5757;
    margin-top: 0.5rem;
}

/* services */
.bg-black {
    background: #000;
    color: #fff;
}

.image {
    display: block;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.6);
}

.img-overlay .overlay {
    opacity: 1;
}
.img-overlay:hover .overlay {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
}
.text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.service-2 {
    padding: 7rem 0;
    background: rgb(39,21,62);
    background: -moz-linear-gradient(left,  rgb(39,21,62) 0%, rgb(97,15,116) 100%);
    background: -webkit-linear-gradient(left,  rgb(39,21,62) 0%,rgb(97,15,116) 100%);
    background: linear-gradient(to right,  rgb(39,21,62) 0%,rgb(97,15,116) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#27153e', endColorstr='#610f74',GradientType=1 );
}
.service-2 .box {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.3);
    border: 1.5px solid #fff;
    border-radius: 18px;
    margin: 5px;
}
.service-2 .box .icon {
    max-width: 45px;
}
.service-3 {
    margin-top: -5rem;
}
.service-icon-1 {
    background: url(../assets/images/services/icon/1.png) no-repeat left center;
    background-size: 75px auto;
    padding-left: 6.5rem;
}
.service-icon-2 {
    background: url(../assets/images/services/icon/2.png) no-repeat left center;
    background-size: 75px auto;
    padding-left: 6.5rem;
}
.service-icon-3 {
    background: url(../assets/images/services/icon/3.png) no-repeat left center;
    background-size: 75px auto;
    padding: 1.2rem 0 1.2rem 6.5rem;
}
.service-icon-4 {
    background: url(../assets/images/services/icon/4.png) no-repeat left center;
    background-size: 75px auto;
    padding-left: 6.5rem;
}
.service-icon-5 {
    background: url(../assets/images/services/icon/5.png) no-repeat left center;
    background-size: 75px auto;
    padding-left: 6.5rem;
}
.service-icon-6 {
    background: url(../assets/images/services/icon/6.png) no-repeat left center;
    background-size: 75px auto;
    padding: 1.2rem 0 1.2rem 6.5rem;
}
.our-technology {
    background: url(../assets/images/services/bg-our-technology.png) no-repeat center 5em;
    background-size: 100% auto;
}

/* portfolio */
.principal-detail-5-bg {
    position: absolute;
    left: 1rem;
    top: 35%;
    width: 110%;
    z-index: 10;
}
.principal-portfolio {
    margin-bottom: 10rem;
}
.thaiidpass-portfolio {
    background: url(../assets/images/portfolio/thaiidpass-bg.png) no-repeat
        center center;
    background-size: cover;
    z-index: 2;
}
.insurefriend-portfolio {
    background: url(../assets/images/portfolio/insurefriend-bg.png) no-repeat
        left center;
    background-size: cover;
    z-index: 1;
}
.tokenistra-portfolio {
    background: url(../assets/images/portfolio/tokenistra-bg.png) no-repeat
        left bottom;
    background-size: 100% auto;
    z-index: 1;
}
.swensens-portfolio {
    background: url(../assets/images/portfolio/swensens-bg.png) no-repeat
        right center;
    background-size: 50% auto;
    z-index: 1;
}
.mg-portfolio {
    background: url(../assets/images/portfolio/mg-bg.png) no-repeat
        center center;
    background-size: 100% auto;
    z-index: 1;
}
.coursediva-portfolio {
    background: url(../assets/images/portfolio/coursediva-bg.png) no-repeat
        right center;
    background-size: 100% auto;
    z-index: 1;
}
.sizzler-img {
    background: #d9dfe1;
}
.sizzler-1 {
    margin-top: -200px;
}
.sizzler-2 {
    margin-bottom: -180px;
}
.siam-luxury {
    background: #252728;
}
.container.jatujakmall {
    margin-right: 0;
}

.fixed-top {
    background: #fff;
}

/* portfolio Principal */
.portfolio-navbar.fixed-top {
    background: transparent;
}
.navbar-light .navbar-brand {
    background: url(../assets/images/logo/codediva.png) no-repeat center center;
    background-size: 100% 100%;
}
.portfolio-navbar.fixed-top .navbar-brand {
    background: url(../assets/images/logo/codediva-white.png) no-repeat center center;
    background-size: 100% 100%;
}
.portfolio-navbar.fixed-top .desktop-menu li a {
    color: #fff;
}
/*.portfolio-navbar.fixed-top .desktop-menu li a.active {
    background: url(../assets/images/menu-active-white.png) no-repeat center
        center;
    background-size: 100% 100%;
}*/
.portfolio-detail {
    position: relative;
    overflow: hidden;
}
.portfolio-logo {
    background: #fff;
    width: 350px;
    height: 350px;
    margin: -175px auto 3em auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1em solid #fff;
    position: relative;
}
.principal-logo {
    background: #0091da;
}
.portfolio-logo-img {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.fortfolio-detail-table tr:first-child td {
    border-top: none;
}
.fortfolio-detail-table td:first-child {
    padding: 1em 0.75em 1em 0;
}
.fortfolio-detail-table td:last-child {
    padding: 1em 0 1em 0.75em;
}
.text-principal-blue {
    color: #0091da;
}
.portfolio-detail-2 {
    background: url(../assets/images/portfolio/principal/s-2-bg.png) no-repeat
        center center;
    background-size: 100% auto;
}
.portfolio-detail-3 {
    background: #fbfbfb;
}
.portfolio-content-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    padding: 0 15px;
}
.event-content-middle {
    position: absolute;
    width: 100%;
    top: auto;
    left: 0;
    bottom: 0;
    transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    padding: 0 15px;
}
.s-3-img {
    -webkit-box-shadow: -27px 50px 50px 5px rgba(130, 130, 130, 0.41);
    box-shadow: -27px 50px 50px 5px rgba(130, 130, 130, 0.41);
}

.portfolio-detail-4 {
    background: url(../assets/images/portfolio/principal/s-4-bg.png) no-repeat
        center center;
    background-size: cover;
    position: relative;
    padding-bottom: 3rem;
}
.portfolio-detail-wrap,
.portfolio-detail-4-content,
.portfolio-detail-5-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.principal-detail-4 h2 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.portfolio-detail-5 {
    position: relative;
}

.read-more,
.read-more:hover {
    color: #000;
    background: url(../assets/images/portfolio/arrow-left-line.png) no-repeat
        right center;
    background-size: auto 100%;
    padding: 0 1.75em 0 0;
    font-size: 1.2rem;
}
.read-more-white,
.read-more-white:hover {
    color: #fff;
    background: url(../assets/images/portfolio/arrow-left-line-white.png)
        no-repeat right center;
}

/* portfolio Thaiidpass */
.text-thaiidpass-blue,
.text-thaiidpass-blue a {
    color: #544cb8;
}
.portfolio-detail-2.thaiidpass-detail-2 {
    background: url(../assets/images/portfolio/thaiidpass/bg1.png) no-repeat
        center center;
    background-size: 100% auto;
}
.flip-button {
    position: absolute;
    top: -11%;
    z-index: 9999;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

.flip-button img {
    max-width: 35%;
}

.id-card-slide-wrap {
    position: absolute;
    width: 30%;
    left: 17%;
    top: 20%;
    -moz-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
    cursor: pointer;
}
.thaiidpass-detail-4 {
    background: url(../assets/images/portfolio/thaiidpass/bg2.jpg) no-repeat
        center center;
    background-size: cover;
}
.thaiidpass-bg-small-1 {
    background: url(../assets/images/portfolio/thaiidpass/bg_small_1.png)
        no-repeat left top;
    background-size: auto 65%;
}
.thaiidpass-bg-small-2 {
    background: url(../assets/images/portfolio/thaiidpass/bg_small_2.png)
        no-repeat center center;
    background-size: 100% auto;
}
.services-btn {
    color: #1a3f58;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    /*cursor: pointer;*/
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
    height: 100%;
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
}

.services-btn h3 {
    font-size: 2em;
    font-weight: bold;
}

.services-btn p {
    font-size: 1em;
    margin: 0;
    opacity: 0.75;
}

.services-btn img {
    max-width: 100px;
    margin-bottom: 1em;
}
.thaiidpass-detail-last img {
    margin-bottom: 30px;
}

/* portfolio EGAT */
.text-egat-green,
.text-egat-green a {
    color: #27ae60;
}
.egat-detail-2 {
    background: #fff;
}
.egat-detail-3 {
    background: #fbfbfb;
}
.egat-detail-4 {
    background: url(../assets/images/portfolio/egat/textbg1.jpg) no-repeat left
        center;
    background-size: 50% auto;
}
.egat-detail-5 {
    background: url(../assets/images/portfolio/egat/egat-detail-5-bg.png)
        no-repeat center bottom;
    background-size: 100% auto;
}
.egat-detail-5-bg .box {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    overflow: hidden;
}
.egat-detail-5-bg .box .play-game {
    background: #ffe029;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    padding: 0.25rem 1rem;
}
.egat-detail-5-bg .box.box-1 {
    background: #fff url(../assets/images/portfolio/egat/box-1.png) no-repeat
        center bottom;
    background-size: 100% auto;
}
.egat-detail-5-bg .box.box-2 {
    background: #fff url(../assets/images/portfolio/egat/box-2.png) no-repeat
        center bottom;
    background-size: 100% auto;
}
.egat-detail-5-bg .box.box-3 {
    background: #fff url(../assets/images/portfolio/egat/box-3.png) no-repeat
        center bottom;
    background-size: 100% auto;
}
.egat-detail-5-bg {
    background: url(../assets/images/portfolio/egat/img4.png) no-repeat right
        50%;
    background-size: 40% auto;
}

/* portfolio Insurefriend */
.text-insurefriend-blue,
.text-insurefriend-blue a {
    color: #0091da;
}
.insurefriend-banner-header {
    position: absolute;
    top: 0;
    right: 0;
    color: #273b81;
    padding: 8rem 10rem 10rem 20rem;
    background: url(../assets/images/portfolio/insurefriend/banner-h-bg.png)
        no-repeat center center;
    background-size: 100% 100%;
}
.insurefriend-banner-header h1 {
    font-size: 3.45rem;
    font-weight: 600;
}
.insurefriend-banner-header h2 {
    font-size: 2.75rem;
    font-weight: 600;
}
.insurefriend-banner-content {
    position: absolute;
    top: 38%;
    right: 10rem;
    padding: 0;
    max-width: 435px;
}
.insurefriend-detail-2 {
    background: url(../assets/images/portfolio/insurefriend/s2-bg.png) no-repeat
        center bottom;
    background-size: 100% auto;
}
.insurefriend-detail-3 {
    background: #fff;
}
.insurefriend-detail-4 {
    background: rgb(60, 76, 135);
    background: -moz-linear-gradient(
        45deg,
        rgb(60, 76, 135) 0%,
        rgb(35, 46, 154) 50%,
        rgb(25, 34, 163) 100%
    );
    background: -webkit-linear-gradient(
        45deg,
        rgb(60, 76, 135) 0%,
        rgb(35, 46, 154) 50%,
        rgb(25, 34, 163) 100%
    );
    background: linear-gradient(
        45deg,
        rgb(60, 76, 135) 0%,
        rgb(35, 46, 154) 50%,
        rgb(25, 34, 163) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c4c87', endColorstr='#1922a3',GradientType=1 );
}
.insurefriend-detail-5 {
    background: url(../assets/images/portfolio/insurefriend/s5-bg.png) no-repeat
        left center;
    background-size: auto 120%;
}
.insurefriend-detail-6 {
    background: url(../assets/images/portfolio/insurefriend/s6-bg.png) no-repeat
        center center;
    background-size: cover;
}
.insurefriend-detail-7 {
    background: url(../assets/images/portfolio/insurefriend/s7-content-bg-2.png) no-repeat
        left top;
    background-size: 50% auto;
}
.insurefriend-detail-7-content {
    position: absolute;
    left: 0;
    top: 8%;
    /*background: url(../assets/images/portfolio/insurefriend/s7-content-bg.png)
        no-repeat right bottom;
    background-size: cover;*/
    padding: 5rem 6%;
}
.insurefriend-detail-7-car {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
}

/* portfolio Tokenistra */
.text-tokenistra-blue,
.text-tokenistra-blue a {
    color: #0091da;
}
.text-blue,
.text-blue a {
    color: #354d7c;
}
.tokenistra-detail-2,
.tokenistra-detail-3 {
    background: transparent;
}
.tokenistra-detail-2-bg {
    background: url(../assets/images/portfolio/tokenistra/s2-bg.png) no-repeat
        3em 3em;
    background-size: cover;
}
.tokenistra-swap-detail-2 {
    background: url(../assets/images/portfolio/tokenistra/swap/s2-bg.png)
        no-repeat center 80%;
    background-size: auto 40%;
}
.tokenistra-swap-detail-3 {
    background: url(../assets/images/portfolio/tokenistra/swap/s3-bg.png)
        no-repeat left center;
    background-size: auto 70%;
}
.tokenistra-swap-detail-4 {
    background: url(../assets/images/portfolio/tokenistra/swap/s4-bg.png)
        no-repeat center center;
    background-size: cover;
    box-shadow: 0px 0px 160px rgba(0, 0, 0, 0.05);
}
.tokenistra-swap-detail-5 {
    background: url(../assets/images/portfolio/tokenistra/swap/s5-bg.png)
        no-repeat center center;
    background-size: cover;
}
.tokenistra-detail-3-bg {
    background: url(../assets/images/portfolio/tokenistra/s3-bg.png) no-repeat
        center bottom;
    background-size: 100% auto;
}
.tokenistra-detail-4 {
    background: url(../assets/images/portfolio/tokenistra/s4-bg.png) no-repeat
        left center;
    background-size: 100% auto;
}
.tokenistra-detail-5 {
    background: transparent;
}
.tokenistra-detail-5-bg {
    background: url(../assets/images/portfolio/egat/img4.png) no-repeat right
        bottom;
    background-size: 45% auto;
}
.blockchain-wrap {
    position: relative;
}
.blockchain-wrap .arrow {
    position: absolute;
    width: 40px;
    right: -20px;
    bottom: 50%;
}
.service-card {
    border: none;
    background: white;
    -webkit-box-shadow: 0px 4px 57px rgba(172, 172, 172, 0.2);
    box-shadow: 0px 4px 57px rgba(172, 172, 172, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.service-card .card-body {
    padding: 3rem;
}

.service-card.service-btc {
    background: white url(../assets/images/portfolio/tokenistra/service_2.png)
        no-repeat right bottom;
    background-size: auto 100%;
    padding-bottom: 5em;
}

.service-card.service-bstd {
    background: linear-gradient(170.7deg, #152b56 -5.64%, #335394 101.04%);
}

.service-card.service-bstd .card-body {
    background: url(../assets/images/portfolio/tokenistra/service_3.png)
        no-repeat right bottom;
    background-size: 90% auto;
    padding-bottom: 13em;
}

.service-card.service-dp {
    background: white url(../assets/images/portfolio/tokenistra/service_1.png)
        no-repeat right bottom;
    background-size: auto 100%;
    padding-bottom: 6em;
}

.blockchain-slick .slick-prev {
    width: 40px;
    height: 40px;
    z-index: 99;
    left: -25px;
}
.blockchain-slick .slick-next {
    width: 40px;
    height: 40px;
    z-index: 99;
    right: -25px;
}

.blockchain-slick .slick-prev:before,
.blockchain-slick .slick-next:before {
    display: none;
}

.blockchain-slick .slick-prev {
    background: url(../assets/images/portfolio/tokenistra/Arrow_prev.png)
        no-repeat center center;
    background-size: cover;
}

.blockchain-slick .slick-next {
    background: url(../assets/images/portfolio/tokenistra/Arrow_next.png)
        no-repeat center center;
    background-size: cover;
}
.blockchain-other-card {
    border: none;
    background: white;
    -webkit-box-shadow: 0px 4px 57px rgba(172, 172, 172, 0.2);
    box-shadow: 0px 4px 57px rgba(172, 172, 172, 0.2);
    border-radius: 20px;
}
.blockchain-other-card p {
    font-size: 0.9rem;
}
.tokenistra-detail-7 {
    background: url(../assets/images/portfolio/tokenistra/s7-bg.png) no-repeat
        center center;
    background-size: auto 100%;
}
.tokenistra-detail-8 img {
    margin-bottom: 30px;
}

/* portfolio Coursediva */
.cover {
    position: relative;
    overflow: hidden;
}
.cover-icon {
    position: absolute;
}
.icon-1 {
    right: 13%;
    bottom: 0;
}
.icon-2 {
    left: 40%;
    top: 17%;
    transform-origin: top left;
    animation: swinging 10s ease-in-out infinite;
}
.icon-3 {
    left: 20%;
    top: 35%;
    animation: UpDown 1s linear infinite;
}
.icon-4 {
    left: -2rem;
    top: 20%;
}
.icon-5 {
    left: -1.75rem;
    top: 50%;
    animation: spinR 15s linear infinite;
}
.icon-6 {
    left: 28%;
    top: 20%;
}
.icon-7 {
    left: 20%;
    bottom: 15%;
}
.icon-8 {
    left: 33%;
    top: 43%;
    animation: UpDown 1.5s linear infinite;
}
.icon-9 {
    left: 7%;
    bottom: -1.8rem;
    animation: spinR 10s linear infinite;
}
.icon-10 {
    left: 4%;
    bottom: -1rem;
    animation: spinL 10s linear infinite;
}
.icon-11 {
    left: 15%;
    top: 20%;
    animation: blink 2s ease-in-out infinite;
}
.icon-12 {
    right: 15%;
    top: 25%;
    animation: blink 3s ease-in-out infinite;
}
.icon-13 {
    right: 37%;
    bottom: 22%;
    animation: blink 1s ease-in-out infinite;
}
@keyframes spinR {
    form {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes spinL {
    form {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
@keyframes UpDown {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 0.5rem);
    }
    100% {
        transform: translate(0, 0);
    }
}
@keyframes swinging {
    0% {
        transform: rotate(20deg);
    }
    50% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(20deg);
    }
}
@keyframes blink {
    from {
        opacity: 1;
        transform: rotate(0deg);
    }
    to {
        opacity: 0;
        transform: rotate(360deg);
    }
}
.cover-content {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
header .cover-content .container {
    height: auto;
}
.coursediva-detail-3 {
    background: url(../assets/images/portfolio/coursediva/s3-bg.png) no-repeat
        left center;
    background-size: cover;
}
.text-coursediva-orange,
.text-coursediva-orange a {
    color: #fec00f;
}
.coursediva-detail-5 {
    background: url(../assets/images/portfolio/coursediva/s5-bg.png) no-repeat
        65% center;
    background-size: 30%;
}
.coursediva-detail-last {
    position: relative;
}
.coursediva-detail-last-content {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.coursediva-service-box h3 {
    color: #d72382;
}
.coursediva-service-box img {
    padding: 2rem 4rem;
}

/* portfolio Swensens */
.text-swensens-red,
.text-swensens-red a {
    color: #e1172a;
}
.portfolio-detail-2.swensens-detail-2 {
    background: url(../assets/images/portfolio/swensens/swensens-detail-2-bg.png)
        no-repeat center top 14em;
    background-size: cover;
}
.swensens-detail-3 p {
    color: #a20512;
    background: #ffdff1;
    border-radius: 50px;
    font-weight: 600;
    padding: 1rem 0;
}
.swensens-detail-3 img.rounded-circle {
    box-shadow: 0px 2px 35px 0px rgba(238,179,212,1);
    -webkit-box-shadow: 0px 2px 35px 0px rgba(238,179,212,1);
    -moz-box-shadow: 0px 2px 35px 0px rgba(238,179,212,1);
    max-width: 145px;
}
.swensens-detail-last img {
    margin-bottom: 30px;
    max-height: 498px;
}
.swensens-bg {
    background: url(../assets/images/portfolio/swensens/bg.jpg) no-repeat center
        center;
    background-size: 100% auto;
}

/* portfolio MG */
.mg-detail-3 {
    background: url(../assets/images/portfolio/mg/mockup-2-bg.png) no-repeat
        center bottom;
    background-size: 100% auto;
}
.mg-detail-5 {
    background: url(../assets/images/portfolio/mg/mockup-4-bg.png) no-repeat
        left center;
    background-size: auto 100%;
}

/* Social */

.fb_dialog {
    display: none !important;
}


.btn-chat-container {
    position: fixed;
    bottom: 2em;
    right: 2em;
    z-index: 9;
    display: none;
}

.btn-chat-container {
    left: 1.2em;
    z-index: 9;
    bottom: 1.2em;
}
.btn-chat-container .btn.btn-chat {
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 201000000;
}

.btn-chat-container .btn.btn-chat.selected {
    background-color: #636363;
}

.btn-chat-container .btn.btn-chat .icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../assets/images/social/icon-chat.png);
    margin: 7px 8px 8px 7px;
    background-size: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-chat-container .btn.btn-chat.selected .icon {
    background-color: #636363;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../assets/images/social/icon-close.png);
    margin: 13px;
    background-size: 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-chat-container .btn.btn-chat .close-icon {
    position: absolute;
    z-index: 1;
    background-color: transparent;
    background-image: url(../assets/images/social/icon-close.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 50%;
    margin: 0;
    background-size: 24px;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    opacity: 0;
}

.btn-chat-container .btn.btn-chat.selected .icon {
    transform: rotate(540deg);
}

.btn-chat-container .btn.btn-chat.selected .close-icon {
    background-color: #85cf2f;
    transform: rotate(360deg);
    opacity: 1;
}

.btn-chat-container .btn.btn-chat .text {
    display: block;
    color: #fff;
    margin-left: 30px;
}

.btn-chat-container .btn.btn-chat.selected .text {
    color: white;
}

.btn-chat-container .btn .text {
    line-height: 24px;
    top: 10px;
    text-align: center;
    vertical-align: top;
    white-space: nowrap;
}

.btn-chat-container .social-button {
    list-style: none;
    padding: 0;
    margin: 0;
    top: 0;
    position: absolute;
    pointer-events: none;
}

.btn-chat-container .social-button.show {
    pointer-events: all;
}

.btn-chat-container .social-button .btn {
    position: absolute;
    top: 0;
    float: none;
    width: 50px;
    height: 50px;
    padding: 0;
    background-color: deepskyblue;
    border-radius: 50%;
    transition: top 0.5s ease, opacity 0.2 ease;
    -webkit-transition: all 0.6s ease;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
}

.btn-chat-container .social-button .btn a {
    display: block;
    padding: 10px;
    line-height: 0;
}

.btn-chat-container .social-button .btn .icon {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-color: white;
}

.btn-chat-container .btn.btn-chat .text,
.btn-chat-container .social-button .btn .text {
    color: white !important;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 14px;
    position: absolute;
    right: 60px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

.btn-chat-container .social-button .btn-facebook {
    background-color: rgb(118, 70, 255);
}

.btn-chat-container .social-button .btn-facebook .icon {
    background-image: url(../assets/images/social/icon-facebook.png);
    background-color: rgb(118, 70, 255);
    /* -webkit-mask-image:url(../images/contact/facebook.png);
  mask-image:url(../images/contact/facebook.png) */
}

.btn-chat-container .social-button .btn-mail {
    background-color: #999;
}

.btn-chat-container .social-button .btn-mail .icon {
    background-image: url(../assets/images/social/mail.png);
    background-color: #999;
    /* -webkit-mask-image:url(../images/contact/line.png);
  mask-image:url(../images/contact/line.png) */
}

/*
.btn-chat-container .social-button .btn-whatsapp{
  background-color:#25D366
}
.btn-chat-container .social-button .btn-whatsapp .icon{
  -webkit-mask-image:url(../images/whatsapp.svg);
  mask-image:url(../images/whatsapp.svg)
}
 .btn-chat-container .social-button .btn-email{
  background-color:#FE7A16
}
.btn-chat-container .social-button .btn-email .icon{
  background:transparent url(../images/email.png) no-repeat center
}
.btn-chat-container .social-button .btn-mobile{
  background-color:#00a2ff
}
.btn-chat-container .social-button .btn-mobile .icon{
  background:transparent url(../images/telephone.png) no-repeat center
}
.btn-chat-container .social-button .btn-sms{
  background-color:#666
}
.btn-chat-container .social-button .btn-sms .icon{
  background:transparent url(../images/sms.png) no-repeat center
}
*/

.btn-chat-container .social-button.show .btn {
    opacity: 1;
}

.btn-chat-container .social-button.show .btn:nth-child(1) {
    top: -60px;
}

.btn-chat-container .social-button.show .btn:nth-child(2) {
    top: -120px;
}

.btn-chat-container .social-button.show .btn:nth-child(3) {
    top: -180px;
}

.btn-chat-container .social-button.show .btn:nth-child(4) {
    top: -240px;
}

.btn-chat-container .social-button.show .btn:nth-child(5) {
    top: -300px;
}

.btn-chat-container .social-button.show .btn:nth-child(6) {
    top: -360px;
}

.btn-chat-container .social-button.show .btn:nth-child(7) {
    top: -420px;
}

.btn-chat-container .btn.btn-chat.selected .text {
    display: none;
}

.btn-chat-container .btn.btn-chat::hover .text {
    opacity: 1;
}

.btn-chat-container .btn.btn-chat .text {
    opacity: 0;
    animation: fade-out 10s;
    -webkit-animation: fade-out 10s;
}

/* social */

.logo-slick .slick-slide {
    padding: 0 0.5rem;
    height: 100%;
}

/* Intern */
.intern-2 {
    background: rgba(242, 242, 242, 0.3);
}
.intern-3 .box {
    background: #FAF8F9;
    border-radius: 8px;
    padding: 1rem 2rem;
    margin: 0.5rem;
}
.intern-3 .box .icon {
    width: 45px;
    height: 45px;
    text-align: right;
    margin: 0.5rem 0 1.5rem 0;
}
.intern-3 .box-5 .icon {
    margin: 0.5rem 0 1rem 0;
}
.img-4-3 {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%;
}
.img-4-3 img {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 767.98px) {
    .box-1 .no,
    .box-2 .no,
    .box-3 .no,
    .box-4 .no,
    .box-5 .no,
    .box-6 .no {
        width: 30%;
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
    }
    .box-4 .no {
        bottom: 10%;
    }
    footer img {
        margin: 0 5px;
        width: 14%;
    }
    .request-proposal img {
        width: 40px;
    }
    .row-item {
        height: auto;
        position: relative;
        margin: 2em 0;
    }
    .box-content h2 {
        font-size: 1.2em;
        font-weight: 600;
    }
    .banner h1 {
        color: black;
        font-size: 2em;
        font-weight: 600;
    }
    .banner h2 {
        color: black;
        font-size: 1em;
        font-weight: 600;
    }
    .about-us h2 {
        font-size: 1.5em;
    }
    .about-us h3,
    .career h3 {
        font-size: 0.8em;
    }
    .career-accordion .btn-link {
        padding: 0.4em 0 0.4em 2em;
        font-size: 0.9em;
    }
    .bookmark {
        margin: 0;
    }
    .qoute:after {
        right: 0;
    }
    .qoute {
        padding-right: 1em;
    }
    .career-accordion .card-body {
        padding: 1em 0;
    }
    .career-accordion .card-body .lead {
        font-weight: 600;
    }
    .sizzler-1 {
        margin-top: -50px;
    }
    .sizzler-2 {
        margin-bottom: -50px;
    }
    .text {
        top: 50%;
        left: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 100%;
    }

    /* Dew mobile begin */
    header .container {
        height: auto;
    }
    .carousel {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
    }
    .carousel-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .border-left-2 {
        min-height: 50px;
        margin-bottom: -20px;
        border-left: 2px solid #212529;
    }
    .about-us-link {
        display: block;
        text-align: right;
        float: right;
    }
    .btn-black,
    .btn-black:hover {
        text-align: center;
        display: block;
        margin: 0 auto;
        width: max-content;
    }
    .banner {
        position: relative;
        margin: 6em 0 1em 0;
    }
    .h2-service {
        font-size: 1.75em;
        font-weight: 600;
    }
    .mobile-border-left {
        border-left: 4px solid #000;
        margin: 15px 0;
        padding-left: 15px;
    }
    .mobile-border-left h2,
    .mobile-border-bottom-center h2,
    .mobile-border-bottom-right h2,
    .mobile-title h2 {
        margin-bottom: 0;
        font-weight: 600;
        font-size: 1.6em;
    }
    .mobile-border-left p,
    .mobile-border-bottom-center p,
    .mobile-border-bottom-right p,
    .mobile-title p {
        margin-bottom: 0;
    }
    .mobile-border-bottom-center {
        text-align: center;
        position: relative;
        padding: 0 0 0.5em 0;
        margin: 1em 0;
    }
    .mobile-border-bottom-center:after {
        content: "";
        width: 20%;
        height: 4px;
        background: #000;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -10%;
    }
    .mobile-border-bottom-right {
        position: relative;
        padding: 0 0 0.5em 0;
        margin: 1em 0;
    }
    .mobile-border-bottom-right:after {
        content: "";
        width: 20%;
        height: 4px;
        background: #000;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .mobile-line-top {
        height: 4px;
        background: #000;
    }
    .navbar-brand img {
        width: 150px;
    }

    .portfolio-detail {
        padding-top: 73px;
    }
    .principal-logo {
        background: #0091da;
        width: 200px;
        height: 200px;
        margin: -100px auto 3em auto;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 1em solid #fff;
        position: relative;
    }
    .principal-logo img {
        max-width: 125px;
    }
    .portfolio-content-middle {
        position: relative;
        top: 0;
        transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        padding: 0;
    }
    .portfolio-detail-4 {
        background: url(../assets/images/portfolio/principal/s-4-bg-mobile.png)
            no-repeat center bottom;
        background-size: cover;
        padding-bottom: 19rem;
    }
    .thaiidpass-detail-4 {
        background: #303a8f
            url(../assets/images/portfolio/thaiidpass/mockup1.png) no-repeat
            center bottom;
        background-size: 90% auto;
    }
    .egat-detail-3 {
        background: #fbfbfb url(../assets/images/portfolio/egat/img1.png)
            no-repeat center bottom;
        background-size: 100% auto;
    }
    .egat-detail-4 {
        background: url(../assets/images/portfolio/egat/textbg1.jpg) no-repeat
            left center;
        background-size: cover;
    }
    .egat-detail-5 {
        background: #fff;
    }
    .egat-detail-5-bg {
        background: url(../assets/images/portfolio/egat/img4.png) no-repeat
            right 70%;
        background-size: 30% auto;
    }
    .insurefriend-detail-3 {
        background: #fbfbfb url(../assets/images/portfolio/insurefriend/s3-img.png) no-repeat left bottom +35px;
        background-size: 75% auto;
        padding-bottom: 16rem !important;
    }
    .insurefriend-detail-5 {
        background: #fbfbfb url(../assets/images/portfolio/insurefriend/s5-img-mobile.png) no-repeat left bottom -50px;
        background-size: 93% auto;
        padding-bottom: 18rem !important;
    }
    .tokenistra-detail-3 {
        background: url(../assets/images/portfolio/tokenistra/s3-bg.png)
            no-repeat center bottom;
        background-size: 100% auto;
        padding-bottom: 3rem;
    }
    .tokenistra-detail-4 {
        background: url(../assets/images/portfolio/tokenistra/s4-bg.png)
            no-repeat right top;
        background-size: cover;
    }
    .tokenistra-swap-detail-2 {
        background: url(../assets/images/portfolio/tokenistra/swap/s2-bg.png)
            no-repeat center 80%;
        background-size: auto 40%;
    }
    .tokenistra-swap-detail-3 {
        background: url(../assets/images/portfolio/tokenistra/swap/s3-bg.png)
            no-repeat left center;
        background-size: auto 70%;
        padding-bottom: 0;
    }
    .tokenistra-swap-detail-4 {
        background: url(../assets/images/portfolio/tokenistra/swap/s4-bg.png)
            no-repeat center center;
        background-size: cover;
        box-shadow: 0px 0px 160px rgba(0, 0, 0, 0.05);
    }
    .tokenistra-swap-detail-5 {
        background: url(../assets/images/portfolio/tokenistra/swap/s5-bg.png)
            no-repeat center center;
        background-size: cover;
    }
    .coursediva-detail-3 {
        background: url(../assets/images/portfolio/coursediva/s3-bg.png)
            no-repeat left center;
        background-size: cover;
    }
    .coursediva-detail-last-content {
        width: 100%;
        position: relative;
        left: 0;
        top: 0;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    .blockchain-slick .slick-prev {
        left: -10px;
    }
    .blockchain-slick .slick-next {
        right: -10px;
    }
    .insurefriend-detail-4 {
        background: rgb(60, 76, 135);
        background: -moz-linear-gradient(
            45deg,
            rgb(60, 76, 135) 0%,
            rgb(35, 46, 154) 50%,
            rgb(25, 34, 163) 100%
        );
        background: -webkit-linear-gradient(
            45deg,
            rgb(60, 76, 135) 0%,
            rgb(35, 46, 154) 50%,
            rgb(25, 34, 163) 100%
        );
        background: linear-gradient(
            45deg,
            rgb(60, 76, 135) 0%,
            rgb(35, 46, 154) 50%,
            rgb(25, 34, 163) 100%
        );
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c4c87', endColorstr='#1922a3',GradientType=1 );
    }
    .insurefriend-detail-7-content {
        position: relative;
        width: 58%;
        padding: 2rem 0.5rem;
    }
    .insurefriend-detail-7-content h2 {
        font-size: 1.5rem;
    }
    .insurefriend-detail-7-car {
        position: relative;
        width: 100%;
    }
    .portfolio-detail-wrap,
    .portfolio-detail-4-content,
    .portfolio-detail-5-content {
        position: relative;
    }
    .insurefriend-detail-7 {
        background: url(../assets/images/portfolio/insurefriend/s7-content-bg-2.png) no-repeat
            left bottom +40px;
        background-size: 100% auto;
    }

    .career .video-content {
        position: relative;
        padding: 1rem 1rem 5rem 1rem;
        right: 0;
        top: 0;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        max-width: 100%;
    }
    .optimize-content {
        position: relative;
        top: 3rem;
    }
    .id-card-slide-wrap {
        left: 17.5%;
    }
    .principal-portfolio {
        margin-bottom: 3rem;
    }
    .portfolio-logo {
        width: 150px;
        height: 150px;
        margin: -75px auto 2em auto;
        border: 0.5em solid #fff;
    }
    .principal-detail-5-bg {
        left: 0;
        top: 19em;
        width: 100%;
    }
    .blockchain-wrap .arrow {
        position: absolute;
        width: 40px;
        right: 50%;
        bottom: -20px;
        transform: rotate(90deg);
        transform-origin: center bottom;
    }

    .icon-1 {
        right: 7%;
        bottom: 0;
        width: 100px;
    }
    .icon-2 {
        left: 50%;
        top: 13%;
        transform-origin: top left;
        animation: swinging 10s ease-in-out infinite;
        width: 70px;
    }
    .icon-3 {
        left: 20%;
        top: 35%;
        animation: UpDown 1s linear infinite;
        width: 50px;
    }
    .icon-4 {
        left: -2rem;
        top: 20%;
        width: 50px;
    }
    .icon-5 {
        left: -1.75rem;
        top: 50%;
        animation: spinR 15s linear infinite;
        width: 50px;
    }
    .icon-6 {
        left: 28%;
        top: 20%;
        width: 50px;
    }
    .icon-7 {
        left: 20%;
        bottom: 15%;
        width: 50px;
    }
    .icon-8 {
        left: 33%;
        top: 43%;
        animation: UpDown 1.5s linear infinite;
        width: 50px;
    }
    .icon-9 {
        left: -7%;
        bottom: -1.8rem;
        animation: spinR 10s linear infinite;
        width: 50px;
    }
    .icon-10 {
        left: 4%;
        bottom: -1rem;
        animation: spinL 10s linear infinite;
        width: 50px;
    }
    .swensens-detail-last img {
        margin-bottom: 15px;
        max-height: unset;
    }
    .thaiidpass-bg-small-1 {
        background: url(../assets/images/portfolio/thaiidpass/bg_small_1.png)
            no-repeat left top;
        background-size: auto 40%;
    }
    .thaiidpass-detail-last img {
        margin-bottom: 0px;
    }
    .cover-content {
        top: 35%;
    }
    .cover-content h1 {
        font-size: 1.2rem;
    }
    .cover-content p {
        font-size: 0.9rem;
    }
    .swensens-bg {
        background: url(../assets/images/portfolio/swensens/bg.jpg) no-repeat center center;
        background-size: cover;
    }
    .mg-detail-3 {
        background: url(../assets/images/portfolio/mg/mockup-2-bg.png) no-repeat center center;
        background-size: 100% auto;
    }
    .coursediva-portfolio {
        background: url(../assets/images/portfolio/coursediva-bg.png) no-repeat
            right center;
        background-size: cover;
    }
    /* Dew mobile end */
}

/* Small devices (landscape phones, 576px and up) */
/*@media (min-width: 576px) and (max-width: 767.98px) {
    .box-1 .no, .box-2 .no, .box-3 .no, .box-4 .no, .box-5 .no, .box-6 .no {
        width: 30%;
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
    }
    .box-4 .no {
        bottom: 10%;
    }
    .career .video-content {
        position: relative;
        padding: 1rem 1rem 5rem 1rem;
        right: 0;
        top: 0;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        max-width: 100%;
    }
    .optimize-content {
        position: relative;
        top: 3rem;
    }
    .id-card-slide-wrap {
        left: 17%;
    }
    .portfolio-logo {
        width: 300px;
        height: 300px;
        margin: -150px auto 2.5em auto;
        border: 0.75em solid #fff;
    }
}*/

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-brand img {
        width: 115px;
    }
    .desktop-menu li a {
        padding: 0.5rem 1rem;
    }
    .box-1 .no,
    .box-2 .no,
    .box-3 .no,
    .box-4 .no,
    .box-5 .no,
    .box-6 .no {
        width: 30%;
        top: auto;
        bottom: 0;
    }
    .box-1 .no,
    .box-3 .no,
    .box-5 .no {
        left: 0;
    }
    .box-2 .no,
    .box-4 .no,
    .box-6 .no {
        right: 0;
    }
    .portfolio-detail-wrap,
    .portfolio-detail-4-content-relative {
        position: relative;
        left: 0;
        top: 0;
        transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }
    .portfolio-detail-4 {
        background: url(../assets/images/portfolio/principal/s-4-bg.png)
            no-repeat center center;
        background-size: cover;
    }
    .egat-detail-3 {
        background: #fbfbfb;
    }
    .egat-detail-4 {
        background: url(../assets/images/portfolio/egat/textbg1.jpg) no-repeat
            left center;
        background-size: cover;
    }
    .egat-detail-5 {
        background: url(../assets/images/portfolio/egat/egat-detail-5-bg.png)
            no-repeat center bottom -4.5em;
        background-size: 100% auto;
    }
    .insurefriend-detail-3 {
        background: #fff;
    }
    .insurefriend-detail-5 {
        background: url(../assets/images/portfolio/insurefriend/s5-bg.png)
            no-repeat left center;
        background-size: auto 120%;
    }
    .insurefriend-detail-4 {
        background: rgb(60, 76, 135);
        background: -moz-linear-gradient(
            45deg,
            rgb(60, 76, 135) 0%,
            rgb(35, 46, 154) 50%,
            rgb(25, 34, 163) 100%
        );
        background: -webkit-linear-gradient(
            45deg,
            rgb(60, 76, 135) 0%,
            rgb(35, 46, 154) 50%,
            rgb(25, 34, 163) 100%
        );
        background: linear-gradient(
            45deg,
            rgb(60, 76, 135) 0%,
            rgb(35, 46, 154) 50%,
            rgb(25, 34, 163) 100%
        );
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c4c87', endColorstr='#1922a3',GradientType=1 );
    }
    .tokenistra-detail-3 {
        background: url(../assets/images/portfolio/tokenistra/s3-bg.png)
            no-repeat center bottom;
        background-size: 100% auto;
    }
    .tokenistra-detail-4 {
        background: url(../assets/images/portfolio/tokenistra/s4-bg.png)
            no-repeat right top;
        background-size: cover;
    }
    .tokenistra-swap-detail-2 {
        background: url(../assets/images/portfolio/tokenistra/swap/s2-bg.png)
            no-repeat center 80%;
        background-size: auto 40%;
    }
    .tokenistra-swap-detail-3 {
        background: url(../assets/images/portfolio/tokenistra/swap/s3-bg.png)
            no-repeat left center;
        background-size: auto 70%;
    }
    .tokenistra-swap-detail-4 {
        background: url(../assets/images/portfolio/tokenistra/swap/s4-bg.png)
            no-repeat center center;
        background-size: cover;
        box-shadow: 0px 0px 160px rgba(0, 0, 0, 0.05);
    }
    .tokenistra-swap-detail-5 {
        background: url(../assets/images/portfolio/tokenistra/swap/s5-bg.png)
            no-repeat center center;
        background-size: cover;
    }
    .coursediva-detail-3 {
        background: url(../assets/images/portfolio/coursediva/s3-bg.png)
            no-repeat left center;
        background-size: cover;
    }
    .portfolio-detail-6 .portfolio-content-middle {
        position: relative;
        top: 0;
        transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }
    .career .video-content {
        max-width: 500px;
    }
    .optimize-content {
        position: relative;
        top: 3rem;
    }
    .id-card-slide-wrap {
        left: 18%;
    }
    .principal-portfolio,
    .insurefriend-portfolio,
    .egat-portfolio,
    .tokenistra-portfolio,
    .swensens-portfolio,
    .mg-portfolio,
    .coursediva-portfolio {
        overflow: visible;
    }
    .principal-portfolio {
        margin-bottom: 3rem;
    }
    .portfolio-content-middle {
        position: relative;
        top: 0;
        transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }
    .thaiidpass-detail-4 .portfolio-content-middle,
    .thaiidpass-detail-5 .portfolio-content-middle,
    .egat-detail-5 .portfolio-content-middle,
    .tokenistra-detail-3 .portfolio-content-middle,
    .coursediva-detail-5 .portfolio-content-middle {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        padding: 0 15px;
    }
    .portfolio-logo {
        width: 300px;
        height: 300px;
        margin: -150px auto 2.5em auto;
        border: 0.75em solid #fff;
    }
    .principal-detail-4-content,
    .egat-detail-4-content,
    .tokenistra-detail-4-content,
    .cousrediva-detail-4-content {
        position: relative;
    }
    .principal-content-middle {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
    }
    .icon-1 {
        right: 7%;
        bottom: 0;
        width: 200px;
    }
    .icon-2 {
        left: 50%;
        top: 13%;
        transform-origin: top left;
        animation: swinging 10s ease-in-out infinite;
        width: 70px;
    }
    .icon-3 {
        left: 20%;
        top: 35%;
        animation: UpDown 1s linear infinite;
        width: 100px;
    }
    .icon-4 {
        left: -2rem;
        top: 20%;
        width: 100px;
    }
    .icon-5 {
        left: -1.75rem;
        top: 50%;
        animation: spinR 15s linear infinite;
        width: 100px;
    }
    .icon-6 {
        left: 28%;
        top: 20%;
        width: 100px;
    }
    .icon-7 {
        left: 20%;
        bottom: 15%;
        width: 100px;
    }
    .icon-8 {
        left: 33%;
        top: 43%;
        animation: UpDown 1.5s linear infinite;
        width: 100px;
    }
    .icon-9 {
        left: -4%;
        bottom: -1.8rem;
        animation: spinR 10s linear infinite;
        width: 70px;
    }
    .swensens-detail-last img {
        max-height: 299px;
    }
    .insurefriend-detail-7-content {
        padding: 3.5rem 1.5rem;
        top: 0;
    }
    .insurefriend-detail-7-content h2 {
        font-size: 1.5rem;
    }
    .thaiidpass-bg-small-1 {
        background: url(../assets/images/portfolio/thaiidpass/bg_small_1.png)
            no-repeat left top;
        background-size: auto 43%;
    }
    .cover-content {
        top: 38%;
    }
    .mg-detail-3 {
        background: url(../assets/images/portfolio/mg/mockup-2-bg.png) no-repeat center 2em;
        background-size: 100% auto;
    }
    .coursediva-portfolio {
        background: url(../assets/images/portfolio/coursediva-bg.png) no-repeat
            right center;
        background-size: cover;
    }
}
/* Large devices (tablets, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .desktop-menu li a {
        padding: 0.5rem 1.5rem;
    }
    .optimize-content {
        top: 2rem;
    }
    .bg-lg-white {
        background: white;
    }
    .id-card-slide-wrap {
        left: 17.4%;
    }
    .icon-1 {
        right: 7%;
        bottom: 0;
        width: 200px;
    }
    .icon-2 {
        transform-origin: top left;
        animation: swinging 10s ease-in-out infinite;
        width: 70px;
    }
    .icon-3 {
        left: 20%;
        top: 35%;
        animation: UpDown 1s linear infinite;
        width: 100px;
    }
    .icon-4 {
        left: -2rem;
        top: 20%;
        width: 100px;
    }
    .icon-5 {
        left: -1.75rem;
        top: 50%;
        animation: spinR 15s linear infinite;
        width: 100px;
    }
    .icon-6 {
        left: 28%;
        top: 20%;
        width: 100px;
    }
    .icon-7 {
        left: 20%;
        bottom: 15%;
        width: 100px;
    }
    .icon-8 {
        left: 33%;
        top: 43%;
        animation: UpDown 1.5s linear infinite;
        width: 100px;
    }
    .icon-9 {
        left: -2%;
        bottom: -1.8rem;
        animation: spinR 10s linear infinite;
        width: 70px;
    }
    .swensens-detail-last img {
        max-height: 412px;
    }
    .insurefriend-detail-7-content {
        padding: 5rem 1.5rem;
        top: 0;
    }
    .thaiidpass-bg-small-1 {
        background: url(../assets/images/portfolio/thaiidpass/bg_small_1.png)
            no-repeat left top;
        background-size: auto 50%;
    }
    .service-2 .box {
        padding: 0.7rem;
    }
    .service-3 {
        margin-top: 0;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .insurefriend-detail-2 {
        background: url(../assets/images/portfolio/insurefriend/s2-bg.png)
            no-repeat center 5rem;
        background-size: 100% auto;
    }
}
