
:root{
    --orange-color: rgba(255, 110, 1, 1);
    --Green-color: #11c27f;
    --blue-color: rgba(0, 142, 206, 1);
    --light-blue-color: rgba(58, 130, 254, 1);
    --white-color: rgba(255, 255, 255, 1);
    --yellow-color: rgba(245, 166, 1, 1);
    --light-green-color: rgba(7, 171, 177, 1);
    --dark-blue-color: #000001;
    --black-color: rgba(61, 61, 61, 1);
    --light-blackColor: #7d7f80;
    --red-color: rgba(228, 60, 92, 1);
    --light-red-color: rgba(253, 239, 242, 1);
    --darkBlack-color: #111;
    --primary-pink-color: #ec5863;
    --black-color: #000000;
    --purple-color-100: #facc6f;
    --purple-color-200: #dce2fa;
}

@font-face {
    font-family: 'Outfit-Regular';
    font-display: swap;
    src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
    url('../fonts/Outfit-Regular.woff') format('woff'),
    url('../fonts/Outfit-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Outfit-Regular.ttf') format('truetype'),
    url('../fonts/Outfit-Regular.svg#Outfit-Regular') format('svg');
}

@font-face {
    font-family: 'Outfit-SemiBold';
    font-display: swap;
    src: url('../fonts/Outfit-SemiBold.woff2') format('woff2'),
    url('../fonts/Outfit-SemiBold.woff') format('woff'),
    url('../fonts/Outfit-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Outfit-SemiBold.ttf') format('truetype'),
    url('../fonts/Outfit-SemiBold.svg#Outfit-SemiBold') format('svg');
}
@font-face {
    font-family: 'Mitr-Medium';
    font-display: swap;
    src:url('../fonts/Mitr-Medium.woff2') format('woff2'),
    url('../fonts/Mitr-Medium.woff') format('woff'),
    url('../fonts/Mitr-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Mitr-Medium.ttf') format('truetype'),
    url('../fonts/Mitr-Medium.svg#Mitr-Medium') format('svg');
}

*, *:before, *:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html, body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: "Outfit-Regular", serif;
    font-style: normal;
    font-size: 17px;
    color: #000000;
    line-height: 24px;
}

a {
    color: #14212B;
    display: inline-block;
}

a, a:active, a:focus, a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover {
    color: var(--black-color);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-pink-color);
    margin: 0;
    font-family: "Mitr-Medium", serif;
    line-height: 1.6;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

.img, img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    font-family: "Outfit-Regular", serif;
    color: #999;
    cursor: pointer;
}


*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 14px;
    opacity: 1;
}


/* ===================
preloader
====================== */

.preloader {
    font-family: "Outfit-Regular", serif;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}

.preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-pink-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-pink-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

/* ===================
theme default css
====================== */

.ovrflow-hidden {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.bg {
    background-color: #FDEEEF;
}

.bg-linear {
    background-color: transparent;
    background-image: linear-gradient(180deg, #FDEEEF 0%, #FFFFFF 100%);
}

/* ===================
preloader
====================== */

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}
.preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-pink-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-pink-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}
@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

/* ===================
theme default css
====================== */

.ovrflow-hidden {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}


/* ===================
site title css
====================== */

.site-heading {
    margin-bottom: 40px;
}

.site-title-tagline {
    position: relative;
    letter-spacing: 2px;
    color: var(--black-color);
    font-family: "Outfit-Regular", serif;
    font-size: 24px;
}

.site-title {
    text-transform: capitalize;
    font-size: 45px;
    color: var(--primary-pink-color);
    margin-top: 5px;
    margin-bottom: 0;
    min-height: 72px;
}

.site-title span{
    color: var(--black-color);
}

.site-heading p {
    font-size: 18px;
}

.heading-divider {
    display: inline-block;
    position: relative;
    height: 4px;
    background-color: var(--primary-pink-color);
    width: 90px;
    overflow: hidden;
    border-radius: 50px;
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 8px;
    background-color: #ffffff;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}


@media all and (max-width: 767px) {
    .site-title {
        font-size: 30px;
    }
}



/* ===================
margin & padding
====================== */

.pb-140 {
    padding-bottom: 140px;
}

.pd-50 {
    padding: 50px 0;
}

.py-120 {
    padding: 120px 0;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mr-300 {
    margin-right: 300px;
}

.ml-300 {
    margin-left: 300px;
}

.pos-rel {
    position: relative;
    z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: var(--primary-pink-color);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--primary-pink-color);
    padding: 8px 40px 10px 40px;
    font-family: "Outfit-Regular", serif;
    font-size: 17px;
    background: none;
    width: auto;
    margin: 15px 0 6px;
    word-spacing: 0.2px;
    letter-spacing: 1px;
    height: auto;
    text-transform: uppercase;
}

.theme-btn:hover{
    color: #fff;
    background: var(--primary-pink-color);
}

.theme-btn2 {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: var(--white-color);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--primary-pink-color);
    background-color: var(--primary-pink-color);
    padding: 8px 40px 10px 40px;
    font-family: "Outfit-Regular", serif;
    font-size: 17px;
    width: auto;
    word-spacing: 0.2px;
    letter-spacing: 1px;
    height: auto;
    text-transform: uppercase;
}

