<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --header-background-color: rgb(93, 112, 219);
  --color-primary: #0073ff;
  --color-white: #e9e9e9;
  --menu-color: #170d6d;
  --color-black-1: #212b38;
  --footer-background-color: rgb(66, 85, 196);
  --contactBoxColor: rgb(224, 218, 218);
  --main-background-color: rgb(241, 232, 232);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "eka";
  src: url("fonts/NotoSerifGeorgian-VariableFont_wdth\,wght.ttf");
}

.fa-solid,
.fa-regular {
  margin-right: 5px;
}

body {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 600px) {
  .main-title {
    font-size: 30px;
    text-align: center;
    color: #c33b8f;
    padding-top: 30px;
    padding-bottom: 20px;
  }

  /* Start of About page  */
  #about {
    padding: 0 5px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
  }

  #about img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }

  #about p {
    text-indent: 10px;
    font-size: 20px;
    padding: 10px;
  }
  /* End of About page  */

  /* Start of doctors page */
  #docs {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px 30px;
    margin: 0 auto;
    padding: 50px 30px;
    padding-top: 20px;
  }

  #docs .docimg:hover {
    cursor: pointer;
    outline: 2px solid #170d6d;
  }

  .docimg {
    background-color: antiquewhite;
    width: 250px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
  }

  .docimg img {
    width: 100%;
    height: 80%;
    display: block;
    align-items: center;
    object-fit: cover;
    object-position: top;
  }

  .name {
    max-width: 300px;
    height: 20%;
    background-color: var(--color-white);
    text-align: center;
    font-size: 17px;
    padding-top: 3px;
  }

  .name h4 {
    color: black;
  }

  .type {
    font-size: 13px;
    color: #170d6d;
  }

  .frame {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    width: 100%;
  }

  .name h4 {
    color: var(--menu-color);
  }

  .aboutdoc {
    width: 80%;
    font-size: 17px;
  }

  .aboutdoc ul {
    padding-bottom: 20px;
  }

  .aboutdoc ul li {
    padding: 5px 0;
  }

  /* End of doctors page */

  /* Start of services styles */
  #services-div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px;
    padding-top: 0;
    z-index: 0;
  }

  .services {
    height: 200px;
    width: 300px;
    background-color: #0b3e77;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .services:hover img {
    filter: blur(5px);
  }

  .services h2 {
    color: #133a69;
    font-size: 2em;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 3;
  }
  .services img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: blur(3px);
  }

  #sub-title-div {
    height: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #sub-title-left {
    height: 5px;
    width: 100%;
    background-color: rgb(231, 175, 184);
  }

  #sub-title-right {
    height: 5px;
    width: 100%;
    background-color: rgb(231, 175, 184);
  }

  #sub-title {
    text-align: center;
    line-height: 50px;
    color: #170d6d;
    font-size: 20px;
  }

  #service-description {
    width: 100%;
  }

  #service-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  #service-description-text {
    padding: 30px;
  }

  #service-description-text &gt; ul {
    padding-left: 20px;
    padding-top: 10px;
  }

  #service-description-text li {
    margin-bottom: 10px;
  }

  #service-description-text h3 {
    color: #110a4c;
    text-indent: 20px;
  }

  #labTests {
    padding-left: 10px;
    padding-top: 20px;
  }

  #labTests h3 {
    font-size: 20px;
    text-indent: 0;
  }

  #labTests h4 {
    padding-top: 10px;
    font-size: 18px;
    color: #110a4c;
  }

  #labTests ul {
    padding-left: 20px;
  }

  /* End of services styles */

  /* Start of header styles */
  .menu-bar {
    background-color: var(--menu-color);
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1%;
    position: fixed;
    top: 0;
    z-index: 5;
  }

  #logo {
    background-image: url(images//logo.jpg);
    width: 100px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #menuButton {
    height: 50px;
    width: 60px;
    margin-right: 15px;
    background-color: #271aa2;
    color: rgb(148, 197, 237);
    border: none;
    cursor: pointer;
    border-radius: 10px;
  }

  #menuButton &gt; .fa-solid {
    font-size: 30px;
    margin: 0 auto;
  }

  #headerUl {
    display: none;
    position: absolute;
    list-style: none;
    flex-direction: column;
    background-color: #110a4c;
    top: 80px;
    width: 100%;
    left: 0;
  }

  #headerUl &gt; li {
    position: relative;
    padding: 10px 30px;
    border-bottom: 2px solid rgb(12, 8, 55);
  }

  #headerUl li a {
    display: block;
    width: 100%;
    font-size: 20px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s;
  }

  #headerUl &gt; li:hover &gt; a {
    color: var(--color-primary);
  }

  .subList {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--menu-color);
  }

  /* #headerUl li:hover .subList {
    display: block;
  } */
  .subList ul {
    list-style: none;
    display: block;
    margin: 10px;
  }

  .subList ul li {
    margin: 25px;
    cursor: pointer;
  }

  .subList ul li a {
    color: var(--color-white);
  }

  .subList ul li:hover a {
    color: var(--color-primary) !important;
  }
  /* End of header styles */

  /* Start of main page styles */
  #mainScreen {
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    background-color: blueviolet;
    background-image: url(images//mainMob.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: -80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    color: rgb(248, 99, 198);
    user-select: none;
  }

  #mainScreen div {
    position: absolute;
    font-size: 70px;
    color: var(--menu-color);
    margin: 0 auto;
    top: 370px;
    font-style: italic;
    user-select: none;
  }

  #articles {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px;
    justify-content: center;
    align-items: center;
  }

  .article {
    text-decoration: none;
    width: 350px;
    height: 350px;
    background-color: #f5a9eb;
    border-radius: 15px;
    overflow: hidden;
  }
  .article:hover {
    border: 2px solid blue;
  }
  .article img {
    height: 85%;
    width: 100%;
    object-fit: cover;
  }

  .article div {
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .article h3 {
    text-align: center;
    color: var(--menu-color);
  }

  /* End of main page styles */

  /* Start of articles styles */
  .articleDiv {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .articleDiv h1 {
    text-align: center;
    padding-top: 20px;
  }

  .articleDiv p {
    text-indent: 10px;
    margin: 20px;
    font-size: 17px;
  }

  .articleDiv ul {
    padding-top: 15px;
    padding-left: 40px;
    font-size: 17px;
  }

  .articleDiv li {
    padding-bottom: 10px;
  }

  .articleDiv div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
  }

  .articleDiv section {
    position: relative;
  }

  .articleDiv img {
    width: 80%;
    height: 300px;
    object-fit: cover;
    position: relative;
  }
  /* End of articles styles */

  /* Start of contact styles */
  .contacts {
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 50px;
  }
  .contacts a {
    text-decoration: none;
    color: rgb(47, 90, 125);
    transition: all 0.3s;
  }
  .contacts .contactBox:hover a {
    color: rgb(104, 139, 168);
  }

  .contactBox {
    width: 250px;
    height: 150px;
    background-color: var(--contactBoxColor);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 10px;
  }

  .contactBox i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 100px;
    background-color: var(--contactBoxColor);
    font-size: 30px;
    border: 1px solid rgb(104, 104, 221);
    color: rgb(104, 104, 221);
  }
  .contacts h1 {
    text-align: center;
    margin: 20px 20px;
    font-size: 20px;
  }

  #contactMap {
    width: 100%;
    height: 400px;
  }

  /* End of contact styles */

  /* Start of footer styles */

  footer {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 400px;
    background-color: #170d6d;
  }

  .map {
    width: 100%;
    height: 200px;
  }

  .footerContacts {
    width: 100%;
    height: 200px;
  }

  .footerContacts a {
    text-decoration: none;
    color: aliceblue;
    transition: all 0.3s;
  }

  .footerContacts h1 {
    margin: 20px 20px;
    font-size: 20px;
    font-size: 15px;
  }
  .fa-solid,
  .fa-facebook {
    font-size: 20px;
    margin-right: 10px;
  }

  footer .fa-mobile {
    margin-left: 25px;
  }

  .footerContacts a:hover {
    color: var(--color-primary);
  }

  footer hr {
    display: none;
    background-color: rgb(134, 137, 141);
    width: 80%;
    height: 4px;
    border-radius: 2px;
    box-shadow: 2px 0px 5px #d9dde2;
  }

  /* End of footer styles */

  /* Start of gallery  page styles */
  .main-section {
    background-color: var(--main-background-color);
    margin-top: 80px;
  }

  .gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 5px;
  }

  .galleryImage {
    width: 100%;
    max-width: 150px;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.1s;
    object-position: top;
  }

  .galleryImage:hover {
    border: 3px solid rgb(240, 170, 181);
  }

  .zoomed {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    transition: all 0.3s ease-in-out;
    background-color: rgba(164, 182, 221, 0.8);
  }

  .imageZoomed {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #closeImage {
    position: absolute;
    right: 0;
    margin-right: 20px;
    margin-top: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
  }

  #closeImage i {
    font-size: 40px;
    color: rgb(20, 15, 73);
    background-color: #57556c;
    border-radius: 80%;
  }

  #leftB,
  #rightB {
    position: absolute;
    top: 30vh;
    width: 45px;
    height: 25vh;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    background-color: transparent;
    color: #61a6f5;
  }

  #leftB:hover,
  #rightB:hover {
    background-color: #6ba8ee;
    color: rgb(20, 15, 73);
  }

  #leftB {
    left: 40px;
  }

  #rightB {
    right: 40px;
  }

  #leftB i,
  #rightB i {
    font-size: 50px;
  }

  /* End of gallery page styles */
}

