/*------------- Google Fonts ------------------------*/
/*------------- Custom Fonts - Typography ------------*/
/*------------- Variables ----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
/*------------- Mixins -------------------------------*/
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth; }

html,
body,
body div,
span,
a,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  display: block; }

/*------------- Base Styles --------------------------*/
body {
  color: #373737;
  font-family: "Open Sans", "Lucida Sans Pro", "Lucida Sans", san-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.7; }

h1,
h2,
h3,
h4 {
  font-family: "Open Sans", "Lucida Sans Pro", "Lucida Sans", san-serif; }

h1 {
  font-size: 2.5rem; }

h2 {
  font-size: 1.9rem; }

h3 {
  font-size: 1.75rem; }

h4 {
  font-size: 1.125rem; }

img, video {
  height: auto;
  max-width: 100%;
  width: 100%; }

.clearFix {
  margin: 3rem; }

.hr_divider {
  border: 0;
  border-top: 1px solid rgba(101, 101, 101, 0.15);
  display: block;
  height: 1px;
  margin: .65rem 0;
  width: 100%; }

/*****************************************/
/*********** Responsive/Adaptive Design Styling Area **************/
.rows {
  display: flex;
  flex-wrap: wrap; }

.row::after {
  clear: both;
  content: '';
  display: table; }

.rows-container {
  margin: 0 auto;
  padding: 15px;
  width: 85%; }

.rows-fluid {
  margin: 0 auto;
  padding: 0;
  width: 100%; }

[class*="cols-"] {
  float: left;
  padding: 15px;
  width: 100%; }

[class*="no-cols-"] {
  float: left;
  padding: 0;
  width: 100%; }

.cols-1,
.no-cols-1 {
  width: 8.33%; }

.cols-2,
.no-cols-2 {
  width: 16.66%; }

.cols-3,
.no-cols-3 {
  width: 25%; }

.cols-4,
.no-cols-4 {
  width: 33.33%; }

.cols-5,
.no-cols-5 {
  width: 41.66%; }

.cols-6,
.no-cols-6 {
  width: 50%; }

.cols-7,
.no-cols-7 {
  width: 58.33%; }

.cols-8,
.no-cols-8 {
  width: 66.66%; }

.cols-9,
.no-cols-9 {
  width: 75%; }

.cols-10,
.no-cols-10 {
  width: 83.33%; }

.cols-11,
.no-cols-11 {
  width: 91.66%; }

.cols-12,
.no-cols-12 {
  width: 100%; }