.theme-btn2:hover{
    color: var(--primary-pink-color);
    background: var(--white-color);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--primary-pink-color);
}


.theme-btn i{
    margin-left: 6px;
}

/* ===================
container
====================== */

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1185px;
    }
}

@media (min-width: 1600px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1480px;
    }
}

@media (min-width: 1920px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1650px;
    }
}


/* ===================
scroll-top css
====================== */

#scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 22px;
    border: none;
    outline: none;
    background: var(--primary-pink-color);
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
    transition: all .5s ease-in-out;
}

/* ===================
header top css
====================== */

.header-top {
    padding: 10px 0;
    position: relative;
    background: var(--primary-pink-color);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    z-index: 2;
}

.header-top-wrapper {
    width:100%;
}

.header-top-contact {
    position: relative;
    width: 100%;
    height: 40px;
    contain: layout size;
}

.header-top-contact ul {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-top-contact ul li {
    position: relative;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 0;
}

.header-top-contact ul li span,
.header-top-contact ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    line-height: 1;
    color: #ffffff;
}

.header-top-contact ul li span[class^="icon-"] {
    margin-right: 8px;
    font-size: 16px;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-social a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-left: 5px;
    border-radius: 50px;
    transition: all .5s ease-in-out;
}

.header-top-social a:hover {
    background: #fff;
    color: var(--black-color);
}

.header-top-account a {
    color: #fff;
    margin-right: 20px;
}

.header-top-account a i {
    margin-right: 8px;
}

@media all and (max-width: 1199px) {
    .header-top-account {
        display: none;
    }
    .header-top::before{
        width: 270px;
    }
    .header-top::after{
        width: 260px;
    }
}

@media all and (max-width: 1200px) {
    .header-top {
        display: none;
    }
}

/* ===================
nav menu css
====================== */

@media all and (min-width: 1200px) {
    .navbar .nav-item  {
        margin-bottom: 0;
    }

    .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 28px 0 28px 0;
        font-size: 16px;
        color: #000001;
        text-transform: uppercase;
    }

    .navbar .nav-item:nth-child(2) .nav-link {
        cursor: text;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: 15px;
        border: none;
        border-radius: 8px;
        width: 310px;
        box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-item .dropdown-menu li {
        border-bottom: 1px solid #eee;
    }

    .navbar .nav-item .dropdown-menu li:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 15px;
        padding: 8px 15px;
        color: #000001;
        border-radius: 5px;
        position: relative;
        text-transform: uppercase;
        transition: all .5s ease-in-out;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item::before{
        content: "";
        position: absolute;
        left: 0;
        top: 20px;
        width: 0px;
        height: 2px;
        opacity: 0;
        background: var(--primary-pink-color);
        transition: all .7s ease-in-out;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before{
        width: 28px;
        opacity: 1;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: transparent;
        color: var(--primary-pink-color);
        padding-left: 33px;
    }

    .navbar .nav-item .nav-link {
        position: relative;
        z-index: 1;
    }

    .navbar .nav-item .nav-link::before{
        content: "";
        position: absolute;
        background: var(--primary-pink-color);
        width: 0px;
        height: 3px;
        bottom: 20px;
        left: 1px;
        border-radius: 50px;
        transition: all .5s ease-in-out;
    }

    .navbar .nav-item .nav-link.active::before,
    .navbar .nav-item .nav-link:hover::before {
        width: 20px;
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--primary-pink-color);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    .header-nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-left: 30px;
    }

    .header-nav-search a {
        color: #000001;
        font-size: 17px;
        padding: 5px;
    }

    .navbar .header-btn {
        padding-top: 8px;
    }

    .navbar .header-btn .theme-btn:hover{
        color: #fff;
    }

}

.toper{
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

/*bootstrap menu*/



.navbar {
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    z-index: 999;
}

.navbar.fixed-top {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}


.navbar.fixed-top .header-nav-search a {
    color: #000001;
    font-family: "Outfit-SemiBold",sans-serif; ;
}

.navbar.fixed-top .header-nav-search a:hover {
    color: var(--black-color);
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

button.navbar-toggler {
    font-size: 3.5rem;
    padding: 0;
    margin: 0;
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand img {
    width: 255px;
    height: 59px;
}

/* dropdown toggler */

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    font-family: 'icomoon';
    content: "\e990";
    border: none;
    font-size: 14px;
}

.dropdown-toggle:hover::after {
    content: "\e97f";
}

/* mobile menu */

.mobile-menu-right {
    display: flex;
    align-items: center;
}

@media all and (max-width: 1199px) {
    .navbar .header-btn {
        display: none;
    }
    .navbar .header-btn {
        display: none;
    }
    .header-phone {
        display: none;
    }
}

@media (max-width: 1200px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed;
    }

    .navbar-brand {
        padding-left: 10px;
    }

    .navbar-brand img {
        width: 250px;
    }

    .navbar-collapse {
        max-height: 290px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: #fff;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .navbar .nav-item .nav-link {
        color: #000001;
        transition: all .5s ease-in-out;
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--primary-pink-color) !important;
    }

    .navbar-toggler{
        border: none;
    }

    .navbar-toggler-icon {
        font-size: 26px;
        color: #000001;
        padding-right: 10px;
        margin-bottom: 10px;
        background: transparent;
    }

    .navbar .dropdown-menu {
        border-radius: 8px;
    }

    .navbar.fixed-top .navbar-toggler-icon {
        color: #000001;
    }

    .header-nav-right {
        display: none;
    }
}

