/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-font: "Roboto", sans-serif;
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
    --text-color: #012164;
    --primary-color: #012164;
    --secondary-color: #d9b16e;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;    
    background: var(--bg-white);
    color: var(--black);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--primary-color); 
    text-align: center; 
    font-size: 16px;
    color: var(--white);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    z-index: 8888;    
}

.scrolltotop i {
    color: var(--white);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 9px;
    left: -6px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primary-color); 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.button {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    padding: 12px 24.23px;
    border-radius: 100px;
    background-color: var(--primary-color);
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    background-color: var(--title-color);
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 50%;
    background-color: var(--title-color);
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.button:hover:after,
.button:hover:before {
    width: 50%;
}

.button:hover {
    color: var(--white);
}

/*=== Header area start ===*/

.header-area {
    padding: 13px 0;
    background: var(--primary-color);
}

.header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-width: 100%;
}

.header-navigation-link ul {
    display: flex;
    align-items: center;
}

.header-navigation-link ul li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    margin-left: 30px;
}

.header-navigation-link ul li a:hover {
    color: var(--secondary-color);
}

.header-navigation-link ul li:last-of-type a {
    width: 112px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background-color: var(--secondary-color);
    margin-left: 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.header-navigation-link ul li:last-of-type a:hover {
    opacity: 0.8;
}

.hamburger {
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    display: block;
    background: var(--bg-white);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.hamburger span:nth-of-type(2) {
    margin: 6px 0;
}

.hamburger:hover span {
    background: var(--secondary-color);
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: var(--primary-color); 
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-logo img {
    max-width: 200px;
}

.side-menu-logo .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-logo .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: var(--bg-white);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-logo .close:hover span {
    background: var(--secondary-color);
}

.side-menu-logo .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-logo .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-link ul {
    flex-direction: column;
    align-items: start;
}

.side-menu-link ul li a {
    margin: 0 0 15px !important;
}

/*=== main content start ===*/

.banner-area {
    background-image: url('../images/banner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 90px 0 120px;
    text-align: center;
}

.banner-item-title h2 {
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    line-height: 50%;
}

.banner-item-title h2 strong {
    font-size: 42px;
    font-weight: 700;
}

.banner-item-title h2 span {
    color: var(--secondary-color);
}

.banner-item-sub-title h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    font-style: italic;
    display: inline-block;
    padding: 10px 0; 
    border-bottom: 1px solid #94afda;
}

.banner-item-inner ul {
    padding: 15px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item-inner ul li {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
}

.banner-item-inner ul li span {
    margin: 0 5px;
    display: block;
    transform: translateY(1px);
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
}

.banner-item-button ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-item-button ul li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 34px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.banner-item-button ul li:nth-of-type(2) a {
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid #94afda;
    margin-left: 8px;
}

.banner-item-button ul li a:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

.banner-item-button ul li:nth-of-type(2) a:hover {
    color: var(--text-color);
    background-color: #94afda;
}

/*=== trusted area start ===*/

.trusted-area {
    background-image: url('../images/trusted-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0;
    text-align: center;
}

.trusted-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.trusted-item-inner h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 10px;
}

.trusted-item-inner span {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #a9b3c6);
    max-width: 100%;
}

.trusted-item-inner span:nth-of-type(2) {
    background: linear-gradient(to left, transparent, #a9b3c6);
}

.trusted-item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 15px;
}

.trusted-item ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trusted-item ul li {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    width: 245px;
}

.trusted-item ul li img {
    max-width: 100%;
    display: block;
    margin: 0 auto 5px;
}

.trusted-item ul li span {
    display: block;
    width: 100%;
    border-left: 2px solid #a9b3c6;
    border-right: 2px solid #a9b3c6;
}

/*=== service area start ===*/

.service-area {
    padding-top: 20px;
    background-color: var(--primary-color);
}

.service-area .trusted-item-inner h2 {
    color: var(--white);
    margin: 0 20px;
}

.service-area .trusted-item-inner span {
    background: linear-gradient(to right, transparent, var(--secondary-color), var(--secondary-color));
}

.service-area .trusted-item-inner span:nth-of-type(2) {
    background: linear-gradient(to left, transparent, var(--secondary-color), var(--secondary-color));
}

.service-item ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item ul li {
    width: 25%;
    padding: 0 5px;
    position: relative;
    z-index: 9;
    margin-bottom: 12px;
}

.service-item ul li img {
    max-width: 100%;
    z-index: -1;
}

.service-item ul li span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    position: absolute;
    top: 50%;
    left: 65px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 1;
}

.service-item ul li:nth-of-type(1) span {
    left: 80px;
}

/*=== painting area start ===*/

.painting-area {
    background-image: url('../images/painting-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0;
}

.painting-item h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.painting-item h2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, #a9b3c6, #a9b3c6);
    left: 0;
    bottom: -8px;
}

.painting-item ul {
    padding-bottom: 15px;
}

.painting-item ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.painting-item ul li img {
    max-width: 100%;
    display: block;
    margin-right: 10px;
}

.painting-item a {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.painting-item a:hover {
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/*=== choose area start ===*/

.choose-area {
    background-image: url('../images/choose-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10px 0 24px;
    border-bottom: 7px solid #ced1dc;
}

.choose-area .trusted-item-inner {
    margin-bottom: 10px;
}

.choose-area .trusted-item-inner h2 {
    color: var(--white);
}

.choose-area .trusted-item-inner span {
    background: linear-gradient(to right, transparent, var(--secondary-color), var(--secondary-color));
}

.choose-area .trusted-item-inner span:nth-of-type(2) {
    background: linear-gradient(to left, transparent, var(--secondary-color), var(--secondary-color));
}

.choose-item ul {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
}

.choose-item ul li {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
}

.choose-item ul li img {
    max-width: 100%;
    margin-right: 10px;
}

/*=== footer area start ===*/

.footer-top {
    background-image: url('../images/footer-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px 0 15px;
    border-bottom: 5px solid var(--secondary-color);
    text-align: center;
}

.footer-area .trusted-item-inner {
    margin-bottom: 10px;
}

.footer-area .trusted-item-inner h2 {
    color: var(--white);
}

.footer-area .trusted-item-inner span {
    background: linear-gradient(to right, transparent, var(--secondary-color), var(--secondary-color));
}

.footer-area .trusted-item-inner span:nth-of-type(2) {
    background: linear-gradient(to left, transparent, var(--secondary-color), var(--secondary-color));
}

.footer-item p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-item p strong {
    font-weight: 7000;
}

.footer-item ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-item ul li a {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
}

.footer-item ul li a i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-right: 12px;
}

.footer-item ul li a strong {
    font-weight: 700;
}

.footer-item ul li:nth-of-type(1) {
    padding-right: 15px;
    margin-right: 10px;
    border-right: 1px solid var(--secondary-color);
}

.footer-item ul li a:hover {
    color: var(--secondary-color);
}

.footer-item > a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.footer-item > a:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

.footer-bottom {
    padding: 10px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.footer-bottom p span {
    width: 1.5px;
    height: 12px;
    display: inline-block;
    background-color: var(--white);
    margin: 0 8px;
}