/*
Theme Name: Alia Chatoo
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-family-default: 'Rubik', sans-serif;
    --font-family-title:'Old Standard TT', serif;
    --font-size-default: 16px;
    --font-size-title: 18px;
    --font-color-default: #494949;
    --font-color-title: #6c757d;
    
    /** Use for input, button, and any other element */
    --primary: #000;
    --secondary-color: #fff;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --primary-color: #283547;
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/


:before,
:after{
    pointer-events: none;
}


/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block; 
    font-size: 0;
}
  
#nav .sub-menu {
    background: transparent;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin-top: 0;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    min-width: 240px;
    list-style: none outside none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out; 
    text-align: center; 
    padding-top: 17px;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px; 
    text-transform: uppercase;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}
#nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
}
#nav .sub-menu li {
    position: relative;
}

#fixednav li {
    position:relative; 
    padding: 0 40px;
    display: inline-block; 
    border-left: 1px solid #fff; 

}

#fixednav li:nth-child(1){
  margin-left:0; 
  border-left: none;
}
  
#fixednav .sub-menu {
    background: transparent;
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    min-width: 240px;
    list-style: none outside none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out; 
    text-align: center; 
    padding-top: 40px;
}
#fixednav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px; 
    text-transform: uppercase;
}
#fixednav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}
#fixednav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}
#fixednav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
#fixednav .sub-menu li {
    position: relative; 
    border:none;
}

a, a:hover, a:link, a:active, a:focus {
    color: var(--body-font-color);
    outline: none;
    text-decoration: none;
}

.slick-slide, .slick-slide *, .slick-slide a {outline: none;}

.site-easing, #header-wrap a, .main-nav li a, .bm-info a, #footer-wrap a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#main-wrapper {
    position: relative;
    overflow: hidden;
}

.site-section {
    position: relative;
}

.fixed-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    font-size: 0;
}
    .fixed-bg canvas {
        width: 100%;
        height: 100%;
        display: block;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
    }
        .safari-true .fixed-bg canvas,
        .mobile .fixed-bg canvas {
            background-attachment: scroll;
        }

.non-fixed-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    font-size: 0;
}
    .non-fixed-bg canvas {
        width: 100%;
        height: 100%;
        display: block;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

.site-inner-container {
    position: relative;
    z-index: 2;
}
.canvas-img {
    position: relative;
}
    .canvas-img canvas {
        width: 100%;
        height: auto;
        display: block;
    }
    .canvas-img img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
            -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }


/** Main Titlte **/

.title-wrap {
   position: relative; 
   display: block; 
   margin-bottom: 30px;  
   text-align: center;
}

  .title-widget {
    text-transform:capitalize;
    color: #000;
    position: relative;  
    font-weight: 400;
    display: inline-block; 
    font-size: 70px; 
    line-height: 1;  
    font-family: var(--font-family-title);   
    margin-top: 10px; 
    letter-spacing: 0.02em;
  }

  .title-small-wrap {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    position: relative;
  }


  .title-wrap span {
     display: block; 
     font-size: 15px; 
     letter-spacing: 0.25em; 
     text-transform: uppercase;  
     font-weight: 400; 
     color: #666666; 
  }

  .title-wrap span.num-title {
     color: #000; 
     padding-right: 15px; 
     margin-right: 15px; 
     position: relative; 
  }

  .title-wrap span.num-title:before { 
    position: absolute; 
    right: -6px; 
    width: 14px; 
    height: 2px; 
    background-color: #e0e0e0; 
    content:''; 
    top: 40%;
  }
    