/* ===================
search area css
====================== */


.submit_search {
    text-decoration: none;
    margin: 0;
    width: 100%;
    max-width: 800px;
    top: 0;
    right: 0;
    z-index: 9999
}

.submit_search .searchbox {
    position: relative
}

.submit_search input {
    display: block;
    width: 100%;
    line-height: 36px;
    border-radius: 0;
    outline: none;
    font-size: 14px;
    padding: 5px 50px 5px 10px;
    border: 1px solid #e5e5e5;
    color: #292c37;
    background: #ffffff;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.submit_search button {
    border: none;
    cursor: pointer;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    right: 0;
    outline: none;
    background: var(--primary-pink-color);
    font-size: 1.1rem;
    color: #ffffff;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease-in-out;
}

.submit_search button:hover,.submit_search button:focus,.submit_search button:active {
    background: #292c37
}

@media (max-width: 1024px) {
    .submit_search {
        right: 20px;
        padding-left: 300px;
    }
}

@media (max-width: 600px) {
    .submit_search {
        padding: 10px 20px 0;
        position: relative;
        width: 100%;
        right: 0;
    }
}



/* ===================
main css
====================== */
.main {
    margin-top: 0rem;
}


/* ===================
hero css
====================== */
.hero-section{
    min-height: 914px;
}

.carousel-indicators {
    bottom: 20px;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: var(--m);
    opacity: 1;
}

.hero-wrapper{
    padding-top: 250px;
    padding-bottom: 120px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-wrapper::before{
    content: "";
    position: absolute;
    background: rgba(7, 9, 36, .9);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-shape{
    position: absolute;
    bottom: -5px;
    left: 0px;
}

.hero-img{
    position: relative;
    z-index: 1;
}

.hero-wrapper .hero-sub-title{
    text-transform: uppercase;
    color: #fff;
    font-size: 25px;
}

.hero-wrapper .hero-title{
    font-size: 45px;
    color: #fff;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-wrapper .hero-title span{
    color: #E7295A;
}

.hero-wrapper p{
    font-size: 17px;
    color: #fff;
}

.hero-wrapper .hero-btn{
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.hero-single {
    width: 100vw;
    height: 90vh;
    min-height: 914px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color:#000000;
}

@media(max-width: 992px) {
    .hero-section .owl-item .video{
        background-image: url("../images/slider-3.jpg");
        background-image: -webkit-image-set(url("../images/slider-3.webp") 1x,url("../images/slider-3-min.webp") 2x);
        background-image: image-set(url("../images/slider-3.webp") 1x,url("../images/slider-3-min.webp") 2x);
    }
    .hero-section .hero-single #video{
        display: none !important;
    }
}

#index_video {
    object-position: center;
    object-fit: cover;
}

@media(min-width: 600px) {
    #index_video {
        /*position: relative;*/
        /*left: 0;*/
        /*z-index: 100;*/
        /*width: 100vw;*/
        /*height: 100vh;*/
    }
}

.hero-single .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-single .hero-content .hero-title {
    color: #000;
    font-size: 35px;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: "Mitr-Medium", sans-serif;
}

.hero-single .hero-content .hero-title span{
    color: #ec5863;
}

.hero-single .hero-content .hero-sub-title {
    color: #000;
    font-size: 25px;
    position: relative;
    text-transform: uppercase;
}

.hero-single .hero-content p {
    color: #000;
    line-height: 1.5;
    font-size: 18px;
}

.hero-single .hero-content .hero-btn {
    gap: 2rem;
    display: flex;
    margin-top: 1rem;
    justify-content: start;
}

.hero-title {
    margin: 20px 0;
}

.hero-sub-title {
    font-size: 2rem;
    line-height: 1;
}

.hero-btn .video-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
}

.hero-btn .play-btn{
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.hero-slider.owl-theme .owl-nav {
    margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 20px;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    cursor: pointer;
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    color: var(--light-purple-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
    left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev, .hero-slider.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
}
.hero-slider.owl-theme .owl-nav .owl-prev i, .hero-slider.owl-theme .owl-nav .owl-next i{
    font-style: normal;
}

.fa-long-arrow-left:before{
    content: "\e902";
    font-family: icomoon;
}

.fa-long-arrow-right:before{
    content: "\e903";
    font-family: icomoon;
}

@media all and (max-width: 1199px) {
    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }
    .hero-slider.owl-theme .owl-nav .owl-prev, .hero-slider.owl-theme .owl-nav .owl-next {
        top: unset;
        bottom: 20px !important;
    }
    .hero-slider.owl-theme .owl-nav .owl-next {
        left: 120px;
    }
}

@media all and (max-width: 991px) {
    .hero-single .hero-content .hero-title {
        font-size: 35px;
    }

    .hero-wrapper{
        padding-top: 260px;
        padding-bottom: 160px;
    }

    .hero-wrapper .hero-title{
        font-size: 32px;
    }

    .hero-wrapper .hero-img{
        margin-top: 70px;
    }

}

@media all and (max-width: 767px) {
    .hero-single .hero-content .hero-sub-title {
        font-size: 15px;
    }
    .hero-single .hero-content .hero-btn {
        gap: 1rem;
    }
}

.owl-controls .owl-dots {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    text-align: center;
}

.owl-controls .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-controls .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #ec5863;
    width: 20px;
}

