/* root css */
:root {
    --white : #FFF;
    --black : #000;
    --dark: #333;
    --lightseagreen: #40A5A2;
    --yellow:#FDF1AF;
    --lightgreen : #DFFDAF;
    --purple: #C8D1F6;
    --lightblue:#C8E4F6;
    --light:#F6F6F6;
}

/* root css */

/* font css */

.main-title {
    color: var(--black);
    font-family: 'Manrope';
    font-size: 68px;
    font-weight: 500;
    line-height: 120%;
}

.main-title * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.section-title {
    color: var(--black);
    font-family: 'Manrope';
    font-size: 42px;
    font-weight: 500;
    line-height: 91.429%;
}

.section-title * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.block-title {
    color: var(--black);
    font-family: 'Manrope';
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}

.block-title * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.small-title {
    font-family: 'Manrope';
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    color: var(--black);
}

.small-title * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.block-detail {
    color: var(--dark);
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: normal;
    line-height: 170% ;
}

.block-detail * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.small-detail {
    color: var(--dark);
    font-family: 'Manrope';
    font-size: 14px;
    font-weight: normal;
    line-height: 150%;
}

.small-detail * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}
/* font css */

/* button css */

.btn {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    padding: 12px 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: var(--white);
    background: var(--lightseagreen);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.green-btn {
    background: var(--lightseagreen);
    color: var(--white);
    border: 1px solid transparent;
}

.green-btn:hover,
.green-btn:focus-visible{
    color: var(--lightseagreen);
    background: var(--white);
    border: 1px solid var(--lightseagreen);
}
/* button css */

/* common style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container,
.container-fluid {
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    padding: 0;
}

figure {
    margin: 0 !important;
}

body {
    font-family: 'Manrope';
    font-size: 18px;
    font-weight: normal;
    color: var(--black);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

.form-control:focus {
	box-shadow: none;
	border-color: transparent;
}

textarea {
	resize: none;
}

.container-fluid,
.container {
    padding-left: 20px;
    padding-right: 20px;
}

.row {
    margin-left: -20px;
    margin-right: -20px;
}

.row > * {
    padding-left: 20px;
    padding-right: 20px;
}
/* common style */

/* header css */

.navbar {
    padding: 20px 0;
}

.navbar-brand {
    width: 100%;
    max-width: 130px;
    padding: 0;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar-nav .nav-item {
    padding: 0 27px;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.20);
}

.navbar-nav .nav-item:first-child {
    padding-left: 0px;
}

.navbar-nav .nav-item:last-child {
    padding-right: 0px;
    border-right: none;
}

.navbar-nav .nav-link {
    padding: 0;
    margin: 0;
    color: var(--black);
    line-height: 120%;
}

.navbar-nav .nav-link:hover {
    color: var(--lightseagreen);
}

/* header css */

/* banner css  */

.banner-section {
    padding: 32px 0 46px 0;
}

.banner-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-top-content .main-title {
    width: 100%;
    max-width: 835px;
    padding-right: 20px;
}

.banner-top-content .banner-top-right {
    max-width: 392px;
    padding-left: 20px;
}

.banner-top-right .banner-button {
    margin-top: 40px;
}

.banner-bottom {
    position: relative;
    margin-top: 40px;
}

.banner-bottom .banner-image {
    width: 100%;
    max-width: 1400px;
    height: 720px;
}

.banner-bottom .banner-image *{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.banner-bottom .banner-block-content {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 35px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.banner-block-content .banner-block {
    width: 100%;
    max-width: 426px;
    margin-top: 20px;
    margin-right: 26px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.banner-block-content .banner-block:last-child {
    margin-right: 0px;
}

.banner-block .block-title {
    margin-bottom: 10px;
}

.banner-block .small-detail {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.banner-block .block-arrow {
    min-width: 18px;
    width: 18px;
    height: 19px;
    margin-left: 20px;
}

.banner-block .block-arrow a * {
    display: flex;
    align-items: center;
}

.banner-block .block-arrow a:focus-visible {
    outline: none;
}

.banner-block .block-arrow a:hover {
    filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2831%) hue-rotate(129deg) brightness(87%) contrast(92%);
    -webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(2831%) hue-rotate(129deg) brightness(87%) contrast(92%);
}
/* banner css  */

/* about-product css  */

.about-product {
    padding: 46px 0 66px 0  ;
}

.about-product-left {
    width: 100%;
    max-width: 640px;
    margin-left: 32px;
}

.about-product-left .section-title {
    margin-bottom: 12px;
}

.about-product-left .detail * {
    color: var(--dark);
    line-height: 151%;
}

.about-product-list {
    margin-top: 24px;
}

.about-product-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-product-list ul li * {
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.about-product-list ul li {
    display: flex;
    align-items: center;
    padding: 25px 0 26px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.about-product-list ul li:first-child {
    padding-top: 0;
}

.about-product-list ul li span {
    margin: 0 40px 0 0;
}

.about-product-right {
    display: flex;
    align-items: stretch;
    height: 100%;
    width: 100%;
    max-width: 655px;
    margin: 0 0 0 auto;
}

.about-product-right .product-image {
    padding: 24px 60px;
    margin-right: 20px;
    background: var(--light);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.about-product-right .product-image:last-child {
    margin-right: 0px;
}

.about-product-right .product-image * {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-product-right .product-image:first-child {
    width: 100%;
    max-width: 330px;
}

.about-product-right .product-image:last-child{
    width: 100%;
    max-width: 307px;
}
/* about-product css  */

/* operate css  */

.operate-section {
    padding: 66px 0 52px 0;
}

.operate-top-content .section-title {
    margin-bottom: 24px;
}

.operate-top-content .details {
    max-width: 878px;
    margin: 0 auto 20px;
}

.operate-top-content .details * {
    color: var(--dark);
}

.operate-bottom {
    width: 100%;
    display: flex;
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.operate-bottom .operate-image {
    max-width: 688px;
}

.operate-bottom .operate-image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.operate-bottom .operate-image figure {
    display: flex;
    height: 100%;
}

.operate-bottom .operate-block-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.operate-block {
    width: 100%;
    max-width: 50%;
    padding: 40px;
}

.operate-block.yellow {
    background: var(--yellow);
}

.operate-block.lightgreen {
    background: var(--lightgreen);
}

.operate-block.purple {
    background: var(--purple);
}

.operate-block.lightblue {
    background: var(--lightblue);
}

.operate-block .block-icon{
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
}

.operate-block .small-title {
    margin-bottom: 10px;
}

.operate-block .block-detail {
    max-width: 244px;
}
/* operate css  */

/* learn more css  */

.learn-more-section {
    padding: 52px 0 50px 0;
}

.learn-more-wrp {
    width: 100%;
    max-width: 1270px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 65px;
    margin: 0 auto;
    background: var(--light);
    position: relative;
    border-radius: 15px;
}

.learn-more-wrp::before{
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 274px;
    height: 35px;
    background-image: url(../images/learn-more-vector.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 9;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.learn-more-wrp .learn-more-image {
    width: 100%;
    max-width: 708px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.learn-more-wrp .learn-more-image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learn-more-right {
    width: 100%;
    max-width: 497px;
    padding: 86px 0;
}

.learn-more-right .section-title {
    margin-bottom: 24px;
}

.learn-more-right .details *{
    color: var(--dark);
    line-height: 151%;
}

.learn-more-right .learn-more-list {
    margin-top: 65px;
}

.learn-more-right .learn-more-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.learn-more-right .learn-more-list ul li {
    display: flex;
    align-items: center;
    margin-top: 17px;
    padding: 24px;
    background: var(--white);
    border-radius: 10px;
    font-weight: 600;
    line-height: 150%;
}

.learn-more-right .learn-more-list ul li:first-child {
    margin-top: 0px;
}

.learn-more-right .learn-more-list ul li .learn-icon {
    width: 25px;
    height: 25px;
    margin-right: 12px;
}

.learn-more-right .learn-more-list ul li .right-arrow {
    width: 24px;
    height: 24px;
}

.learn-more-right .learn-more-list ul li .learn-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.learn-more-right .learn-more-list ul li .learn-link br {
    display: none;
}

.learn-more-right .learn-more-list ul li .learn-link:hover {
    color: var(--lightseagreen);
}

.learn-more-right .learn-more-list ul li .learn-link:hover .right-arrow {
    filter: brightness(0) saturate(100%) invert(62%) sepia(4%) saturate(5559%) hue-rotate(127deg) brightness(93%) contrast(86%);
    -webkit-filter: brightness(0) saturate(100%) invert(62%) sepia(4%) saturate(5559%) hue-rotate(127deg) brightness(93%) contrast(86%);
}

.learn-more-right .learn-more-list ul li .right-arrow {
    margin-left: 24px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.learn-more-right .learn-more-list ul li figure {
    display: flex;
}
/* learn more css  */

/* footer css */

.footer {
    margin-top: 50px;
    background: #040415;
}

.f-top {
    width: 100%;
    max-width: 1208px;
    padding: 60px 0 40px 0;
    margin: 0 0 0 52px;
}

.f-logo {
    width: 100%;
    max-width: 130px;
}

.f-left {
    width: 100%;
    max-width: 340px;
}

.f-left .small-detail{
    color: #D9D9D9;
    margin-top: 40px;
}

.f-block .f-title {
    color: #D9D9D9;
    font-weight: 600;
}

.f-menu {
    margin-top: 24px;
}

.f-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.f-menu ul li {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.f-menu ul li:last-child {
    margin-right: 0px;
}

.f-menu ul .f-item span{
    display: block;
}

.f-menu ul .f-item {
    margin-left: 12px;
}

.f-menu ul .f-item * {
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    line-height: 180%;
}

.f-menu ul .f-item .f-link {
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.f-menu ul .f-item .f-link:hover {
    color: var(--lightseagreen);
}

.f-block-right ul li {
    min-width: 35px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.f-block-right .social-link:hover {
    filter: brightness(0) saturate(100%) invert(54%) sepia(35%) saturate(573%) hue-rotate(129deg) brightness(97%) contrast(99%);
    -webkit-filter: brightness(0) saturate(100%) invert(54%) sepia(35%) saturate(573%) hue-rotate(129deg) brightness(97%) contrast(99%);
}

.f-block-right .social-link:focus-visible {
    outline: none;
}

.f-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.f-bottom-block * {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%; /* 150% */
}

.f-bottom-block {
    width: 100%;
    max-width: 1296px;
    margin: 0 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f-bottom-right ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.f-bottom-right ul li {
    margin-right: 35px;
}

.f-bottom-right ul li a {
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.f-bottom-right ul li a:hover {
    color: var(--lightseagreen);
}
/* footer css */