/******/
  .hidden {
    display: none;
  }
  a.hp-link {
    display: flex;
    width: 100%;
    max-width: 221px;
    line-height: 50px;
    height: 53px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin: 20px 0 0;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    background: #fff;
    padding: 0; 
    font-size: 0; 
    justify-content: center;  
    align-items: center;
    position: relative; 
    border: 1px solid #000;

  }

   a.hp-link:before {
     position: absolute; 
     content:''; 
     width: 3px; 
     height: calc(100% + 2px);
     left: 0; 
     background: #000; 
     z-index: 1;
         transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
   }


   a.hp-link:after {
     position: absolute; 
     content:''; 
     width: 2px; 
     height: calc(100% + 2px); 
     left: 10px; 
     background: #fff; 
     z-index: 1;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out; 
    opacity: 0;
   }
  
     a.hp-link span {
          color: #002349;
          font-size: 16px;
          text-transform:uppercase;
          position: relative; 
          display: block; 
          font-weight: 400; 
          z-index: 3; 
          letter-spacing: 0.1em; 

     }

      a.hp-link:hover {
         border-color: #a0a0a0;
      }

      a.hp-link:hover:before {
        width: 100%;
        background: #a0a0a0; 
      }

      a.hp-link:hover span{
        color: #fff;
      }

      a.hp-link:hover:after {
         opacity: 1;
      }

     .r-more {
       display: flex;
       justify-content: flex-start; 
       position: relative; 
       flex-flow: row wrap;
     }

     #os-section .r-more,
     #testi-section .r-more {
       margin: 20px auto;
       justify-content:center;
     }





/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* GLOBAL */

body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.025em;

    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

#main-wrapper {
    position: relative; 
    overflow: hidden;
}

/* HEADER */
#header-wrap {
    width: 100%;
    position: fixed;
    z-index: 1011;
    top: 0;
    left: 0;
    font-size: 0;
    transition: all 0.3s ease-in-out;
    text-align: center;
    
}
   
.main-header {
    width: 100%;
    z-index: 100;
    margin: 0 auto; 
    position:absolute;
    height: auto; 
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;  
    padding: 20px 0;   
} 

.custom-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}


/* Header Logo */

.hdr-logo {
  display: block;
}

 .hdr-logo img {
   filter: invert(1);

 }

 .hdr-info-wrap {
   display: block;
 }
   .hdr-info {
     display: flex; 
     justify-content: center; 
     align-items: center;
   }

   .hdr-info a {
      color: #fff; 
      margin: 0 15px; 
      text-shadow: 0 0 5px rgb(0 0 0 / 80%);
   }
   .hdr-info span:nth-child(2) a {
     margin-right: 0;
   }

   .hdr-info a:hover {
      color: #d7d7d7;
   }
/* NAVIGATION */
#nav {
  display: block;
}

#nav li {
  padding: 0 40px; 
  border-left: 1px solid #fff;
}

#nav li:nth-child(1) {
  margin-left: 0; 
  border-left: none;
}

#nav a {

    font-size: 16px;
    font-weight: 400;
    color:#fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    display: block;
    padding: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;  
    text-shadow: 0 0 5px rgba(0,0,0,0.8);

}

#nav a:hover {
  color: #fefefe;
}

#nav li a:after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; 
}

    #nav li:hover a:after {
       width: 100%;
       left: 0;

    }

#nav li {
    position:relative;
}
#nav > li {

    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    position:relative;

}

#nav > li:first-child{
    margin: 0 0 0 0;
}
#nav > li:first-child:before {
    display: none;
}


/* Sub Menu */


#nav .sub-menu a {
    color: #000;
    display: block;
    padding: 10px 20px;
    font-size: 16px; 
    font-weight: 400;
    letter-spacing: 0.2em; 
    background: #d7d7d7;  
    text-shadow: none;
}

#nav .sub-menu a:hover { 
    background: #fff; 
}

#nav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}

#nav li:hover > .sub-menu {
    display: block;
}

#nav .sub-menu li {
    position: relative;
    display: block;
    padding: 0; 
    margin: 1px 0 0; 
    border:none;
}

#nav .sub-menu li:first-child{
    padding: 0 0 0 0;
}

  #nav .sub-menu li a:after {
    display: none;
  }

/***Header Short***/

.fixed-header{
    background:#fff;
    position: fixed;
    z-index: 1001;
    width: 100%;
    left: 0;
    top: -100px;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s; 
    padding: 20px 0;

}

.fixed-header.active{
    top: 0;
}


