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

body {
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  background: #fff;
  margin: auto; }

a {
  text-decoration: none;
  color: #333; }

ul {
  list-style: none; }

.navContainer {
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  width: 100%;
  margin: auto;
  transition: top 0.3s; }
  .navContainer a img {
    width: 175px;
    padding-right: 1rem; }
  .navContainer .navMenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }
    .navContainer .navMenu label {
      color: rgba(6, 93, 173, 0.7);
      font-size: 1.5rem;
      transition: opacity 0.4s ease-in-out; }
      .navContainer .navMenu label.hide {
        opacity: 0; }

.slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw; }
  .slider :first-child > div {
    color: #0864b2; }

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out; }

.slide.current {
  opacity: 1; }

.slide .content {
  position: absolute;
  top: 120px;
  right: -300px;
  opacity: 0;
  width: 600px;
  color: #fff;
  padding: 35px;
  text-align: right; }
  .slide .content p {
    font-size: 20px; }
  .slide .content h1 {
    margin-bottom: 10px;
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 3.4px; }

.slide.current .content {
  opacity: 1;
  transform: translateX(-300px);
  transition: all 0.7s ease-in-out 0.3s; }

.buttons {
  position: absolute;
  bottom: 0%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.5rem;
  width: 100%;
  height: 100px;
  margin: auto;
  overflow: hidden; }

.buttons button {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 18px 20px;
  margin: auto 7px;
  border-radius: 50%;
  outline: none; }
  .buttons button i {
    font-size: 1.3rem; }

.buttons button:hover {
  background-color: #fff;
  color: rgba(6, 93, 173, 0.7); }

/* Backgorund Images */
.slide:first-child {
  background: url("../img/showcase/person-holding-laboratory-flask.jpg") no-repeat center center/cover; }

.slide:nth-child(2) {
  background: url("../img/showcase/cargoship.jpg") no-repeat center center/cover; }

.slide:nth-child(3) {
  background: url("../img/showcase/experience.jpeg") no-repeat center center/cover; }

.slide:nth-child(4) {
  background: url("../img/showcase/chemistry2.jpg") no-repeat center center/cover; }

.slide:nth-child(5) {
  background: url("https://source.unsplash.com/ULmaQh9Gvbg/1600x900") no-repeat center top/cover; }

.slide:nth-child(6) {
  background: url("https://source.unsplash.com/ggZuL3BTSJU/1600x900") no-repeat center center/cover; }