@media only screen and (min-width: 600px) {
  .main-title {
    font-size: 30px;
    text-align: center;
    color: #0a468b;
    padding-top: 30px;
    padding-bottom: 20px;
  }

  /* Start of About page  */
  #about {
    padding: 0 50px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row-reverse;
  }

  #about img {
    height: 300px;
    width: 500px;
    object-fit: cover;
  }

  #about p {
    text-indent: 10px;
    font-size: 20px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  /* End of About page  */

  /* Start of doctors page */
  #docs {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px 30px;
    margin: 0 auto;
    padding: 50px 60px;
  }

  #docs .docimg:hover {
    cursor: pointer;
    outline: 2px solid #170d6d;
  }

  .docimg {
    background-color: antiquewhite;
    min-width: 300px;
    height: 370px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
  }

  .docimg img {
    min-width: 300px;
    height: 300px;
    display: block;
    align-items: center;
    object-fit: cover;
    object-position: top;
  }

  .name {
    max-width: 300px;
    height: 70px;
    background-color: var(--color-white);
    text-align: center;
    font-size: 17px;
    padding-top: 8px;
  }
  .type {
    font-size: 13px;
    color: #170d6d;
  }

  .frame {
    padding-top: 30px;
    padding-bottom: 30px;
    display: inline-flex;
    gap: 50px;
    width: 90%;
    margin-left: 50px;
    margin-right: 50px;
  }
  .name h4 {
    color: var(--menu-color);
  }

  .aboutdoc {
    font-size: 20px;
  }

  .aboutdoc ul {
    padding-bottom: 20px;
  }

  .aboutdoc ul li {
    padding: 5px 0;
  }

  /* End of doctors page */

  /* Start of services styles */
  #services-div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px;
    z-index: 0;
  }

  .services {
    height: 300px;
    width: 400px;
    background-color: #0b3e77;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .services:hover img {
    filter: blur(5px);
  }

  .services h2 {
    color: #133a69;
    font-size: 2em;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 3;
  }
  .services img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: blur(1px);
  }

  #sub-title-div {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 0;
  }

  #sub-title-left {
    height: 20%;
    width: 20%;
    background-color: rgb(231, 175, 184);
    border-radius: 30px;
  }

  #sub-title-right {
    height: 20%;
    width: 60%;
    background-color: rgb(231, 175, 184);
    border-radius: 30px;
  }

  #sub-title {
    width: 20%;
    text-align: center;
    line-height: 50px;
    color: #170d6d;
    font-size: 2.5vw;
  }

  #service-description {
    width: 100%;
  }

  #service-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  #service-description-text {
    padding: 30px;
  }

  #service-description-text h4 {
    font-size: 17px;
  }

  #service-description-text &gt; ul {
    padding-left: 30px;
    padding-top: 10px;
  }

  #service-description-text li {
    margin-bottom: 10px;
    font-size: 20px;
  }

  #service-description-text h3 {
    font-size: 22px;
    color: #110a4c;
    text-indent: 20px;
  }

  #services-gynecology-h4-red {
    color: red;
  }

  #labTests {
    padding-left: 40px;
    padding-top: 20px;
  }

  #labTests h3 {
    font-size: 20px;
    text-indent: 0;
  }

  #labTests h4 {
    padding-top: 10px;
    font-size: 18px;
    color: #110a4c;
  }

  #labTests ul {
    padding-left: 20px;
  }

  /* End of services styles */

  /* Start of header styles */
  .menu-bar {
    background-color: var(--menu-color);
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1%;
    position: fixed;
    top: 0;
    z-index: 5;
  }

  #logo {
    background-image: url(images//logo.jpg);
    width: 100px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #menuButton {
    display: none;
  }

  #headerUl {
    display: flex;
    list-style: none;
  }

  #headerUl &gt; li {
    position: relative;
    padding: 10px 30px;
  }

  #headerUl li a {
    font-size: 20px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s;
  }

  #headerUl &gt; li:hover &gt; a {
    color: var(--color-primary);
  }

  .subList {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--menu-color);
  }

  #headerUl li:hover .subList {
    display: block;
  }
  .subList ul {
    list-style: none;
    display: block;
    margin: 10px;
  }

  .subList ul li {
    margin: 25px;
    cursor: pointer;
  }

  .subList ul li a {
    color: var(--color-white);
  }

  .subList ul li:hover a {
    color: var(--color-primary) !important;
  }
  /* End of header styles */

  /* Start of main page styles */
  #mainScreen {
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    background-color: blueviolet;
    background-image: url(images//mainWide.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: -80px;
  }

  #mainScreen div {
    position: absolute;
    font-size: 100px;
    color: var(--menu-color);
    right: 60px;
    top: 270px;
    font-style: italic;
    user-select: none;
  }

  #articles {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px;
    justify-content: center;
    align-items: center;
  }

  .article {
    text-decoration: none;
    width: 350px;
    height: 350px;
    background-color: #f5a9eb;
    border-radius: 15px;
    overflow: hidden;
  }
  .article:hover {
    border: 2px solid blue;
  }
  .article img {
    height: 85%;
    width: 100%;
    object-fit: cover;
  }

  .article h3 {
    line-height: 50px;
    text-align: center;
  }

  /* End of main page styles */

  /* Start of articles styles */
  .articleDiv {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .articleDiv h1 {
    text-align: center;
    padding-top: 20px;
  }

  .articleDiv p {
    text-indent: 10px;
    margin: 20px;
    font-size: 20px;
  }

  .articleDiv ul {
    padding-left: 40px;
    font-size: 20px;
  }

  .articleDiv li {
    padding-bottom: 10px;
  }

  .articleDiv div {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    padding: 20px 0;
  }

  .articleDiv section {
    position: relative;
  }

  .articleDiv img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    position: relative;
  }
  /* End of articles styles */

  /* Start of contact styles */
  .contacts {
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 50px;
  }
  .contacts a {
    text-decoration: none;
    color: rgb(47, 90, 125);
    transition: all 0.3s;
  }
  .contacts .contactBox:hover a {
    color: rgb(104, 139, 168);
  }

  .contactBox {
    width: 250px;
    height: 150px;
    background-color: var(--contactBoxColor);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 10px;
  }

  .contactBox i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 100px;
    background-color: var(--contactBoxColor);
    font-size: 30px;
    border: 1px solid rgb(104, 104, 221);
    color: rgb(104, 104, 221);
  }
  .contacts h1 {
    text-align: center;
    margin: 20px 20px;
    font-size: 20px;
  }

  #contactMap {
    width: 100%;
    height: 400px;
  }

  /* End of contact styles */

  /* Start of footer styles */

  footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 300px;
    background-color: #170d6d;
  }

  .map {
    width: 500px;
    height: 280px;
    border-radius: 10px;
  }

  .footerContacts {
    width: 600px;
    height: 80%;
  }

  .footerContacts a {
    text-decoration: none;
    color: aliceblue;
    transition: all 0.3s;
  }

  .footerContacts h1 {
    margin: 20px 20px;
    font-size: 20px;
    font-size: 15px;
  }
  .fa-solid,
  .fa-facebook {
    font-size: 20px;
    margin-right: 10px;
  }

  footer .fa-mobile {
    margin-left: 25px;
  }

  .footerContacts a:hover {
    color: var(--color-primary);
  }

  hr {
    background-color: rgb(134, 137, 141);
    width: 80%;
    height: 4px;
    border-radius: 2px;
    box-shadow: 2px 0px 5px #d9dde2;
  }

  /* End of footer styles */

  /* Start of gallery  page styles */
  .main-section {
    background-color: var(--main-background-color);
    margin-top: 80px;
  }

  .gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 10px;
  }

  .galleryImage {
    width: 100%;
    max-width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.1s;
    object-position: top;
  }

  .galleryImage:hover {
    border: 3px solid rgb(240, 170, 181);
  }

  .zoomed {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    transition: all 0.3s ease-in-out;
    background-color: rgba(164, 182, 221, 0.8);
  }

  .imageZoomed {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #closeImage {
    position: absolute;
    right: 0;
    margin-right: 20px;
    margin-top: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
  }

  #closeImage i {
    font-size: 40px;
    color: rgb(20, 15, 73);
    background-color: #57556c;
    border-radius: 80%;
  }

  #leftB,
  #rightB {
    position: absolute;
    top: 30vh;
    width: 45px;
    height: 25vh;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    background-color: transparent;
    color: #61a6f5;
  }

  #leftB:hover,
  #rightB:hover {
    background-color: #6ba8ee;
    color: rgb(20, 15, 73);
  }

  #leftB {
    left: 40px;
  }

  #rightB {
    right: 40px;
  }

  #leftB i,
  #rightB i {
    font-size: 50px;
  }

  /* End of gallery page styles */
}
</pre></body></html>