.fixed-header .hdr-logo img {
    filter: invert(0);
}

.fixed-header #fixednav a {
   color: #000;
}

.fixed-header .hdr-info a {
    color: #000;
}

.fixed-header .hdr-info a {
   text-shadow: unset;
}

.fixed-header .hdr-info a:hover {
   opacity: 0.6;
}


/*** Fixed Nav ***/

.navigation {
  position: relative;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 80%;
}


#fixednav {
  display: block;
}

#fixednav a {
    font-size: 16px;
    font-weight: 400;
    color:#fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    display: block;
    padding: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s; 
}

#fixednav a:hover {
  color: #555;
}

#fixednav li a:after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    #fixednav li:hover a:after {

       width: 100%;
       left: 0;

    }

#fixednav li {
    position:relative;
}
#fixednav > li {

    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;

}

#fixednav > li:first-child{
    margin: 0 0 0 0;
}
#fixednav > li:first-child:before {
    display: none;
}

#fixednav > li:hover > a{
    color:#000;
}


/* Sub Menu */

#fixednav .sub-menu a {
    color: #000;
    display: block;
    padding: 10px 20px;
    font-size: 16px; 
    font-weight: 400;
    letter-spacing: 0.2em; 
    background: #d7d7d7; 
}

#fixednav .sub-menu a:hover { 
    background: #fff; 
}

#fixednav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}

#fixednav li:hover > .sub-menu {
    display: block;
}

#fixednav .sub-menu li {
    position: relative;
    display: block;
    padding: 0; 
    margin: 1px 0 0;
}

#fixednav .sub-menu li:first-child{
    padding: 0 0 0 0;
}

  #fixednav .sub-menu li a:after {
    display: none;
  }
  
.fixed-header:not(.active) {
   opacity: 0;
   pointer-events: none;
}

/* HP SLIDESHOW */

#hp-slideshow-wrap {
    position: relative;
    z-index: 1;
}
    .hp-slideshow {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0; 
            z-index: 5;
    }

    .hp-slideshow #aios-slider-hp-slide .aios-slider-splide .aios-slider-tagline{
            position: absolute;
            bottom: 0;
            top: 50% !important;
            transform: translateY(-50%) !important;
            left: 0;
            z-index: 500;
            width: 100%;
            background: transparent !important;
            color: #fff;
            opacity: 1;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
    }
        .hp-slideshow .cycloneslider-template-responsive {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }
        .hp-slideshow .cycloneslider-template-responsive .cycloneslider-slide {
            background-color: transparent;
        }
        .hp-slideshow .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img:before,
        .hp-slideshow .cycloneslider-template-responsive .cycloneslider-slide::before {
            width: 100%;
            height: 100%;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            background-color: #000000;
            pointer-events: none;
            opacity: 0.3;
        }


            .hp-slideshow .textwidget,
            .hp-slideshow .cycloneslider-template-responsive,
            .hp-slideshow .cycloneslider-template-responsive .cycloneslider-slides,
            .hp-slideshow .cycloneslider-template-responsive .cycle-slide,
            .hp-slideshow .cycloneslider-template-responsive .cycloneslider-slide canvas {
                height: 100%;
                width: 100%;
            }
        .slideshow-canvas {
            font-size: 0;
            position: relative;
        }
            .slideshow-canvas canvas {
                 width: 100%;
            }




.hp-slideshow .cycloneslider-template-responsive .cycloneslider-caption {
    position: absolute;
    bottom: 0;
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 0;
    z-index: 500;
    width: 100%;
    background: transparent !important;
    color: #fff;
    opacity: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-slideshow .cycloneslider-template-responsive .cycloneslider-caption-title {
    display: none !important;
}

.cycloneslider-template-responsive .cycloneslider-pager span {
   background: transparent !important; 
   border: 1px solid #fff !important;
}

.cycloneslider-template-responsive .cycloneslider-pager span.cycle-pager-active {
   background: #fff !important; 
}
.hp-slideshow #aios-slider-hp-slide .splide__pagination,
.hp-slideshow .cycloneslider-template-responsive .cycloneslider-pager {
    position: absolute;
    bottom: 130px;
    left: 0;
    z-index: 100;
    width: 1140px !important;
    height: 12px;
    text-align: center !important;
    display: flex !important;
    justify-content: flex-start !important;
    margin: 0 auto !important;
    left: 100px !important;
    right: 100px !important;
}

.hp-slideshow #aios-slider-hp-slide .splide__pagination__page{
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0);
    display: inline-block;
}
.hp-slideshow #aios-slider-hp-slide .splide__pagination__page.is-active,
.hp-slideshow #aios-slider-hp-slide .splide__pagination__page:hover{
    background: #fff;
}