/*****************************************/
.message-success {
  background: #d7efd5;
  color: #3c9035;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  text-align: center;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem; }

.message-error {
  background: #ffcccc;
  color: #cc0000;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  text-align: center;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem; }

:-moz-placeholder {
  color: #ffffff;
  font-size: .85rem;
  opacity: .5;
  overflow: visible; }

::-moz-placeholder {
  color: #ffffff;
  font-size: .85rem;
  opacity: .5;
  overflow: visible; }

:-ms-input-placeholder {
  color: #ffffff;
  font-size: .85rem;
  opacity: .5;
  overflow: visible; }

::-webkit-input-placeholder {
  color: #ffffff;
  font-size: .85rem;
  opacity: .5;
  overflow: visible; }

::placeholder {
  color: #ffffff;
  font-size: .85rem;
  opacity: .5;
  overflow: visible; }

.form-group {
  position: relative; }

.form-group:not(:last-child) {
  margin-bottom: 2rem; }

label {
  color: #ffffff;
  display: block;
  font-size: 1rem;
  margin-bottom: .15rem; }
  label span {
    color: #e93f00;
    display: inline-block;
    margin-left: .15rem; }

input[type="text"],
input[type="password"],
input[type="email"],
select {
  background: #656565;
  color: rgba(101, 101, 101, 0.7);
  font-size: .9rem;
  height: 2rem;
  padding: .5rem;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 2px solid #ffffff; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  select:focus {
    border-bottom: 3px solid #727272;
    outline: 0; }

textarea {
  background: #656565;
  color: rgba(55, 55, 55, 0.7);
  font-size: .9rem;
  height: 7rem;
  padding: .5rem;
  resize: none;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 2px solid #ffffff; }
  textarea:focus {
    border-bottom: 3px solid #727272;
    outline: 0; }

.description {
  height: 5rem; }

input[type="submit"] {
  border: none;
  color: #656565;
  cursor: pointer;
  font-size: .7rem;
  letter-spacing: .035rem;
  padding: 1.15rem;
  text-transform: uppercase;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  input[type="submit"]:hover {
    background: #373737;
    color: #ffffff; }

/* ---------------- Social Media Brand Colors -------------- */
.fa-facebook-official,
.fa-facebook,
.fa-facebook-square {
  color: #1877f2; }

.fa-instagram {
  color: #fd1d1d; }

.fa-twitter,
.fa-twitter-square {
  color: #1da1f2; }

.fa-linkedin,
.fa-linkedin-square {
  color: #0077b5; }

.about_elishina_video {
  display: block;
  margin: 10% 0;
  position: relative;
  width: 100%; }

/*------------- Mobile Phone Styling ----------------------------*/
@media screen and (min-width: 320px) and (max-width: 480px) {
  /*********** Responsive/Adaptive Design Styling Area **************/
  .rows-container {
    margin: 0 auto;
    padding: 15px;
    width: 100%; }

  .cols-sm-1,
  .no-cols-sm-1 {
    width: 8.33%; }

  .cols-sm-2,
  .no-cols-sm-2 {
    width: 16.66%; }

  .cols-sm-3,
  .no-cols-sm-3 {
    width: 25%; }

  .cols-sm-4,
  .no-cols-sm-4 {
    width: 33.33%; }

  .cols-sm-5,
  .no-cols-sm-5 {
    width: 41.66%; }

  .cols-sm-6,
  .no-cols-sm-6 {
    width: 50%; }

  .cols-sm-7,
  .no-cols-sm-7 {
    width: 58.33%; }

  .cols-sm-8,
  .no-cols-sm-8 {
    width: 66.66%; }

  .cols-sm-9,
  .no-cols-sm-9 {
    width: 75%; }

  .cols-sm-10,
  .no-cols-sm-10 {
    width: 83.33%; }

  .cols-sm-11,
  .no-cols-sm-11 {
    width: 91.66%; }

  .cols-sm-12,
  .no-cols-sm-12 {
    width: 100%; }

  .hr_divider {
    border: 0;
    border-top: 1px solid rgba(101, 101, 101, 0.15);
    display: block;
    height: 1px;
    margin: 0;
    width: 100%; }

  .menu-btn {
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 50px;
    z-index: 3;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .menu-btn .btn-line {
      background: #373737;
      height: 2.5px;
      margin: 0 0 5px 0;
      width: 35px;
      -webkit-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .menu-btn .btn-line:nth-child(2) {
        width: 20px; }

  header {
    padding: 0 1.35rem; }
    header .nav-logo a img {
      display: inline-block;
      margin: 1rem 0 0;
      width: 40%; }

  .nav-menu {
    align-items: center;
    background: #ffffff;
    display: flex;
    flex-flow: column wrap;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    overflow-y: scroll;
    padding: 0;
    position: fixed;
    text-align: center;
    top: 0;
    visibility: hidden;
    width: 100vw;
    z-index: 500;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
    .nav-menu.show-header {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -o-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0); }
    .nav-menu .close {
      color: #701832;
      cursor: pointer;
      font-size: .85rem;
      position: absolute;
      right: 2.5rem;
      text-align: center;
      text-transform: uppercase;
      top: 1.5rem;
      -webkit-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .nav-menu .close span {
        display: inline-block; }
        .nav-menu .close span:not(:last-child) {
          margin-right: 1.15rem; }
      .nav-menu .close .close-icon {
        background: #701832;
        height: 40px;
        position: relative;
        vertical-align: middle;
        width: 3px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .nav-menu .close .close-icon:after {
        background: #701832;
        content: '';
        height: 3px;
        left: -17px;
        position: absolute;
        top: 17px;
        width: 40px; }
    .nav-menu nav ul.menu {
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center; }
    .nav-menu nav ul.menu li {
      list-style-type: none; }
      .nav-menu nav ul.menu li:not(:last-child) {
        margin: 0 0 2rem; }
    .nav-menu nav ul.menu li a {
      color: #373737;
      display: block;
      font-size: 1.35rem;
      text-decoration: none; }
    .nav-menu nav ul.menu li:nth-child(1) {
      transition-delay: 0.11s; }
    .nav-menu nav ul.menu li:nth-child(2) {
      transition-delay: 0.22s; }
    .nav-menu nav ul.menu li:nth-child(3) {
      transition-delay: 0.33s; }
    .nav-menu nav ul.menu li:nth-child(4) {
      transition-delay: 0.44s; }
    .nav-menu nav ul.menu li:nth-child(5) {
      transition-delay: 0.55s; }

  /**************** Slider Container Styling ********************/
  #slide-container {
    background-color: #e4e4e4;
    position: relative; }
    #slide-container .slide-container {
      display: none; }
    #slide-container .slide-container.active {
      display: block; }
    #slide-container .slide-container .slide {
      background: linear-gradient(90deg, #e4e4e4 70%, #e4e4e4 30.1%); }
    #slide-container .slide {
      display: flex;
      flex-direction: column;
      height: auto;
      margin: 0 auto;
      overflow: hidden;
      padding: 0;
      position: relative; }
      #slide-container .slide::after {
        content: '';
        background-color: rgba(55, 55, 55, 0.5);
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0; }
    #slide-container #prev,
    #slide-container #next {
      background: rgba(51, 51, 51, 0.5);
      bottom: 1rem;
      color: #fff;
      cursor: pointer;
      font-size: 25px;
      font-weight: 600;
      height: 50px;
      line-height: 50px;
      position: absolute;
      text-align: center;
      top: 35%;
      width: 50px;
      z-index: 2;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%; }
    #slide-container #prev:hover,
    #slide-container #next:hover {
      background: #d43364; }
    #slide-container #prev {
      left: 5%; }
    #slide-container #next {
      right: 5%; }
    #slide-container .content {
      padding: 0; }
    #slide-container img {
      animation: slideImage .4s linear;
      display: block;
      height: auto;
      margin: auto;
      object-fit: cover;
      object-position: center;
      width: 100%; }
    #slide-container .text_content {
      align-items: center;
      animation: slideContent .5s linear .5s backwards;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      left: 10%;
      position: absolute;
      top: 0;
      width: 80%;
      z-index: 2; }
      #slide-container .text_content h1 {
        color: #ffffff;
        display: inline-block;
        font-family: "Open Sans", "Lucida Sans Pro", "Lucida Sans", san-serif;
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1.5;
        padding: 1.5rem; }
  @keyframes slideImage {
    0% {
      opacity: 0;
      transform: translateX(-50px); } }
  @keyframes slideContent {
    0% {
      opacity: 0;
      transform: translateX(-100px); } }
    #slide-container p {
      font-size: 1.25rem;
      font-style: italic;
      line-height: 1.5;
      margin: 0 0 1rem; }

  /************ About Elishina Services Styling *******************/
  .about_elishina_services {
    padding: 1.5rem 0; }
    .about_elishina_services .inner-about-elishina {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto;
      width: 100%; }
    .about_elishina_services h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.35rem;
      line-height: 1.5;
      margin: 0 0 1rem; }
    .about_elishina_services span {
      display: block;
      font-size: .85rem;
      line-height: 1.85; }
    .about_elishina_services a {
      background-color: #23aca1;
      color: #ffffff;
      text-decoration: none;
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .035rem;
      margin-top: 2.5rem;
      padding: .85rem 1rem;
      position: relative;
      text-decoration: none;
      text-transform: uppercase;
      width: 10rem; }
      .about_elishina_services a:hover {
        background: #fcb246;
        color: #ffffff; }
      .about_elishina_services a:after {
        background-color: #656565;
        content: '';
        font-weight: 600;
        height: 2px;
        position: absolute;
        right: -10%;
        top: 50%;
        width: 50px;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .about_elishina_services a:hover:after {
        right: -15%; }

  /************ End of Elishina Services Styling *******************/
  /************ Elishina Services Styling *******************/
  .es_services {
    background-color: rgba(166, 166, 166, 0.15);
    padding: 1.5rem 0; }
    .es_services .services_heading {
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 0 auto 1rem;
      text-align: center;
      width: 95%; }
      .es_services .services_heading h2 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.5rem; }
      .es_services .services_heading span {
        font-size: 1rem; }
    .es_services .services_inner_content {
      background-color: rgba(166, 166, 166, 0.15);
      cursor: pointer;
      overflow: hidden;
      padding-bottom: 1rem;
      position: relative;
      -webkit-border-radius: 0.3rem;
      -moz-border-radius: 0.3rem;
      border-radius: 0.3rem; }
      .es_services .services_inner_content .inner_content {
        padding: 1.5rem; }
        .es_services .services_inner_content .inner_content p:not(:last-child) {
          margin-bottom: 1rem; }
      .es_services .services_inner_content .read_more {
        color: rgba(55, 55, 55, 0.85);
        display: inline-block;
        font-size: .75rem;
        font-weight: 600;
        margin: 1.5rem 0 0;
        position: relative;
        text-decoration: none;
        text-transform: uppercase; }
        .es_services .services_inner_content .read_more:after {
          background-color: rgba(55, 55, 55, 0.85);
          content: '';
          height: 2px;
          position: absolute;
          right: -3rem;
          top: 50%;
          width: 40px;
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
        .es_services .services_inner_content .read_more:hover:after {
          background-color: #d43364;
          right: -4rem; }
        .es_services .services_inner_content .read_more:hover {
          color: #d43364; }
      .es_services .services_inner_content .img_overlay {
        margin: 0 0 .5rem;
        overflow: hidden; }
        .es_services .services_inner_content .img_overlay img {
          object-fit: cover;
          transform: scale(1);
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
        .es_services .services_inner_content .img_overlay:hover img {
          transform: scale(1.1); }
      .es_services .services_inner_content h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.15rem;
        line-height: 1.35;
        margin: 0 0 .35rem; }
    .es_services .view_more_services {
      align-items: center;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      padding: 1.5rem 0 0;
      position: relative; }
      .es_services .view_more_services a {
        background-color: #d43364;
        color: #ffffff;
        padding: .85rem 2rem;
        text-decoration: none;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
        .es_services .view_more_services a:hover {
          background-color: #23aca1; }

  /************ End of Elishina Services Styling *******************/
  .es_page_header {
    background-image: url("../img/es-pages-header.jpg");
    background-position: center;
    background-size: cover;
    height: 30vh;
    position: relative; }
    .es_page_header:after {
      background-color: rgba(0, 0, 0, 0.8);
      content: '';
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
    .es_page_header .es_page_header_title {
      align-items: center;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      margin: 0 auto;
      position: relative;
      width: 80%;
      text-align: center;
      z-index: 2; }
      .es_page_header .es_page_header_title h1 {
        color: #fcb246;
        font-family: "Merriweather", serif;
        font-size: 1.85rem; }
      .es_page_header .es_page_header_title span {
        color: #ffffff;
        font-size: 1rem; }

  .contact_info {
    padding: 1rem;
    position: relative;
    text-align: center; }
    .contact_info h1 {
      color: #23aca1;
      font-size: 1rem;
      letter-spacing: .075rem;
      text-transform: uppercase; }
    .contact_info span {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.15rem;
      font-weight: 600; }

  .contact_page {
    background-attachment: fixed;
    background-image: url("../img/elishina-services-slider-00.jpg");
    background-position: center;
    background-size: cover;
    padding: 5rem 3rem;
    position: relative; }
    .contact_page:after {
      background-color: rgba(55, 55, 55, 0.75);
      mix-blend-mode: multiply;
      bottom: 0;
      content: '';
      left: 0;
      position: absolute;
      right: 0;
      top: 0; }
    .contact_page .contact_form_area {
      margin: 0 auto;
      position: relative;
      width: 100%;
      z-index: 3; }
      .contact_page .contact_form_area address {
        color: #ffffff;
        font-style: normal; }
      .contact_page .contact_form_area p, .contact_page .contact_form_area i {
        color: #23aca1; }
      .contact_page .contact_form_area p {
        font-size: 1.15rem;
        font-weight: 600; }
      .contact_page .contact_form_area span {
        color: #ffffff;
        font-weight: normal; }
      .contact_page .contact_form_area i {
        font-size: 1.85rem;
        margin-right: .5rem;
        vertical-align: middle; }
      .contact_page .contact_form_area .contact_form {
        background-color: #23aca1;
        padding: 2rem 1.5rem 3rem;
        position: relative;
        -webkit-border-radius: 1rem;
        -moz-border-radius: 1rem;
        border-radius: 1rem; }
        .contact_page .contact_form_area .contact_form h3 {
          color: #ffffff;
          font-size: 1.5rem;
          margin: 0 0 1.5rem; }

  .es_pages_content {
    background-color: rgba(166, 166, 166, 0.15);
    padding: 1.5rem 0;
    position: relative; }
    .es_pages_content .es_pages_inner {
      margin: 0 auto; }
    .es_pages_content .text_title {
      align-items: center;
      display: flex;
      margin: 0 auto 1rem;
      width: 90%; }
    .es_pages_content .content_single {
      margin: 0 auto;
      width: 90%; }
    .es_pages_content h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.5rem; }
    .es_pages_content p {
      font-size: 1rem;
      line-height: 1.85; }
      .es_pages_content p:not(:last-child) {
        margin: 0 0 1.35rem; }
    .es_pages_content .rows:not(:last-child) {
      margin: 0 0 1.5rem; }
    .es_pages_content .inner_content {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      padding: 0;
      width: 100%; }
      .es_pages_content .inner_content h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.25rem;
        margin: 0 0 .5rem; }
      .es_pages_content .inner_content p {
        font-size: .9rem; }
        .es_pages_content .inner_content p:not(:last-child) {
          margin: 0 0 1rem; }
    .es_pages_content .we_are_team {
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 2rem 0; }
      .es_pages_content .we_are_team img {
        margin: 0 0 1rem; }
      .es_pages_content .we_are_team .we_are_team_text h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.15rem;
        margin: 0 0 1rem; }
      .es_pages_content .we_are_team .we_are_team_text ul li {
        font-size: .9rem;
        list-style-type: square;
        position: relative; }
        .es_pages_content .we_are_team .we_are_team_text ul li:before {
          color: #d43364;
          content: '\f105';
          font-family: FontAwesome;
          margin-right: .5rem; }
        .es_pages_content .we_are_team .we_are_team_text ul li:not(:last-child) {
          margin: 0 0 .85rem; }

  .why_choose_us {
    padding: 1.5rem 0;
    position: relative; }
    .why_choose_us .why_choose_us_content {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto;
      width: 100%; }
    .why_choose_us h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.35rem;
      line-height: 1.5;
      margin: 0 0 1rem; }
    .why_choose_us ul li {
      font-size: .9rem;
      list-style-type: square;
      position: relative; }
      .why_choose_us ul li:before {
        color: #d43364;
        content: '\f105';
        font-family: FontAwesome;
        margin-right: .5rem; }
      .why_choose_us ul li:not(:last-child) {
        margin: 0 0 .65rem; }

  /************ Footer Styling Area **************/
  footer {
    background-color: #e7e7e7;
    font-size: .85rem;
    padding: 1.5rem 0; }
    footer .footer_item h4 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.15rem;
      margin: 0; }
    footer .footer_item ul li {
      color: #373737;
      font-size: .85rem; }
      footer .footer_item ul li:not(:last-child) {
        margin-bottom: .5rem; }
    footer .footer_item ul li a {
      color: #373737;
      text-decoration: none; }
    footer .footer_item ul li i {
      color: #23aca1; }
    footer address {
      font-size: .85rem;
      font-style: normal; }
      footer address h5 {
        color: #23aca1;
        text-transform: uppercase; }
      footer address span {
        margin-bottom: 1rem; }
    footer p:not(:last-child) {
      margin-bottom: 1rem; }

  /*************** End of Styling ***************/ }
/*------------- Medium Phone Styling ----------------------------*/
@media screen and (min-width: 481px) and (max-width: 768px) {
  /*********** Responsive/Adaptive Design Styling Area **************/
  .rows-container {
    margin: 0 auto;
    padding: 15px;
    width: 100%; }

  .cols-md-1,
  .no-cols-md-1 {
    width: 8.33%; }

  .cols-md-2,
  .no-cols-md-2 {
    width: 16.66%; }

  .cols-md-3,
  .no-cols-md-3 {
    width: 25%; }

  .cols-md-4,
  .no-cols-md-4 {
    width: 33.33%; }

  .cols-md-5,
  .no-cols-md-5 {
    width: 41.66%; }

  .cols-md-6,
  .no-cols-md-6 {
    width: 50%; }

  .cols-md-7,
  .no-cols-md-7 {
    width: 58.33%; }

  .cols-md-8,
  .no-cols-md-8 {
    width: 66.66%; }

  .cols-md-9,
  .no-cols-md-9 {
    width: 75%; }

  .cols-md-10,
  .no-cols-md-10 {
    width: 83.33%; }

  .cols-md-11,
  .no-cols-md-11 {
    width: 91.66%; }

  .cols-md-12,
  .no-cols-md-12 {
    width: 100%; }

  .hr_divider {
    border: 0;
    border-top: 1px solid rgba(101, 101, 101, 0.15);
    display: block;
    height: 1px;
    margin: 0;
    width: 100%; }

  .menu-btn {
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 50px;
    z-index: 3;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .menu-btn .btn-line {
      background: #373737;
      height: 2.5px;
      margin: 0 0 5px 0;
      width: 35px;
      -webkit-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .menu-btn .btn-line:nth-child(2) {
        width: 20px; }

  header {
    padding: 0 2rem; }
    header .nav-logo a img {
      display: inline-block;
      margin: 1rem 0 0;
      width: 40%; }

  .nav-menu {
    align-items: center;
    background: #ffffff;
    display: flex;
    flex-flow: column wrap;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    overflow-y: scroll;
    padding: 0;
    position: fixed;
    text-align: center;
    top: 0;
    visibility: hidden;
    width: 100vw;
    z-index: 500;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
    .nav-menu.show-header {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -o-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0); }
    .nav-menu .close {
      color: #701832;
      cursor: pointer;
      font-size: .85rem;
      position: absolute;
      right: 2.5rem;
      text-align: center;
      text-transform: uppercase;
      top: 1.5rem;
      -webkit-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .nav-menu .close span {
        display: inline-block; }
        .nav-menu .close span:not(:last-child) {
          margin-right: 1.15rem; }
      .nav-menu .close .close-icon {
        background: #701832;
        height: 40px;
        position: relative;
        vertical-align: middle;
        width: 3px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .nav-menu .close .close-icon:after {
        background: #701832;
        content: '';
        height: 3px;
        left: -17px;
        position: absolute;
        top: 17px;
        width: 40px; }
    .nav-menu nav ul.menu {
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center; }
    .nav-menu nav ul.menu li {
      list-style-type: none; }
      .nav-menu nav ul.menu li:not(:last-child) {
        margin: 0 0 2rem; }
    .nav-menu nav ul.menu li a {
      color: #373737;
      display: block;
      font-size: 1.5rem;
      text-decoration: none; }
    .nav-menu nav ul.menu li:nth-child(1) {
      transition-delay: 0.11s; }
    .nav-menu nav ul.menu li:nth-child(2) {
      transition-delay: 0.22s; }
    .nav-menu nav ul.menu li:nth-child(3) {
      transition-delay: 0.33s; }
    .nav-menu nav ul.menu li:nth-child(4) {
      transition-delay: 0.44s; }
    .nav-menu nav ul.menu li:nth-child(5) {
      transition-delay: 0.55s; }

  /**************** Slider Container Styling ********************/
  #slide-container {
    background-color: #e4e4e4;
    position: relative; }
    #slide-container .slide-container {
      display: none; }
    #slide-container .slide-container.active {
      display: block; }
    #slide-container .slide-container .slide {
      background: linear-gradient(90deg, #e4e4e4 70%, #e4e4e4 30.1%); }
    #slide-container .slide {
      display: flex;
      flex-direction: column;
      height: auto;
      margin: 0 auto;
      overflow: hidden;
      padding: 0;
      position: relative; }
      #slide-container .slide::after {
        content: '';
        background-color: rgba(55, 55, 55, 0.5);
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0; }
    #slide-container #prev,
    #slide-container #next {
      background: rgba(51, 51, 51, 0.5);
      bottom: 1rem;
      color: #fff;
      cursor: pointer;
      font-size: 25px;
      font-weight: 600;
      height: 50px;
      line-height: 50px;
      position: absolute;
      text-align: center;
      top: 35%;
      width: 50px;
      z-index: 2;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%; }
    #slide-container #prev:hover,
    #slide-container #next:hover {
      background: #d43364; }
    #slide-container #prev {
      left: 5%; }
    #slide-container #next {
      right: 5%; }
    #slide-container .content {
      padding: 0; }
    #slide-container img {
      animation: slideImage .4s linear;
      display: block;
      height: auto;
      margin: auto;
      object-fit: cover;
      object-position: center;
      width: 100%; }
    #slide-container .text_content {
      align-items: center;
      animation: slideContent .5s linear .5s backwards;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      left: 10%;
      position: absolute;
      top: 0;
      width: 70%;
      z-index: 2; }
      #slide-container .text_content h1 {
        color: #ffffff;
        display: inline-block;
        font-family: "Open Sans", "Lucida Sans Pro", "Lucida Sans", san-serif;
        font-size: 1.45rem;
        font-weight: 600;
        line-height: 1.5;
        padding: 1.5rem; }
  @keyframes slideImage {
    0% {
      opacity: 0;
      transform: translateX(-50px); } }
  @keyframes slideContent {
    0% {
      opacity: 0;
      transform: translateX(-100px); } }
    #slide-container p {
      font-size: 1.25rem;
      font-style: italic;
      line-height: 1.5;
      margin: 0 0 1rem; }

  /************ About Elishina Services Styling *******************/
  .about_elishina_services {
    padding: 1.5rem 0; }
    .about_elishina_services .inner-about-elishina {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto;
      width: 100%; }
    .about_elishina_services h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.35rem;
      line-height: 1.5;
      margin: 0 0 1rem; }
    .about_elishina_services span {
      display: block;
      font-size: .85rem;
      line-height: 1.85; }
    .about_elishina_services a {
      background-color: #23aca1;
      color: #ffffff;
      text-decoration: none;
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .035rem;
      margin-top: 2.5rem;
      padding: .85rem 1rem;
      position: relative;
      text-decoration: none;
      text-transform: uppercase;
      width: 10rem; }
      .about_elishina_services a:hover {
        background: #fcb246;
        color: #ffffff; }
      .about_elishina_services a:after {
        background-color: #656565;
        content: '';
        font-weight: 600;
        height: 2px;
        position: absolute;
        right: -10%;
        top: 50%;
        width: 50px;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .about_elishina_services a:hover:after {
        right: -15%; }

  /************ End of Elishina Services Styling *******************/
  /************ Elishina Services Styling *******************/
  .es_services {
    background-color: rgba(166, 166, 166, 0.15);
    padding: 1.5rem 0; }
    .es_services .services_heading {
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 0 auto 1rem;
      text-align: center;
      width: 95%; }
      .es_services .services_heading h2 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.5rem; }
      .es_services .services_heading span {
        font-size: 1rem; }
    .es_services .services_inner_content {
      background-color: rgba(166, 166, 166, 0.15);
      cursor: pointer;
      overflow: hidden;
      padding-bottom: 1rem;
      position: relative;
      -webkit-border-radius: 0.3rem;
      -moz-border-radius: 0.3rem;
      border-radius: 0.3rem; }
      .es_services .services_inner_content .inner_content {
        padding: 1.5rem; }
        .es_services .services_inner_content .inner_content p:not(:last-child) {
          margin-bottom: 1rem; }
      .es_services .services_inner_content .read_more {
        color: rgba(55, 55, 55, 0.85);
        display: inline-block;
        font-size: .75rem;
        font-weight: 600;
        margin: 1.5rem 0 0;
        position: relative;
        text-decoration: none;
        text-transform: uppercase; }
        .es_services .services_inner_content .read_more:after {
          background-color: rgba(55, 55, 55, 0.85);
          content: '';
          height: 2px;
          position: absolute;
          right: -3rem;
          top: 50%;
          width: 40px;
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
        .es_services .services_inner_content .read_more:hover:after {
          background-color: #d43364;
          right: -4rem; }
        .es_services .services_inner_content .read_more:hover {
          color: #d43364; }
      .es_services .services_inner_content .img_overlay {
        margin: 0 0 .5rem;
        overflow: hidden; }
        .es_services .services_inner_content .img_overlay img {
          object-fit: cover;
          transform: scale(1);
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
        .es_services .services_inner_content .img_overlay:hover img {
          transform: scale(1.1); }
      .es_services .services_inner_content h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.15rem;
        line-height: 1.35;
        margin: 0 0 .35rem; }
    .es_services .view_more_services {
      align-items: center;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      padding: 1.5rem 0 0;
      position: relative; }
      .es_services .view_more_services a {
        background-color: #d43364;
        color: #ffffff;
        padding: .85rem 2rem;
        text-decoration: none;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
        .es_services .view_more_services a:hover {
          background-color: #23aca1; }

  /************ End of Elishina Services Styling *******************/
  .es_page_header {
    background-image: url("../img/es-pages-header.jpg");
    background-position: center;
    background-size: cover;
    height: 30vh;
    position: relative; }
    .es_page_header:after {
      background-color: rgba(0, 0, 0, 0.8);
      content: '';
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
    .es_page_header .es_page_header_title {
      align-items: center;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      margin: 0 auto;
      position: relative;
      width: 80%;
      text-align: center;
      z-index: 2; }
      .es_page_header .es_page_header_title h1 {
        color: #fcb246;
        font-family: "Merriweather", serif;
        font-size: 2.15rem; }
      .es_page_header .es_page_header_title span {
        color: #ffffff;
        font-size: 1.15rem; }

  .contact_info {
    padding: 1.5rem;
    position: relative;
    text-align: center; }
    .contact_info h1 {
      color: #23aca1;
      font-size: 1.15rem;
      letter-spacing: .075rem;
      text-transform: uppercase; }
    .contact_info span {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.35rem;
      font-weight: 600; }

  .contact_page {
    background-attachment: fixed;
    background-image: url("../img/elishina-services-slider-00.jpg");
    background-position: center;
    background-size: cover;
    padding: 5rem 3rem;
    position: relative; }
    .contact_page:after {
      background-color: rgba(55, 55, 55, 0.75);
      mix-blend-mode: multiply;
      bottom: 0;
      content: '';
      left: 0;
      position: absolute;
      right: 0;
      top: 0; }
    .contact_page .contact_form_area {
      margin: 0 auto;
      position: relative;
      width: 100%;
      z-index: 3; }
      .contact_page .contact_form_area address {
        color: #ffffff;
        font-style: normal; }
      .contact_page .contact_form_area p, .contact_page .contact_form_area i {
        color: #23aca1; }
      .contact_page .contact_form_area p {
        font-size: 1.15rem;
        font-weight: 600; }
      .contact_page .contact_form_area span {
        color: #ffffff;
        font-weight: normal; }
      .contact_page .contact_form_area i {
        font-size: 1.85rem;
        margin-right: .5rem;
        vertical-align: middle; }
      .contact_page .contact_form_area .contact_form {
        background-color: #23aca1;
        padding: 2rem 1.5rem 3rem;
        position: relative;
        -webkit-border-radius: 1rem;
        -moz-border-radius: 1rem;
        border-radius: 1rem; }
        .contact_page .contact_form_area .contact_form h3 {
          color: #ffffff;
          font-size: 1.5rem;
          margin: 0 0 1.5rem; }

  .es_pages_content {
    background-color: rgba(166, 166, 166, 0.15);
    padding: 1.5rem 0;
    position: relative; }
    .es_pages_content .es_pages_inner {
      margin: 0 auto; }
    .es_pages_content .text_title {
      align-items: center;
      display: flex;
      margin: 0 auto 1rem;
      width: 90%; }
    .es_pages_content .content_single {
      margin: 0 auto;
      width: 90%; }
    .es_pages_content h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.5rem; }
    .es_pages_content p {
      font-size: 1rem;
      line-height: 1.85; }
      .es_pages_content p:not(:last-child) {
        margin: 0 0 1.35rem; }
    .es_pages_content .rows:not(:last-child) {
      margin: 0 0 1.5rem; }
    .es_pages_content .inner_content {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      padding: 0;
      width: 100%; }
      .es_pages_content .inner_content h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.25rem;
        margin: 0 0 .5rem; }
      .es_pages_content .inner_content p {
        font-size: .9rem; }
        .es_pages_content .inner_content p:not(:last-child) {
          margin: 0 0 1rem; }
    .es_pages_content .we_are_team {
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 2rem 0; }
      .es_pages_content .we_are_team img {
        margin: 0 0 1rem; }
      .es_pages_content .we_are_team .we_are_team_text h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.15rem;
        margin: 0 0 1rem; }
      .es_pages_content .we_are_team .we_are_team_text ul li {
        font-size: .9rem;
        list-style-type: square;
        position: relative; }
        .es_pages_content .we_are_team .we_are_team_text ul li:before {
          color: #d43364;
          content: '\f105';
          font-family: FontAwesome;
          margin-right: .5rem; }
        .es_pages_content .we_are_team .we_are_team_text ul li:not(:last-child) {
          margin: 0 0 .85rem; }

  .why_choose_us {
    padding: 1.5rem 0;
    position: relative; }
    .why_choose_us .why_choose_us_content {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto;
      width: 100%; }
    .why_choose_us h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.35rem;
      line-height: 1.5;
      margin: 0 0 1rem; }
    .why_choose_us ul li {
      font-size: .9rem;
      list-style-type: square;
      position: relative; }
      .why_choose_us ul li:before {
        color: #d43364;
        content: '\f105';
        font-family: FontAwesome;
        margin-right: .5rem; }
      .why_choose_us ul li:not(:last-child) {
        margin: 0 0 .65rem; }

  /************ Footer Styling Area **************/
  footer {
    background-color: #e7e7e7;
    font-size: .85rem;
    padding: 1.5rem 0; }
    footer .footer_item h4 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.15rem;
      margin: 0; }
    footer .footer_item ul li {
      color: #373737;
      font-size: .85rem; }
      footer .footer_item ul li:not(:last-child) {
        margin-bottom: .5rem; }
    footer .footer_item ul li a {
      color: #373737;
      text-decoration: none; }
    footer .footer_item ul li i {
      color: #23aca1; }
    footer address {
      font-size: .85rem;
      font-style: normal; }
      footer address h5 {
        color: #23aca1;
        text-transform: uppercase; }
      footer address span {
        margin-bottom: 1rem; }
    footer p:not(:last-child) {
      margin-bottom: 1rem; }

  /*************** End of Styling ***************/ }
/*------------- Large Tablet and Laptop Styling ----------------------------*/
@media screen and (min-width: 769px) and (max-width: 1170px) {
  .close {
    display: none; }

  /*********** Responsive/Adaptive Design Styling Area **************/
  .rows-container {
    margin: 0 auto;
    padding: 15px;
    width: 95%; }

  .cols-lg-1,
  .no-cols-lg-1 {
    width: 8.33%; }

  .cols-lg-2,
  .no-cols-lg-2 {
    width: 16.66%; }

  .cols-lg-3,
  .no-cols-lg-3 {
    width: 25%; }

  .cols-lg-4,
  .no-cols-lg-4 {
    width: 33.33%; }

  .cols-lg-5,
  .no-cols-lg-5 {
    width: 41.66%; }

  .cols-lg-6,
  .no-cols-lg-6 {
    width: 50%; }

  .cols-lg-7,
  .no-cols-lg-7 {
    width: 58.33%; }

  .cols-lg-8,
  .no-cols-lg-8 {
    width: 66.66%; }

  .cols-lg-9,
  .no-cols-lg-9 {
    width: 75%; }

  .cols-lg-10,
  .no-cols-lg-10 {
    width: 83.33%; }

  .cols-lg-11,
  .no-cols-lg-11 {
    width: 91.66%; }

  .cols-lg-12,
  .no-cols-lg-12 {
    width: 100%; }

  .hr_divider {
    border: 0;
    border-top: 1px solid rgba(101, 101, 101, 0.15);
    display: block;
    height: 1px;
    margin: 0;
    width: 100%; }

  /*****************************************/
  header {
    background-color: #e4e4e4;
    position: relative; }
    header .nav-fluid {
      align-items: center;
      display: flex;
      justify-content: space-between; }
      header .nav-fluid .nav-logo {
        flex: 1 0 20%; }
        header .nav-fluid .nav-logo a img {
          display: inline-block;
          margin: 1rem 0 0;
          width: 80%; }
      header .nav-fluid .nav-menu {
        flex: 1 0 80%; }
        header .nav-fluid .nav-menu nav > .menu {
          display: flex;
          justify-content: flex-end;
          list-style-type: none; }
        header .nav-fluid .nav-menu nav > .menu li {
          margin: 0 1rem;
          padding: .5rem 0; }
        header .nav-fluid .nav-menu nav > .menu li a {
          color: #373737;
          display: block;
          font-size: .9rem;
          text-decoration: none; }

  /**************** Slider Container Styling ********************/
  #slide-container {
    background-color: #e4e4e4;
    position: relative; }
    #slide-container .slide-container {
      display: none; }
    #slide-container .slide-container.active {
      display: block; }
    #slide-container .slide-container .slide {
      background: linear-gradient(90deg, #e4e4e4 70%, #e4e4e4 30.1%); }
    #slide-container .slide {
      display: flex;
      flex-direction: column;
      height: auto;
      margin: 0 auto;
      overflow: hidden;
      padding: 0;
      position: relative; }
      #slide-container .slide::after {
        content: '';
        background-color: rgba(55, 55, 55, 0.5);
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0; }
    #slide-container #prev,
    #slide-container #next {
      background: rgba(51, 51, 51, 0.5);
      bottom: 1rem;
      color: #fff;
      cursor: pointer;
      font-size: 25px;
      font-weight: 600;
      height: 60px;
      line-height: 60px;
      position: absolute;
      text-align: center;
      top: 35%;
      width: 60px;
      z-index: 2;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%; }
    #slide-container #prev:hover,
    #slide-container #next:hover {
      background: #d43364; }
    #slide-container #prev {
      left: 5%; }
    #slide-container #next {
      right: 5%; }
    #slide-container .content {
      padding: 0; }
    #slide-container img {
      animation: slideImage .4s linear;
      display: block;
      height: auto;
      margin: auto;
      object-fit: cover;
      object-position: center;
      width: 100%; }
    #slide-container .text_content {
      align-items: center;
      animation: slideContent .5s linear .5s backwards;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      left: 10%;
      position: absolute;
      top: 0;
      width: 65%;
      z-index: 2; }
      #slide-container .text_content h1 {
        color: #ffffff;
        display: inline-block;
        font-family: "Open Sans", "Lucida Sans Pro", "Lucida Sans", san-serif;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.35;
        padding: 1.5rem; }
  @keyframes slideImage {
    0% {
      opacity: 0;
      transform: translateX(-50px); } }
  @keyframes slideContent {
    0% {
      opacity: 0;
      transform: translateX(-100px); } }
    #slide-container p {
      font-size: 1.25rem;
      font-style: italic;
      line-height: 1.5;
      margin: 0 0 1rem; }

  /************ About Elishina Services Styling *******************/
  .about_elishina_services {
    padding: 1.5rem 0; }
    .about_elishina_services .inner-about-elishina {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto;
      width: 100%; }
    .about_elishina_services h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.5rem;
      line-height: 1.5;
      margin: 0 0 1rem; }
    .about_elishina_services span {
      display: block;
      font-size: 1rem;
      line-height: 1.85; }
    .about_elishina_services a {
      background-color: #23aca1;
      color: #ffffff;
      text-decoration: none;
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .035rem;
      margin-top: 2.5rem;
      padding: .85rem 1rem;
      position: relative;
      text-decoration: none;
      text-transform: uppercase;
      width: 10rem; }
      .about_elishina_services a:hover {
        background: #fcb246;
        color: #ffffff; }
      .about_elishina_services a:after {
        background-color: #656565;
        content: '';
        font-weight: 600;
        height: 2px;
        position: absolute;
        right: -10%;
        top: 50%;
        width: 50px;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .about_elishina_services a:hover:after {
        right: -15%; }

  /************ End of Elishina Services Styling *******************/
  /************ Elishina Services Styling *******************/
  .es_services {
    background-color: rgba(166, 166, 166, 0.15);
    padding: 1.5rem 0; }
    .es_services .services_heading {
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 0 auto 1.5rem;
      text-align: center;
      width: 80%; }
      .es_services .services_heading h2 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.5rem; }
      .es_services .services_heading span {
        font-size: 1rem; }
    .es_services .services_inner_content {
      background-color: rgba(166, 166, 166, 0.15);
      cursor: pointer;
      overflow: hidden;
      padding-bottom: 1rem;
      position: relative;
      -webkit-border-radius: 0.3rem;
      -moz-border-radius: 0.3rem;
      border-radius: 0.3rem; }
      .es_services .services_inner_content .inner_content {
        padding: 1.5rem; }
        .es_services .services_inner_content .inner_content p:not(:last-child) {
          margin-bottom: 1rem; }
      .es_services .services_inner_content .read_more {
        color: rgba(55, 55, 55, 0.85);
        display: inline-block;
        font-size: .75rem;
        font-weight: 600;
        margin: 1.5rem 0 0;
        position: relative;
        text-decoration: none;
        text-transform: uppercase; }
        .es_services .services_inner_content .read_more:after {
          background-color: rgba(55, 55, 55, 0.85);
          content: '';
          height: 2px;
          position: absolute;
          right: -3rem;
          top: 50%;
          width: 40px;
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
        .es_services .services_inner_content .read_more:hover:after {
          background-color: #d43364;
          right: -4rem; }
        .es_services .services_inner_content .read_more:hover {
          color: #d43364; }
      .es_services .services_inner_content .img_overlay {
        margin: 0 0 .5rem;
        overflow: hidden; }
        .es_services .services_inner_content .img_overlay img {
          object-fit: cover;
          transform: scale(1);
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
        .es_services .services_inner_content .img_overlay:hover img {
          transform: scale(1.1); }
      .es_services .services_inner_content h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.15rem;
        line-height: 1.35;
        margin: 0 0 .35rem; }
    .es_services .view_more_services {
      align-items: center;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      padding: 1.5rem 0 0;
      position: relative; }
      .es_services .view_more_services a {
        background-color: #d43364;
        color: #ffffff;
        padding: .85rem 2rem;
        text-decoration: none;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
        .es_services .view_more_services a:hover {
          background-color: #23aca1; }

  /************ End of Elishina Services Styling *******************/
  .es_page_header {
    background-image: url("../img/es-pages-header.jpg");
    background-position: center;
    background-size: cover;
    height: 20vh;
    position: relative; }
    .es_page_header:after {
      background-color: rgba(0, 0, 0, 0.8);
      content: '';
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
    .es_page_header .es_page_header_title {
      align-items: center;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      margin: 0 auto;
      position: relative;
      width: 55%;
      text-align: center;
      z-index: 2; }
      .es_page_header .es_page_header_title h1 {
        color: #fcb246;
        font-family: "Merriweather", serif;
        font-size: 2.15rem; }
      .es_page_header .es_page_header_title span {
        color: #ffffff;
        font-size: 1.15rem; }

  .contact_info {
    padding: 3rem;
    position: relative;
    text-align: center; }
    .contact_info h1 {
      color: #23aca1;
      font-size: 1.25rem;
      letter-spacing: .075rem;
      text-transform: uppercase; }
    .contact_info span {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.65rem;
      font-weight: 600; }

  .contact_page {
    background-attachment: fixed;
    background-image: url("../img/elishina-services-slider-00.jpg");
    background-position: center;
    background-size: cover;
    padding: 5rem 3rem;
    position: relative; }
    .contact_page:after {
      background-color: rgba(55, 55, 55, 0.75);
      mix-blend-mode: multiply;
      bottom: 0;
      content: '';
      left: 0;
      position: absolute;
      right: 0;
      top: 0; }
    .contact_page .contact_form_area {
      margin: 0 auto;
      position: relative;
      width: 100%;
      z-index: 3; }
      .contact_page .contact_form_area address {
        color: #ffffff;
        font-style: normal; }
      .contact_page .contact_form_area p, .contact_page .contact_form_area i {
        color: #23aca1; }
      .contact_page .contact_form_area p {
        font-size: 1.15rem;
        font-weight: 600; }
      .contact_page .contact_form_area span {
        color: #ffffff;
        font-weight: normal; }
      .contact_page .contact_form_area i {
        font-size: 1.85rem;
        margin-right: .5rem;
        vertical-align: middle; }
      .contact_page .contact_form_area .contact_form {
        background-color: #23aca1;
        padding: 2rem 1.5rem 3rem;
        position: relative;
        -webkit-border-radius: 1rem;
        -moz-border-radius: 1rem;
        border-radius: 1rem; }
        .contact_page .contact_form_area .contact_form h3 {
          color: #ffffff;
          font-size: 1.5rem;
          margin: 0 0 1.5rem; }

  .es_pages_content {
    background-color: rgba(166, 166, 166, 0.15);
    padding: 1.5rem 0;
    position: relative; }
    .es_pages_content .es_pages_inner {
      margin: 0 auto; }
    .es_pages_content .text_title {
      align-items: center;
      display: flex;
      margin: 0 auto 1rem;
      width: 90%; }
    .es_pages_content .content_single {
      margin: 0 auto;
      width: 90%; }
    .es_pages_content h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.5rem; }
    .es_pages_content p {
      font-size: 1rem;
      line-height: 1.85; }
      .es_pages_content p:not(:last-child) {
        margin: 0 0 1.35rem; }
    .es_pages_content .rows:not(:last-child) {
      margin: 0 0 3rem; }
    .es_pages_content .inner_content {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      padding: 0 1rem;
      width: 100%; }
      .es_pages_content .inner_content h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.35rem;
        margin: 0 0 1rem; }
      .es_pages_content .inner_content p {
        font-size: 1rem; }
        .es_pages_content .inner_content p:not(:last-child) {
          margin: 0 0 1rem; }
    .es_pages_content .we_are_team {
      display: flex;
      gap: 2rem;
      justify-content: space-between;
      margin: 0 0 2.5rem;
      padding: 2rem 0; }
      .es_pages_content .we_are_team .we_are_team_img,
      .es_pages_content .we_are_team .we_are_team_text {
        flex: 1 0 0; }
      .es_pages_content .we_are_team .we_are_team_text h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.15rem;
        margin: 0 0 1rem; }
      .es_pages_content .we_are_team .we_are_team_text ul li {
        font-size: .9rem;
        list-style-type: square;
        position: relative; }
        .es_pages_content .we_are_team .we_are_team_text ul li:before {
          color: #d43364;
          content: '\f105';
          font-family: FontAwesome;
          margin-right: .5rem; }
        .es_pages_content .we_are_team .we_are_team_text ul li:not(:last-child) {
          margin: 0 0 .85rem; }

  .why_choose_us {
    padding: 1.5rem 0;
    position: relative; }
    .why_choose_us .why_choose_us_content {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto;
      width: 90%; }
    .why_choose_us h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.5rem;
      line-height: 1.5;
      margin: 0 0 1rem; }
    .why_choose_us ul li {
      font-size: 1rem;
      list-style-type: square;
      position: relative; }
      .why_choose_us ul li:before {
        color: #d43364;
        content: '\f105';
        font-family: FontAwesome;
        margin-right: .5rem; }
      .why_choose_us ul li:not(:last-child) {
        margin: 0 0 .85rem; }

  /************ Footer Styling Area **************/
  footer {
    background-color: #ffffff;
    font-size: .95rem;
    padding: 1.5rem 0; }
    footer .footer_item h4 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.65rem;
      margin: 0 0 1rem; }
    footer .footer_item ul li {
      color: #373737; }
      footer .footer_item ul li:not(:last-child) {
        margin-bottom: .5rem; }
    footer .footer_item ul li a {
      color: #373737;
      text-decoration: none; }
    footer .footer_item ul li i {
      color: #23aca1; }
    footer address {
      font-style: normal; }
      footer address h5 {
        color: #23aca1;
        text-transform: uppercase; }
      footer address span {
        margin-bottom: 1rem; }
    footer p:not(:last-child) {
      margin-bottom: 1rem; }

  /*************** End of Styling ***************/ }
/*------------- Desktop Styling ----------------------------*/
@media screen and (min-width: 1171px) {
  .close {
    display: none; }

  header {
    background-color: #e4e4e4;
    position: relative; }
    header .nav-fluid {
      align-items: center;
      display: flex;
      justify-content: space-between; }
      header .nav-fluid .nav-logo {
        flex: 1 0 25%; }
        header .nav-fluid .nav-logo a img {
          display: inline-block;
          width: 60%; }
      header .nav-fluid .nav-menu {
        flex: 1 0 75%; }
        header .nav-fluid .nav-menu nav > .menu {
          display: flex;
          justify-content: flex-end;
          list-style-type: none; }
        header .nav-fluid .nav-menu nav > .menu li {
          margin: 0 1.15rem;
          padding: .5rem 0; }
        header .nav-fluid .nav-menu nav > .menu li a {
          color: #373737;
          display: block;
          font-size: 1rem;
          text-decoration: none; }

  /**************** Slider Container Styling ********************/
  #slide-container {
    background-color: #e4e4e4;
    position: relative; }
    #slide-container .slide-container {
      display: none; }
    #slide-container .slide-container.active {
      display: block; }
    #slide-container .slide-container .slide {
      background: linear-gradient(90deg, #e4e4e4 70%, #e4e4e4 30.1%); }
    #slide-container .slide {
      display: flex;
      flex-direction: column;
      height: 100vh;
      margin: 0 auto;
      overflow: hidden;
      padding: 0;
      position: relative; }
      #slide-container .slide::after {
        content: '';
        background-color: rgba(55, 55, 55, 0.5);
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0; }
    #slide-container #prev,
    #slide-container #next {
      background: rgba(51, 51, 51, 0.5);
      bottom: 1rem;
      color: #fff;
      cursor: pointer;
      font-size: 25px;
      font-weight: 600;
      height: 60px;
      line-height: 60px;
      position: absolute;
      text-align: center;
      top: 35%;
      width: 60px;
      z-index: 2;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%; }
    #slide-container #prev:hover,
    #slide-container #next:hover {
      background: #d43364; }
    #slide-container #prev {
      left: 5%; }
    #slide-container #next {
      right: 5%; }
    #slide-container .content {
      padding: 0; }
    #slide-container img {
      animation: slideImage .4s linear;
      display: block;
      height: auto;
      margin: auto;
      object-fit: cover;
      object-position: center;
      width: 100%; }
    #slide-container .text_content {
      align-items: center;
      animation: slideContent .5s linear .5s backwards;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      left: 10%;
      position: absolute;
      top: 0;
      width: 55%;
      z-index: 2; }
      #slide-container .text_content h1 {
        color: #ffffff;
        display: inline-block;
        font-family: "Open Sans", "Lucida Sans Pro", "Lucida Sans", san-serif;
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.35;
        padding: 1.5rem; }
  @keyframes slideImage {
    0% {
      opacity: 0;
      transform: translateX(-50px); } }
  @keyframes slideContent {
    0% {
      opacity: 0;
      transform: translateX(-100px); } }
    #slide-container p {
      font-size: 1.25rem;
      font-style: italic;
      line-height: 1.5;
      margin: 0 0 1rem; }

  /************ About Elishina Services Styling *******************/
  .about_elishina_services {
    padding: 5rem 0; }
    .about_elishina_services .inner-about-elishina {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto;
      width: 80%; }
    .about_elishina_services h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 2.15rem;
      line-height: 1.5;
      margin: 0 0 1rem; }
    .about_elishina_services span {
      display: block;
      font-size: 1.15rem;
      line-height: 1.85; }
    .about_elishina_services a {
      background-color: #23aca1;
      color: #ffffff;
      text-decoration: none;
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .035rem;
      margin-top: 2.5rem;
      padding: .85rem 1rem;
      position: relative;
      text-decoration: none;
      text-transform: uppercase;
      width: 10rem; }
      .about_elishina_services a:hover {
        background: #fcb246;
        color: #ffffff; }
      .about_elishina_services a:after {
        background-color: #656565;
        content: '';
        font-weight: 600;
        height: 2px;
        position: absolute;
        right: -10%;
        top: 50%;
        width: 50px;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .about_elishina_services a:hover:after {
        right: -15%; }

  /************ End of Elishina Services Styling *******************/
  /************ Elishina Services Styling *******************/
  .es_services {
    background-color: rgba(166, 166, 166, 0.15);
    padding: 3.5rem 0; }
    .es_services .services_heading {
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 0 auto 3rem;
      text-align: center;
      width: 50%; }
      .es_services .services_heading h2 {
        color: #d43364;
        font-family: "Merriweather", serif; }
      .es_services .services_heading span {
        font-size: 1.15rem; }
    .es_services .services_inner_content {
      background-color: rgba(166, 166, 166, 0.15);
      cursor: pointer;
      overflow: hidden;
      padding-bottom: 1rem;
      position: relative;
      -webkit-border-radius: 0.3rem;
      -moz-border-radius: 0.3rem;
      border-radius: 0.3rem; }
      .es_services .services_inner_content .inner_content {
        padding: 1.5rem; }
        .es_services .services_inner_content .inner_content p:not(:last-child) {
          margin-bottom: 1rem; }
      .es_services .services_inner_content .read_more {
        color: rgba(55, 55, 55, 0.85);
        display: inline-block;
        font-size: .75rem;
        font-weight: 600;
        margin: 1.5rem 0 0;
        position: relative;
        text-decoration: none;
        text-transform: uppercase; }
        .es_services .services_inner_content .read_more:after {
          background-color: rgba(55, 55, 55, 0.85);
          content: '';
          height: 2px;
          position: absolute;
          right: -3rem;
          top: 50%;
          width: 40px;
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
        .es_services .services_inner_content .read_more:hover:after {
          background-color: #d43364;
          right: -4rem; }
        .es_services .services_inner_content .read_more:hover {
          color: #d43364; }
      .es_services .services_inner_content .img_overlay {
        margin: 0 0 .5rem;
        overflow: hidden; }
        .es_services .services_inner_content .img_overlay img {
          object-fit: cover;
          transform: scale(1);
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
        .es_services .services_inner_content .img_overlay:hover img {
          transform: scale(1.1); }
      .es_services .services_inner_content h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.25rem;
        line-height: 1.35;
        margin: 0 0 .35rem; }
    .es_services .view_more_services {
      align-items: center;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      padding: 3rem 0 0;
      position: relative; }
      .es_services .view_more_services a {
        background-color: #d43364;
        color: #ffffff;
        padding: .85rem 2rem;
        text-decoration: none;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
        .es_services .view_more_services a:hover {
          background-color: #23aca1; }

  /************ End of Elishina Services Styling *******************/
  .es_page_header {
    background-image: url("../img/es-pages-header.jpg");
    background-size: cover;
    height: 35vh;
    position: relative; }
    .es_page_header:after {
      background-color: rgba(0, 0, 0, 0.8);
      content: '';
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
    .es_page_header .es_page_header_title {
      align-items: center;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      margin: 0 auto;
      position: relative;
      width: 55%;
      text-align: center;
      z-index: 2; }
      .es_page_header .es_page_header_title h1 {
        color: #fcb246;
        font-family: "Merriweather", serif;
        font-size: 2.15rem; }
      .es_page_header .es_page_header_title span {
        color: #ffffff;
        font-size: 1.15rem; }

  .contact_info {
    padding: 5rem;
    position: relative;
    text-align: center; }
    .contact_info h1 {
      color: #23aca1;
      font-size: 1.35rem;
      letter-spacing: .075rem;
      text-transform: uppercase; }
    .contact_info span {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.85rem;
      font-weight: 600; }

  .contact_page {
    background-attachment: fixed;
    background-image: url("../img/elishina-services-slider-00.jpg");
    background-position: center;
    background-size: cover;
    padding: 5rem;
    position: relative; }
    .contact_page:after {
      background-color: rgba(55, 55, 55, 0.75);
      mix-blend-mode: multiply;
      bottom: 0;
      content: '';
      left: 0;
      position: absolute;
      right: 0;
      top: 0; }
    .contact_page .contact_form_area {
      margin: 0 auto;
      position: relative;
      width: 80%;
      z-index: 3; }
      .contact_page .contact_form_area address {
        color: #ffffff;
        font-style: normal; }
      .contact_page .contact_form_area p, .contact_page .contact_form_area i {
        color: #23aca1; }
      .contact_page .contact_form_area p {
        font-size: 1.15rem;
        font-weight: 600; }
      .contact_page .contact_form_area span {
        color: #ffffff;
        font-weight: normal; }
      .contact_page .contact_form_area i {
        font-size: 1.85rem;
        margin-right: .5rem;
        vertical-align: middle; }
      .contact_page .contact_form_area .contact_form {
        background-color: #23aca1;
        padding: 2rem 2.5rem 3rem;
        position: relative;
        -webkit-border-radius: 1rem;
        -moz-border-radius: 1rem;
        border-radius: 1rem; }
        .contact_page .contact_form_area .contact_form h3 {
          color: #ffffff;
          font-size: 1.5rem;
          margin: 0 0 1.5rem; }

  .es_pages_content {
    background-color: rgba(166, 166, 166, 0.15);
    padding: 3.5rem 0;
    position: relative; }
    .es_pages_content .es_pages_inner {
      margin: 0 auto; }
    .es_pages_content .text_title {
      align-items: center;
      display: flex;
      margin: 0 auto 1rem;
      width: 80%; }
    .es_pages_content .content_single {
      margin: 0 auto;
      width: 80%; }
    .es_pages_content h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.5rem; }
    .es_pages_content p {
      font-size: 1.05rem;
      line-height: 1.85; }
      .es_pages_content p:not(:last-child) {
        margin: 0 0 1.35rem; }
    .es_pages_content .rows:not(:last-child) {
      margin: 0 0 3rem; }
    .es_pages_content .inner_content {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      padding: 0 1.5rem;
      width: 85%; }
      .es_pages_content .inner_content h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.65rem;
        margin: 0 0 1rem; }
      .es_pages_content .inner_content p {
        font-size: 1.05rem; }
        .es_pages_content .inner_content p:not(:last-child) {
          margin: 0 0 1rem; }
    .es_pages_content .we_are_team {
      display: flex;
      gap: 3rem;
      justify-content: space-between;
      margin: 0 0 2.5rem;
      padding: 2rem 0; }
      .es_pages_content .we_are_team .we_are_team_img,
      .es_pages_content .we_are_team .we_are_team_text {
        flex: 1 0 0; }
      .es_pages_content .we_are_team .we_are_team_text h3 {
        color: #d43364;
        font-family: "Merriweather", serif;
        font-size: 1.35rem;
        margin: 0 0 1rem; }
      .es_pages_content .we_are_team .we_are_team_text ul li {
        font-size: 1rem;
        list-style-type: square;
        position: relative; }
        .es_pages_content .we_are_team .we_are_team_text ul li:before {
          color: #d43364;
          content: '\f105';
          font-family: FontAwesome;
          margin-right: .5rem; }
        .es_pages_content .we_are_team .we_are_team_text ul li:not(:last-child) {
          margin: 0 0 .85rem; }
    .es_pages_content .clients_logos {
      margin: 2rem auto;
      width: 80%; }
      .es_pages_content .clients_logos .our_clients_container {
        display: grid;
        gap: 1.5rem;
        grid-template-columns: repeat(3, 1fr); }

  .why_choose_us {
    padding: 3.5rem 0;
    position: relative; }
    .why_choose_us .why_choose_us_content {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto;
      width: 80%; }
    .why_choose_us h2 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 2.15rem;
      line-height: 1.5;
      margin: 0 0 1rem; }
    .why_choose_us ul li {
      font-size: 1rem;
      list-style-type: square;
      position: relative; }
      .why_choose_us ul li:before {
        color: #d43364;
        content: '\f105';
        font-family: FontAwesome;
        margin-right: .5rem; }
      .why_choose_us ul li:not(:last-child) {
        margin: 0 0 .85rem; }

  /************ Footer Styling Area **************/
  footer {
    background-color: #ffffff;
    font-size: .95rem;
    padding: 3rem 0; }
    footer .footer_item h4 {
      color: #d43364;
      font-family: "Merriweather", serif;
      font-size: 1.65rem;
      margin: 0 0 1rem; }
    footer .footer_item ul li {
      color: #373737; }
      footer .footer_item ul li:not(:last-child) {
        margin-bottom: .5rem; }
    footer .footer_item ul li a {
      color: #373737;
      text-decoration: none; }
    footer .footer_item ul li i {
      color: #23aca1; }
    footer address {
      font-style: normal; }
      footer address h5 {
        color: #23aca1;
        text-transform: uppercase; }
      footer address span {
        margin-bottom: 1rem; }
    footer p:not(:last-child) {
      margin-bottom: 1rem; }

  /*************** End of Styling ***************/ }

/*# sourceMappingURL=styles.css.map */
