:root {
    --white:#fff;
    --title-color:#2C2E35;
    --black:#000;
    --nav-color:#273434;
    --bg:#28292A;
    --grey:#E0E0E0;
    --dark-grey:#C4C5C7;
    --text2:#292B2F;
    --orange:#fdb467;
    --transition:300ms ease-in-out;
    --bodyfont:"Inter", serif;
    --regular:400;
    --medium:500;
    --semibold:600;
    --bold:700;
    --light:300;
}
html,body {
    color: var(--black);
    font-family: var(--bodyfont);
    font-size: 16px;
    font-weight: var(--regular);
    line-height: 1.5;
    background-color: var(--white);
}
a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
}
.container {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
p:last-child {
    margin-bottom: 0;
}
p {
    margin-block-end: 1.5rem;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
h1 {
    font-size: 60px;
    line-height: 1.2134;
    font-weight: var(--bold);
    color: var(--title-color);
}
h2 {
    font-size: 42px;
    line-height: 1.211;
    font-weight: var(--medium);
    color: var(--black);
}
h3 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--title-color);
    font-weight: var(--bold);
}
h4 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: var(--bold);
}
/* header */
.top-footer,
header.main-header {
    padding: 22px 40px;
    border-bottom: 4px solid;
    border-image-slice: 4;
    border-image-source: linear-gradient(90.1deg, #FFE088 206.54%, #FCB164 222.75%, #FC9F58 229%, #FECF7A 242.93%, #FFE087 247.97%, #FC9F58 268.14%, #FDB768 275.59%, #FFE087 288.2%, #FCA159 306.81%, #FC9F58 307.41%);
}
header.main-header {
    position: fixed;
    left: 0;
    right: 0;
    transition: all 0.3s;
    z-index: 9999;
    background-color: #fff;
}
footer .container,
header.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-wrapper img {
    width: 100%;
    max-width: 230px;
}
.menu-wrapper {
    position: relative;
    padding-right: 80px;
}
.language-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

span.lang-text {
    color: var(--black);
    background-color: var(--grey);
    padding: 3px 7px;
    border: 1.5px solid;
    font-size: 12px;
    border-bottom: 1.5px solid;
    border-image-slice: 1.5;
    border-image-source: linear-gradient(90.1deg, #FFE088 206.54%, #FCB164 222.75%, #FC9F58 229%, #FECF7A 242.93%, #FFE087 247.97%, #FC9F58 268.14%, #FDB768 275.59%, #FFE087 288.2%, #FCA159 306.81%, #FC9F58 307.41%);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
}
span.lang-text:after {
    content: '';
    width: 0.6em;
    height: 0.6em;
    display: block;
    border: 0.1em solid currentColor;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    margin: -0.4em 0 0 0.6em;
}
ul.language-dropdown {
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    font-size: 12px;
    border: 1.5px solid;
    border-image-slice: 1.5;
    background-color: #fff;
    border-image-source: linear-gradient(90.1deg, #FFE088 206.54%, #FCB164 222.75%, #FC9F58 229%, #FECF7A 242.93%, #FFE087 247.97%, #FC9F58 268.14%, #FDB768 275.59%, #FFE087 288.2%, #FCA159 306.81%, #FC9F58 307.41%);
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
ul.language-dropdown.active{
    opacity: 1;
    visibility: visible;
    
}
ul.language-dropdown>li>a {
    display: block;
    padding: 5px 8px;
    transition: all 0.3s;
}
ul.language-dropdown>li>a:hover{
    background-color: var(--grey);
}

header.main-header.sticky {}
footer ul,
nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 55px;
}
nav ul li a {
    display: block;
    color: var(--nav-color);
    font-size: 14px;
    font-weight: var(--medium);
    transition: var(--transition);
}
footer ul li a:hover,
nav ul li a:focus,
nav ul li a:hover {
    color: var(--orange);
}

/* footer  */
.bottom-footer {
    background-color: var(--bg);
    padding: 25px 40px;
}
.bottom-footer p,
.bottom-footer a {
    color: var(--dark-grey);
    margin: 0;
}
.top-footer {
    border-bottom: none;
    border-top: 4px solid;
}

/* hero section */
.hero-section {
    padding: 180px 40px 0;
}
.hero-title-column h1 {
    max-width: 850px;
    margin-bottom: 80px;
}
.hero-title-column p {
    font-size: 36px;
    line-height: 1.283;
    font-weight: var(--light);
    max-width: 400px;
}
.hero-title-column p b {
    font-weight: var(--medium);
}
.hero-image-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 0px;
    height: 100%;
}
.hero-image-section ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    max-width: 120px;
}
.hero-image-section ul li img {
    width: 1em;
    height: 1em;
    font-size: 50px;
}
.hero-image-section ul li {
    text-align: right;
    max-width: 120px;
}
.hero-image-section ul li:first-child {
    transform: translateX(110px);
}
.hero-image-section ul li:nth-child(2) {
    transform: translateX(30px);
}
.hero-image-section ul li:nth-child(3) {
    transform: translateX(-30px);
}
.hero-image-section ul li:nth-child(4) {
    transform: translateX(-105px);
}
.hero-image-section ul li p {
    font-size: 18px;
    margin: 5px 0 0;
}
/* third eye section */
.third-eye-section {
    padding: 150px 40px;
}
.eye-img-column img {
    width: 100%;
    max-width: 600px;
}
.eye-img-column {
    padding-right: 100px;
}
.third-eye-content {
    text-align: right;
}
.sub-heading {
    font-size: 25px;
    font-weight: var(--medium);
    color: var(--black);
    line-height: 1.23;
}
.third-title {
    margin-bottom: 60px;
}
.section-title h2 {
    margin-bottom: 5px;
}
.third-content {
    font-size: 14px;
    font-weight: var(--medium);
}
.third-eye-section .row {
    align-items: center;
}

/* safety section */
.safety-section {
    padding: 100px 40px 260px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--grey);
}
.safety-section .section-title {
    text-align: center;
    margin-bottom: 90px;
}
.safety-image {
    background-color: var(--bg);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.safety-image img {
    width: 90px;
    height: auto;
}
.safety-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}
.safety-column p {
    font-size: 14px;
    font-weight: var(--medium);
}
.safety-column h3,
.safety-column p {
    max-width: 300px;
}
/* service section */
.services-section {
    padding: 150px 40px;
}
.services-section .section-title {
    text-align: center;
}
.services-section .row {
    align-items: center;
}
.service-list li {
    font-size: 15px;
    font-weight: var(--medium);
    position: relative;
}
.service-list li:not(:last-child) {
    margin-bottom: 40px;
}
.service-list {
    padding-left: 90px;
    border-left: 3px solid;
    border-image-slice: 3;
    border-image-source: linear-gradient(90.1deg, #FFE088 206.54%, #FCB164 222.75%, #FC9F58 229%, #FECF7A 242.93%, #FFE087 247.97%, #FC9F58 268.14%, #FDB768 275.59%, #FFE087 288.2%, #FCA159 306.81%, #FC9F58 307.41%);
}
.service-list li::before {
    content: "";
    position: absolute;
    left: -110px;
    top: 50%;
    transform: translateY(-50%);
    width: 37px;
    height: 37px;
    background-image: url(../img/circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.service-left-image {
    text-align: center;
    max-width: 400px;
}
.service-left-image img {
    margin-bottom: 33px;
    max-width: 183px;
    margin-inline: auto;
    display: block;
}
.services-section .row:not(:last-child) {
    margin-bottom: 110px;
}
.services-section .row:first-child {
    margin-bottom: 80px;
}
/* faq   */
.faq-section {
    padding: 150px 40px;
    background-color: var(--bg);
    color: var(--white);
}
.faq-section .section-title {
    text-align: center;
    margin-bottom: 100px;
}
.faq-section .section-title h2,
.faq-section .section-title span {
    color: var(--white);
}
.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid;
    border-image-slice: 1.5;
    border-image-source: linear-gradient(90.1deg, #FFE088 206.54%, #FCB164 222.75%, #FC9F58 229%, #FECF7A 242.93%, #FFE087 247.97%, #FC9F58 268.14%, #FDB768 275.59%, #FFE087 288.2%, #FCA159 306.81%, #FC9F58 307.41%);
}
.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--white);
    font-size: 30px;
    font-weight: var(--medium);
    padding: 46px 0;
    position: relative;
    padding-right: 50px;
}
.accordion-button::after {
    content: none;
}
.accordion-button::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(-1);
    right: 0;
    width: 1.1em;
    height: 1.1em;
    background-image: url('../img/arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: var(--transition);
}
.accordion-button.collapsed::before {
    transform: translateY(-50%) scale(1);
}
.accordion-body {
    color: var(--white);
    font-size: 16px;
    font-weight: var(--medium);
    padding: 0 0 46px;
    margin: -20px 0 0;
}
.accordion-body p:last-child{
    margin-bottom: 0;
}
/* form-section */
.form-section {
    padding: 100px 40px;
    overflow: hidden;
}
.form-left .section-titlte {
    margin-bottom: 50px;
}
.form-left form input,
.form-left form textarea {
    width: 100%;
    color: var(--black);
    background-color:var(--grey);
    padding: 15px 25px;
    border: 1.5px solid;
    margin-bottom: 30px;
    border-image-slice: 1.5;
    border-image-source: linear-gradient(90deg, #FFE088 -0.09%, #FCB164 16.01%, #FC9F58 22.21%, #FECF7A 36.05%, #FFE087 41.05%, #FC9F58 61.09%, #FDB768 68.49%, #FFE087 81.01%, #FCA159 99.5%, #FC9F58 100.09%);
}
.form-left form textarea {
    height: 231px;
}
.form-left form input::placeholder,
.form-left form textarea::placeholder {
    color:var(--title-color) ;
    opacity: 1;
}
.form-section .row .col-lg-6:first-child {
    padding-right: 100px;
}
.form-section .row .col-lg-6:last-child {
    padding-left: 100px;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
}
.form-section .row .col-lg-6:last-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: -100px;
    bottom: -100px;
    width: 50vw;
    background-color: var(--grey);
    z-index: -1;
}
.submit-response {
    margin: 1em 0 0;
}
.form-info li {
    display: flex;
    align-items: center;
    gap: 40px;
}
.form-info li img {
    max-width: 40px;
}
.form-info li:not(:last-child) {
    margin-bottom: 40px;
}
.list-info p,
.list-info p a {
    font-size: 15px;
    font-weight: var(--medium);
    color: var(--title-color);
}
.list-info p:last-child{
 margin-bottom: 0;
}
.form-left form button {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
}
.button-wrapper {
    max-width: 200px;
}
.form-left form button span {
    display:block;
    padding: 16px;
    background-color: var(--title-color);
    font-size: 16px;
    color: var(--white);
    font-weight: var(--medium);
    line-height: 1;
    transition: var(--transition);
}
.form-left form button span:hover {
    background-color: var(--orange);
}
.button-wrapper,
.form-left form button span,
.form-left form button {
    position: relative;
}
.form-left form button span::after,
.form-left form button span::before,
.form-left form button::before,
.form-left form button::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #ffff;
    transform: rotate(45deg);
    z-index: 2;
}
.form-left form button span::after {
    top: auto;
    bottom: -10px;
}
.form-left form button::before,
.form-left form button::after {
    left: auto;
    right: -10px;
}
.form-left form button::before {
    top: auto;
    bottom: -10px;
}
.button-wrapper::before,
.button-wrapper::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -3px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/top-left-img.svg');
    width: 15px;
    height: 15px;
    z-index: 5;
}
.button-wrapper::before {
    left: auto;
    right: -3px;
    top: auto;
    bottom: -1px;
    background-image: url('../img/bottom-right-img.svg');
}
/* INNER content */
section.breadcrumb {
    padding: 180px 0 100px;
}   