/*** Slide Tag ***/


  .tag-wrap {
     display: block; 
     position: relative; 
     margin: 0 auto; 
     color: #fff;  
     font-size: 68px; 
     text-align: left; 
     font-family: var(--font-family-title); 
     font-weight: 400; 
     line-height: 1;
  }

   .tag-wrap span.tag-s{
      display: block;  
      font-size: 22px; 
      text-transform: uppercase; 
      letter-spacing: 0.25em;   
      font-family: var(--font-family-default); 
      padding-bottom: 12px;
   } 

    .tag-info {
      display: flex; 
      justify-content: center; 
      align-items: center;  
      flex-flow: row wrap;
      color: #fff;  
      margin-top: 50px;
    }

     .tag-info span {
       display: block;
     }

      .tag-info span:nth-child(2) {
        margin: 0 20px; 
        
      }

     .tag-info a {
       font-size: 18px; 
       color: #fff; 
       letter-spacing: 0.06em; 
       font-weight: 500;
     }

      .tag-info a:hover {
         opacity: 0.8;
      }

      .hp-slideshow a.hp-link {
         border:transparent; 
         background: transparent;
      }

      .hp-slideshow a.hp-link span {
         color: #fff;
      }

      .hp-slideshow a.hp-link:hover:before {
    width: 100%;
    background: #fff;
} 

.hp-slideshow a.hp-link:after {
   background: #000;
}

      .hp-slideshow a.hp-link:hover span {
         color: #000;
      }


/*** About Area ***/

section#about-section {
    position: relative; 
    /*overflow: hidden; */  
    padding: 120px 0 100px;
    background-color: #fff;  
    z-index: 1;
}

section#about-section:before {
    position: absolute;
    width: 100%;
    height: 184px;
    left: 0;
    right: 0;
    top: -184px;
    content: '';
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
   .about-area {
     width: 100%; 
     margin: 0 auto;  
     position: relative; 
   }

   .about-wrap { 

     display: flex; 
     /*flex-flow: row wrap; */
     align-items: center;
     font-size: 0; 
     letter-spacing: 0; 
     justify-content: center;

   }
    .about-img {
      position: relative; 
      display: block; 
      width: 35.555555555555557%;
    }
     

      .about-text-wrap {
         position: relative;
         padding: 20px 0; 
         padding-left: 75px;
         display: block;
         width: 64.44444444444445%;
      }

     .about-text .title-wrap {
       text-align: left; 
       margin-bottom: 0; 
     }

       .about-text p {
         letter-spacing: 0.025em; 
         margin: 30px 0; 
        line-height: 26px; 
        font-size: 16px; 
         color: #494949;
       }




/* Featured City */

