* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-dark-color: #033F66;
--primary-base-color: #0673B9;
--txt-color: #fff;
--txt-color2: #000;
--txt-sub-500: #525866;
--stroke-sub-300: #cdd0d5;
--stroke-soft-200: #e2e4e9;
}
@font-face {
font-family: "Proxima Nova", sans-serif;
font-weight: 700;
src: url(//everestcrewsolutions.com/wp-content/themes/everest/assets/fonts/ProximaNovaExtrabold.otf);
font-style: normal;
}
@font-face {
font-family: "Proxima Nova", sans-serif;
font-weight: 700;
src: url(//everestcrewsolutions.com/wp-content/themes/everest/assets/fonts/ProximaNovaBold.otf);
font-style: normal;
}
@font-face {
font-family: "Proxima Nova", sans-serif;
font-weight: 600;
src: url(//everestcrewsolutions.com/wp-content/themes/everest/assets/fonts/ProximaNovaSemibold.otf);
font-style: normal;
}
@font-face {
font-family: "Proxima Nova", sans-serif;
font-weight: 400;
src: url(//everestcrewsolutions.com/wp-content/themes/everest/assets/fonts/ProximaNovaLight.otf);
font-style: normal;
}
@font-face {
font-family: "Inter", sans-serif;
font-weight: 600;
src: url(//everestcrewsolutions.com/wp-content/themes/everest/assets/fonts/Inter_24pt-SemiBold.ttf);
font-style: normal;
}
body {
line-height: 1.2;
margin: 0 auto;
background-color: var(--txt-color);
font-family: "Proxima Nova", sans-serif;
font-weight: 400;
color: var(--txt-color2);
max-width: 1920px;
letter-spacing: 0.5px;
}
img {
width: 100%;
max-width: 100%;
margin: 0 auto;
vertical-align: middle;
object-fit: cover;
}
ul,
li {
list-style-type: none;
}
a,
a:visited,
a:active {
cursor: pointer;
text-decoration: none;
}
.lang-btn a {
all: unset;
}
.btn {
background: var(--txt-color);
color: var(--primary-base-color);
border: 1px solid var(--primary-base-color);
text-decoration: none;
font-size: 14px;
font-weight: 600;
padding: 16px 32px;
border-radius: 50px;
cursor: pointer;
}
.sp {
display: none;
}
.unlink a {
cursor: default;
}
.d-flex {
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-list {
display: flex;
justify-content: space-between;
width: 100%;
}
.nav-list li {
margin-right: 20px;
}
.nav-list li:last-child {
margin-right: 0;
}
.nav-list li a {
font-size: 20px;
color: var(--txt-sub-500);
}
.home .nav-list li a,
.page-id-16 .nav-list li a,
.page-id-26 .nav-list li a {
color: var(--txt-color);
}
.home .btn,
.overlay .btn,
.page-id-16 .btn,
.page-id-26 .btn {
background: #FFFFFF33;
color: var(--txt-color);
border: 1px solid var(--txt-color);
}
.container {
width: 95%;
margin: 0 auto;
}
h1 {
font-size: 64px;
font-weight: 700;
color: var(--txt-color);
line-height: 1.3;
letter-spacing: -0.5px;
}
h2 {
font-family: 'Inter', sans-serif;
font-size: 48px;
font-weight: 600;
color: var(--txt-color2);
}
h3 {
font-size: 40px;
font-weight: 600;
color: var(--txt-color2);
}
h4 {
font-family: 'Inter', sans-serif;
font-size: 36px;
font-weight: 600;
color: var(--txt-color2);
}
h5 {
font-size: 24px;
font-weight: 600;
color: var(--txt-color);
}
p {
font-size: 18px;
font-weight: 400;
color: var(--txt-sub-500);
}
strong {
font-weight: 600;
}
.divider {
width: 100%;
height: 1px;
background: var(--stroke-sub-300);
margin: 100px 0;
} .header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
margin: 0 auto;
width: 90%;
position: absolute;
top: 50px;
left: 0;
right: 0;
z-index: 100;
}
.header-center {
margin-right: 100px;
}
.header-right .menu-btn {
display: flex;
align-items: center;
gap: 15px;
}
.burger-menu {
display: inline-flex;
flex-direction: column;
justify-content: space-between;
width: 20px;
height: 18px;
}
.burger-menu .line {
display: block;
height: 2px;
background: var(--primary-base-color);
border-radius: 2px;
transition: transform .25s ease, opacity .2s ease;
}
.home .burger-menu .line,
.page-id-16 .burger-menu .line,
.page-id-26 .burger-menu .line {
background: var(--txt-color);
}
.burger-menu .line:nth-child(2) {
width: 70%;
}
.logo {
width: 120px;
} .overlay {
position: fixed;
top: 30px;
left: 0;
right: 0;
width: 95%;
height: 100%;
margin: 0 auto;
border-top-left-radius: 50px;
border-bottom-right-radius: 50px;
background: rgba(0, 0, 0, 0.6) url(//everestcrewsolutions.com/wp-content/themes/everest/assets/img/img_overlay.webp) center/cover no-repeat;
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
animation: fadeIn 0.4s ease;
z-index: 200;
}
.overlay::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #00000066;
border-top-left-radius: 50px;
border-bottom-right-radius: 50px;
z-index: -1;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.overlay.active {
display: flex;
}
.overlay .close-btn {
position: absolute;
top: 80px;
right: 100px;
font-size: 28px;
color: #fff;
background: none;
border: none;
cursor: pointer;
}
.overlay .back-home {
position: absolute;
top: 80px;
left: 100px;
}
.overlay-nav ul {
list-style: none;
text-align: center;
}
.overlay-nav li {
margin: 60px 0;
}
.overlay-nav a {
color: #fff;
font-size: 36px;
font-weight: 600;
text-decoration: none;
position: relative;
}
.overlay-nav a::after {
content: "";
position: absolute;
width: 0;
height: 2px;
background: #fff;
left: 0;
bottom: -5px;
transition: 0.3s;
}
.overlay-nav a:hover::after {
width: 100%;
} .hero {
height: 100vh;
background: url(//everestcrewsolutions.com/wp-content/themes/everest/assets/media/banner.gif) center/cover no-repeat;
display: flex;
justify-content: center;
text-align: center;
color: #fff;
margin-top: 30px;
border-radius: 50px;
transform: scaleX(-1);
position: relative;
}
.hero::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(206.15deg, rgba(0, 0, 0, 0.5) 21.75%, rgba(0, 0, 0, 0) 62.42%);
border-radius: 50px;
z-index: 1;
}
.contact-page .hero {
background: url(//everestcrewsolutions.com/wp-content/uploads/2026/01/contact-69689b4f5cd59.webp) center/cover no-repeat;
height: 60vh;
border-radius: unset;
border-top-left-radius: 50px !important;
border-bottom-right-radius: 50px !important;
transform: unset;
}
.contact-page .hero::before {
border-radius: unset;
border-top-left-radius: 50px;
border-bottom-right-radius: 50px;
background: #033F6699;
}
.hero-content {
transform: scaleX(-1);
max-width: 72%;
z-index: 2;
position: absolute;
top: 25%;
}
.contact-page .hero-content {
transform: unset;
top: 45%;
}
.hero p {
font-size: 20px;
margin: 20px 0 40px;
color: var(--txt-color);
}
.lang-btn {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: var(--primary-base-color);
font-size: 14px;
font-weight: 500;
}
.lang-btn img {
width: 24px !important;
height: 24px !important;
margin-right: 8px;
margin-left: 0 !important;
} .values-section {
text-align: center;
}
.values-section h2 {
margin-bottom: 30px;
}
.values-section h4 {
max-width: 900px;
margin: 0 auto 60px;
} .values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(495px, 1fr));
gap: 25px;
justify-content: center;
} .value-card {
background: var(--primary-dark-color);
padding: 32px 28px;
text-align: left;
} .value-card:nth-child(1) {
border-top-left-radius: 50px;
}
.value-card:nth-child(4) {
border-bottom-right-radius: 50px;
} .value-card h4 {
font-size: 24px;
font-weight: 600;
color: var(--txt-color);
margin-bottom: 10px;
}
.value-card p {
color: var(--txt-color);
}
.value-card h4 img {
width: 32px;
height: 32px;
margin-right: 10px;
}
.services {
display: flex;
}
.services-left {
background-color: var(--primary-dark-color);
border-top-left-radius: 50px;
padding: 50px 100px;
}
.services-left h2 {
width: 300px;
color: var(--txt-color);
}
.services-right {
position: relative;
}
.services-right img {
width: 100%;
border-bottom-right-radius: 50px;
}
.services-right .crew {
position: absolute;
left: 20px;
bottom: 20px;
color: var(--txt-color);
transition: all 0.3s ease;
}
.services-right:hover .crew {
opacity: 0;
}
.services-right .service-content {
display: none;
}
.services-right:hover .service-content-bg {
background: #0A0D1499;
border-bottom-right-radius: 50px;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
transition: all 0.3s ease;
}
.services-right:hover .service-content-bg .service-content {
display: block;
max-width: 585px;
}
.service-content h2 {
color: var(--txt-color);
margin-bottom: 20px;
}
.service-content p {
color: var(--txt-color);
margin-bottom: 30px;
line-height: 1.6;
}
.btn img {
width: 14px;
height: 14px;
margin-left: 10px;
}
.content-hub {
text-align: center;
}
.content-hub p {
max-width: 550px;
margin: 20px auto;
}
.hub-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 40px;
text-align: left;
}
.hub-item {
width: 31%;
margin-right: 20px;
overflow: hidden;
}
.hub-item:nth-child(3n) {
margin-right: 0;
}
.hub-item h5 {
color: var(--txt-sub-500);
}
.hub-item .divider {
margin: 15px 0 !important;
}
.hub-item .featured-img {
width: 100%;
height: 500px;
overflow: hidden;
border-top-left-radius: 50px;
border-bottom-right-radius: 50px;
margin-bottom: 20px;
}
.hub-item .featured-img img {
display: block;
width: 100%;
height: 500px;
transition: transform 0.3s ease;
}
.hub-item:hover .featured-img img {
transform: scale(1.2);
}
.hub-item span {
font-size: 20px;
font-weight: 600;
color: var(--txt-sub-500);
display: block;
padding-bottom: 12px;
}
.hub-item:hover h5 {
color: var(--txt-color2);
}
.hub-item:hover span {
color: var(--primary-base-color);
}
.cta {
display: flex;
position: relative;
}
.cta .cta-img img {
position: relative;
border-top-right-radius: 50px;
transform: scaleX(-1);
height: 100%;
}
.cta .cta-img {
position: relative;
min-width: 57%;
height: 350px;
}
.cta::before {
content: "";
position: absolute;
top: 0;
left: 0;
transform: scaleX(-1);
background: linear-gradient(270.66deg, rgba(3, 63, 102, 0) 39.43%, #033F66 81.65%);
width: 60%;
height: 100%;
z-index: 1;
}
.cta .cta-content {
background: var(--primary-dark-color);
padding: 50px;
border-bottom-right-radius: 50px;
z-index: 2;
}
.mission-vision .cta-content {
padding: 50px 100px 50px 50px;
}
.mission-vision .cta-content h4 {
color: var(--txt-color);
margin-bottom: 20px;
}
.cta .cta-content .bottom-blk h5 {
margin-bottom: 20px;
}
.cta .cta-content h5 {
color: var(--txt-color);
margin-bottom: 20px;
}
.cta .cta-content .up-blk h2 {
margin-bottom: 20px;
}
.cta .cta-content p {
color: var(--txt-color);
line-height: 1.6;
max-width: 600px;
}
.cta .cta-content .bottom-blk p:last-child {
margin-bottom: 0;
} .footer {
background: var(--primary-dark-color);
color: #fff;
padding: 60px 5%;
margin-top: 100px;
}
.footer-up-content {
display: grid;
grid-template-columns: 2fr 1fr 1.5fr 2fr;
gap: 20px;
}
.footer-copyright {
border-top: 1px solid var(--txt-color);
margin-top: 30px;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-copyright .copy-right {
font-size: 16px;
color: var(--txt-color) !important;
margin-top: 50px;
}
.ft-social-list {
display: flex;
gap: 20px;
margin-top: 10px;
margin-bottom: 20px;
}
.footer-col p {
color: var(--txt-color);
font-weight: 600;
margin-bottom: 30px;
}
.footer-col a {
color: #fff;
text-decoration: none;
display: block;
margin: 15px 0;
font-size: 16px;
}
.footer-logo {
width: 120px;
margin-bottom: 10px;
}
.footer-col .contact-info p {
font-weight: 400;
margin-bottom: 0;
}
.footer-col .contact-info a {
font-weight: 600;
margin: 5px 0 30px;
} .common-page {
margin: 250px 100px 0 100px;
} .about-us {
display: flex;
justify-content: space-between;
}
.about-us p {
max-width: 55%;
margin-left: 100px;
font-size: 24px;
line-height: 1.5;
} .partner {
text-align: center;
}
.partner .common-ttl {
text-align: center;
font-size: 40px;
letter-spacing: -0.5px;
}
.partner .partner-list {
padding: 43px 0;
}
.partner .partner-list li {
width: 24%;
margin-right: 20px;
}
.partner .partner-list li:last-child {
margin-right: 0;
}
.partner .partner-list li img {
width: 280px;
height: 280px;
border-radius: 50%;
}
.our-organization {
text-align: center;
}
.our-organization p {
font-size: 24px;
max-width: 65%;
margin: 10px auto 60px;
}
.our-organization img {
width: 100%;
max-width: 1230px;
border-top-left-radius: 50px;
border-bottom-right-radius: 50px;
} .story-page {
text-align: center;
}
.story-page h5 {
color: var(--txt-color2);
}
.story-page h1 {
color: var(--txt-color2);
margin: 20px 0;
}
.story-list .story-item {
display: flex !important;
flex-wrap: wrap;
align-items: stretch;
justify-content: center;
}
.story-list .story-item .featured-img {
flex: 1 1 45%;
max-width: 500px;
height: auto;
overflow: hidden;
aspect-ratio: 4 / 3;
}
.story-list .story-item .featured-img img {
width: 100%;
height: 100%;
border-top-left-radius: 50px;
}
.story-list .story-item .story-content {
flex: 0 1 58%;
text-align: left;
padding: 50px 30px;
background-color: var(--primary-dark-color);
border-bottom-right-radius: 50px;
}
.story-list .story-item .story-content p {
color: var(--txt-color);
}
.slick-dots {
display: flex;
justify-content: center;
align-items: center;
padding-top: 50px;
}
.slick-dots li {
margin-right: 5px;
}
.slick-dots li button {
font-size: 0;
width: 60px;
height: 6px;
border: none;
background: var(--stroke-soft-200);
border-radius: 120px;
cursor: pointer;
}
.slick-dots li.slick-active button {
background: var(--primary-base-color);
} .service-page .crew-management {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.service-page .crew-management .left-content {
width: 50%;
}
.service-page .crew-management .left-content .img-blk {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
justify-content: center;
}
.service-page .crew-management .left-content .img-blk img {
width: 100%;
height: auto;
object-fit: cover;
margin-bottom: 30px;
}
.service-page .crew-management .right-content {
max-width: 45%;
}
.service-page .crew-management .right-content p {
margin: 30px 0;
} .detail-page ul.breadcrumbs {
display: flex;
align-items: center;
padding: 20px 0;
white-space: nowrap;
overflow-x: auto;
}
.detail-page ul.breadcrumbs::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #f5f5f5;
border-radius: 5px;
}
.detail-page ul.breadcrumbs::-webkit-scrollbar {
width: 1px;
height: 2px;
background-color: #f5f5f5;
border-radius: 5px;
}
.detail-page ul.breadcrumbs::-webkit-scrollbar-thumb {
border: 2px solid var(--primary-color);
background-color: var(--primary-color);
border-radius: 5px;
}
.detail-page ul.breadcrumbs li {
margin-right: 15px;
}
.detail-page ul.breadcrumbs li a {
color: var(--txt-sub-500);
font-size: 14px;
font-weight: 600;
letter-spacing: -0.5px;
}
.detail-page ul.breadcrumbs li:last-child a {
color: var(--txt-color2);
}
.detail-page ul.breadcrumbs li:last-child a {
cursor: default;
}
.detail-page ul.breadcrumbs li:is(:first-child, :nth-child(2)) a:hover {
color: var(--txt-color2);
}
.detail-page ul.breadcrumbs li+li:before {
margin-right: 12px;
padding: 3px;
background: url(//everestcrewsolutions.com/wp-content/themes/everest/assets/img/ico_right_detail.svg) no-repeat center/cover;
content: "";
}
.detail-page-content {
margin-top: 20px;
}
.detail-page-content img {
height: 450px;
object-fit: cover;
border-top-left-radius: 50px;
border-bottom-right-radius: 50px;
margin: 30px 0;
}
.detail-page-content .news-content {
font-size: 24px;
max-width: 800px;
color: var(--txt-color2);
margin: 0 auto;
}
.detail-page-content .news-content p {
font-size: 24px;
color: var(--txt-color2);
margin-bottom: 10px;
}
.detail-page-content .news-content li{
list-style-type: disc;
margin-left: 20px;
}
.detail-page-content span {
font-size: 18px;
color: var(--primary-base-color);
line-height: 2;
}
.detail-page .divider {
margin: 50px 0;
}
.other-news {
text-align: center;
} .contact-page {
min-height: 185vh;
}
.contact-form {
background: var(--txt-color);
box-shadow: 0px 16px 40px -8px #585C5F29;
position: absolute;
border-top-left-radius: 50px;
border-bottom-right-radius: 50px;
padding: 50px;
z-index: 1;
top: 75%;
max-width: 80%;
}
.contact-form .contact-info {
display: grid;
grid-template-columns: 1fr 1.3fr 1.2fr;
gap: 20px;
}
.contact-form .contact-info .info-blk {
display: flex;
gap: 20px;
}
.contact-form .contact-info .info-blk .img-blk {
flex-shrink: 0;
}
.contact-form .contact-info .info-blk img {
width: 40px;
height: 40px;
}
.contact-form .contact-info .info-blk .txt-blk {
width: 100%;
text-align: left;
}
.contact-form .contact-info .info-blk .txt-blk a {
font-size: 18px;
color: var(--txt-sub-500);
font-weight: 600;
display: block;
margin-bottom: 5px;
word-break: break-word;
}
.contact-form .contact-info .info-blk .txt-blk p {
font-size: 18px;
font-weight: 600;
color: var(--txt-sub-500);
margin: 0 0 5px;
}
.nf-form-title h3 {
font-size: 24px !important;
text-align: left;
margin-bottom: 50px;
}
.nf-field-label label {
color: var(--txt-color2) !important;
}
.nf-field-element input,
.nf-field-element textarea {
width: 100% !important;
height: 50px !important;
border-radius: 10px;
padding: 10px;
border: 1px solid var(--stroke-soft-200);
outline: none;
}
.nf-field-element input[type="submit"] {
background: var(--primary-dark-color) !important;
color: var(--txt-color) !important;
border: none !important;
cursor: pointer;
border-radius: 50px !important;
}
.nf-field-element textarea {
height: 150px !important;
resize: unset;
}
.nf-form-fields-required {
display: none;
}
.nf-after-field .nf-error-msg {
display: none;
}
.nf-response-msg p {
color: var(--txt-color2) !important;
text-align: left;
} @media only screen and (min-width:768px) and (max-width:1280px) {  
.btn {
font-size: 1.094vw;
padding: 1.25vw 2.5vw;
border-radius: 3.906vw;
}
h1 {
font-size: 5vw;
}
h2 {
font-size: 3.75vw;
}
h3 {
font-size: 3.125vw;
}
h4 {
font-size: 2.813vw;
}
h5 {
font-size: 1.875vw;
}
p {
font-size: 1.406vw;
}
.divider {
margin: 7.813vw 0;
} .nav-list li {
margin-right: 1.2vw;
}
.nav-list li a {
font-size: 1.563vw;
}
.header-center {
margin-right: 7.813vw;
}
.header-right .menu-btn {
gap: 1.172vw;
}
.burger-menu {
width: 1.563vw;
height: 1.406vw;
}
.logo {
width: 9.375vw;
} .overlay {
top: 2.344vw;
border-top-left-radius: 3.906vw;
border-bottom-right-radius: 3.906vw;
}
.overlay::before {
border-top-left-radius: 3.906vw;
border-bottom-right-radius: 3.906vw;
}
.overlay .close-btn {
top: 6.25vw;
right: 7.813vw;
font-size: 2.188vw;
}
.overlay .back-home {
top: 6.25vw;
left: 7.813vw;
}
.overlay-nav li {
margin: 4.688vw 0;
}
.overlay-nav a {
font-size: 2.813vw;
} .hero {
margin-top: 2.344vw;
border-radius: 3.906vw;
}
.hero::before {
border-radius: 3.906vw;
}
.hero-content {
max-width: 63.75vw;
}
.hero p {
font-size: 1.875vw;
margin: 1.563vw 0 3.125vw;
}
.lang-btn {
gap: 0.625vw;
font-size: 1.094vw;
} .values-section h2 {
margin-bottom: 2.344vw;
}
.values-section h4 {
font-size: 1.875vw;
max-width: 70.313vw;
margin: 0 auto 4.688vw;
} .values-grid {
grid-template-columns: repeat(auto-fit, minmax(38.672vw, 1fr));
gap: 1.953vw;
} .value-card {
padding: 2.344vw;
} .value-card:nth-child(1) {
border-top-left-radius: 3.906vw;
}
.value-card:nth-child(4) {
border-bottom-right-radius: 3.906vw;
} .value-card h4 {
margin-bottom: 0.781vw;
}
.value-card h4 img {
width: 2.188vw;
height: 2.188vw;
}
.services-left {
border-top-left-radius: 3.906vw;
padding: 3.906vw 7.813vw;
}
.services-left h2 {
width: 23.438vw;
}
.services-right img {
border-bottom-right-radius: 3.906vw;
}
.services-right .crew {
left: 1.563vw;
bottom: 1.563vw;
}
.services-right:hover .service-content-bg {
border-bottom-right-radius: 3.906vw;
}
.services-right:hover .service-content-bg .service-content {
max-width: 45.703vw;
}
.service-content h2 {
margin-bottom: 1.563vw;
}
.service-content p {
margin-bottom: 2.344vw;
}
.btn img {
width: 1.094vw;
height: 1.094vw;
margin-left: 0.781vw;
}
.content-hub p {
max-width: 42.969vw;
margin: 1.563vw auto;
}
.hub-grid {
gap: 1.563vw;
margin-top: 3.125vw;
}
.hub-item {
width: 30%;
margin-right: 1.563vw;
}
.hub-item .divider {
margin: 1.172vw 0 !important;
}
.hub-item .featured-img {
height: 39.063vw;
border-top-left-radius: 3.906vw;
border-bottom-right-radius: 3.906vw;
margin-bottom: 1.563vw;
}
.hub-item .featured-img img {
height: 39.063vw;
}
.hub-item span {
font-size: 1.563vw;
padding-bottom: 0.938vw;
}
.cta .cta-img {
min-width: 48%;
height: 34.344vw;
}
.cta .cta-img img {
border-top-right-radius: 3.906vw;
}
.cta .cta-content {
padding: 3.906vw 7.813vw;
border-bottom-right-radius: 3.906vw;
}
.mission-vision .cta-content {
padding: 3.906vw 7.813vw 3.906vw 3.906vw;
}
.mission-vision .cta-content h4 {
margin-bottom: 1.563vw;
}
.cta .cta-content .bottom-blk h5 {
margin-bottom: 1.563vw;
}
.cta .cta-content h2 {
margin-bottom: 19.531vw;
}
.cta .cta-content .up-blk h2 {
margin-bottom: 1.563vw;
}
.cta .cta-content p {
margin-bottom: 3.906vw;
max-width: 46.875vw;
} .footer {
gap: 1.563vw;
padding: 4.688vw 5%;
margin-top: 7.813vw;
}
.ft-social-list {
gap: 1.563vw;
margin-top: 0.781vw;
margin-bottom: 1.563vw;
}
.footer-col p {
margin-bottom: 2.344vw;
}
.footer-col a {
margin: 1.172vw 0;
font-size: 1.25vw;
}
.footer-logo {
width: 9.375vw;
margin-bottom: 0.781vw;
}
.footer-col .contact-info a {
margin: 0.391vw 0 2.344vw;
} .common-page {
margin: 20.531vw 7.813vw 0 7.813vw;
} .about-us p {
margin-left: 7.813vw;
font-size: 1.875vw;
} .partner .common-ttl {
font-size: 3.125vw;
}
.partner .partner-list {
padding: 3.359vw 0;
}
.partner .partner-list li {
margin-right: 1.563vw;
}
.partner .partner-list li img {
width: 21.875vw;
height: 21.875vw;
}
.our-organization p {
font-size: 1.875vw;
margin: 0.781vw auto 4.688vw;
}
.our-organization img {
max-width: 96.094vw;
border-top-left-radius: 3.906vw;
border-bottom-right-radius: 3.906vw;
} .story-page h1 {
margin: 1.563vw 0;
}
.story-list .story-item .featured-img {
width: 39.063vw;
}
.story-list .story-item .featured-img img {
border-top-left-radius: 3.906vw;
}
.story-list .story-item .story-content {
flex: 0 1 55%;
padding: 3.906vw 2.344vw;
border-bottom-right-radius: 3.906vw;
}
.slick-dots {
padding-top: 3.906vw;
}
.slick-dots li {
margin-right: 0.391vw;
}
.slick-dots li button {
width: 4.688vw;
height: 0.469vw;
border-radius: 9.375vw;
} .service-page .crew-management .left-content .img-blk {
gap: 2.344vw;
}
.service-page .crew-management .left-content .img-blk img {
margin-bottom: 2.344vw;
}
.service-page .crew-management .right-content p {
margin: 2.344vw 0;
} .detail-page ul.breadcrumbs {
padding: 1.563vw 0;
}
.detail-page ul.breadcrumbs li {
margin-right: 1.172vw;
}
.detail-page ul.breadcrumbs li a {
font-size: 1.094vw;
}
.detail-page ul.breadcrumbs li+li:before {
margin-right: 0.938vw;
padding: 0.234vw;
}
.detail-page-content {
margin-top: 1.563vw;
}
.detail-page-content img {
height: 35.156vw;
border-top-left-radius: 3.906vw;
border-bottom-right-radius: 3.906vw;
margin: 2.344vw 0;
}
.detail-page-content .news-content {
font-size: 1.875vw;
max-width: 62.5vw;
}
.detail-page-content span {
font-size: 1.406vw;
} .contact-form {
border-top-left-radius: 3.906vw;
border-bottom-right-radius: 3.906vw;
padding: 3.906vw;
}
.contact-form .contact-info {
gap: 1.563vw;
}
.contact-form .contact-info .info-blk {
gap: 1.563vw;
}
.contact-form .contact-info .info-blk img {
width: 2.344vw;
height: 2.344vw;
}
.contact-form .contact-info .info-blk .txt-blk a {
font-size: 1.406vw;
margin-bottom: 0.391vw;
}
.contact-form .contact-info .info-blk .txt-blk p {
font-size: 1.406vw;
margin: 0 0 0.391vw;
}
.nf-form-title h3 {
font-size: 1.875vw !important;
margin-bottom: 3.906vw;
}
.nf-field-element input,
.nf-field-element textarea {
height: 3.906vw !important;
border-radius: 0.781vw;
padding: 0.781vw;
}
.nf-field-element input[type="submit"] {
border-radius: 3.906vw !important;
}
.nf-field-element textarea {
height: 11.719vw !important;
}
} @media all and (max-width:767.9px) {
.sp {
display: block;
}
.d-flex {
display: none;
}
.btn {
font-size: 3.733vw;
padding: 3.267vw;
border-radius: 13.333vw;
}
.lang-btn img {
margin-right: 0;
}
.container {
width: 100%;
}
h1 {
font-size: 11.2vw;
line-height: 1;
}
h2 {
font-size: 9.067vw;
}
h3 {
font-size: 6.933vw;
}
h4 {
font-size: 5.867vw;
}
h5 {
font-size: 5.333vw;
}
p {
font-size: 4.267vw;
}
.divider {
height: 0.267vw;
margin: 13.333vw 0;
} .header {
padding: 0;
top: 5.333vw;
left: 0;
right: 0;
}
.header-center {
margin-right: 0;
}
.header-center img {
width: 32vw;
height: 32vw;
}
.header-right .menu-btn {
gap: 4vw;
}
.burger-menu {
width: 5.333vw;
height: 4.8vw;
}
.burger-menu .line:nth-child(2) {
width: 70%;
}
.logo {
width: 32vw;
} .overlay {
top: 0;
width: 100%;
border-top-left-radius: 6.667vw;
border-bottom-right-radius: 6.667vw;
}
.overlay::before {
border-top-left-radius: 6.667vw;
border-bottom-right-radius: 6.667vw;
}
.overlay .close-btn {
top: 13.333vw;
right: 7.467vw;
font-size: 7.467vw;
}
.overlay .back-home {
top: 13.333vw;
left: 5.333vw;
}
.overlay-nav li {
margin: 16vw 0;
}
.overlay-nav a {
font-size: 6.4vw;
}
.overlay-nav a::after {
width: 0;
height: 0.533vw;
left: 0;
bottom: -1.333vw;
} .hero {
height: 70vh;
margin-top: 0;
border-radius: 6.667vw;
}
.hero::before {
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 6.667vw;
}
.contact-page .hero {
height: 60vh;
border-top-left-radius: 6.667vw !important;
border-bottom-right-radius: 6.667vw !important;
}
.contact-page .hero::before {
border-top-left-radius: 6.667vw;
border-bottom-right-radius: 6.667vw;
}
.hero-content {
max-width: 217.6vw;
top: 30%;
padding: 1.333vw;
}
.contact-page .hero-content {
top: 45%;
}
.hero p {
font-size: 4.8vw;
margin: 5.333vw 0 10.667vw;
}
.lang-btn {
gap: 2.133vw;
font-size: 3.733vw;
}
.lang-btn span {
display: none;
}
.menu-txt {
display: none;
} .values-section {
width: 90%;
margin: 0 auto;
}
.values-section h2 {
margin-bottom: 8.667vw;
}
.values-section h4 {
max-width: 240vw;
margin: 0 auto 16vw;
} .values-grid {
grid-template-columns: repeat(auto-fit, minmax(93.333vw, 1fr));
gap: 4vw;
} .value-card {
padding: 8vw;
} .value-card:nth-child(1) {
border-top-left-radius: 13.333vw;
}
.value-card:nth-child(4) {
border-bottom-right-radius: 13.333vw;
} .value-card h4 {
font-size: 1.2rem;
margin-bottom: 2.667vw;
z-index: 100;
}
.value-card h4 img {
width: 7.467vw;
height: 7.467vw;
}
.services-left {
display: none;
}
.services-right {
width: 90%;
margin: 0 auto;
}
.services-right img {
border-bottom-right-radius: 13.333vw;
}
.services-right .crew {
display: none;
}
.services-right .service-content-bg {
background: #0A0D1499;
border-bottom-right-radius: 13.333vw;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: left;
}
.services-right:hover .service-content-bg {
text-align: left;
}
.services-right .service-content {
display: block;
padding-left: 4vw;
}
.service-content h2 {
margin-bottom: 3vw;
}
.service-content p {
color: var(--txt-color);
margin-bottom: 5vw;
line-height: 1.2;
}
.btn img {
width: 3.733vw;
height: 3.733vw;
margin-left: 2.667vw;
}
.content-hub p {
max-width: 146.667vw;
margin: 5.333vw auto;
}
.hub-grid {
gap: 5.333vw;
margin-top: 10.667vw;
}
.hub-item {
width: 90%;
margin: 5.333vw auto;
}
.hub-item:nth-child(3n) {
margin: 5.333vw auto;
}
.hub-item .divider {
margin: 4vw 0 !important;
}
.hub-item .featured-img {
height: auto;
border-top-left-radius: 13.333vw;
border-bottom-right-radius: 13.333vw;
margin-bottom: 5.333vw;
}
.hub-item .featured-img img {
height: auto;
}
.hub-item span {
font-size: 5.333vw;
padding-bottom: 3.2vw;
}
.cta {
flex-wrap: wrap;
}
.cta .cta-img img {
border-top-right-radius: 13.333vw;
height: 100%;
}
.cta .cta-img {
max-width: 90%;
margin: 0 auto;
}
.cta::before {
content: unset;
}
.cta .cta-content {
padding: 13.333vw;
border-bottom-right-radius: 13.333vw;
width: 90%;
margin: 0 auto;
}
.mission-vision .cta-content {
padding: 13.333vw 5.333vw 13.867vw 5.333vw;
}
.mission-vision .cta-content h4 {
margin-bottom: 5.333vw;
}
.cta .cta-content .bottom-blk h5 {
margin-bottom: 5.333vw;
}
.cta .cta-content h2 {
margin-bottom: 13.333vw;
}
.cta .cta-content .up-blk h2 {
margin-bottom: 5.333vw;
}
.cta .cta-content p {
margin-bottom: 13.333vw;
max-width: 160vw;
} .footer {
padding: 16vw 10%;
margin-top: 14.667vw;
}
.footer-up-content {
grid-template-columns: repeat(auto-fit, minmax(53.333vw, 1fr));
gap: 5.333vw;
}
.footer-copyright {
display: block;
}
.ft-social-list {
gap: 5.333vw;
margin-top: 2.667vw;
margin-bottom: 5.333vw;
}
.footer-col p {
margin-bottom: 8vw;
font-size: 5.333vw;
}
.footer-col a {
margin: 4vw 0;
font-size: 4.267vw;
}
.footer-logo {
width: 32vw;
margin-bottom: 2.667vw;
}
.footer-col .contact-info a {
margin: 1.333vw 0 8vw;
} .common-page {
margin: 53.333vw 5.333vw 0 5.333vw;
} .about-us {
flex-wrap: wrap;
}
.about-us h2 {
text-align: center;
}
.about-us p {
max-width: 100%;
margin-left: 0;
margin-top: 5.333vw;
font-size: 4.267vw;
} .partner .common-ttl {
font-size: 10.667vw;
letter-spacing: -0.133vw;
}
.partner .partner-list {
padding: 11.467vw 0;
}
.partner .partner-list li {
width: 24%;
margin-right: 5.333vw;
}
.partner .partner-list li img {
width: 26.667vw;
height: 26.667vw;
}
.our-organization p {
font-size: 4.267vw;
max-width: 90%;
margin: 2.667vw auto 16vw;
}
.our-organization img {
max-width: 328vw;
border-top-left-radius: 6.667vw;
border-bottom-right-radius: 6.667vw;
} .story-page h1 {
margin: 5.333vw 0;
}
.story-list .story-item .featured-img {
flex: 1 1 50%;
max-width: 133.333vw;
}
.story-list .story-item .featured-img img {
border-top-left-radius: 6.667vw;
width: 90%;
}
.story-list .story-item .story-content {
padding: 13.333vw 8vw;
border-bottom-right-radius: 6.667vw;
flex: 0 1 90%;
}
.story-list .story-item .story-content .divider {
margin: 13.333vw 0 5.333vw !important;
}
.slick-dots {
padding-top: 13.333vw;
}
.slick-dots li {
margin-right: 1.333vw;
}
.slick-dots li button {
width: 16vw;
height: 1.6vw;
border-radius: 32vw;
} .service-page .crew-management .left-content {
width: 100%;
}
.service-page .crew-management .left-content .img-blk {
gap: 8vw;
}
.service-page .crew-management .left-content .img-blk img {
width: 100%;
margin-bottom: 8vw;
}
.service-page .crew-management .right-content {
max-width: 100%;
}
.service-page .crew-management .right-content p {
margin: 5.333vw 0;
} .detail-page ul.breadcrumbs {
padding: 5.333vw 0;
}
.detail-page ul.breadcrumbs::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 1.6vw rgba(0, 0, 0, 0.3);
background-color: #f5f5f5;
border-radius: 1.333vw;
}
.detail-page ul.breadcrumbs::-webkit-scrollbar {
width: 0.267vw;
height: 0.533vw;
background-color: #f5f5f5;
border-radius: 1.333vw;
}
.detail-page ul.breadcrumbs li {
margin-right: 4vw;
}
.detail-page ul.breadcrumbs li a {
font-size: 3.733vw;
}
.detail-page ul.breadcrumbs li+li:before {
margin-right: 3.2vw;
padding: 0.8vw;
}
.detail-page-content {
margin-top: 5.333vw;
}
.detail-page-content img {
height: auto;
border-top-left-radius: 13.333vw;
border-bottom-right-radius: 13.333vw;
margin: 8vw 0;
}
.detail-page-content .news-content {
font-size: 5.4vw;
max-width: 213.333vw;
}
.detail-page-content .news-content p {
font-size: 5.4vw;
margin-bottom: 2.667vw;
}
.detail-page-content span {
font-size: 4.8vw;
} .contact-page {
min-height: 165vh;
}
.contact-form {
border-radius: 6.667vw !important;
padding: 8vw;
max-width: 95%;
}
.contact-form .contact-info {
display: none;
gap: 5.333vw;
grid-template-columns: repeat(auto-fit, minmax(46.933vw, 1fr));
padding: 5.333vw;
}
.contact-form .contact-info .info-blk {
gap: 5.333vw;
}
.contact-form .contact-info .info-blk img {
width: 8vw;
height: 8vw;
}
.contact-form .contact-info .info-blk .txt-blk a {
font-size: 4.8vw;
margin-bottom: 1.333vw;
}
.contact-form .contact-info .info-blk .txt-blk p {
font-size: 4.8vw;
margin: 0 0 1.333vw;
}
.nf-form-title h3 {
font-size: 6.4vw !important;
margin-bottom: 13.333vw;
}
.nf-field-element input,
.nf-field-element textarea {
height: 13.333vw !important;
border-radius: 2.667vw;
padding: 2.667vw;
}
.nf-field-element input[type="submit"] {
border-radius: 13.333vw !important;
}
.nf-field-element textarea {
height: 40vw !important;
}
.nf-form-cont .first {
width: 100% !important;
}
.nf-form-cont .one-half {
width: 100% !important;
margin-left: 0 !important;
}
.contact-page .divider {
display: none;
}
}