section.page-content {
    padding: 0 0 150px;
}
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin: 0 0 15px;
}
.page-content ul ,
.page-content ol{
    padding: 0 0 0 1em;
    margin: 0 0 2em;
}
.page-content ul{
    list-style-type: disc;
}
@media (min-width: 992px){
    header.main-header.sticky {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    a.logo-wrapper img {
        transition: all 0.3s;
    }
    header.main-header.sticky a.logo-wrapper img{
        max-width: 180px;
    }
}
@media (max-width: 1440px){

    h1 {
        font-size: 51px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    .hero-title-column p {
        font-size: 31px;
        max-width: 350px;
    }
    .hero-image-section ul {
        max-width: 85px;
    }
    .hero-image-section ul li {
        text-align: right;
        max-width: 110px;
    }
    .hero-image-section ul li p {
        font-size: 15px;
    }
    .safety-image {
        width: 280px;
        height: 280px;
    }
    .accordion-button, .accordion-button:not(.collapsed) {
        font-size: 26px;
    }
}
@media (max-width: 1024px){
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
        padding-left: 25px;
        padding-right: 25px;
    }
    .top-footer, header.main-header,
    .hero-section,
    .third-eye-section,
    .safety-section,
    .services-section,
    .faq-section,
    .form-section{
        padding-left: 0;
        padding-right: 0;
    }
    .third-eye-section{
        padding-top: 0px!important;
    }
    .form-section{
        padding-bottom: 0!important;
    }
    .hero-section, .third-eye-section, .safety-section, .services-section, .faq-section, .form-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .hero-section {
        padding-top: 160px;
    }
    header.main-header {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .logo-wrapper img {
        max-width: 200px;
    }
    /* hero section */
    
    .hero-image-section ul,
    .hero-image-section ul li {
        max-width: 110px;
    }
    
    .hero-image-section ul li p {
        font-size: 15px;
    }
    
    .hero-image-section ul li img {
        width: 1em;
        height: 1em;
        font-size: 55px;
    }

    .eye-img-column {
        padding: 0;
        text-align: center;
        margin: 0 0 50px;
    }

    .safety-list>.col-lg-3 {
        width: 50%;
        margin: 0 0 50px 0;
    }
    
    .safety-list {
        margin-bottom: -50px;
    }
    .service-main {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .service-main>.col-lg-4 {
        width: 35%;
    }
    
    .service-main>.col-lg-8 {
        width: 65%;
        padding-left: 40px;
    }
    
    .service-list {
        padding-left: 40px;
    }
    
    .service-list li::before {
        left: -60px;
    }
    
    .services-section .row:not(:last-child) {
        margin-bottom: 80px;
    }
    .faq-section .section-title {
        margin-bottom: 60px;
    }
    .form-section .row .col-lg-6:first-child {
        padding-right: calc(var(--bs-gutter-x)* .5);
    }
    
    .form-section .row .col-lg-6:last-child {
        padding-left:0;
        padding-right: 0;
        margin: 60px 0 0;
        position: relative;
        margin-left: -13px;
        margin-right: -13px;
        width: 100vw;
        max-width: inherit;
    }
    
    .form-section .row .col-lg-6:last-child::before {
        left: 0;
        top: 0;
        width: 100%;
        bottom: 0;
    }
    
    
    .form-right {
        padding: 50px 25px;
    }
    footer ul, nav ul {
        gap: 30px;
    }

    .bottom-footer {
        padding: 25px 0;
        font-size: 80%;
    }
}
@media (max-width: 991px){
    .menu-wrapper nav.main-nav {
        position: fixed;
        width: 100%;
        max-width: 400px;
        right: 0;
        top: 0;
        height: 100vh;
        z-index: 99999;
        background-color: #ffe088;
        transform: translateX(100%);
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
        max-height: 100vh;
        overflow: hidden;
        overflow-y: auto;
    }
    
    .menu-wrapper nav.main-nav.active {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
    }
    .menu-wrapper nav.main-nav>ul {
        padding: 60px 25px;
        flex-direction: column;
        gap: 25px;
    }
    
    .menu-wrapper nav.main-nav>ul li a {
        font-size: 20px;
    }
    
    .menu-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-direction: row-reverse;
    }
    .bar,
    .close-icon{
        width: 1em;
        height: 0.7em;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }
    
    .bar .line,
    .close-icon:before,
    .close-icon:after{
        content: '';
        width: 100%;
        height: 0.1em;
        background-color: currentColor;
        position: absolute;
    }
    
    .bar .line:first-child{
        top: 0;
    }
    .bar .line:last-child{
        bottom: 0;
    }
    .close-icon{
        position: absolute;
        right: 25px;
        top: 28px;
        
    }
    .close-icon:before {
        transform: rotate(45deg);
    }
    
    .close-icon:after {
        transform: rotate(-45deg);
    }
    .hero-section>.container>.row {
        flex-direction: column-reverse;
    }
    
    .hero-image-section {
        margin: 0 0 50px auto;
        width: calc(100% - 120px);
        max-width: 660px;
    }
}
@media (max-width: 767px){
    .menu-wrapper {
        padding-right: 65px;
    }
    h1 {
        font-size: 34px;
        line-height: 1.1;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    
    .logo-wrapper img {
        max-width: 170px;
    }
    .hero-section, .third-eye-section, .safety-section, .services-section, .faq-section, .form-section,
    section.breadcrumb, section.page-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    section.page-content {
        padding-top: 0;
    }
    .hero-section,
    section.breadcrumb {
        padding-top: 130px;
    }
    .hero-image-section {
        margin: 0 25px 40px auto;
        width: 90%;
        max-width: 360px;
        transform: translateX(35px);

    }
    
    .hero-image-section ul li p {
        font-size: 11px;
        margin: 5px 0 0;
    }
    
    .hero-image-section ul li img {
        font-size: 28px;
    }
    
    .hero-image-section ul, .hero-image-section ul li {
        max-width: 64px;
        gap: 10px;
    }
    
    .hero-image-section ul li:first-child {
        transform: scale(0.9) translateX(65%);
    }
    
    .hero-image-section ul li:nth-child(2) {
        transform: scale(0.9) translateX(-4%);
    }
    
    .hero-image-section ul li:nth-child(3) {
        transform: scale(0.9) translateX(-62%);
    }
    
    .hero-image-section ul li:nth-child(4) {
        transform: scale(0.9) translateX(-120%);
    }
    .hero-title-column h1 {
        margin-bottom: 30px;
    }
    .hero-title-column p {
        font-size: 22px;
        margin: 0;
    }
    
    .third-eye-section {
        padding-top: 50px !important;
    }
    .eye-img-column {
        margin: 0 0 30px;
    }
    .eye-img-column img {
        width: 80%;
    }
    
    .sub-heading {
        font-size: 18px;
        font-weight: var(--medium);
        color: var(--black);
        line-height: 1.23;
    }
    .third-title {
        margin: 0 0 20px;
    }
    .safety-section .section-title {
        margin-bottom: 40px;
    }
    .safety-list>.col-lg-3 {
        width: 100%;
    }
    .safety-image {
        width: 140px;
        height: 140px;
    }
    .safety-image img {
        width: 70px;
    }
    .safety-column {
        gap: 20px;
    }
    .services-section .row:not(:last-child) {
        margin-bottom: 80px;
    }
    .services-section .row:first-child {
        margin-bottom: 40px;
    }
    .safety-column {
        gap: 20px;
    }
    
    .service-main {
        flex-wrap: wrap;
    }
    
    .col-lg-4 {
        width: 100%;
    }
    
    .service-main>.col-lg-8 {
        width: 100%;
        padding-left: 20px;
    }
    
    .service-main>.col-lg-4 {
        width: 100%;
        margin: 0 0 30px;
    }
    
    .service-left-image img {
        margin: 0 auto 20px;
        max-width: 120px;
    }
    
    .service-list li:not(:last-child) {
        margin-bottom: 30px;
    }

    .faq-section .section-title {
        margin-bottom: 20px;
    }
    .accordion-button, .accordion-button:not(.collapsed) {
        padding: 20px 0;
        font-size: 20px;
        padding-right: 25px;
    }
    
    .accordion-body {
        margin: 0;
        padding: 0 0 20px;
    }
    .form-left .section-titlte {
        margin-bottom: 40px;
    }
    .form-left form input, .form-left form textarea {
        padding: 10px 15px;
        margin-bottom: 20px;
    }
    .form-info li:not(:last-child) {
        margin-bottom: 30px;
    }
    .form-info li {
        gap: 20px;
    }
    
    .form-info li img {
        max-width: 30px;
    }
    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
    footer ul {
        gap: 15px;
        margin: 10px 0 0;
    }
    footer .menu-wrapper ul{
        gap: 5px;
        flex-direction: column;
        margin: 20px 0 0;
    }
}