#fc-section {
    position: relative; 
    overflow: hidden; 
    z-index: 1; 
    background: #fff;
}

  .fc-wrap {
     position: relative; 
     display: flex; 
     justify-content: center; 
     align-items: flex-start;
  }

   .fc-left {
     display: block; 
     width: 26.324786324786326%; 
     padding-right: 50px;
   }

   .fc-left .title-wrap {
     text-align: left; 
     padding-top: 15px; 
     margin-bottom: 20px;
   }

   .fc-left p {
     line-height: 24px; 
     color: #2e2e2e; 
     margin-bottom: 15px;
   }

  .fc-right {

    width:73.67521367521368%; 
    display: block;

  }

   .fc-list-wrap {
     margin-left: -2px; 
     margin-right: -2px; 
     display: flex; 
     justify-content: center; 
      align-items: flex-start;
     flex-flow: row wrap;
   }

    .fc-list {
       position: relative; 
       display: block; 
       width: 25%; 
       padding: 0 2px;
    }

     .fc-list a {
       display: block; 
       width: 100%; 
       margin: 0 auto; 
       text-align: center;
     }
      .fc-list a > .fc-photo.canvas-img {
         filter: grayscale(1);
      }
      .fc-list a:hover > .fc-photo.canvas-img {
         filter: grayscale(0);
      }
      .fc-list a > .fc-title {
         display: block;
         padding: 30px 0; 


      }

       .fc-list a > .fc-title span {
         font-size: 15px; 
         letter-spacing: 0.025em; 
         line-height: 25px; 
         font-weight: 500; 
         text-transform: uppercase;
       }

/* Our Services */

#os-section {
    position: relative; 
    overflow: hidden; 
    z-index: 1; 
    text-align: center; 
    background: #fff; 
    padding-top: 50px;
}

  .os-wrap {
     position: relative; 
     display: flex; 
     justify-content: center; 
     align-items: center;
  }

   .os-list-wrap {
     margin-left: -5px; 
     margin-right: -5px; 
     display: flex; 
     justify-content: center; 
      align-items: flex-start;
     flex-flow: row wrap; 
     padding-top: 30px;
   }

   #os-section .title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    text-align: center;
   }

    .os-list {
       position: relative; 
       display: block; 
       width: 33.333%; 
       padding: 0 5px;
    }

     .os-list a {
       display: block; 
       width: 100%; 
       margin: 0 auto; 
       text-align: center;
     }
      .os-list a > .os-photo.canvas-img {
         filter: grayscale(1);
      }
      .os-list a:hover > .os-photo.canvas-img {
         filter: grayscale(0);
      }

      .os-list a > .os-photo.canvas-img .os-btn {
         position: absolute;
         display: flex;
         justify-content: center;
         align-items: center;
         width: 100%;
         height: 100%;
         left: 0;
         right: 0;
         z-index: 2;
         opacity: 0;
         top: 0;
         bottom: 0;  
         transition: all .25s ease-in-out;
         -moz-transition: all .25s ease-in-out;
         -webkit-transition: all .25s ease-in-out;
      }

      .os-list a:hover > .os-photo.canvas-img .os-btn {
          opacity: 1;
      }

      .os-list a > .os-photo.canvas-img .os-btn span {
          position: relative; 
          display: block; 
          width: 198px; 
          height: 53px; 
          border: 2px solid #fff; 
          text-shadow: 0 0 5px rgba(0,0,0,1);
          line-height:53px; 
          font-size: 12px; 
          font-weight: 700; 
          color: #fff; 
          letter-spacing: 0.2em; 
          text-transform: uppercase;
      }

      .os-list a > .os-title {
         display: block;
         padding: 20px 0; 
         font-size: 15px; 
         letter-spacing: 0.025em; 
         line-height: 25px; 
         font-weight: 500; 
         text-transform: uppercase;
      }


/* Testi Section */

#testi-section {
    position: relative; 
    overflow: hidden; 
    z-index: 1; 
    background-color: #fff; 
    text-align: center; 
    padding-top: 100px; 
    padding-bottom: 100px;
}

#testi-section .title-wrap {
  position: relative;
    display: inline-block;
    margin-bottom: 38px;
    text-align: center;
}
#testi-section .title-small-wrap {
  justify-content: center;
}

.testi-wrap {
  position: relative;
}
    .testi-slide {
       position: relative; 
       font-size: 0; 
       letter-spacing: 0;   
    }