.sections {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  grid-gap: 1rem;
  max-width: 1280px;
  padding: 0 1.5rem;
  margin: 3rem auto;
  overflow: hidden; }
  .sections .section {
    height: auto;
    overflow: hidden;
    display: block;
    position: relative;
    box-shadow: 0 5px 10px 0 rgba(6, 93, 173, 0.3);
    opacity: 0;
    transform: translate3d(0, 50%, 0); }
    .sections .section.in-view:nth-child(odd) {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      transition: all 500ms ease-in; }
    .sections .section.in-view:nth-child(even) {
      opacity: 1;
      transform: translateY(0);
      transition: all 500ms ease-in 100ms; }
    .sections .section .content {
      width: 100%;
      position: absolute;
      top: 50%;
      text-align: center;
      z-index: 1;
      color: #fff;
      padding: 4rem;
      opacity: 0;
      transform: translateY(-400%);
      transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1), transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
      transition-delay: 200ms; }
      .sections .section .content a {
        color: #fff; }
      .sections .section .content h2 {
        margin: 1rem; }
    .sections .section::after {
      content: "";
      position: absolute;
      display: block;
      background: rgba(6, 93, 173, 0.9);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: scale(2) translateX(-75%) translateY(-75%) rotate(-28deg);
      transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1); }
    .sections .section:hover:after {
      transform: scale(2) translateX(0) translateY(0) rotate(-28deg); }
    .sections .section:hover .content {
      opacity: 1;
      transform: translateY(-45%);
      transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1), transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
      transition-delay: 300ms; }
    .sections .section:hover .summary {
      transform: scale(0); }
    .sections .section:hover img {
      transform: scale(1.5); }
    .sections .section img {
      width: 100%;
      height: auto;
      transform: scale(1.3);
      transition: transform 500ms cubic-bezier(0.2, 1, 0.3, 1); }
    .sections .section .summary {
      position: absolute;
      bottom: 10%;
      left: 0;
      background: rgba(6, 93, 173, 0.5);
      width: 100%;
      padding: 1rem;
      color: #fff;
      transition: transform 400ms cubic-bezier(0.2, 1, 0.3, 1); }
      .sections .section .summary a {
        color: #fff; }
        .sections .section .summary a i {
          color: #5ed5b6; }

section .showcase {
  height: 600px;
  overflow: hidden;
  position: relative; }
  section .showcase::after {
    content: "";
    position: absolute;
    display: block;
    background: #000;
    opacity: 0.4;
    top: 0;
    left: 0;
    width: 100%;
    height: inherit; }
  section .showcase .showcase-text {
    display: block;
    width: 100%;
    position: absolute;
    top: 10vh;
    left: 0;
    text-align: center;
    color: #fff;
    z-index: 1;
    padding: 4rem;
    height: 100%; }
    section .showcase .showcase-text h1 {
      font-size: 45px; }
    section .showcase .showcase-text p {
      font-size: 25px; }
  section .showcase img {
    position: relative;
    width: 100%;
    bottom: 10%;
    left: -5%;
    transform: scale(1.5); }

.company-lead {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  justify-content: center;
  align-items: center;
  margin: 3rem auto; }
  .company-lead .vision img {
    padding: 2rem; }
  .company-lead .mission img {
    padding: 2rem; }
  .company-lead .vismis {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 500px;
    margin-bottom: 1rem; }
    .company-lead .vismis-text, .company-lead .vismis-img {
      flex: 1 1 50%; }
    .company-lead .vismis-text h1 {
      font-size: 2rem;
      margin: 0.3rem auto 1rem auto;
      color: #065dad; }
    .company-lead .vismis-text li {
      font-size: 0.8rem;
      padding: 10px 0;
      align-items: center;
      display: flex;
      transition: all 300ms ease-in; }
      .company-lead .vismis-text li:hover {
        font-size: 0.83rem;
        animation: moveupdown 1300ms infinite;
        transition: all 300ms ease-in; }
      .company-lead .vismis-text li i {
        color: #065dad;
        font-size: 1.5rem;
        margin-right: 1rem;
        vertical-align: sub; }
    .company-lead .vismis-img img {
      width: 100%;
      height: auto;
      border-radius: 50%;
      opacity: 0.85; }

.about {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 960px;
  margin: 3rem auto; }
  .about .about-text {
    flex: 1; }
    .about .about-text .about-lead {
      margin-bottom: 3rem; }
      .about .about-text .about-lead h1 {
        font-size: 2rem;
        margin: 0.3rem auto;
        color: #065dad; }
      .about .about-text .about-lead small {
        color: #065dad;
        font-weight: bold; }
      .about .about-text .about-lead p {
        font-size: 0.8rem;
        line-height: 1.3rem; }
    .about .about-text .about-detail {
      display: flex;
      flex-wrap: wrap; }
      .about .about-text .about-detail .item {
        flex-grow: 1;
        width: 50%;
        margin-bottom: 4rem;
        padding-right: 10px;
        transition: all 300ms ease-in; }
        .about .about-text .about-detail .item .lead {
          color: #065dad;
          font-size: 1.3rem;
          padding-bottom: 1rem;
          font-weight: 500; }
          .about .about-text .about-detail .item .lead i {
            margin-right: 0.5rem;
            font-size: 2rem;
            font-weight: 500; }
        .about .about-text .about-detail .item .item-text {
          font-size: 0.8rem;
          line-height: 1.2rem; }
      .about .about-text .about-detail .item:hover {
        animation: moveupdown 1300ms infinite;
        transition: all 300ms ease-in; }
  .about .about-image {
    flex: 1; }
    .about .about-image img {
      border-radius: 50%;
      width: 100%;
      height: 500px; }

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

.product {
  max-width: 960px;
  margin: 1rem auto; }
  .product .line {
    width: calc(100vw);
    margin: auto;
    height: 1px;
    background-color: #065dad;
    opacity: 0.5; }
  .product .product-lead h1 {
    font-size: 2rem;
    margin: 0.3rem auto;
    color: #065dad; }
  .product .product-lead p {
    font-size: 1.3rem;
    width: 80%; }
    .product .product-lead p small {
      padding-bottom: 3px;
      border-bottom: 1px #065dad solid;
      color: #065dad; }
  .product .product-list {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    overflow: hidden;
    width: 100%;
    margin: auto; }
    .product .product-list .product-item {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 960px;
      margin: 1rem auto; }
    .product .product-list ul {
      color: #065dad;
      font-size: 1.8rem;
      list-style: armenian;
      flex: 1 1 50%;
      width: 50%; }
      .product .product-list ul button {
        font-size: 1.3rem;
        font-family: "Playfair Display", serif;
        cursor: pointer;
        background: none;
        border: none;
        outline: none;
        transition: all 200ms ease-in;
        position: relative; }
        .product .product-list ul button span.toolTip {
          visibility: hidden;
          position: absolute;
          border-radius: 10px;
          padding: 8px 5px;
          background: #065dad;
          color: #fff;
          font-size: 0.8rem;
          top: -10px;
          right: -80px;
          opacity: 0;
          transform: scaleX(0);
          transform-origin: 0% 50%;
          transition: all 100ms ease-in; }
          .product .product-list ul button span.toolTip::after {
            content: " ";
            position: absolute;
            top: 60%;
            right: 100%;
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent #065dad transparent transparent; }
        .product .product-list ul button:hover {
          font-size: 1.5rem;
          color: #065dad;
          transition: all 300ms ease-out; }
          .product .product-list ul button:hover span {
            visibility: visible;
            opacity: 1;
            transform: scaleX(1);
            transition: all 200ms ease-out; }
      .product .product-list ul li:first-child {
        margin-top: 20px; }
      .product .product-list ul ul {
        font-size: 1.3rem;
        margin-top: 10px;
        padding-left: 15px; }
      .product .product-list ul li {
        margin-top: 10px;
        font-size: 1.3rem;
        color: #000;
        padding-left: 15px;
        list-style-type: none;
        position: relative; }
        .product .product-list ul li:hover {
          cursor: pointer;
          transition: all 500ms linear; }
      .product .product-list ul i {
        color: #0864b2; }
      .product .product-list ul > li > ul > li {
        padding-left: 40px; }
    .product .product-list img {
      flex: 1 1 50%;
      width: 50%;
      border-radius: 50%;
      height: 500px;
      position: relative; }
      .product .product-list img :after {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: black;
        opacity: 0.7rem;
        z-index: 1; }

.clients {
  max-width: 480px;
  margin: 3rem auto; }
  .clients-lead {
    margin-bottom: 3rem;
    text-align: center; }
    .clients-lead > div {
      border: 1px solid rgba(6, 93, 173, 0.5);
      margin: auto; }
    .clients-lead h1 {
      font-size: 2rem;
      margin: 0.3rem auto;
      color: #065dad; }
  .clients .clients-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; }
    .clients .clients-list .client {
      height: 100%;
      margin: 2rem 0;
      flex: 1 1 0;
      padding: 2rem;
      transition: all 500ms ease-in-out; }
      .clients .clients-list .client:last-child {
        border-right: none; }
      .clients .clients-list .client:hover {
        transform: perspective(1px) translateZ(-0.3px);
        transition: all 500ms ease-in-out; }
      .clients .clients-list .client img {
        width: 100%; }

footer {
  background: #212121;
  opacity: 0;
  transform: translateY(50%);
  color: #fff;
  font-size: 12px;
  transition: all 500ms ease-out; }
  footer.in-view {
    opacity: 1;
    transform: translateY(0);
    transition: all 500ms ease-in; }
  footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 960px;
    margin: auto;
    padding-left: 1rem; }
    footer .container div {
      flex: 1 1 0; }
      footer .container div a {
        color: #fff; }
      footer .container div img {
        width: 100%;
        transform: scale(0.5);
        transition: all 200ms ease-in; }
        footer .container div img:hover {
          transform: scale(0.6);
          transition: all 200ms ease-in; }
    footer .container .left {
      font-size: smaller; }
    footer .container .right {
      text-align: center; }
      footer .container .right .social {
        display: flex;
        justify-content: center;
        align-self: center; }
        footer .container .right .social li {
          padding: 0.5rem;
          font-size: 1rem; }
          footer .container .right .social li:hover {
            transform: scale(1.5);
            transition: all 200ms ease-in; }

.contact {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 15px;
  display: flex; }
  .contact .form-container {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    width: 50%;
    gap: 1rem;
    margin-right: 1rem; }
    .contact .form-container label {
      font-size: 13px;
      line-height: 23px;
      margin-bottom: 0.5rem;
      display: inline-block; }
    .contact .form-container input,
    .contact .form-container textarea,
    .contact .form-container button {
      display: block;
      width: 100%; }
    .contact .form-container input,
    .contact .form-container textarea {
      border: 1px solid #ced4da;
      color: #495057;
      padding: 0.375rem 0.75rem;
      font-size: 1rem;
      line-height: 1.5;
      resize: none; }
      .contact .form-container input::placeholder,
      .contact .form-container textarea::placeholder {
        font-size: 0.6rem;
        color: #868e96;
        margin: auto; }
    .contact .form-container #loadFile {
      width: 150px;
      border-radius: 15px;
      font-family: "Playfair Display";
      font-size: 13px; }
    .contact .form-container .form-item-left {
      grid-column: 1;
      width: 100%; }
    .contact .form-container .form-item-right {
      grid-column: 2; }
    .contact .form-container .form-item-full {
      grid-column: 1 / span 2; }
      .contact .form-container .form-item-full textarea {
        height: 150px; }
      .contact .form-container .form-item-full button {
        background: #0864b2;
        color: #fff;
        padding: 15px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 0.8rem; }
        .contact .form-container .form-item-full button:hover {
          cursor: pointer; }
      .contact .form-container .form-item-full label {
        display: block; }
      .contact .form-container .form-item-full input[name="upload"] {
        display: inline; }
      .contact .form-container .form-item-full p {
        margin-left: 1rem; }
  .contact-info {
    flex: 1 1 50%;
    font-size: 1rem; }
    .contact-info .map {
      margin-top: 20px;
      height: 45%; }
      .contact-info .map iframe {
        height: fit-content;
        width: 100%;
        height: 80%; }
    .contact-info p,
    .contact-info span {
      display: block;
      font-size: 13px; }
    .contact-info i {
      color: #0864b2; }
    .contact-info h6 {
      margin-top: 20px;
      margin-bottom: 10px;
      font-size: 1rem;
      line-height: 1.5; }

@media (max-width: 500px) {
  .navContainer {
    position: fixed;
    top: 0;
    align-items: center;
    background-color: #fff; }
    .navContainer a img {
      width: 110px;
      padding-right: 10px; }
  .slide .content {
    top: 30vh;
    width: 80vw;
    padding-right: 20px;
    background: rgba(255, 255, 255, 0.7);
    color: #0864b2;
    border-radius: 50% 0 0 50%; }
    .slide .content p {
      font-size: 1.3rem;
      padding-left: 20px; }
    .slide .content h1 {
      padding-left: 30px;
      margin-bottom: 10px;
      font-size: 2rem;
      line-height: normal;
      letter-spacing: normal; }
  .sections {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0; }
    .sections .section {
      border-radius: 0; }
      .sections .section:first-child {
        margin-bottom: 2rem; }
      .sections .section .content a {
        color: #fff; }
        .sections .section .content a h2 {
          margin: -1rem auto 1rem auto;
          font-size: 1rem; }
        .sections .section .content a p {
          font-size: 0.8rem; }
      .sections .section .summary h2 {
        font-size: 1.3rem; }
      .sections .section .summary a {
        font-size: 0.8rem;
        color: #fff; }
        .sections .section .summary a i {
          color: #5ed5b6; }
  .clients > div {
    width: 80vw;
    margin: auto; }
  .clients .clients-list {
    flex-direction: column;
    text-align: center; }
    .clients .clients-list .reference img {
      width: 50%; }
  .company-lead {
    margin: 1rem 0; }
    .company-lead .vismis {
      height: auto;
      flex-direction: column; }
      .company-lead .vismis li {
        padding: 5px;
        align-items: end; }
      .company-lead .vismis-text {
        margin: 2rem 3rem; }
      .company-lead .vismis-img {
        margin: 0; }
        .company-lead .vismis-img img {
          border-radius: 0;
          height: 300px;
          padding: 0;
          margin: auto;
          opacity: 1; }
    .company-lead .mission {
      flex-direction: column-reverse; }
  section .about {
    margin: -1rem 3rem -5rem 3rem;
    flex-direction: column; }
    section .about-image {
      display: none; }
    section .about .about-detail {
      flex-direction: column; }
      section .about .about-detail .item {
        width: 100% !important; }
  section .showcase {
    height: 40vh;
    overflow: hidden;
    position: relative; }
    section .showcase::after {
      display: none; }
    section .showcase .showcase-text {
      background: rgba(0, 0, 0, 0.7);
      padding-top: 150px;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0; }
      section .showcase .showcase-text h1 {
        font-size: 1.4rem; }
      section .showcase .showcase-text p {
        font-size: 1rem; }
    section .showcase img {
      position: absolute;
      width: 600px;
      top: 120px;
      left: -35%; }
  section .product {
    margin: 3rem; }
    section .product .line {
      width: calc(80vw); }
    section .product .product-lead {
      margin-bottom: 0; }
      section .product .product-lead h1 {
        font-size: 2rem;
        margin: 0.3rem auto; }
      section .product .product-lead p {
        font-size: 0.8rem;
        width: 100%; }
    section .product .product-list .product-item {
      width: 100%;
      margin: 0 auto;
      flex-direction: column; }
    section .product .product-list ul {
      font-size: 1.3rem;
      flex: none;
      width: 100%; }
      section .product .product-list ul ul {
        font-size: 1.1rem; }
      section .product .product-list ul li {
        font-size: 1.1rem; }
        section .product .product-list ul li button {
          font-size: 1.3rem;
          font-family: "Playfair Display", serif;
          cursor: pointer;
          background: none;
          border: none;
          outline: none; }
        section .product .product-list ul li:hover {
          cursor: pointer; }
      section .product .product-list ul i {
        color: #0864b2;
        padding-right: 1rem; }
    section .product .product-list img {
      width: 100%;
      height: auto;
      margin-bottom: 1rem;
      margin-top: -1rem; }
  .contact {
    flex-direction: column; }
    .contact .form-container {
      display: flex;
      flex-direction: column;
      width: 100%; }
      .contact .form-container textarea {
        margin-bottom: 10px; }
    .contact .contact-info p {
      display: none; }
    .contact .contact-info .map {
      height: 40vh;
      margin-bottom: -4rem; }
  footer {
    background: #212121;
    opacity: 0;
    transform: translateY(50%);
    color: #fff;
    font-size: 12px;
    transition: all 500ms ease-out; }
    footer.in-view {
      opacity: 1;
      transform: translateY(0);
      transition: all 500ms ease-in; }
    footer .container {
      flex-direction: column-reverse;
      margin: auto;
      padding: 1rem;
      text-align: center; }
      footer .container div {
        height: 33%; }
        footer .container div a {
          color: #fff; }
        footer .container div img {
          width: 100%;
          transform: scale(1); }
      footer .container .middle {
        transform: scale(0.7); }
      footer .container .left {
        font-size: smaller;
        width: 200px; }
      footer .container .right {
        text-align: center; }
        footer .container .right .social {
          display: flex;
          justify-content: center;
          align-self: center; }
          footer .container .right .social li {
            padding: 0.5rem;
            font-size: 2rem; }
            footer .container .right .social li:hover {
              transform: scale(1.5);
              transition: all 200ms ease-in; }
  .modal .modal-content h1 {
    color: #0864b2;
    letter-spacing: 1px;
    font-size: 1.3rem; }
    .modal .modal-content h1 i {
      display: none; }
  .modal .modal-content ul li {
    padding: 5px 0;
    font-size: 0.8rem;
    display: flex; }
  .modal .modal-content ul i {
    color: #0864b2;
    font-size: 1.5rem;
    vertical-align: sub;
    margin-right: 10px; }
  .modal .modal-content h2 {
    color: #0864b2;
    font-size: 1.1rem;
    margin-bottom: 1rem; }
  .modal .modal-content p {
    font-size: 0.8rem; } }

@media (min-width: 501px) and (max-width: 770px) {
  section .showcase {
    height: 400px; }
  section .product {
    max-width: 100%; }
    section .product .product-lead {
      width: 90%;
      margin: auto; }
    section .product .product-list .product-item {
      width: 90%; }
      section .product .product-list .product-item img {
        height: 350px; }
  section .company-lead {
    width: 90%; }
  section .about {
    width: 90%; }
    section .about .about-image img {
      height: 350px; } }

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 3;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /* Modal Content/Box */ }
  .modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
    /* The Close Button */ }
    .modal .modal-content h1 {
      color: #0864b2;
      letter-spacing: 1px; }
    .modal .modal-content ul li {
      padding: 5px 0; }
    .modal .modal-content ul i {
      color: #0864b2; }
    .modal .modal-content h2 {
      color: #0864b2;
      font-size: 1.1rem;
      margin-bottom: 1rem; }
    .modal .modal-content .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold; }
    .modal .modal-content .close:hover,
    .modal .modal-content .close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer; }

.loader {
  display: block;
  margin: auto !important;
  border: 8px solid #f3f3f3;
  /* Light grey */
  border-top: 8px solid #0864b2;
  /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0;
  animation: spin 2s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