.owl-controls .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    transition: all ease .5s;
}

/* ===================
about css
====================== */

.about-area {
    width: 100%;
    min-height: 914px;
    padding: 120px 0;
}

.about-area .about-left {
    position: relative;
    width: 100%;
    height: auto;
}

@media (min-width: 1200px) {
    .about-area .about-left {
        padding-right: 100px;
    }
}

.about-area .about-img img {
    width: 400px;
    height: auto;
    object-fit: cover;
}

.about-area .about-right {
    width: 100%;
    height: auto;
}

@media (min-width: 1200px) {
    .about-area .about-right {
        /*padding-left: 100px;*/
    }
}

.about-area .about-right .con-title {
    width: 100%;
    margin-bottom: 20px;
}

.about-area .about-right h2 {
    width: 100%;
    margin-bottom: 20px;
}

.about-area .about-right p {
    width: 100%;
    margin-bottom: 20px;
}

.about-area .about-right .con-about-item {
    width: 100%;
    margin: 30px 0;
}

.about-area .about-right .con-about-item li {
    width: 100%;
    margin-bottom: 10px;
}

.con-title .title-line:before {
    content: '';
    position: absolute;
    z-index: 1;
    background-color: #d9534f !important;
    border-radius: 2px;
    height: 25px;
    font-size: 12px;
    width: 2px;
    transition: all 1s ease 0s;
    color: #040447 !important;
}

.con-title:hover .title-line:before {
    background-color: #ffffff;
    width: 170px;
    transition: all 1s ease 0s;
    box-sizing: border-box;
    color: #ec5863;
}

.about-page .con-title:hover .title-line:before {
    width: 300px;
}

@media (max-width: 800px) {
    .con-contact .con-title .title-line:before {
        left: 30% !important;
    }

    .con-contact .con-title:hover .title-line:before {
        width: 40% !important;
    }
}

.con-contact .con-title .title-line:before {
    left: 43%;
}

.con-contact .con-title:hover .title-line:before {
    width: 14%
}

.con-title .title-line p {
    position: relative;
    z-index: 100;
    padding: 0 20px;
    font-size: 16px;
    line-height: 25px;
    color: #ec5863;
    transition: color 1s ease;
}

.con-title:hover .title-line p {
    color: #ffffff;
    transition: color 1s ease;
}

.con-about-item {
    padding: 0;
}

.con-about-item li {
    list-style: none;
}

.icon-checkmark:before {
    background: #ec5863;
    border-radius: 50%;
    color: #ffffff;
    padding: 3px;
    font-size: 0.9em
}

.con-about-item span {
    padding-right: 15px
}

/* ===================
Core Techniques css
====================== */

.in-servbox {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;
    height: 290px;
    min-height: 210px;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border: 1px solid #ec5863;
    margin-top: 60px;
}

@media (max-width: 1500px) {
    .in-servbox {
        height: 369px;
    }
}

@media (max-width: 768px) {
    .in-servbox {
        height: auto;
    }
}

.in-servbox::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ec5863;
    width: 100%;
    height: 0;
    z-index: 1;
    transition: all 1s ease;
    border-radius: 0px;
}

.in-servbox:hover::after {
    height: 100%;
    border-radius: 0px;
}

.in-serv-img {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 10;
    left: 20px;
    top: -40px;
    overflow: hidden;
}

.in-serv-img span {
    font-size: 1.8em;
    color: #ffffff;
    text-align: center;
    position: absolute;
    padding: 20px;
    background: #ec5863;
    border: 1px solid #ec5863;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.in-servbox:hover .in-serv-img span {
    color: #ec5863;
    background: #ffffff;
    border: 1px solid #ec5863;
}

.in-serv-detail {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 20px;
}

.in-serv-detail .page-tit4{
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Outfit-Regular", serif;
}

.in-servbox ul {
    margin-left: 19px;
    padding-left: 0;
    margin-bottom: 5px;
}

.in-servbox .page-tit2,.in-servbox p,.in-servbox ul li {
    line-height: 1.5;
    color: #000000;
    padding: 0;
    transition: all 1s ease;
}

.in-servbox ul li {
    margin: 0;
}

.in-servbox:hover .page-tit2,.in-servbox:hover p,.in-servbox:hover ul li {
    color: #ffffff;
}


/* ===================
platforms css
====================== */

.platforms-item {
    margin-bottom: 25px;
    background: #fff;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #ec5863;
}

.platforms-item:hover{
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.platforms-item a.theme-btn2{
    margin: 0px 0px 20px 30px;
}

.platforms-item .platforms-item-img img{
    width: 100%;
    object-fit: cover;
}

.platforms-item-info {
    padding: 18px 15px;
    height: 140px;
}

@media (max-width:1200px) {
    .platforms-item-info {
        height: 200px;
    }
}

@media (max-width:768px) {
    .platforms-item-info {
        height: auto;
    }
}
.trust-area .platforms-item-info {
    height: 200px;
}

@media (max-width: 1500px) {
    .trust-area .platforms-item-info {
        height: auto;
    }
}

@media (max-width:768px) {
    .trust-area .platforms-item-info {
        height: auto;
    }
}


.platforms-item:hover .platforms-item-info{
    background: #ec5863;
    color: #fff;
}

.platforms-item:hover .platforms-item-info h4{
    color: #fff;
}

.platforms-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Outfit-SemiBold", serif;
}