.testi-slide .slick-slide {
    outline: 0;
    padding: 0 150px;
}



     .testi-list {
       position: relative; 
       display: block; 
       padding: 40px 0;
     }

     .testi-list:before {
       position: absolute; 
       top: 0;
       left: 0;
       right: 0; 
       margin: 0 auto;
       content: '';
       background: url(images/q-icon.png) no-repeat;
       width: 46px; 
       height: 44px;
     }


      .testi-list p {
         font-size: 16px; 
         color: #494949; 
         letter-spacing: 0.025em; 
         line-height: 26px;  
         margin-top:28px; 
         display: block; 
         font-weight: 400; 
      }

       .testi-list span.testi-a {
         display: block; 
         text-transform:uppercase; 
         font-size: 20px; 
         font-weight: 400; 
         margin-top: 30px;
         color: #545454; 
         letter-spacing: 0.05em; 
       }


.testi-nav {
    margin: 0 auto;
    position: absolute;
    z-index: 10;
    font-size: 0;
    right: 0;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

button.testi-prev {
    position: relative;
    left: -60px;
    display: block !important;
    outline: none;
    text-decoration: none;
    color: #000;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.2em;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    top: 0;
    font-weight: 700;
    border:1px solid #000;
    width: 58px;
    height: 53px;
    background: none;
    cursor: pointer;
}


button.testi-next {
    right: -60px;
    display: block !important;
    outline: none;
    text-decoration: none;
    color: #000;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.2em;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    top: 0;
    font-weight: 700;
    border:1px solid #000;
    width: 58px;
    height: 53px;
    background: none;
    cursor: pointer; 
    position: relative;
}


button.testi-next:hover,
button.testi-prev:hover {
   background: #a0a0a0;
}

.testi-wrap .slick-dots li{
    display: inline-block;
}

.testi-wrap .slick-dots li button {
   width: 10px;
   height: 10px;
   padding: 0;
   margin: 0 8px;
   border: none;
   font-size: 0;
   background: #fff;
   border-radius: 50%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   line-height: 1; 
   border:1px solid #000;
}

.testi-wrap .slick-dots li.slick-active button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #000;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}


/*.testi-wrap .slick-dots li.slick-active button:before {
    position: absolute;
    content: '';
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #d0d0d9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    right: 0;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}*/

.testi-wrap ul.slick-dots {
    text-align: center;
    display: block;
    position: relative;
}



/*** Join Portfolio ***/

.footer-contact-form {
  position: relative; 
  padding-top: 150px; 
  padding-bottom: 110px; 
  background: #f9f9f9;
}

.form-bg.non-fixed-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    font-size: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

 .form-bg.non-fixed-bg canvas {
    width: 445px;
    height: 373px;
    filter: grayscale(1);
    opacity: 0.5;
 }

.footer-contact-form .form-main-wrap {
   max-width: 1600px; 
   margin: 0 auto;
}

.footer-contact-form .container-fluid {
   display: flex; 
   justify-content: flex-start; 
   position: relative;
   align-items: flex-start;
}

.footer-contact-form .form-wrap {
   display: flex; 
   justify-content: flex-start; 
   position: relative; 
   z-index: 5;
}

.form-title-wrap {
   display: block;
   padding-left: 60px;  
   padding-right: 80px;
   width: 30%;
}

.form-title-wrap .title-wrap {
  text-align: left;
}

.form-title-wrap .title-wrap span  {

  margin-top: 10px;
}

.form-title-wrap p {

 line-height: 24px;
    color: #2e2e2e;
    margin-bottom: 15px;
  }


            .footer-form {
                width: 100%;
                max-width: 758px;
                margin: 0;
                font-size: 0;
                position: relative;
                z-index: 5;
            }
                .form-field-wrap {
                    width: 100%;
                    display: flex;
                    align-items: flex-end;
                    position: relative; 
                    justify-content: center;
                }

                    .form-field-long {
                        width: 100%; 
                        margin-bottom: 10px;
                    }
                    .form-field-short {
                        width: 48.90%;
                        display: inline-block;
                        vertical-align: top;
                        margin-left: 3.15%; 
                        margin-bottom: 10px;
                    }

                    .form-field-short:first-child {
                        margin-left: 0;
                    }
                        .form-field-short input, 
                        .form-field-long input,
                        .form-field-wrap textarea {
                            width: 100%;
                            height: 50px;
                            padding: 0;
                            color: #000;
                            font-size: 15px;
                            font-weight: 300;
                            letter-spacing: 0.05em;
                            border: none;
                            border-bottom: 1px solid #000;
                            background-color: transparent;
                            text-transform: capitalize;
                            outline: none;
                            -webkit-appearance: none;
                            -moz-appearance:    none;
                            appearance:         none; 
                           
                        }


                        .form-field-wrap textarea {
                            height: 120px;
                            padding-top: 40px;
                            resize: none; 
                            padding-right: 50px;
                        }

.form-submit {
                    width: 30px;
                    height: 30px;
                    position: absolute;
                    bottom: 24px;
                    right: 4px;
                    cursor: pointer;
                }
                    .form-submit .ai-font-paper-airplane-alt {
                        color: #000;
                        font-size: 30px;
                        pointer-events: none;
                        transition: all 0.3s ease-in-out;
                    }
                        .form-submit:hover .ai-font-paper-airplane-alt {
                            color: #222;
                        }
                    .form-submit input[type="submit"] {
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        z-index: 2;
                        top: 0;
                        left: 0;
                        padding: 0;
                        font-size: 0;
                        border: none;
                        background: transparent;
                        outline: none;
                        -webkit-appearance: none;
                        -moz-appearance:    none;
                        appearance:         none;
                    }

                    .footer-form .ajax-loader, .footer-form .wpcf7-spinner {
                        position: absolute;
                        left: 0;
                        right: 0;
                        margin: 0 auto !important;
                        bottom: -50px;
                    }
                    .footer-form .wpcf7-form-control-wrap {
                        display: block;
                    }
                    .footer-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
                        width: auto;
                        max-width: 100%;
                        font-size: 11px;
                        position: absolute;
                        top: 10px;
                    }
                    .footer-form div.wpcf7-response-output,
                    .footer-form .wpcf7 form .wpcf7-response-output {
                        position: absolute;
                        left: 0;
                        right: 0;
                        margin: 10px auto 0;
                        color: var(--body-font-color) !important;
                        font-size: 12px;
                        text-align: center;
                    }




