
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #559bcc; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.5);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #559bcc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f3f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #142e6c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1c4097;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
    word-break: keep-all;
}

html {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    font-family: 'Pretendard', sans-serif;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.center {
     display: flex;
    justify-content: center;
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: none;
  padding: 40px 0;
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  width: 100%;
}

.header .logo {
  line-height: 1;
}

.header .award-logo {
    position: absolute;
    right: 0;
    width: 200px;
}

.header .award-logo img {
    width: 100%;
}

@media (max-width: 768px) {
    .header {
        padding: 15px;
    }

    .header .award-logo {
        width: 120px;
    }

    .header img  {
        width: 80%;
    }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(20, 46, 108, 0.9);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    height: 500px;
    color: var(--default-color);
    background: #142e6c url(../img/footer_bg.png) center;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

    .footer h3 {
        font-size: 50px;
        font-weight: 700;
        position: relative;
        padding: 100px 0;
        margin: 0 0 90px 0;
    }

    .footer p {
        font-size: 15;
        font-style: italic;
        padding: 0;
        margin: 0 0 30px 0;
    }


    .footer .copyright {
        padding-top: 25px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .footer .copyright span {
            font-size: 13px !important;
            line-height: 1.6;
            text-align: left;
            margin-left: 40px;
        }

@media (max-width: 768px) {
    .footer {
        height: auto;
    }

    .footer h3 {
        font-size: 2em;
        padding: 70px 50px 100px;
        margin: 0
    }

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

        .footer .copyright span {
            margin: 30px;
            text-align: center
        }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #E43911;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #FF7D5F;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
    section, .section { 
        scroll-margin-top: 66px;
    }
    .section-title p {
        font-size: 23px !important;
        line-height: 35px !important;
    }
    .content img {
        text-align: center;
        width: 50%;
    }
    
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 17px !important;
        margin-top: 0px !important;
        margin-bottom: 9px !important;
    }
    .section-title {
        align-items: center;
        text-align: center;
        padding-bottom: 0px !important;
    }    
    .section-title p {
        font-size: 1.4em !important;
        line-height: 33px !important;
    }
    .content img {
        width: 50%;
    }
}


/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    margin-top: 60px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #E43911;
}

.section-title p {
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 45px;

}

/*--------------------------------------------------------------
# title Section
--------------------------------------------------------------*/
.title {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: url(../img/eta-bg.png) repeat;
    background-attachment: fixed;
    background-size: cover;
    animation: visualBg 3s infinite ease-in-out;
}


/*--------------------------------------------------------------
# visual-animation
--------------------------------------------------------------*/
@keyframes visualBg {
    0% {
        background-position-y: -10px;
    }

    50% {
        background-position-y: -0px;
    }

    100% {
        background-position-y: -10px;
    }
}



.title .container {
    z-index: 3;
}

.title .container h1 {
    font-size: 120px;
    font-weight: 800;
    background-image: linear-gradient(160deg, #FFC3D9 35%, #FFFFFF 50%, #58FFF1 75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title h2 {
    margin: 0;
    font-size: 55px;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: -1.8px;
}

.title p {
margin: 15px;
    font-size: 24px;
    font-weight: 200;
    letter-spacing: -0.8px;
    line-height: 35px;
}


@media screen and (max-width: 992px) {
    .title {
        min-height: 60vh !important;
    }
    .title .container h1 {
        font-size:  100px !important;
    }
    .title h2 {
        font-size: 38px;
        line-height: 36px;
    }
}

@media (max-width: 768px) {
    .title {
        min-height: 80vh !important;
    }
    .title .container h1 {
        font-size:  2.5em !important;
    }
    .title h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .title p {
        font-size: 1em;
        line-height: 24px;
        margin-bottom: 30px;
    }

        .title p br {
            display: none;
        }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: #FFE4DE;
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.about .icon-box h3 span {
    color: #E43911;
    font-weight: 900;
}

.about .icon-box p {
  margin-bottom: 0;
}


.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -70px;
}


.container .row .content button {
    color: var(--contrast-color);
    background: #0F1936;
    border: 0;
    padding: 12px 35px;
    transition: 0.4s;
    border-radius: 50px;
    margin-top: 30px;
    font-size: 22px;
}

    .container .row .content button:hover {
        background: #4976b4;
    }

@media (max-width: 1199px) {
    .container .row .content {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
        justify-content: center;
        text-align: center;
    }

        .container .row .content img {
            width: 50%;
            margin: 0 auto;
        }

        .container .row .content button {
            width: 40%;
            margin: 0 auto;
            margin-top: 26px;
        }
}

@media (max-width: 768px) {
    .about .icon-box {
        text-align: center;
    }

    .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
    .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
        margin-top: 0;
    }

    .about .section-title p br {
        display: none;
    }

    .container .row .content button {
        width: 50%;
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/
.Service .Service-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.Service .Service-item+.Service-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .Service .Service-item+.Service-item {
    margin-top: 40px;
  }
}

.Service .Service-item h3 {
  font-weight: 700;
  font-size: 35px;
    margin-bottom: 25px;
}

.Service .Service-item p {
    width: 500px;
    font-size: 20px;
}

.Service .Service-item ul {
  list-style: none;
  padding: 0;
}

.Service .Service-item ul li {
    width: 574px;
    padding-bottom: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.Service .Service-item ul li:last-child {
  padding-bottom: 0;
}

.Service .Service-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.Service .Service-item p:last-child {
  margin-bottom: 0;
}


@media (max-width: 768px) {
    .Service .Service-item h3 {
        font-size: 1.2em;
        text-align: center;
        margin-bottom: 20px;
    }
    .Service .Service-item ul li {
        width: 100%;
        padding-bottom: 3px;
        font-size: 1em;
        align-items: flex-start;
    }

    .Service .Service-item ul {
        padding: 0 15px;
    }

        .Service .Service-item ul i {
            margin-top: -5px;
        }
}
    
/*--------------------------------------------------------------
# cards Section
--------------------------------------------------------------*/
.cards {
    margin: 30px 0 60px 0;
}

.card-title {
    display: flex;
    justify-content: center;
    align-items: flex-end
}

.cards .cards-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

    .cards .cards-item h3 {
        padding-top: 25px;
        font-size: 23px;
        font-weight: 800;
        color: #0F1936;
    }

    .cards .cards-item .mark {
        width: 100px;
        height: 30px;
        margin-top: 20px;
        border: 1px solid #E43911;
        border-radius: 10px;
        background: #fff;
        color: #E43911;
        font-size: 12px;
        text-align: center;
        line-height: 23px;
    }

    .cards .cards-item p {
        margin: 0 auto 15px auto;
        font-size: 16px;
        text-align: left;
    }

.cards .swiper-wrapper {
    height: auto;
}

.cards .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .cards .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .cards .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #E43911;
    }

.cards .swiper-slide {
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .cards .swiper-slide-active {
        opacity: 1;
    }

    .cards .swiper-pagination {
        margin-top: 0;
    }

    .cards .testimonial-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .cards .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}


@media (min-width: 992px) {
    .cards-item {
        width: 60%;
    }

    .cards .swiper-slide {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .card-title {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

        .card-title p {
            margin-top: 12px !important;
        }

    .card-title img {
        width: 70%;
    }
}

/*--------------------------------------------------------------
# award Section
--------------------------------------------------------------*/


.award .section-title {
  margin-bottom: 40px;
}

.award .award-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.award h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.award .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.award .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.award .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.award .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
    
    .award img {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .award img {
        width: 90%;
    }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=number],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=number]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=number]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: #E43911;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff7d5f;
}

.contact h3 {
    font-size: 18px;
    font-weight: 800;
}


/*--------------------------------------------------------------
# recommend Section
--------------------------------------------------------------*/
.recommend {
    background: #F1F3F8;
}

    .recommend .container.center.txt-wrap {
        width: 1170px;
        display: flex;
        flex-direction: column;
    }

        .recommend .container.center.txt-wrap .name {
            margin-top: 35px;
        }

        .recommend .container.center.txt-wrap h2 {
            font-weight: 700;
            font-size: 20px;
        }

        .recommend .container.center.txt-wrap ul {
            list-style: none;
            padding: 0;
            color: #818181;
            line-height: 1.7;
        }

        .recommend .container.center.txt-wrap .txt {
            display: flex;
            background: #FFF;
            box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }

        .recommend .container.center.txt-wrap .txt img{
            width: 30%;
        }

        .recommend .container.center.txt-wrap .txt-in {
            padding-left: 20px;
        }

            .recommend .container.center.txt-wrap .txt p {
                font-size: 20px;
                margin-bottom: 0px;
            }


@media (max-width: 1199px) {
    .recommend .container.center.txt-wrap .txt {
        margin-top: 60px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
    }
        .recommend .container.center.txt-wrap .txt img {
            width: 50%;
        }

        .recommend .container.center.txt-wrap .txt p {
            padding-top: 20px;
            font-size: 16px;
        }

    .recommend .container.center.txt-wrap h2 {
        font-size: 16px;
    }

    .recommend .container.center.txt-wrap ul {
        font-size: 12px;
    }
}





/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}