.platforms-item-info p {
    /*margin-bottom: 25px;*/
    height: 135px;
}
@media (max-width: 1200px) {
    .platforms-item-info p {
        height: auto;
    }
}


.platforms-item-info a:hover {
    color: #ffffff;
}

.platforms-item-info .theme-btn:hover{
    color: #fff;
}


/* ===================
contact css
====================== */
.contact-area .con-title .title-line:before {
    left: 46.5%;
}
@media (max-width: 768px) {
    .contact-area .con-title .title-line:before {
        left: 35%;
    }
}


/* ======================
contact-form
========================= */
.contact-section2-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-section2-info .pic {
    width: 100%;
    height: inherit;
    position: relative;
    background: #ffffff;
    padding: 15px;
}

.contact-section2-info .pic iframe{
    width: 100%;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 1000px) {
    .contact-section-title {
        font-size: 22px;
    }
    .contact-section2-info {
        flex-wrap: wrap;
    }
    .contact-section2-info .contact-forms {
        width: 100%;
    }
    .contact-section2-info .pic {
        width: 100%;
        height: 300px;
        margin-bottom: 35px;
    }
    .contact-section2-info .pic iframe{
        width: 100%;
        height: 100%;
    }
}

.forms {
    width: 100%;
}
.forms .row {
    margin-right: -15px;
    margin-left: -15px;
}
.forms .row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.forms .form_control {
    width: 100%;
    height: 46px;
    border: 1px solid #E8E8E8;
    padding: 0px 10px;
    margin-bottom: 0px;
    font-size: 12px;
    color: #454646;
    box-shadow: none;
    border-radius: 5px;
    background: none;
}

.forms .form_group {
    margin-bottom: 15px;
}

.forms textarea.form_control {
    height: 80px;
    padding: 11px 10px;
    line-height: 22px;
    display: inherit;
}

.forms textarea.form_control.title {
    height: 46px;
}

.forms .form_control.file {
    padding-top: 10px;
}

.forms .inquiry-quantity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.forms .inquiry-quantity select.form_control {
    width: 110px;
    font-size: 18px;
    outline: none;
}

.forms label {
    margin-bottom: 5px;
    font-size: 16px;
    color: #0E0D1B;
    margin-left: 0px;
    display: block;
}
.forms .inquiry-quantity {
    width: 100%;
}

.forms .inquiry-quantity input#iquantity {
    width: calc(100% - 110px);
    margin-right: 0px;
    border-right: none;
}

.forms .inquiry-quantity input.form_control:after {
    content: " ";
    position: absolute;
    z-index: 2;
    top: -25px;
    width: 110%;
    height: 50px;
    background-color: #fff;
    transform: rotate(-0.5deg)
}

.forms #otherunit {
    margin-left: 0px;
    background: none;
    width: 110px;
    border-left: none;
}

.forms .form_button {
    margin-top: 10px;
    text-align: center;
}

.forms .form-check {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
    margin-top: 10px;
}

.forms .form-check label {
    line-height: 1.3;
}

.forms .form-check .form-check-input {
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 3px;
}


/* ======================
footer-stylesheet
========================= */

.footer {
    width: 100%;
    height: auto;
    background: #ec5863;
}

