:root {
    --color1: #FAE8E0;
    --colorDarkPink: #ef7c8e;
    --color1Hover: rgba(239, 124, 142 0.75);
    --color2: #b6e2d3;
    --colorDarkGreen:#80cdb2;

    --color2Hover: rgba(182, 226, 211, 0.75);
    --color3: #2f3144;
}

h1 {
    font-size: 40px;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Lexend Deca", sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: url(img/background/backgroundPhoto.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
    

nav {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    padding: 5px 5px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    position: fixed;
    overflow: visible;
    z-index: 1;
}

nav img {
    width: 50px;
}

nav .fa {
    display: none;
}


.navLinks {
    flex: 1;
    text-align: right;
}

.navLinks ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 10px;
}

.navLinks ul li a {
    color: var(--color3);
    text-decoration: none;
    font-size: 15px;
}

.navLinks ul li::after {
    content: '';
    width: 0%;
    height: 3px;
    background: var(--colorDarkPink);
    border-radius: 15px;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.navLinks ul li:hover::after {
    width: 100%;
}

/*************************welcome***********************/
.welcomeMessage {
    width: 90%;
    color: var(--color3);
    position: absolute;
    top: 25vh;
    left: -35vh;
    text-align: center;
}

.welcomeMessage h1 {
    font-size: 55px;
}

.welcomeMessage h2 {
    font-size: 40px;
    padding: 10px;
    color: var(--colorDarkPink);
}

.welcomeMessage h3 {
    font-size: 30px;
    padding: 10px;
    color: var(--color3);
}

.whiteBtn {
    width: 250px;
    display: inline-block;
    text-decoration: none;
    color: var(--color3);
    background-color: white;
    border: 1px solid var(--color3);
    border-radius: 100px;
    padding: 15px 35px;
    font-size: 20px;
    position: relative;
    transform: translate(0%, 20%);
    cursor: pointer;
}

.whiteBtnTransparent {
    width: 250px;
    display: inline-block;
    text-decoration: none;
    color: var(--color3);
    background-color: transparent;
    border: 2px solid var(--color3);
    border-radius: 100px;
    padding: 15px 35px;
    font-size: 20px;
    position: relative;
    transform: translate(0%, 20%);
    cursor: pointer;
}

.whiteBtn:hover {
    background: var(--colorDarkPink);
    transition: 0.5s;
}

.whiteBtnTransparent:hover {
    background: var(--colorDarkPink);
    transition: 0.5s;
}

.blackBtn {
    width: 250px;
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    border-radius: 100px;
    padding: 15px 35px;
    font-size: 20px;
    background: transparent;
    position: relative;
    transform: translate(0%, 20%);
    cursor: pointer;
}

.blackBtn:hover {
    color: var(--color3);
    background: var(--colorDarkPink);
    transition: 0.5s;
}

.newsBtn {
    width: 250px;
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    border-radius: 100px;
    padding: 15px 35px;
    font-size: 20px;
    background: transparent;
    position: relative;
    transform: translate(0%, 20%);
    cursor: pointer;
}

.newsBtn:hover {
    color: var(--color3);
    background: var(--colorDarkPink);
    transition: 0.5s;
}

.blinkBtn {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {  
from, to 
	{
    background-color:white;
	}
  50% {
    background-color: var(--colorDarkPink);
  }
}

/*---------------------------- aboutUs ------------------------------*/
.aboutUsDiv {
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.aboutUs {
    width: 60%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    justify-content: center;
}

.aboutUs img{
    width:150px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.aboutUsHeader {
    color: var(--colorDarkPink);
    font-size: 40px;
    font-weight: 600;
    font-style: italic;
    display: block;    
}

p {
    color: var(--color3);
    font-size: 20px;
    font-weight: normal;
    line-height: 20px;
    padding: 20px;
    text-align: justify;
}


/*---------------------------- services ------------------------------*/
.ourServiceDiv {
    background-color: var(--color1);
}

.ourService {
    width: 60%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    justify-content: center;
    padding-bottom: 100px;
}

.ourService p {
    text-align: justify;
}

.serviceRow {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.serviceCol {
    flex-basis: 48%;
    border-radius: 10px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.serviceCol img {
    width: 100%;
    height: 100%;
}

.layer {
    background: var(--color2Hover);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover {
    background: transparent
}

.layer h1 {
    width: 100%;
    font-weight: bold;
    margin: auto;
    padding: 10px;
    color: white;
    background-color: rgb(47, 49, 68, 0.75);
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    padding-left: 10px;
}

/*---------------------------- news --------------------------------------*/
.news {
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--color2);
    justify-content: center;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.news .table {
    width: 50%;
    color: white;
    background-color: white;
    margin: auto;
    padding: 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    padding-top: 50px;
}


.news h1 {
    color: var(--color3);
    margin-bottom: 40px;
    padding: 0;
}

.news p {
    text-align: center;
}

.news .tablePad {
    padding-top: 10px;
    padding-bottom: 50px;

}

.news .table .tableRow {
    margin-top: 25px;
    margin-bottom: 25px;
}

.news .table .tableRow .tableRowContent {
    width: 100%;
    display: inline-block;
    text-align: left;
    bottom: 0;
    margin: auto auto auto 30px;
}


.news .table .tableRow .tableRowContent .newsTime {
    color: gray;
    margin-top: -10px;
    margin-left: -20px;
    font-style: italic;
    font-size: 20px;
    font-weight: 200;

}

.news .table .tableRow .tableRowContent p,
.news .table .tableRow .tableRowContent a {
    text-align: left;
    font-size: 25px;
    margin: auto;
}

/*---------------------------- appointments ------------------------------*/
.appointmentsDiv {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(img/background/backgroundMergedPink.png);
    background-position: center;
    background-size: cover;
    padding-top: 90px;
}
.appointments {
    width: 100%;
    height: 100%;
    margin: auto;    
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
}

.appointments h1 {
    color: var(--color3);
    margin-bottom: 40px;
    padding: 0;
}

.appointments p {
    text-align: center;
}

.appointments .tablePad {
    padding-top: 10px;
    padding-bottom: 50px;

}

.appointments .table {
    width: 50%;
    color: white;
    background-color: white;
    margin: auto;
    padding: 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    padding-top: 80px;

}

.rowSeparator {
    width: 95%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    display: block;
    margin: auto;
}

.table .tableRow .tableRowContent {
    width: 100%;
    display: inline-flex;
    margin: auto;
}


.table .tableRow .tableRowContent .dayTimeSeparator {
    margin: auto;
}

.table .tableRow .tableRowContent .day p {
    text-align: left;
    bottom: 0;
    margin: auto auto auto 20px;
}

.table .tableRow .tableRowContent .time p {
    text-align: right;
    bottom: 0;
    margin: auto 20px auto auto;
}


/*---------------------------- contact ------------------------------*/
.contactDiv {
    width: 100%;
    background-color: var(--color3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.contact {
    width: 50%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    justify-content: center;
    text-align: center;
    padding-bottom: 20px;
}

.contact h1 {
    color: white;
    margin-bottom: 40px;
    padding: 0;
}


/*---------------------------- footer ------------------------------*/


.footerDiv {
    background-color: var(--color3);
    color: white;
}

.footer {
    width: 90%;
    margin: auto;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;  
}

.footer h{
    font-size: 12px;
    
}

/*---------------------------------- nws page ---------------------------------*/
.newsPageDiv {
    min-height: calc(100vh - 400px);
    padding-top: 90px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(img/background/backgroundMergedGreen.png);
    background-position: center;
    background-size: cover;    
}

.newsPage {
    width: 100%;
    height: 100%;
    margin: auto;
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
}

.newsPage .table {
    width: 51%;
    color: white;
    background-color: white;
    margin: auto;
    padding: 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding-left: 95px;
    padding-right: 95px;
    padding-bottom: 100px;
    padding-top: 80px;
}


.newsPage h1 {
    color: var(--color3);
    margin-bottom: 40px;
    padding-top: 10px;
}

.newsPage p {
    text-align: center;
}

.newsPage .tablePad {
    padding-top: 10px;
    padding-bottom: 50px;

}

.newsPage .table .tableRow {
    margin-top: 25px;
    margin-bottom: 25px;
}

.newsPage .table .tableRow .tableRowContent {
    width: 100%;
    display: inline-block;
    text-align: left;
    bottom: 0;
    margin: auto auto auto 30px;
}


.newsPage .table .tableRow .tableRowContent .newsTime {
    color: gray;
    margin-top: -10px;
    margin-left: -20px;
    font-style: italic;
    font-size: 20px;
    font-weight: 200;
}

.newsPage .table .tableRow .tableRowContent p,
.newsPage .table .tableRow .tableRowContent a {
    text-align: left;
    font-size: 25px;
    margin: auto;
}


/*---------------------------------- about us page ----------------------------*/
.headerAboutUs {
    height: 50%;
    width: 100%;

    background-position: center;
    background-size: cover;
    text-align: center;
    justify-content: center;
}

.headerAboutUs h1 {
    margin-top: 100px;
}

.headerAboutUs p {
    margin: auto;
    width: 50%;
}

.aboutUsPageContentDiv {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(img/background/backgroundMergedGreen.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;

}

.aboutUsPageContent {
    width: 50%;
    margin: auto;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 80px;
    padding-bottom: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background-color: white;

}


.aboutUsPageContent h1 {
    text-align: center;
    font-size: 25px;
}

.aboutUsPageContent .aboutUsRow .aboutUsCol h1 {
    text-align: left;
}

.aboutUsPageContent .aboutUsRow .aboutUsCol .color1 {
    color: var(--colorDarkPink);
    text-align: center;
}

.aboutUsPageContent .aboutUsRow .aboutUsCol .color2 {
    color: var(--colorDarkGreen);
    text-align: center;
}



.aboutUsRow {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.aboutUsCol {
    flex-basis: 50%;
    padding: 20px 20px 20px 20px;
}

.aboutUsCol img {
    width: 100%;
}

.aboutUsCol h1 {
    padding-top: 0;
}

.aboutUsCol p {
    padding: 15px 0 25px;
}




/*--------------------------- galery ------------------------------*/
.galeryDiv {
    background-color: var(--color2);
    padding-top: 100px;
    text-align: center;
    margin: auto;
    padding-bottom: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.galery {
    padding-top: 50px;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
}


/* Slideshow container */
.galeryDiv .slideshow-container {
    max-width: 60%;
}

.location .slideshow-container {
    max-width: 100%;
}

/* Slideshow container */
.slideshow-container img {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.3);
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 0 15px 15px 0;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 15px 0 0 15px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    border-radius: 15px 0px 15px 0px;
}

/* The dots/bullets/indicators */
.dotDiv {
    margin-top: -30px;
    margin-bottom: 10px;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid var(--colorDarkPink);
    display: inline-block;
}

.active,
.dot:hover {
    background-color: var(--colorDarkPink);
}


/*------------------------ office Hours --------------------------*/


.appointments table h1 {
    margin-bottom: 40px;
    padding: 0;
}


/*------------------------ services page --------------------------*/

.equipmentContentDiv, .vaccinationContentDiv, .medicalServicesContentDiv, .dispenzarizaceContentDiv{
    width: 100%;
    padding-top: 60px;
    padding-bottom: 40px;

}

.equipmentContentDiv{
    padding-top: 90px;
      background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(img/background/backgroundMergedPink.png);
    background-position: center;
    background-size: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}


.vaccinationContentDiv{
  background-color:var(--color1);
    background-position: center;
    background-size: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.medicalServicesContentDiv{
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(img/background/backgroundMergedPink.png);
    background-position: center;
    background-size: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.dispenzarizaceContentDiv{
  background-color: var(--color2);
    background-position: center;
    background-size: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}



.servicesPageContent {
    width: 50%;
    margin: auto;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 80px;
    padding-bottom: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background-color: white;

}


.servicesPageContent h1 {
    text-align: center;
    padding-bottom: 40px;
}

.servicesPageContent .servicesRow .servicesCol h1 {
    text-align: left;
}

.servicesPageContent .servicesRow .servicesCol .color1 {
    color: var(--colorDarkPink);
}

.servicesPageContent .servicesRow .servicesCol .color2 {
    color: var(--color2);
}



.servicesRow {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.servicesCol {
    flex-basis: 100%;
    margin: auto;
    margin-top: -10px;
    padding-left: 20px;
    padding-right: 20px;
}

.servicesCol img {
    width: 100%;
}

.servicesCol h1 {
    padding-top: 0;
    font-size: 20px;
}

.servicesCol p {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 10px;
    margin-top: -25px;
    font-size: 17px;
}

.servicesCol ul {
    padding-top: 40px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: justify;
}

.servicesCol li {
    color: var(--color3);
    font-size: 17px;
    font-weight: normal;
    text-align: left;
    margin: auto;
}


.pricesSection {
    width: 100%;
    margin: auto;
   background-color: white;
    justify-content: center;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.pricesSection h1 {
    color: var(--color3);
    margin-bottom: 40px;
    padding: 0;
}

.pricesSection p {
    text-align: center;
}

.pricesSection .tablePad {
    padding-top: 10px;
    padding-bottom: 50px;

}

.pricesSection .table {
    width: 50%;
    color: white;
    background-color: white;
    margin: auto;
    padding: 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    padding-top: 50px;
}

/*--------------------------contanct us page--------------------------*/
.location {
    width: 80%;
    margin: auto;
    padding-top: 90px;
    text-align: center;
}

.location iframe {
    width: 100%;
    height: 98%;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.location .locationGaleryDiv {
    text-align: center;
}

.location .locationGaleryDiv .locationGalery {
    padding-left: 50px;
}

.contactUs {
    width: 100%;
    margin: auto;
    text-align: left;
}

.contactUsRow {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}


.contactUsColGalery {
    flex-basis: 60%;
    margin-bottom: 0px;
}



.contactUsCol {
    flex-basis: 50%;
    margin-bottom: 30px;
}

.contactUsCol div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}


.contactUsCol div .fa {
    font-size: 30px;
    color: var(--colorDarkPink);
    margin: 10px;
    margin-right: 30px;
}


.contactUsCol div p {
    padding: 0;
    font-size: 20px;
    font-weight: 200;
}

.contactUsCol form {
    padding-left: 50px;
    width: 100%;
}

.contactUsCol div h5 {
    font-size: 20px;
    margin: bottom 5px;
    font-weight: 400;
}

.contactUsCol input,
.contactUsCol textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    border: 1px solid var(--color3);
    border-radius: 15px;
    box-sizing: border-box;
}

/*-------------------------- news Tempalte -----------------------*/


.template {
    width: 100%;
    height: 100%;
    margin: auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(img/background/backgroundMergedGreen.png);
    justify-content: center;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 50px;
}

.template h1 {
    color: var(--color3);
    margin-bottom: 0px;
    padding: 0;
}

.template h2 {
    color: gray;
    padding: 0;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 200;
    font-size: 20px;

}

.template p {
    text-align: justify;
}


.template ul {
    width: 90%;
    margin: auto;
}

.template ul li {
    color: var(--color3);
    font-size: 20px;
    text-align: left;
}

.template .tablePad {
    padding-top: 10px;
    padding-bottom: 50px;

}

.template .table {
    width: 50%;
    color: white;
    background-color: white;
    margin: auto;
    padding: 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    padding-top: 80px;
}

.underConstructionDiv {
    min-height: calc(100vh - 310px);
    padding-top: 0px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(img/background/backgroundMergedGreen.png);
    background-position: center;
    background-size: cover;    
}

.underConstructionTemplate{
    background-image: none;
}

/*---------------------------- media------------------------------*/

@media(max-width: 1000px) {
    .welcomeMessage {
        width: 90%;
        color: var(--color3);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .welcomeMessage h1 {
        font-size: 55px;
    }


    .logoTitle
    {
        transform: translateX(-250%);
    }

    nav {
        width: 100%;
        position: fixed;
        display: inline-flexbox;
        padding: 5px 5px;
        justify-content: center;
        align-items: center;
        overflow: visible;
        z-index: 1;
    }
    
    nav .openMenu{           
         padding-left: 10%;      
        
    }

    nav .closeMenu{              
        padding-top: 10px;        
        margin: auto;
        transform: translate(625%, 0%);        
    }

    .welcomeMessage h2 {
        font-size: 45px;
        padding: 2px;
    }


    .aboutUs {
         width: 95%;
        margin: auto;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 100px;
        justify-content: center;
    }

    .ourService {
        width: 95%;
        margin: auto;
        text-align: center;
        padding-top: 100px;
        justify-content: center;
        padding-bottom: 100px;
    }

    .navLinks ul li {
        display: block;
        padding: 20px;

    }

    .navLinks {
        position: fixed;
        background: var(--color2);
        height: 100vh;
        width: 250px;
        top: 0;
        right: -300px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }

    nav .fa {
        display: block;
        margin: 10px 10px 10px 10px;
        font-size: 25px;
        cursor: pointer
    }

    nav .openMenu {
        transform: translate(175%, 0%);
    }


   nav .navLinks i{
        padding-top: 5px;
        transform: translateX(630%);
    }


    .navLinks ul {
        padding: 10px;
    }


    .news .table {
         width: 95%;
        color: white;
        background-color: white;
        margin: auto;
        padding: 0;
        display: block;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        padding-left: 2px;
        padding-right: 2px;
        padding-bottom: 2px;
        padding-top: 50px;

    }

    
    .news .table .tableRow .tableRowContent {
    width: 90%;
    text-align: left;
    font-size: 20px;
}

.news .table .tableRow .tableRowContent p,
.news .table .tableRow .tableRowContent a {
    text-align: left;
    font-size: 20px;
  
}


.newsPageDiv {
    padding-top: 90px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(img/background/backgroundMergedGreen.png);
    background-position: center;
    background-size: cover;
}

.newsPage {
    width: 100%;
    margin: auto;
    justify-content: center;
    text-align: center;

}

.newsPage .table {
    width: 95%;
    color: white;
    background-color: white;
    margin: auto;
    padding: 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        padding-left: 2px;
        padding-right: 2px;
        padding-bottom: 2px;
        padding-top: 50px;
}


    .appointments .table {
       width: 95%;
        color: white;
        background-color: white;
        margin: auto;
        padding: 0;
        display: block;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        padding-left: 2px;
        padding-right: 2px;
        padding-bottom: 2px;
        padding-top: 50px;

    }


.aboutUsPageContentDiv {
    padding-top: 80px;
}


.aboutUsPageContent {
    width: 95%;
    margin: auto;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    padding-top: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background-color: white;

}


    .newsPage .table .tableRow .tableRowContent {
    width: 85%;
    text-align: left;
    font-size: 20px;
    margin: auto;
}


.newsPage .table .tableRow .tableRowContent p,
.newsPage .table .tableRow .tableRowContent a {
    text-align: left;
    font-size: 20px;
    margin: auto;
}

.aboutUsPageContent h1 {
    text-align: center;
    padding-bottom: 40px;
}

.aboutUsPageContent .aboutUsRow .aboutUsCol h1 {
    text-align: left;
}

.aboutUsRow {
    margin-top: 5%;
    display: inline-block;
    justify-content: space-between;
    text-align: left;
}

.aboutUsCol {
    flex-basis: 30%;
}

.aboutUsCol img {
    width: 100%;
}

.aboutUsCol h1 {
    padding-top: 0;
}

.aboutUsCol p {
    padding: 15px 0 25px;
}

/* Slideshow container */
.galeryDiv .slideshow-container {
    max-width: 95%;
}


.servicesContentDiv {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(img/background/backgroundMergedPink.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 50px;

}

.servicesPageContent {
    width: 95%;
    margin: auto;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    padding-top: 50px;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background-color: white;

}


.servicesCol img {
    width: 100%;
}

.servicesCol h1 {
    padding-top: 0;
    font-size: 20px;
}

.servicesCol p {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 0px;
    padding-right: 10px;
    margin-top: -25px;
    font-size: 13px;
    text-align: justify;
}

.servicesCol ul {
    padding-top: 40px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: justify;
}

.servicesCol li {
    color: var(--color3);
    font-size: 13px;
    font-weight: normal;
    text-align: left;
    margin: auto;
}


.pricesSection {
    width: 100%;
    margin: auto;
   background-color: white;
    justify-content: center;
    background-position: center;
    background-size: cover;
    text-align: center;

}

.pricesSection h1 {
    color: var(--color3);
    margin-bottom: 40px;
    padding: 0;
}

.pricesSection p {
    text-align: center;
}

.pricesSection .tablePad {
    padding-top: 10px;
    padding-bottom: 50px;

}

.pricesSection .table {
    width: 95%;
    color: white;
    background-color: white;
    margin: auto;
    padding: 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    padding-top: 50px;
}


.pricesSection .table p{
    font-size: 13px;
}


.location
{
width: 95%;    
}

.contactUs {
width: 100%;
}

.contactUsRow {
    margin-top: 5%;
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.contactUsRow .locationGalery{
   width: 100%;
   align-items: center;
   margin-left: -50px;
}




.contactUsCol div {
    width: 100%;
    display: inline;
    align-items: left;
    box-sizing: border-box;
}



.contactUsCol form {
  margin: auto;
  margin-left: -50px;
}


.contactUsCol button {
    width: 100%;
}

.contactUsCol p {
    margin: auto;
    text-align: left;
}


.contactDiv {
    width: 100%;
}

.contact {
    width: 90%;
}

.contact h1 {
    color:white;
    margin-bottom: 40px;
    font-size: 25px;
}

.contactDiv .contact .blackBtn {
    color: white;    
    font-size: 25px;
}


.footerDiv .footer{
    margin: auto;
}



.template h1 {
    font-size: 25px;
}

.template p {
    font-size: 15px;

}


.template ul {
    width: 85%;    
padding-left: 20px;
}


.template ul li {
    color: var(--color3);
    font-size: 15px;
    text-align: left;
}

.template .table {
    width: 95%;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 50px;
    padding-top: 50px;
}

}