/* FOOTER */

section#ftr-section {
   position: relative; 
   z-index: 1; 
   background: #fff;
}


.footer {
    font-size: 12px;
    width: 100%;
    padding: 100px 0 40px;
    text-align: center;
    color: #000; 
    position: relative;
    z-index: 2;

}

/*** Footer Contact Info ***/

.ftr-title {
   font-size: 18px; 
   text-transform: uppercase;
   margin-bottom: 30px;  
   margin-top: 20px;
   text-align: left; 
   display: block; 
   font-weight: 400;
}

 .top-nav {
    position: relative; 
    padding-left: 65px;
 }

  .footernav {
     display: block; 
     column-count: 2; 
     text-align: left;
  }
  .footer li {
    display: block;
    padding: 10px 0;
    line-height: 10px;
    text-transform: uppercase;
  }

  .footer li a {  
    color:#000; 
    font-size: 13px;             
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;  
    font-weight: 400; 
    letter-spacing: 0.025em;  
  }

    .footer li:first-child {
      border: 0;
      padding-left: 0;
    }
  


 .footer li a:hover {
    color: #9a9a9a;
 }

  .footer img.img-responsive {
     margin: 0 auto;
  }

 .copy-wrap {
   display: block; 
   align-items: center;  
   margin-top: 15px; 
 }

  .footer .copyright {
         color:#000; 
         padding: 0; 
         letter-spacing: 0.05em;  
         line-height: 20px; 
         font-weight: 400; 
         font-size: 13px; 
         text-transform: capitalize;
  }

  .footer .copyright a {
     color: #000;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
  }


.footer .copyright a:hover { 
    color: #ccc;
}

.copyright span {
   text-transform: capitalize;
}


.ftr-logos {
   display: block;  
   font-size: 25px;  
   text-align: center;  
   margin-top: 20px;

}
.ftr-logos em {
    color: #000;

    }


.copyright-wrapp {  

   padding-top: 40px; 
   margin: 0 auto;
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
}