.footer p {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.footer p a {
    line-height: inherit;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #000000;
}

.footer .foottitle {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
    display: grid;
}

.footer .email-box{
    margin-top: 20px;
}
.footer .email-box input{
    font-size: 15px;
    height: 50px;
    padding: 5px 10px;
    position: relative;
    background: none;
    border: 1px solid #fff;
    margin: 0;
    border-radius: 4px;
    width: -webkit-fill-available;
}
.footer .email-box input::placeholder{
    color: #fff;
}

.foot-info {
    width: 100%;
    height: auto;
    padding: 50px 0px 35px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    column-gap: 20px;
}

.foot-logo {
    width: auto;
}

.foot-logo img {
    width: auto;
    height: 60px;
    max-width: 100%;
    margin-bottom: 30px;
}

.foot-logo p {
    max-width: 400px;
}

.foot-contact-list {
    margin-bottom: 15px;
}

.foot-contact-list p span{
    padding-right: 10px;
}


.foot-link-icon {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
}

.foot-link-icon a {
    font-size: 18px;
    transition: all .3s;
    color: #fff;
}

.foot-link-icon a:hover {
    transform: translateY(-3px);
    color: #fff;
}

.foot-link-icon .twitter-pic {
    width: auto;
    height: 16px;
    margin-bottom: 3px;
}

.foot-link-icon p {
    margin-bottom: 0px;
}

.foot-follow {
    max-width: 300px;
}

.foot-nav {
    width: auto;
    max-width: 100%;
    /*min-width: 300px;*/
}
.foot-logo{
    min-width: 360px;
}

.foot-nav:nth-child(2) {
    min-width: 180px;
}
.foot-nav:nth-child(3) {
    min-width: 220px;
}
.foot-nav:nth-child(4) {
    min-width: 200px;
}

.foot-nav p a {
    padding-left: 20px;
    position: relative;
    display: inline-block;
    transition: all .3s;
}

.foot-nav p a:before {
    content: '>';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.foot-nav.foot-contact p a{
    padding-left: 0;
}

.foot-nav.foot-contact p a:before{
    content: none;
}

.foot-nav p a:hover {
    transform: translateX(5px);
}

.copyright {
    width: 100%;
    height: auto;
    padding: 12px 0px;
    position: relative;
    background: #ec5863;
}

.copyright p {
    padding-top:15px;
    border-top:1px solid #ffc7c7;
    text-align: center;
    margin-bottom: 0px;
    color: #fff;
    font-size: 15px;
}

.go_top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-radius: 4px;
    background-color: #ec5863;
    position: fixed;
    right: 5px;
    bottom: 120px;
}

.go_top:before {
    content: "\e9a6";
    font-family: 'icomoon';
    margin: 0 auto;
    font-size: 20px;
    padding: 20px 10px;
}

.go_top:hover {
    background-color: #000000;
    color:#ffffff;
}

@media (max-width:1200px) {

    .footer .foottitle {
        display: inline-block;
    }
    .foot-contact {
        width: 100%;
    }
    .foot-nav {
        width: 100%;
        margin-top: 25px;
    }
    .foot-logo img {
        height: 50px;
    }
    .foot-logo {
        width: 100%;
    }
    .foot-info {
        flex-wrap: wrap;
    }
    .search-info {
        position: absolute;
        left: 0px;
        top: calc(100% - 2px);
        width: 100%;
        padding: 5px 15px 10px;
    }
}


/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 180px;
    padding-bottom: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
.about-breadcrumb {
    background-image: url(../images/about-banner.jpg);
}
.solution-breadcrumb {
    background-image: url(../images/soultion-banner.jpg);
}
.pipelines-breadcrumb {
    background-image: url(../images/pipelines-banner.jpg);
}
.contact-breadcrumb {
    background-image: url(../images/contact-banner.jpg);
}


.ai-powered-breadcrumb{
    background-image: url(../images/bg-ai-powered-drug-design.jpg);
}
.ai-synthesizer-breadcrumb{
    background-image: url(../images/bg-ai-synthesizer.jpg);
}
.ai-hts-breadcrumb{
    background-image: url(../images/bg-ai-hts.jpg);
}
.ai-guided-breadcrumb{
    background-image: url(../images/bg-ai-guided-in-vivo-and-animal-testing.jpg);
}
.ai-advised-breadcrumb{
    background-image: url(../images/bg-ai-advised-small-nucleic-acid-drugs-screening.jpg);
}
.cdmo-breadcrumb{
    background-image: url(../images/bg-cdmo.jpg);
}


.site-breadcrumb::before{
    content: "";
    position: absolute;
    background: linear-gradient(to right, #FDEEEF, #ffffff80);
    opacity: .6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.breadcrumb-shape{
    position: absolute;
    bottom: -4px;
    left: 0px;
}

.site-breadcrumb .breadcrumb-title {
    font-size: 45px;
    color: #000000;
    margin-bottom: 10px;
    font-family: "Outfit-SemiBold", serif;
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1;
}

.site-breadcrumb .breadcrumb-menu .active{
    color: #000000;
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: #000000;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
    color: #000000;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '\e92d';
    font-family: 'icomoon';
    right: -19px;
    text-align: center;
    font-size: 16px;
    color: #000000;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .site-breadcrumb {
        padding-top: 180px;
    }
}

/* ===================
pagination css
====================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pagination .page-link {
    border: none;
    background: #05152F;
    color: #fff;
    margin: 0 10px;
    border-radius: 8px !important;
    width: 40px;
    height: 40px;
    line-height: 28px;
    text-align: center;
    transition: all .5s ease-in-out;
}

.pagination .page-link:hover, .pagination .page-item.active .page-link {
    background: var(--primary-purple-color);
}

/* ===================
contact-info css
====================== */
.contact-info{
    border-top:5px solid #ec5863;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    height: 200px;
    padding: 50px;
}

.contact-info .icon-address,
.contact-info .icon-Mail,
.contact-info .icon-phone{
    font-size: 40px;
    color: #ec5863;
}

.contact-info a:hover{
    color: #ec5863;
}

/* ===================
main-service-page css
====================== */

.text-main {
    color: #ec5863;
    font-size: 35px;
    font-family: "Mitr-Medium", serif;
}

.section .row {
   display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.section:last-child {
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .row {
        flex-wrap: wrap;
        display: flex;
        justify-content: flex-start;
    }
}

.section .row div[class*='col-']:nth-child(2){
    text-align: center;
}

.cdmo-area .section .row div[class*='col-']:nth-child(2){
    position: relative;
}

.bottom-line{
    padding: 20px 0;
    color: #000000;
}

.bottom-line h3 {
    color: #000000;
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
    width: 100%;
}

.ai-hts-area .bottom-line h3 {
    width: max-content;
}

.ai-synthesizer-area .bottom-line h3,
.ai-guided-testingtm .bottom-line h3,
.ai-advised-area .bottom-line h3,
.cdmo-area .bottom-line h3 {
    max-width: 100%;
    display: inline;
}

@media screen and (max-width:1086px){
    .bottom-line h3 {
        width: 600px;
    }
}
@media screen and (max-width:768px){
    .bottom-line h3 {
        width: 400px;
    }
}

.bottom-line h3:before {
    content: '';
    position: absolute;
    z-index: 1;
    background: #ffb8bd no-repeat fixed top;
    height: 10px;
    margin-top: 40px;
    width: 100%;
    box-shadow: inset 2px 0 2px 2px #ffffff, inset -1px 0 3px 3px #ffffff;
}

.ai-powered-drug-design .bottom-line h3:before {
    content: '';
    position: absolute;
    z-index: 1;
    background: #ffb8bd no-repeat fixed top;
    height: 10px;
    margin-top: 40px;
    margin-left:0;
    width: 100%;
    box-shadow: inset 2px 0 2px 2px #ffffff, inset -1px 0 3px 3px #ffffff;
}

.ai-synthesizer-area .bottom-line h3:before{
    width: 100%;
    margin-top: 50px;
    box-shadow: inset 2px 0 2px 2px #ffffff, inset -1px 0 3px 3px #ffffff;
}

.ai-advised-area .bottom-line h3:before {
    width: 100%;
    margin-top: 50px;
    box-shadow: inset 2px 0 2px 2px #ffffff, inset -1px 0 3px 3px #ffffff;
}

.ai-hts-area .bottom-line h3:before{
    content: '';
    position: absolute;
    z-index: 1;
    background: #ffb8bd no-repeat fixed top;
    height: 10px;
    margin-top: 50px;
    margin-left:0;
    width: 100%;
    box-shadow: inset 2px 0 2px 2px #ffffff, inset -1px 0 3px 3px #ffffff;
}

.ai-guided-testingtm .bottom-line h3:before{
    width: 100%;
    margin-top: 52px;
    box-shadow: inset 2px 0 2px 2px #ffffff, inset -1px 0 3px 3px #ffffff;
}

.cdmo-area .bottom-line h3:before {
    content: '';
    position: absolute;
    z-index: 1;
    background: #ffb8bd no-repeat fixed top;
    height: 10px;
    margin-top: 40px;
    width: 100%;
    box-shadow: inset 2px 0 2px 2px #fdeeef, inset -1px 0 3px 3px #fdeeef;
}

.bottom-line h3 span{
    color: #ec5863;
}

.list-item .section p {
    position: sticky;
    padding-top: 40px;
}

.index-icon {
    margin: 30px 0 30px 0;
    display: flex;
    align-items: center;
}


.index-icon span:first-child {
    background: #ec5863;
    border-radius: 50%;
    padding: 10px;
    color: #ffffff;
    margin-right: 10px;
    font-size: 25px;
}

.btn {
    display: inline-block;
    color: #ffffff;
    padding: 10px 25px;
    margin-top: 30px;
    border-radius: 0px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border: 2px solid #ec5863;
    background: #ec5863;
    transition: all 1s ease;
    font-size: 17px;
    font-family: "Outfit-SemiBold", serif;
    text-transform: uppercase;
}
.btn:hover{
    border: 2px solid #ec5863;
}

.ai-synthesizer-area .btn,
.ai-advised-area .btn{
    margin-top: 40px;
    margin-bottom: 20px;
}

.in-customize {
    background-image: url(../images/index2bg.png);
    background-size: 100% 450px;
    background-repeat: no-repeat;
    margin-bottom: 80px;
}

.in-customize .container{
    position: relative;
    padding: 70px 50px 0 50px;
    margin: 0 auto;
}

.in-customize .container:after {
    display: table;
    content: " "
}

.in-customize .container:after {
    clear: both
}

.round-solid {
    border: 1px solid #ec5863;
    border-radius: 50%;
    padding: 50px;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

img.fl-banner01 {
    position: absolute;
    right: 13%;
    margin: 0 auto;
    top: -5%;
    animation: 3.1s rotate linear infinite;
}

img.fl-banner02 {
    position: absolute;
    left: 11%;
    top: 0%;
    animation: 2.3s rotate linear infinite;
}

img.fl-banner03 {
    position: absolute;
    bottom: 0%;
    left: 17%;
    animation: 3.1s rotate linear infinite;
}

img.fl-banner04 {
    position: absolute;
    right: 13%;
    bottom: 5%;
    animation: 2.3s rotate linear infinite;
}

span.fl-banner01 {
    position: absolute;
    right: 13%;
    margin: 0 auto;
    top: -6%;
    animation: 3.1s rotate linear infinite;
    background: #ec5863;
    color: #ffffff;
    padding: 3px;
}

span.fl-banner02 {
    position: absolute;
    left: 11%;
    top: 4%;
    animation: 2.3s rotate linear infinite;
    background: #ec5863;
    color: #ffffff;
    padding: 3px;
}

span.fl-banner03 {
    position: absolute;
    bottom: 15%;
    left: 17%;
    animation: 3.1s rotate linear infinite;
    background: #ec5863;
    color: #ffffff;
    padding: 3px;
}

span.fl-banner04 {
    position: absolute;
    right: 13%;
    bottom: 21%;
    animation: 2.3s rotate linear infinite;
    background: #ec5863;
    color: #ffffff;
    padding: 3px;
}


.right-pic>img:first-child {
    width: 100%;
    max-width: 100%;
    height: 100%;
    transition: all 1s ease;
    margin: 0 auto;
}

.right-pic>img:first-child:hover {
    zoom:1;transform: scale(1.2);
    transition: all 1s ease;
}

/*img follow circle recycle*/
.circle-img img {
    transition-duration: 10s;
    animation-duration: 5s;
    width: 100px;
    height: 100px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) translateX(5px) rotate(0deg);
    }

    50% {
        transform: rotate(1turn) translateX(5px) rotate(-1turn);
    }

    100% {
        transform: rotate(2turn) translateX(5px) rotate(-2turn);
    }
}

.certification img{
    width: 240px;
    height: auto;
}


@media (max-width:768px){
    .hero-section{
        min-height: 914px;
    }
    .hero-single{
        min-height: 914px;
    }
    .about-area{
        min-height: 1281px;
    }
    .technology-area{
        min-height: 2261px;
    }
    .driven-area{
        min-height: 2492px;
    }
}
#xload-policy{display: inline-block;}
.zsiq_floatmain.siq_bR{z-index: 99 !important;}
.privacy-policy-message-layer{position:fixed;z-index:2147483647;bottom:0;left:0;width:100%;padding:15px 0;background-color:#fff;color:#fff;box-shadow:0 0 18px rgba(0,0,0,.2);}
.privacy-policy-message-layer .content{padding:0 30px;font-size:14px;}
.privacy-policy-message-layer .content h3{margin-bottom:10px;font-size:20px;color:#1d294c;}
.privacy-policy-message-layer .content p{margin-bottom:20px;line-height:1.8;}
.privacy-policy-link{color:#1d294c !important;text-decoration:underline !important;}
#privacy-policy-btn-close{box-sizing:border-box;position:absolute;right:10px;top:10px;display:inline-block;width:24px;height:24px;line-height:20px;text-align:center;color:#000;cursor:pointer;border:1px solid #000;text-decoration:none;font-size:15px;}
#privacy-policy-btn-close:hover{background-color:#000;color:#fff;}
.privacy-policy-btn{box-sizing:border-box;display:inline-block;padding:8px 25px;background-color:#fff;border:1px solid #000;color:#000;text-decoration:none;margin-right:15px;cursor:pointer;}
.privacy-policy-btn:hover{background-color:#000;color:#fff;}
.privacy-policy-btn.primary{box-sizing:border-box;display:inline-block;padding:8px 25px;background-color:#000000;color:#fff;text-decoration:none;}
.privacy-policy-btn.primary:hover{background-color:#16a8db;border:1px solid #16a8db;color:#fff;}
.privacy-policy-message-popup{position:fixed;z-index:2147483647;top:15%;left:5%;width:90%;height:500px;padding:0;background-color:#fff;color:#000;font-size:15px;}
.privacy-policy-message-popup .header{position:absolute;top:0;left:0;width:100%;margin:0;background-color:#fff;padding:20px 0;border-bottom:1px solid #ddd;}
.privacy-policy-message-popup h3{font-size:20px;padding:0 20px;margin:0;}
.privacy-policy-message-popup h4{font-size:18px;margin-top:20px;margin-bottom:20px;padding:20px 20px 0 20px;border-top:1px solid #ddd;}
@media screen and (min-width:992px){.privacy-policy-message-popup{width:650px;left:50%;transform:translateX(-50%);} }
.privacy-policy-message-popup .content{height:355px;overflow-y:auto;position:absolute;top:64px;left:0;width:100%;margin:0;background-color:#fff;padding:20px 0 5px 0;box-sizing:border-box;}
.privacy-policy-message-popup .content p{margin:0 0 15px 0;padding:0 20px;font-size:15px;}
.privacy-policy-message-popup .toolbar{border-top:1px solid #ddd;padding-top:20px;padding-bottom:20px;position:absolute;bottom:0;left:0;width:100%;background-color:#fff;text-align:center;}
.privacy-policy-always-active{color:#3371be;float:right;}
.privacy-policy-gray-text{color:#666;}
.privacy-policy-message-layer .privacy-info{width:100%;height:auto;display:flex;align-items:center;justify-content:space-between;padding:0 50px;}
.privacy-policy-message-layer .privacy-info .privacy-text{max-width:1000px;}
.privacy-policy-message-layer .privacy-info .privacy-text p{margin:0;padding:0;font-size:15px;color:#1d294c;}
.privacy-policy-message-layer .privacy-info .privacy-btn{flex-shrink:0;margin-left:100px;}
@media screen and (max-width:1000px){.privacy-policy-message-layer .content{padding:0 15px;}
.privacy-policy-message-layer .privacy-info .privacy-btn{margin-left:0;}
.privacy-policy-message-layer .privacy-info .privacy-text{margin-bottom:15px;padding-right: 30px;}
.privacy-policy-message-layer .privacy-info{flex-wrap:wrap;padding:0;}
.privacy-policy-btn{padding:8px 15px;}
.privacy-policy-btn.primary{padding:8px 15px;} }
