@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*
========================
Header area start
========================
*/

body {	
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

a {
    text-decoration: none;
    transition: 0.3s all ease;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* input:focus,
select:focus,
textarea:focus {
    box-shadow: none!important;
    border: 1px solid #CED4DA!important;
} */

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #D2CBC5;   
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    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 #AEA69E;
    z-index: 1;    
}

.scrolltotop i {
    color: #ffff;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 13px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: #D2CBC5;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  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);
    }
}

/*
========================
Header area start
========================
*/

/* header-area start */

.header-area {
    background: #ffff;
    padding: 50px 0 70px 0;
}

.header-upper h3 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 60px;
    text-align: center;
}

.header-logo img {
    display: block;
    margin: auto;
    max-width: 140px;
    width: 100%;
}

/* header-area end */

/* about-area start */

.about-area {
    background: #D2CBC5;
    padding: 70px 0 100px 0;
}

.about-upper {
    text-align: center;
}

.about-upper h3 {
    font-size: 23px;
    font-weight: 500;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.about-upper h2 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

/* about-area end */

/* contact-area start */

.contact-area {
    background: #fff;
    padding: 50px 0;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-item h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.contact-item a {
    color: #333333;
}

/* contact-area end */

/* map-area start */

.map-area {
    width: 100%;
    height: 450px;
}

.map-area iframe {
    width: 100%;
    height: 100%;
}

/* map-area end */

/* footer-area start */

.footer-area {
    background: #ffff;
    padding: 50px 0;
}

.footer-item a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* footer-area end */ 