.ftr-dis {
   display: block; 
   font-size: 11px; 
   color: #666666; 
   line-height: 28px; 
   font-weight: 400;
   margin: 20px auto;  
   padding: 0 40px;
 }

.ftr-dis a:hover {
   opacity: 0.8;
}

 .ftr-cont {
   padding-left: 130px;
 }

.ftr-info {
  display: flex;
  text-align: left; 
  margin: 10px 0; 
  align-items: center;
}

.ftr-info i {
   margin-right: 15px; 
}
.ftr-info i.ai-font-phone {
  font-size: 15px;
}
.ftr-info a {
  display: block; 
  font-size: 13px; 

}
.ftr-info a:hover {
color: #9a9a9a;

}
/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-banner{
    position: relative;
    width: 100%;
}
    .ip-banner::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgba(0,0,0,.3);
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 250px;
        background-color: var(--dark);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .ip-banner .container{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }
        .ip-banner h1 {
            font-weight: 700;
            font-size: 32px;
            text-align: center;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.7;
        }
            .ip-banner h1 span{
                display: block;
                font-size: 24px;
                font-weight: 400;
                text-transform: none;
                letter-spacing: 0.01em;
            }
/* Adjust minimum height of page area */
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

/** Adjust width of content columns **/
#content-sidebar #content{ width: 77.08%; }
#content-full #content { width: 100%; }

/* Adjust width of sidebar */
.sidebar{ width: 20.83%; }

/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}
    .page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
        margin-left: -15px;
        margin-right: -15px;
    }

/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu { line-height:1.7 }

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title,
.post-page-agents-teams h1.entry-title,
.single-aios-agents h1.agent-entry-title {
    text-transform: capitalize;
    color: #000;
    font-weight: 400;
    font-size: 70px;
    line-height: 1;
    font-family: var(--font-family-title);
    letter-spacing: 0.02em;
}

/* Styles for category/archive/search/etc subheadings (h2) */

#content .archive-subtitle {
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 500;
    font-family: var(--Cinzel);
    text-transform: uppercase;
    line-height: 1;
}

.post-page-agents-teams #inner-page-wrapper,
.single-aios-agents #inner-page-wrapper {
    margin-top: 20px;
}
.post-page-agents-teams #agents-results .agent-top {
    margin: 0 auto;
}
.post-page-agents-teams #agents-results .agents-name a:hover,
.post-page-agents-teams #agents-results .agents-contact li a:hover,
.single-aios-agents #agents-single .agents-contact li a:hover {
    color: var(--secondary-color);
}
.post-page-agents-teams #agents-results .agents-smi li a,
.single-aios-agents #agents-single .agents-smi li a {
    background: var(--secondary-color);
}
.single-aios-agents #agents-single .agents-smi li a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.post-page-agents-teams #agents-results .agents-smi li a:hover {
    color: #ffffff;
    opacity: 0.7;
}
.single-aios-agents #agents-single .agents-contact li.agent-email-address {
    margin: 0 0 20px;
}

body.post-page-contact .hentry h1.entry-title {
    display: block !important;
}

/* POJO */
body #pojo-a11y-toolbar {
  bottom:0 !important;
  top: auto !important;
  background: #fff;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
    background: #000 !important;
    color: #fff;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    width: auto;
    font-size: 11px;
    white-space: nowrap;
    display: none;
}
.use-floating-validation-tip .wpcf7-not-valid-tip:nth-of-type(1){
  display: block;
}

.page-id-17 #content h3 {
    color: #000000;
    text-transform: uppercase !important; 
    font-family: var(--font-family-title) !important; 
    font-weight: 400 !important; 
    font-size: 15px !important;
}

.aios-welcome .aios-welcome-text .aios-title-a {
    color: #000000;
    text-transform: uppercase !important; 
    font-family: var(--font-family-title) !important; 
    font-weight: 400 !important; 
}

.areas {
    color: #000000;
    font-size: 45px !important; 
    font-weight: 400 !important; 
    font-family: var(--font-family-title) !important; 
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

