@charset "UTF-8";
/*-----------------------------------------------------------------------------------
 *
 * Theme Name: Zodiac - Astrology and Horoscope HTML Template
 * Description: Astrology and Horoscope HTML Template
 * Author: Chitrakoot Web
 * Version: 1.0
 *
 * ----------------------------------------------------------------------------------- */
/* ----------------------------------

    01. Common styles
    02. Button styles
    03. List styles 
    04. Navigation
    05. Header styles
    06. Slider fade
    07. Banner styles
    08. Page title
    09. Section title
    10. Card styles
    11. Gallery
    12. Pagination
    13. Video
    14. Owl carousel
    15. Accordion style
    16. Tabs
    17. Pages
    18. Others
    19. Footer
    
---------------------------------- */
/*==============================
 *    Common styles
 *    ================================ */
/* loader */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%; }
  #preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #fd914f;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }
  #preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #fd914f;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s; }

@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0; }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1; }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1; }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0; } }
/* theme color and basic options */
a:hover, a:active {
  color: #fd914f;
  text-decoration: none; }

.text-primary {
  color: #fd914f !important; }

.text-secondary {
  color: #17384e !important; }

.bg-primary {
  background-color: #fd914f !important; }

.bg-secondary {
  background-color: #17384e !important; }

.primary-overlay[data-overlay-dark]:before {
  background: #fd914f; }

.secondary-overlay[data-overlay-dark]:before {
  background: #17384e; }

.primary-hover:hover {
  color: #fd914f !important; }

.cursor-pointer {
  cursor: pointer; }

.text-animation, .text-animations {
  line-height: 1.4; }

.square {
  height: 60px;
  width: 60px;
  border-radius: 5px;
  display: inline-block; }

.height-300 {
  height: 300px; }

.form-check-input:checked {
  border-color: #fd914f;
  background-color: #fd914f; }

/* scroll to top */
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 35px;
  height: 35px;
  line-height: 33px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all 0.3s ease; }
  .scroll-to-top i {
    color: #fff; }
  .scroll-to-top:hover {
    color: #232323;
    background: #fff; }
    .scroll-to-top:hover i {
      color: #232323; }
  .scroll-to-top:visited {
    color: #232323;
    text-decoration: none; }

/*==============================
 *    Button styles
 *    ================================ */
/* butn-style1 */
.butn-style1 {
  position: relative;
  overflow: hidden;
  -webkit-background-clip: border-box !important;
  -moz-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: background 0.25s, color 0.25s, border 0.25s !important;
  -moz-transition: background 0.25s, color 0.25s, border 0.25s !important;
  -o-transition: background 0.25s, color 0.25s, border 0.25s !important;
  transition: background 0.25s, color 0.25s, border 0.25s !important;
  font-weight: 600;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #fff;
  background-color: #fd914f;
  padding: 12px 0;
  min-width: 160px;
  font-size: 16px; }
  .butn-style1:hover {
    color: #fff; }
  .butn-style1:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    z-index: -1;
    background-color: #17384e;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    content: ""; }
  .butn-style1:hover:before, .butn-style1:active:before, .butn-style1:focus:before {
    background-color: #17384e;
    height: 100%; }
  .butn-style1.white {
    background-color: #17384e; }
    .butn-style1.white:hover, .butn-style1.white:active, .butn-style1.white:focus {
      color: #fd914f; }
    .butn-style1.white:before {
      background-color: #fff; }
  .butn-style1.medium {
    padding: 9px 0;
    min-width: 140px;
    font-size: 15px; }
  .butn-style1.small {
    padding: 6px 0;
    min-width: 130px;
    font-size: 13px; }

@media screen and (max-width: 992px) {
  .butn-style1 {
    padding: 8px 0;
    min-width: 140px;
    font-size: 15px; }
    .butn-style1.medium {
      padding: 6px 0; } }
@media screen and (max-width: 991px) {
  .butn-style1.small {
    font-size: 12px; } }
@media screen and (max-width: 767px) {
  .butn-style1 {
    padding: 7px 0;
    min-width: 120px;
    font-size: 13px; }
    .butn-style1.medium {
      padding: 5px 0;
      min-width: 120px;
      font-size: 13px; }
    .butn-style1.small {
      font-size: 11px;
      padding: 5px 0;
      min-width: 110px; } }
/* butn-style2 */
.butn-style2 {
  position: relative;
  height: 40px;
  width: 160px;
  line-height: 40px;
  font-size: 14px;
  background-color: #fd914f;
  color: #fff;
  display: inline-block;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  border-radius: .25rem;
  text-align: center; }
  .butn-style2:hover, .butn-style2:active, .butn-style2:focus {
    color: #fff; }
  .butn-style2:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #17384e;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
    border-radius: .25rem; }
  .butn-style2:hover:before, .butn-style2:active:before, .butn-style2:focus:before {
    transform: scaleX(1); }
  .butn-style2.white {
    background-color: #17384e; }
    .butn-style2.white:hover {
      color: #17384e; }
    .butn-style2.white:before {
      background-color: #fff; }
  .butn-style2.blue {
    background-color: #fff;
    color: #fd914f; }
    .butn-style2.blue:hover, .butn-style2.blue:active, .butn-style2.blue:focus {
      color: #fff; }
    .butn-style2.blue:before {
      background-color: #fd914f; }
  .butn-style2.lg {
    height: 46px; }
  .butn-style2.medium {
    height: 35px;
    width: 145px;
    line-height: 35px;
    font-size: 13px; }
  .butn-style2.small {
    height: 30px;
    width: 135px;
    line-height: 30px;
    font-size: 11px; }
  .butn-style2.modal-btn {
    width: unset;
    padding: 0 20px; }
  .butn-style2.header-btn {
    line-height: 0;
    font-size: 16px;
    color: #fff; }

/* butn-style3 */
.butn-style3 {
  display: inline-block;
  position: relative;
  background-color: #fd914f;
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  letter-spacing: 3px; }
  .butn-style3:hover {
    background-color: #17384e;
    color: #fff; }
  .butn-style3:before {
    position: absolute;
    content: '';
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border-radius: 50px;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .butn-style3.white:hover {
    background-color: #fff;
    color: #fd914f; }
    .butn-style3.white:hover:before {
      border: 1px solid #fd914f; }
  .butn-style3.orange {
    background-color: #fff;
    color: #fd914f; }
    .butn-style3.orange:before {
      border: 1px solid #fd914f; }
    .butn-style3.orange:hover {
      background-color: #17384e;
      color: #fff; }
      .butn-style3.orange:hover:before {
        border: 1px solid #fff; }
  .butn-style3.medium {
    font-size: 14px;
    height: 43px;
    line-height: 43px;
    padding: 0 25px !important; }
  .butn-style3.small {
    font-size: 13px;
    height: 35px;
    line-height: 35px;
    padding: 0 20px; }
  .butn-style3.blue {
    background-color: #17384e;
    color: #fff; }
    .butn-style3.blue:hover {
      background-color: #fd914f; }

/*==============================
 *    List styles
 *    ================================ */
.list-style {
  list-style: none;
  margin-bottom: 30px; }
  .list-style li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px; }
    .list-style li:after {
      content: '\f00c';
      font-family: Font Awesome\ 5 Free;
      position: absolute;
      left: 0px;
      top: 1px;
      z-index: 1;
      font-weight: 600;
      color: #fd914f; }

@media screen and (max-width: 1199px) {
  .list-style {
    margin-bottom: 25px; } }
@media screen and (max-width: 575px) {
  .list-style {
    margin-bottom: 20px; } }
/* list-style1 */
.list-style1 li a {
  position: relative;
  overflow: hidden;
  -webkit-background-clip: border-box !important;
  -moz-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: background 0.25s, color 0.25s, border 0.25s !important;
  -moz-transition: background 0.25s, color 0.25s, border 0.25s !important;
  -o-transition: background 0.25s, color 0.25s, border 0.25s !important;
  transition: background 0.25s, color 0.25s, border 0.25s !important;
  color: #fff;
  background-color: #fd914f;
  font-size: 15px;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: 50%; }
  .list-style1 li a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    z-index: -1;
    background-color: #17384e;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    content: ""; }
  .list-style1 li a:hover:before {
    background-color: #17384e;
    height: 100%; }

/* list-style2 */
.list-style2 li a {
  color: #fff; }
  .list-style2 li a:hover {
    color: #fd914f; }

/* list-style3 */
.list-style3 li a {
  position: relative;
  height: 40px;
  width: 40px;
  font-size: 14px;
  background-color: #fd914f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  border-radius: .25rem; }
  .list-style3 li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #17384e;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
    border-radius: 0.20rem; }
  .list-style3 li a:hover:before {
    transform: scaleX(1); }

@media screen and (max-width: 992px) {
  .list-style3 li a {
    width: 35px;
    height: 35px;
    font-size: 14px; } }
@media screen and (max-width: 767px) {
  .list-style3 li a {
    width: 30px;
    height: 30px;
    font-size: 12px; } }
/* list-style4 */
.list-style4 li a {
  display: inline-block;
  position: relative;
  background-color: #fd914f;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  width: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center; }
  .list-style4 li a:hover {
    background-color: #fff;
    color: #fd914f; }
  .list-style4 li a:before {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    border-radius: 50%;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .list-style4 li a:hover:before {
    border: 1px solid #fd914f; }

/* list-style5 */
.list-style5 ul li {
  margin-bottom: 20px;
  position: relative; }
  .list-style5 ul li:last-child {
    margin-bottom: 0; }
  .list-style5 ul li:before {
    content: "";
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #fd914f;
    position: absolute;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem; }
  .list-style5 ul li a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 10px 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: .25rem; }
  .list-style5 ul li.active {
    background-color: #fd914f;
    border-radius: .25rem; }
    .list-style5 ul li.active:before {
      display: none; }
    .list-style5 ul li.active a {
      color: #fff;
      border: 1px solid #fd914f; }

/* list-style6 */
.list-style6 li a {
  position: relative;
  height: 35px;
  width: 35px;
  font-size: 14px;
  background-color: #fd914f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  border-radius: .25rem; }
  .list-style6 li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #17384e;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
    border-radius: 0.20rem; }
  .list-style6 li a:hover:before {
    transform: scaleX(1); }

/* ===================================
    Navigation
====================================== */
/* top bar  */
.top-bar-info {
  display: inline-block;
  vertical-align: middle; }
  .top-bar-info ul {
    margin-bottom: 0; }
  .top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0; }

.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0; }

.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: middle; }

.top-social-icon {
  padding: 0;
  float: right;
  margin: 0; }
  .top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px; }
    .top-social-icon li:last-child {
      padding-right: 0; }
      .top-social-icon li:last-child a {
        padding-right: 0; }
    .top-social-icon li a {
      color: #fff;
      line-height: 28px;
      -webkit-transition-duration: .3s;
      transition-duration: .3s;
      padding: 0 3px; }
      .top-social-icon li a:hover {
        color: rgba(255, 255, 255, 0.65); }

/* menu area light */
.navbar-nav li.current > a, .navbar-nav li.active > a {
  color: #fd914f; }

.attr-nav > ul > li > a.butn {
  color: #fff; }

.navbar > ul > li.current > a:after {
  border-color: transparent #fd914f #fd914f transparent; }

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
  color: #fd914f; }
.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent #fd914f #fd914f transparent; }
.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: #fd914f; }
  .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
    color: #fd914f; }
.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: #fd914f; }
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #fd914f #fd914f transparent; }

@media screen and (min-width: 992px) {
  .menu_area-light .navbar ul ul li.active > a, .menu_area-light .navbar-nav li.has-sub a:hover {
    color: #fd914f; }
  .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
    border-color: #fd914f; }
  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #fd914f; }

  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #fd914f; }
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
      border-color: transparent #fd914f #fd914f transparent; }
  .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
    border-color: transparent #fd914f #fd914f transparent; }
  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: #fd914f; }
    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
      color: #fd914f; }
  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #fd914f #fd914f transparent; }
  .header-style2 .navbar ul ul li.active > a {
    color: #fd914f; }
  .header-style2 .navbar-nav li.has-sub a:hover, .header-style2 .navbar-nav li.has-sub a:active, .header-style2 .navbar-nav li.has-sub a:focus, .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
    color: #fd914f; }
  .header-style2 .navbar > ul > li.has-sub > a:hover:after, .header-style2 .navbar > ul > li.has-sub > a:active:after, .header-style2 .navbar > ul > li.has-sub > a:focus:after {
    border-color: transparent #fd914f #fd914f transparent; } }
@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #fd914f; }
    .header-style1 .navbar-toggler:after {
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .header-style1 .navbar-toggler:before {
      background: #fff; }
    .header-style1 .navbar-toggler.menu-opened:after, .header-style1 .navbar-toggler.menu-opened:before {
      background: #fff; } }
/* header style 2 */
.header-style2 .navbar-nav li.current > a {
  color: #fd914f; }
.header-style2 .navbar > ul > li.current > a:after {
  border-color: transparent #fd914f #fd914f transparent; }
.header-style2.scrollHeader .navbar-nav li.current > a {
  color: #fd914f; }
  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #fd914f; }
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #fd914f #fd914f transparent; }

@media screen and (min-width: 992px) {
  .header-style2 .navbar ul ul li.active > a {
    color: #fd914f; }
  .header-style2 .butn.secondary:before {
    background: #ffffff; }
  .header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
    color: #17384e !important; }
  .header-style2.scrollHeader .butn.secondary:before {
    background: #fd914f; }
  .header-style2.scrollHeader .butn.secondary:hover, .header-style2.scrollHeader .butn.secondary:focus, .header-style2.scrollHeader .butn.secondary:active {
    color: #fff !important; } }
/* sidebar */
.sidebar .title-three.service-title h2 {
  font-size: 25px; }
.sidebar .service-contact input.form-control {
  background-color: #f2f2f2;
  color: #fd914f; }

@media screen and (max-width: 992px) {
  .sidebar .title-three.service-title h2 {
    font-size: 16px; } }
/*==============================
 *    Header styles
 *    ================================ */
/* header-style1*/
.header-style1.header2 .navbar-nav > li.has-sub > a:hover {
  color: #fd914f; }
.header-style1.header2 .navbar > ul > li.has-sub > a:hover:after {
  border-color: transparent #fd914f #fd914f transparent; }
.header-style1.header2 .navbar-toggler {
  background: #fd914f; }
.header-style1.header2 .navbar-nav > li > a {
  color: #fff; }
.header-style1.header2 .navbar-nav > li.current > a, .header-style1.header2 .navbar-nav > li > a:hover {
  color: #fd914f !important; }

@media screen and (max-width: 991px) {
  .header-style1.header2 .navbar-nav > li > a {
    color: #282b2d; } }
/* header-style3*/
.header-style3 .navbar-nav > li.has-sub > a:hover {
  color: #fd914f !important; }
.header-style3 .navbar-nav li.has-sub a:hover, .header-style3 .navbar-nav li.current > a {
  color: #fd914f !important; }

@media screen and (min-width: 992px) {
  .header-style3 .navbar ul ul li.active > a {
    color: #fd914f; }
  .header-style3 .navbar > ul > li.has-sub > a:hover:after, .header-style3 .navbar > ul > li.current > a:after {
    border-color: transparent #fd914f #fd914f transparent; }
  .header-style3.scrollHeader .navbar-nav > li.active > a, .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #fd914f; }
  .header-style3.scrollHeader .navbar-nav li.current > a {
    color: #fd914f; }
    .header-style3.scrollHeader .navbar-nav li.current > a:hover {
      color: #fd914f; }
  .header-style3.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #fd914f #fd914f transparent; } }
/*==============================
 *    slider-fade
 *    ================================ */
/* slider-fade */
.slider-fade h1 {
  font-size: 60px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.2;
  visibility: hidden; }
.slider-fade .owl-dots {
  position: absolute;
  bottom: 40px;
  right: 50px;
  margin: 0 !important; }
.slider-fade.owl-theme .owl-dots {
  counter-reset: dots;
  font-size: 2.5rem;
  color: #fff; }
  .slider-fade.owl-theme .owl-dots .owl-dot {
    position: relative; }
    .slider-fade.owl-theme .owl-dots .owl-dot:before {
      counter-increment: dots;
      content: counter(dots,decimal-leading-zero);
      position: absolute;
      right: 0; }
    .slider-fade.owl-theme .owl-dots .owl-dot span {
      background: #fff;
      opacity: 0.3;
      height: 60px;
      width: 60px;
      border-radius: 5px;
      margin-left: 20px; }
    .slider-fade.owl-theme .owl-dots .owl-dot.active span {
      background: #17384e;
      opacity: 1; }
.slider-fade .active h1, .slider-fade .active .butn {
  animation: anislide 1s ease 100ms both;
  backface-visibility: hidden;
  visibility: visible;
  opacity: 1; }
.slider-fade .active h1 {
  animation-delay: 900ms; }
.slider-fade .active .butn {
  animation-delay: 1400ms; }

@-webkit-keyframes anislide {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@media screen and (max-width: 1199px) {
  .slider-fade h1 {
    font-size: 52px; } }
@media screen and (max-width: 991px) {
  .slider-fade h1 {
    font-size: 48px; } }
@media screen and (max-width: 767px) {
  .slider-fade h1 {
    font-size: 42px;
    margin-bottom: 20px; } }
@media screen and (max-width: 575px) {
  .slider-fade h1 {
    font-size: 36px; } }
/*==============================
 *    Banner Style
 *    ================================ */
/* banner1 */
.banner1 .slider-fade2 h1 {
  font-size: 70px; }
.banner1 .slider-fade2.owl-theme .owl-dots .owl-dot:before {
  right: 12px;
  font-weight: 700;
  z-index: 2;
  font-size: 20px; }
.banner1 .owl-theme .owl-dots .owl-dot.active span, .banner1 .owl-theme .owl-dots .owl-dot:hover span {
  background: transparent;
  height: 25px;
  width: 30px; }

.bannre1 .slider-fade2.owl-theme .owl-dots .owl-dot span {
  background: transparent;
  height: 25px;
  width: 30px; }

.banner1 .slider-fade2.owl-theme .owl-dots .owl-dot span {
  background: transparent;
  height: 25px;
  width: 30px; }
.banner1 .owl-theme .owl-dots .owl-dot.active {
  color: #fd914f; }

.slider-fade2 h1 {
  margin-bottom: 25px;
  animation-delay: 0.8s; }
.slider-fade2 p {
  animation-delay: 1.2s; }
.slider-fade2 a {
  animation-delay: 1.6s; }
.slider-fade2 h1 {
  font-size: 60px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.2; }
.slider-fade2 .owl-dots {
  position: absolute;
  bottom: 40px;
  right: 50px;
  margin: 0 !important; }
.slider-fade2.owl-theme .owl-dots {
  counter-reset: dots;
  font-size: 2.5rem;
  color: #fff; }
  .slider-fade2.owl-theme .owl-dots .owl-dot {
    position: relative; }
    .slider-fade2.owl-theme .owl-dots .owl-dot:before {
      counter-increment: dots;
      content: counter(dots,decimal-leading-zero);
      position: absolute;
      right: 0; }
    .slider-fade2.owl-theme .owl-dots .owl-dot span {
      background: #fff;
      opacity: 0.3;
      height: 60px;
      width: 60px;
      border-radius: 5px;
      margin-left: 20px; }

@media screen and (max-width: 991px) {
  .banner1 .slider-fade2 h1 {
    font-size: 56px; }

  .slider-fade2 .owl-dots {
    bottom: 100px; } }
@media screen and (max-width: 767px) {
  .banner1 .slider-fade2 h1 {
    font-size: 42px; }

  .slider-fade2 .owl-dots {
    bottom: 20px; } }
@media screen and (max-width: 575px) {
  .banner1 .slider-fade2 h1 {
    font-size: 34px;
    margin-bottom: 15px; }

  .slider-fade2 .owl-dots {
    display: none; } }
/* banner2 */
.banner2.top-position1 {
  margin-top: -146px; }
.banner2 .banner-right-img img {
  animation: spin 36s infinite linear;
  -webkit-animation: spin 36s infinite linear;
  -moz-animation: spin 36s infinite linear; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
/* banner3 */
.banner3 h1 {
  font-size: 75px; }

@media screen and (max-width: 1199px) {
  .banner3 h1 {
    font-size: 72px; } }
@media screen and (max-width: 991px) {
  .banner3 h1 {
    font-size: 60px; } }
@media screen and (max-width: 575px) {
  .banner3 h1 {
    font-size: 40px; } }
/*==============================
 *    Page Title
 *    ================================ */
.page-title-section {
  padding: 170px 0 80px 0; }
  .page-title-section.style2 {
    padding: 120px 0 100px 0; }
  .page-title-section h1 {
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px; }
  .page-title-section ul {
    margin: 0;
    padding: 7px 22px;
    list-style: none;
    background: #fd914f;
    border-radius: .25rem;
    display: inline-block;
    line-height: 1.2; }
    .page-title-section ul:before {
      position: absolute;
      content: '';
      top: 5px;
      right: 5px;
      bottom: 5px;
      left: 5px;
      border-radius: 0.2rem;
      border: 1px solid #fff; }
    .page-title-section ul li {
      display: inline-block; }
      .page-title-section ul li:last-child a {
        color: #ffffff; }
      .page-title-section ul li:after {
        content: '\f105';
        font-weight: 700;
        vertical-align: middle;
        color: #ffffff;
        font-size: 14px;
        font-family: Font Awesome\ 5 Free;
        padding: 0 5px 0 10px; }
      .page-title-section ul li:last-child:after {
        content: none; }
      .page-title-section ul li a {
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 1px;
        position: relative;
        z-index: 9; }

@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 170px 0 80px 0; }
    .page-title-section.style2 {
      padding: 120px 0 100px 0; }
    .page-title-section h1 {
      font-size: 52px;
      margin-bottom: 25px; } }
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 155px 0 75px 0; }
    .page-title-section.style2 {
      padding: 120px 0 100px 0; }
    .page-title-section h1 {
      margin-bottom: 20px;
      font-size: 48px;
      line-height: 40px; } }
@media screen and (max-width: 767px) {
  .page-title-section {
    padding: 145px 0 80px 0; }
    .page-title-section.style2 {
      padding: 120px 0 100px 0; }
    .page-title-section h1 {
      font-size: 42px;
      line-height: 30px;
      margin-bottom: 15px; } }
@media screen and (max-width: 575px) {
  .page-title-section {
    padding: 130px 0 70px 0; }
    .page-title-section.style2 {
      padding: 120px 0 100px 0; }
    .page-title-section h1 {
      font-size: 36px; } }
/*==============================
 *    Section title
 *    ================================ */
/* title-one */
.title-one h2 {
  font-size: 40px; }

@media screen and (max-width: 992px) {
  .title-one h2 {
    font-size: 30px; } }
@media screen and (max-width: 767px) {
  .title-one h2 {
    font-size: 25px; } }
/* title-two */
.title-two h2 {
  font-size: 40px; }

@media screen and (max-width: 992px) {
  .title-two h2 {
    font-size: 30px; } }
@media screen and (max-width: 767px) {
  .title-two h2 {
    font-size: 25px; } }
/* title-three */
.title-three h2 {
  font-size: 40px; }

@media screen and (max-width: 992px) {
  .title-three h2 {
    font-size: 30px; } }
@media screen and (max-width: 767px) {
  .title-three h2 {
    font-size: 25px; } }
/*==============================
 *    Card Styles
 *    ================================ */
/* card-style1 */
.card-style1 .card-body .team-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .4s;
  width: 100%;
  height: 100%;
  display: table; }
  .card-style1 .card-body .team-content ul li a {
    position: relative;
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 14px;
    background-color: #fff;
    color: #17384e;
    display: inline-block;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    border-radius: .25rem;
    text-align: center;
    margin: 0 6px; }
    .card-style1 .card-body .team-content ul li a:hover {
      color: #fff; }
    .card-style1 .card-body .team-content ul li a:before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: "";
      background-color: #17384e;
      transform: scale(0);
      transform-origin: center;
      transform-style: preserve-3d;
      transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
      z-index: -1;
      border-radius: .25rem; }
    .card-style1 .card-body .team-content ul li a:hover:before {
      transform: scaleX(1); }
.card-style1:hover .card-body .team-content {
  opacity: 1; }
.card-style1 .card-body {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease; }
  .card-style1 .card-body:before {
    content: "";
    background: #fd914f;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.05, 0.21, 0.05, 1.52);
    opacity: 0;
    border-radius: .25rem; }
.card-style1:hover .card-body:before {
  transform: scaleX(1);
  opacity: 1; }

@media screen and (max-width: 575px) {
  .card-style1 .card-body .team-content ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px; } }
/* card-style2 */
.card-style2 span {
  position: absolute;
  top: 10%;
  right: 10%;
  background: #17384e;
  color: #fff;
  font-size: 14px;
  width: 100%;
  max-width: 150px;
  text-align: center;
  line-height: 35px; }

@media screen and (max-width: 992px) {
  .card-style2 span {
    font-size: 12px;
    max-width: 130px;
    line-height: 33px; } }
@media screen and (max-width: 575px) {
  .card-style2 span {
    font-size: 10px;
    max-width: 115px;
    line-height: 30px; } }
/* card-style3 */
.card-style3:hover {
  background: #17384e;
  transition: .6s; }
.card-style3 .card-footer {
  position: absolute;
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .6s; }
.card-style3:hover .card-footer {
  opacity: 1; }
.card-style3:hover .card-body {
  opacity: 0; }

/* card-style4 */
.card-style4 {
  background-color: rgba(255, 255, 255, 0.2); }
  .card-style4:before {
    content: "";
    width: 100%;
    height: 6px;
    bottom: 0;
    left: 0;
    background-color: #fd914f;
    position: absolute;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
  .card-style4:hover:before {
    height: 100%; }
  .card-style4 .card-body .service-img .main-img {
    width: 100px;
    height: 100px;
    background-color: #17384e;
    display: table-cell;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
  .card-style4 .card-body .service-img .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    padding: 20px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
  .card-style4:hover .card-body .service-img .main-img {
    opacity: 0; }
  .card-style4:hover .card-body .service-img .hover-img {
    opacity: 1; }

/* card-style5 */
.card-style5:before {
  content: "";
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  background-color: #fd914f;
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }
.card-style5:hover:before {
  height: 100%; }
.card-style5 .card-body h3 {
  color: #17384e;
  transition: .4s; }
.card-style5 .card-body span {
  transition: .4s; }
.card-style5:hover .card-body h3, .card-style5:hover .card-body span {
  color: #fff; }

/* card-style6 */
.card-style6:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #fd914f;
  bottom: 0;
  left: 0; }
.card-style6 .blog-tag-one span {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #17384e;
  width: 100%;
  max-width: 150px;
  text-align: center;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  color: #fff; }
.card-style6 .bg-img {
  height: 300px; }

/* card-style7 */
.card-style7:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  display: block;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  transition: opacity .6s;
  backdrop-filter: blur(6.3px);
  -webkit-backdrop-filter: blur(6.3px);
  background-color: #17384e; }
.card-style7:hover:before {
  opacity: 1; }
.card-style7 .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 40px;
  top: 0;
  right: 0;
  display: table;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .1s; }
.card-style7:hover .card-body {
  opacity: 1; }
.card-style7 .main-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  transition: .4s;
  opacity: 1; }
.card-style7:hover .main-content {
  opacity: 0; }

@media screen and (max-width: 575px) {
  .card-style7 .card-body {
    padding: 0 20px; }
  .card-style7 .main-content {
    bottom: 20px;
    left: 20px; } }
/*==============================
 *    Gallery
 *    ================================ */
/* filtering */
.filtering {
  margin-bottom: 30px; }
  .filtering span {
    color: #17384e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 15px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #17384e; }
    .filtering span:last-child {
      margin: 0; }
  .filtering .active {
    border: 1px solid #fd914f;
    background-color: #fd914f;
    color: #fff; }

@media screen and (max-width: 767px) {
  .filtering span {
    margin-right: 15px;
    font-size: 13px;
    padding: 7px 13px; } }
/* modal */
.modal-backdrop {
  z-index: 99999; }

.modal {
  z-index: 999999; }

/* elements page */
.icon-gallery .d-table {
  margin-top: 30px; }
.icon-gallery .d-table-cell {
  width: 125px;
  height: 125px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  vertical-align: middle;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background: #fff; }
.icon-gallery i {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #17384e; }

/* Copy Elements */
pre[class*="language-"] {
  max-height: 45vh;
  height: 100%;
  margin: 35px 0 15px 0;
  padding-top: 0; }

.html-code {
  background-color: #fbfbfb;
  position: relative;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ededed; }
  .html-code:before {
    color: #c8dfab;
    content: "•••";
    font-size: 30px;
    left: 24px;
    letter-spacing: 4px;
    line-height: 12px;
    position: absolute;
    top: 24px; }

.copy-element {
  position: absolute;
  top: 0;
  right: 85px;
  transition: opacity 0.3s ease-in-out; }

.source-element {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out; }

.html-code .copy-element {
  top: 15px;
  right: 30px; }
.html-code:hover .copy-element, .html-code:hover .source-element {
  opacity: 1; }

.box-hover:hover .copy-element, .box-hover:hover .source-element {
  opacity: 1; }

.copy-element > a, .source-element > a {
  border-radius: 0.25rem;
  background: #dde1e6;
  color: #777 !important;
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  text-transform: capitalize;
  cursor: pointer !important;
  font-weight: 600; }

.copy-element > a:hover, .source-element > a:hover {
  background: #F69946;
  color: #fff !important; }

.copy-clipboard {
  cursor: pointer;
  padding: 5px 15px; }

.white-popup-block {
  background-color: #fbfbfb;
  position: relative;
  max-width: 650px;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 60px 30px 30px 30px;
  border-radius: 5px;
  margin: 40px auto;
  border: 1px solid #ededed; }
  .white-popup-block.popup-copy.mfp-hide {
    display: block !important;
    height: 0;
    position: absolute;
    z-index: -1;
    padding: 0;
    opacity: 0;
    margin: 0; }
  .white-popup-block:before {
    color: rgba(3, 169, 245, 0.2);
    content: "•••";
    font-size: 30px;
    left: 24px;
    letter-spacing: 4px;
    line-height: 12px;
    position: absolute;
    top: 24px; }
  .white-popup-block:hover .copy-element {
    opacity: 1; }
  .white-popup-block .copy-element {
    top: 45px;
    right: 30px; }

.box-hover {
  position: relative; }
  .box-hover .container {
    position: relative; }

.inner-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  margin-bottom: 35px;
  padding-bottom: 20px; }
  .inner-title h6 {
    font-size: 1.6rem; }

@media screen and (max-width: 767px) {
  .elements-block .inner-title {
    margin-bottom: 65px; }

  .copy-element, .source-element {
    top: 65px; } }
/*==============================
 *    Pagination
 *    ================================ */
.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0; }
  .pagination ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0; }
  .pagination li {
    display: inline; }
  .pagination a {
    float: left;
    padding: 0 18px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #17384e;
    color: #17384e;
    cursor: pointer;
    border-radius: .25rem;
    background: #fff;
    margin-right: 12px; }
    .pagination a:hover {
      background-color: #232323;
      color: #fff; }
  .pagination .active a {
    background-color: #17384e;
    color: #fff;
    cursor: pointer; }
  .pagination li:first-child a, .pagination li:last-child a {
    border: 0;
    background: #fd914f;
    color: #fff;
    border-radius: .25rem; }
  .pagination a:hover {
    background-color: #17384e !important;
    color: #fff; }
  .pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default; }

@media screen and (max-width: 575px) {
  .pagination a {
    margin-right: 8px;
    padding: 0 13px; } }
/*==============================
 *    Video
 *    ================================ */
.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: #17384e;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s; }
  .video_btn:hover i, .video_btn:focus i {
    color: #fff; }
  .video_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite; }
  .video_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite; }
  .video_btn.small {
    width: 50px;
    height: 50px;
    line-height: 50px; }
    .video_btn.small:after {
      height: 50px;
      width: 50px; }
    .video_btn.small:before {
      height: 65px;
      width: 65px; }

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0; } }
@media screen and (max-width: 1199px) {
  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 75px; }
    .video_btn:after {
      height: 75px;
      width: 75px; }
    .video_btn:before {
      height: 90px;
      width: 90px; } }
@media screen and (max-width: 991px) {
  .video_btn {
    height: 70px;
    width: 70px;
    line-height: 70px; }
    .video_btn:after {
      height: 70px;
      width: 70px; }
    .video_btn:before {
      height: 85px;
      width: 85px; }

  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2); } } }
@media screen and (max-width: 767px) {
  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 60px; }
    .video_btn:after {
      height: 60px;
      width: 60px; }
    .video_btn:before {
      height: 75px;
      width: 75px; } }
/*==============================
 *    Owl Carousel
 *    ================================ */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #17384e;
  opacity: 1; }
.owl-theme .owl-dots .owl-dot span {
  background: #17384e;
  opacity: 0.3;
  height: 12px;
  width: 12px;
  border-radius: 0.25rem;
  margin-left: 8px; }

.owl-carousel .owl-item img {
  width: auto;
  display: inline-block; }

/* testimonials-carousel1 */
.testimonials-carousel1 .owl-dots {
  text-align: left; }
.testimonials-carousel1.owl-theme .owl-dots .owl-dot span {
  background-color: #fd914f;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  border-radius: 0.25rem; }
.testimonials-carousel1.owl-theme .owl-dots .owl-dot.active span, .testimonials-carousel1.owl-theme .owl-dots .owl-dot:hover span {
  opacity: 1; }

@media screen and (max-width: 992px) {
  .testimonials-carousel1.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0; } }
/*==============================
 *    Accordion Style
 *    ================================ */
.accordion-style .card {
  background: transparent;
  box-shadow: none;
  margin-top: 0 !important;
  margin-bottom: 10px;
  border: none; }
  .accordion-style .card:last-child {
    margin-bottom: 0; }
.accordion-style .card-header {
  border: 0px;
  padding: 0;
  background: none; }
.accordion-style .btn-link {
  border: 1px solid #fd914f;
  border-bottom: none;
  color: #232323;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  padding: 15px 50px 15px 15px;
  text-decoration: none;
  font-size: 15px; }
  .accordion-style .btn-link:hover {
    text-decoration: none; }
  .accordion-style .btn-link.collapsed {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1); }
    .accordion-style .btn-link.collapsed:after {
      background: none;
      border: 1px solid #fd914f;
      border-radius: 50%;
      content: "+";
      right: 15px;
      left: inherit;
      font-size: 18px;
      line-height: 24px;
      height: 25px;
      transform: none;
      width: 25px;
      top: 13px;
      text-align: center;
      padding-left: 0;
      letter-spacing: -1px; }
  .accordion-style .btn-link:after {
    background: none;
    border: 1px solid #fd914f;
    border-radius: 50%;
    content: "-";
    right: 15px;
    left: inherit;
    font-size: 18px;
    height: 25px;
    line-height: 24px;
    transform: none;
    width: 25px;
    top: 13px;
    position: absolute;
    color: #fd914f;
    text-align: center;
    padding-left: 2px;
    letter-spacing: 0px; }
.accordion-style .btn {
  border-radius: 0; }
.accordion-style .card-body {
  background-color: #f7f7f7;
  padding: 20px;
  line-height: 24px;
  text-align: left;
  border: 1px solid #fd914f;
  border-top: none;
  font-size: 15px; }

@media screen and (max-width: 767px) {
  .accordion-style .btn-link {
    font-size: 14px; }
    .accordion-style .btn-link.collapsed:after, .accordion-style .btn-link:after {
      top: 15px; } }
/* accordion-style1 */
.accordion-style1 .card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 15px;
  margin-top: 0 !important; }
  .accordion-style1 .card:last-child {
    margin-bottom: 0; }
.accordion-style1 .card-header {
  border: 0;
  padding: 0;
  border-bottom: none; }
.accordion-style1 .btn-link {
  color: #fd914f;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  text-decoration: none;
  padding: 15px 50px 15px 25px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 0;
  font-size: 18px;
  border-radius: .25rem; }
  .accordion-style1 .btn-link:hover {
    text-decoration: none; }
  .accordion-style1 .btn-link.collapsed {
    color: #17384e;
    box-shadow: none;
    background-color: #f7f7f7; }
    .accordion-style1 .btn-link.collapsed:after {
      content: "+";
      position: absolute;
      top: 50%;
      right: 20px;
      font-size: 2rem;
      color: #fd914f;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: unset;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(-50%);
      box-shadow: unset; }
  .accordion-style1 .btn-link:after {
    content: "-";
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 2rem;
    color: #fd914f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: unset; }
.accordion-style1 .card-body {
  padding-left: 1.7rem;
  background-color: transparent;
  padding-bottom: 20px;
  padding-top: 0;
  border-bottom: 3px solid #fd914f; }

@media screen and (max-width: 575px) {
  .accordion-style1 .btn-link {
    padding: 15px 45px 15px 15px; }
    .accordion-style1 .btn-link.collapsed:after {
      right: 10px; }
  .accordion-style1 .card-body {
    padding-left: 1.1rem; } }
/*==============================
 *    Tabs
 *    ================================ */
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px; }

.resp-tabs-list li {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 8px 15px;
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
  min-width: 180px; }
  .resp-tabs-list li:last-child {
    margin-right: 0; }
  .resp-tabs-list li i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #6f6f6f; }

.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left; }

.resp-tab-content {
  display: none;
  padding: 40px 0 40px 0; }

.resp-tabs-list li.resp-tab-active {
  background: #fd914f;
  background: -webkit-linear-gradient(-45deg, #fd914f, #8089ff);
  background: -moz-linear-gradient(-45deg, #fd914f, #8089ff);
  background: -o-linear-gradient(-45deg, #fd914f, #8089ff);
  background: linear-gradient(-45deg, #fd914f, #8089ff);
  padding: 15px 20px 13px 20px;
  color: #fd914f;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px; }
  .resp-tabs-list li.resp-tab-active i {
    color: #fff; }

.resp-content-active, .resp-accordion-active {
  display: block; }

.resp-tab-content {
  border: 1px solid #e4e4e4;
  border-top-color: #e4e4e4;
  float: left;
  width: 100%; }

h2.resp-accordion {
  background: #fff !important;
  cursor: pointer;
  display: none;
  font-size: 14px;
  border: 1px solid #e4e4e4;
  border-top: 0px solid #e4e4e4;
  margin: 0px;
  padding: 15px 21px;
  float: left;
  width: 100%; }
h2.resp-tab-active {
  border-bottom: 0px solid #e4e4e4 !important;
  background: #fd914f !important;
  color: #fff; }
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #e4e4e4 !important;
  background: #fd914f; }

.resp-arrow {
  border-color: transparent #232323 #232323 transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px; }

h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px; }

@media screen and (max-width: 767px) {
  ul.resp-tabs-list {
    display: none; }

  h2.resp-accordion {
    display: block; }
    h2.resp-accordion i {
      margin-right: 12px;
      font-size: 18px;
      min-width: 25px; }
    h2.resp-accordion.resp-tab-active i {
      color: #fff; }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #C1C1C1; }
  .resp-vtabs .resp-tabs-container {
    border: none !important;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none; }

  .resp-accordion-closed {
    display: none !important; }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important; }

  .resp-tab-content {
    background-color: #fff;
    padding: 30px 0 30px 0; } }
/* tab-style1 */
.tab-style1 .resp-tabs-list li.resp-tab-active {
  background-color: #17384e;
  color: #fff;
  background-image: unset; }
.tab-style1 .resp-tabs-container .resp-tab-content {
  padding: 30px; }
.tab-style1 .resp-tabs-container h2.resp-tab-active {
  background: #17384e !important; }
.tab-style1 .resp-tabs-container h2.resp-accordion:first-child {
  border-top: 1px solid #e4e4e4; }

@media screen and (max-width: 575px) {
  .tab-style1 .resp-tabs-container .resp-tab-content {
    padding: 20px; } }
/*==============================
 *    Pages
 *    ================================ */
/* coming soon page */
.countdown.coming-soon li {
  border-right: 1px solid rgba(237, 237, 237, 0.18);
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  color: #ffffff;
  line-height: 30px; }
  .countdown.coming-soon li span {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    position: relative; }
  .countdown.coming-soon li p.timeRefDays, .countdown.coming-soon li p.timeRefHours, .countdown.coming-soon li p.timeRefMinutes, .countdown.coming-soon li p.timeRefSeconds {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: capitalize; }

@media screen and (max-width: 767px) {
  .countdown.coming-soon li span {
    font-size: 30px; }

  .coming-soon li {
    padding: 0 20px; } }
@media screen and (max-width: 575px) {
  .countdown.coming-soon li {
    padding: 0 5px; }
    .countdown.coming-soon li span {
      font-size: 24px;
      line-height: 40px; } }
/*==============================
 *    Others
 *    ================================ */
/* quform */
.form-control:focus {
  border-color: #fd914f; }

.form-group {
  margin-bottom: 1rem; }
  .form-group label {
    margin-bottom: .5rem; }

.form-check-input:checked {
  border-color: #0948b3;
  background-color: #0948b3; }

.quform-input {
  position: relative; }
  .quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1; }

.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px; }
  .quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px; }

.quform-inner input {
  width: 100%; }

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  height: auto;
  vertical-align: top; }
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px; }

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal; }
  .quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal; }

.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal; }
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem; }

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
  border-color: #f5543f; }

.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem; }

.quform-submit-inner {
  float: none; }

.quform-loading-wrap {
  float: none; }
  .quform-loading-wrap .quform-loading {
    display: inline-block; }

.quform-element {
  margin-bottom: 1rem; }

/* social-icon-style2 */
.social-icon-style2 {
  margin-bottom: 0;
  padding-left: 0; }
  .social-icon-style2 li {
    text-align: center;
    margin-right: 5px;
    display: inline-block; }
    .social-icon-style2 li:last-child {
      margin-right: 0; }
    .social-icon-style2 li a {
      border: 1px solid rgba(225, 225, 225, 0.9);
      color: rgba(225, 225, 225, 0.9);
      border-radius: 50%;
      height: 35px;
      width: 35px;
      line-height: 35px;
      display: inline-block;
      font-size: 15px; }
      .social-icon-style2 li a:hover {
        background: #fd914f;
        color: #fff;
        border: 1px solid #fd914f; }

@media screen and (max-width: 575px) {
  .social-icon-style2 li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 13px; } }
/* Popup gallery*/
.lg-backdrop {
  z-index: 99999; }

.lg-outer {
  z-index: 999999; }
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #fd914f; }

.lg-progress-bar .lg-progress {
  background-color: #fd914f; }

.lg-backdrop.in {
  opacity: 0.85; }

/* animation */
.ani-left-right {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: LeftRight;
  animation-timing-function: ease-in-out; }

@keyframes LeftRight {
  0% {
    transform: translate(0px, 0px); }
  65% {
    transform: translate(30px, 0); }
  100% {
    transform: translate(0px, 0px); } }
.ani-top-bottom {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: TopBottom;
  animation-timing-function: ease-in-out; }

@keyframes TopBottom {
  0% {
    transform: translate(0px, 0px); }
  65% {
    transform: translate(0, 30px); }
  100% {
    transform: translate(0px, 0px); } }
/*search page*/
.search-form_input {
  color: #fd914f; }

.search-frame h4 a:hover {
  color: #fd914f; }
.search-frame .search_list .match {
  color: #fd914f; }
.search-frame .search_list li:before {
  color: #fd914f; }
.search-frame .search_list li + li {
  border-top: 3px solid #fd914f; }
.search-frame .search {
  color: #fd914f; }

/* counter */
.counter-shape {
  position: absolute;
  bottom: -10%;
  right: -10%;
  opacity: 0.05; }
  .counter-shape img {
    -webkit-animation: rotated 120s infinite linear;
    animation: rotated 120s infinite linear; }

/* choose-your-sign-one */
.choose-your-sign-one {
  margin-top: -80px;
  position: relative;
  z-index: 9; }

/* choose your zodiac sign */
.zodiac-sign-shape {
  position: absolute;
  top: -10%;
  left: -10%;
  opacity: 0.02; }
  .zodiac-sign-shape img {
    -webkit-animation: rotated 120s infinite linear;
    animation: rotated 120s infinite linear; }

/* testimonials-one */
.testimonials-one .quote-icon-one {
  width: 60px;
  height: 60px;
  background: #fd914f;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center; }
  .testimonials-one .quote-icon-one img {
    padding-top: 15px; }
.testimonials-one .testimonials-one-inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: #fd914f;
  bottom: 0;
  left: 0; }
.testimonials-one .quote-inner-box {
  background-color: rgba(255, 255, 255, 0.2); }

/* testimonials-two */
.testimonials-two .testimonials-right {
  margin-bottom: -100px;
  background: transparent;
  position: relative;
  z-index: 9; }
  .testimonials-two .testimonials-right .testimonials-right-inner p {
    font-size: 22px; }
.testimonials-two .right-content h2 {
  font-size: 40px; }

@media screen and (max-width: 992px) {
  .testimonials-two .right-content h2 {
    font-size: 35px; } }
@media screen and (max-width: 991px) {
  .testimonials-two .testimonials-right {
    margin-bottom: -30px; }
    .testimonials-two .testimonials-right .testimonials-right-inner p {
      font-size: 20px; } }
@media screen and (max-width: 767px) {
  .testimonials-two .right-content h2 {
    font-size: 30px; } }
@media screen and (max-width: 575px) {
  .testimonials-two .testimonials-right .testimonials-right-inner p {
    font-size: 16px; }
  .testimonials-two .right-content h2 {
    font-size: 25px; } }
/* portfolio-box */
.portfolio-box {
  animation: slide_bottom 0.5s ease forwards; }
  .portfolio-box .portfolio-content {
    position: absolute;
    left: 0;
    padding: 20px;
    z-index: 3;
    transition: 0.35s ease-out;
    width: calc(100% - 40px);
    background: #ffffff;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 6px 5px 16px 0px rgba(0, 0, 0, 0.15);
    border-bottom: 5px solid #fd914f;
    line-height: 1; }
  .portfolio-box:hover .portfolio-content {
    bottom: -11px;
    opacity: 1;
    visibility: visible; }

/* testimonials-icon-one */
.testimonials-icon-one {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #17384e;
  text-align: center;
  color: #fff;
  font-size: 12px;
  position: absolute;
  bottom: -5px;
  right: -10px;
  z-index: 9;
  border-radius: 50%; }

/* about-one */
.about-one .media .exp-left span {
  color: #17384e;
  font-size: 80px;
  line-height: 1;
  font-family: 'Yeseva One', cursive; }
.about-one .about-shape {
  position: absolute;
  left: -185px;
  bottom: -170px;
  opacity: 0.2; }
  .about-one .about-shape .about-shape-inner {
    position: absolute;
    top: 22px;
    left: 22px; }
    .about-one .about-shape .about-shape-inner img {
      -webkit-animation: rotated 120s infinite linear reverse;
      animation: rotated 120s infinite linear reverse; }

@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@media screen and (max-width: 992px) {
  .about-one .media .exp-left span {
    font-size: 60px; } }
@media screen and (max-width: 991px) {
  .about-one .about-shape {
    left: -155px;
    bottom: -85px; } }
@media screen and (max-width: 575px) {
  .about-one .about-shape {
    display: none; } }
/* about-two */
.about-two .help-box {
  position: absolute;
  bottom: 50px;
  left: -50px;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  padding: 25px;
  width: 100%;
  max-width: 400px;
  display: flex; }
  .about-two .help-box .help-icon {
    background: #17384e;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: .25rem;
    font-size: 20px; }
  .about-two .help-box.help-inner {
    position: unset; }

@media screen and (max-width: 575px) {
  .about-two .help-box {
    display: none; } }
/* about-three */
.about-three .about-inner-img {
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  left: 6%;
  display: table; }
.about-three .main-img {
  border-left: 15px solid #fff; }

@media screen and (max-width: 991px) {
  .about-three .about-inner-img {
    left: 34%; } }
@media screen and (max-width: 767px) {
  .about-inner-img {
    display: none !important; }

  .about-three .main-img {
    border-left: none; } }
/* contact-box-two */
.contact-right-two .contact-box-two {
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  left: 15%;
  background: #fff;
  width: 480px;
  max-height: 530px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  padding: 50px;
  display: table;
  vertical-align: middle;
  border-radius: 0.25rem; }
  .contact-right-two .contact-box-two .contact-icon i {
    background: #17384e;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 0.25rem;
    margin-right: 20px;
    font-size: 25px; }
  .contact-right-two .contact-box-two h2 {
    font-size: 30px; }
  .contact-right-two .contact-box-two .contact-icon h4 {
    font-size: 32px; }

@media screen and (max-width: 1200px) {
  .contact-right-two .contact-box-two {
    left: 25%;
    position: inherit; } }
@media screen and (max-width: 992px) {
  .contact-right-two {
    height: 390px !important; }
    .contact-right-two .contact-box-two {
      width: 95%;
      top: 35%;
      left: 50%; } }
@media screen and (max-width: 767px) {
  .contact-right-two .contact-box-two {
    padding: 30px;
    top: 35%; }
    .contact-right-two .contact-box-two h2 {
      font-size: 25px; }
    .contact-right-two .contact-box-two .contact-icon i {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 17px; }
    .contact-right-two .contact-box-two .contact-icon h4 {
      font-size: 25px; } }
@media screen and (max-width: 575px) {
  .contact-right-two .contact-box-two {
    padding: 25px;
    top: 50%; }
    .contact-right-two .contact-box-two h2 {
      font-size: 16px; }
    .contact-right-two .contact-box-two .contact-icon i {
      width: 35px;
      height: 35px;
      line-height: 35px;
      font-size: 14px;
      margin-right: 12px; }
    .contact-right-two .contact-box-two .contact-icon h4 {
      font-size: 20px; } }
/* contact-three */
.contact-three h2 {
  font-size: 40px; }

@media screen and (max-width: 991px) {
  .contact-three h2 {
    font-size: 30px; } }
@media screen and (max-width: 575px) {
  .contact-three h2 {
    font-size: 22px; } }
/* case-studies-inner */
.case-studies-inner p .letter-inner {
  font-size: 25px;
  color: #fff;
  background: #fd914f;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: .25rem;
  float: left;
  margin-right: 15px;
  margin-top: 10px; }
.case-studies-inner .case-studies-box .case-box-inner {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #17384e;
  padding: 50px;
  width: 450px;
  border-bottom-right-radius: .25rem;
  border-top-left-radius: .25rem; }

@media screen and (max-width: 991px) {
  .case-studies-inner .case-studies-box .case-box-inner {
    padding: 40px; } }
@media screen and (max-width: 767px) {
  .case-studies-inner .case-studies-box .case-box-inner {
    position: unset;
    width: 100%;
    border-radius: .25rem; } }
@media screen and (max-width: 575px) {
  .case-studies-inner .case-studies-box .case-box-inner {
    padding: 12px; } }
/* palm-detail-quote */
p.palm-detail-quote {
  border-bottom: 5px solid #fd914f; }

.palm-detail-quote img {
  font-size: 100px;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  color: rgba(253, 145, 79, 0.2);
  opacity: 0.2; }

/* service-skills */
.service-skills .progress {
  height: 0.5rem; }

/* blog-text-letter */
.blog-text-letter .letter-inner {
  font-size: 70px;
  color: #fff;
  background: #17384e;
  width: 90px;
  height: 90px;
  display: inline-block;
  text-align: center;
  line-height: 90px;
  border-radius: .25rem;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: 13px; }

@media screen and (max-width: 991px) {
  .blog-text-letter .letter-inner {
    font-size: 40px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin-bottom: 0; } }
@media screen and (max-width: 575px) {
  .blog-text-letter .letter-inner {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: 10px;
    margin-right: 10px; } }
/* appointment-content */
.appointment-content {
  background: transparent;
  position: relative;
  z-index: 9; }
  .appointment-content .appointment-border {
    border-bottom: 6px solid #fd914f; }

/* price-table-one */
.price-table-one .price-table-header h4 {
  font-size: 40px; }
.price-table-one:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  background: #fd914f; }

@media screen and (max-width: 992px) {
  .price-table-one .price-table-header h4 {
    font-size: 24px; } }
/* price-table-two */
.price-table-two .price-table-header h5 {
  font-size: 32px; }
.price-table-two .price-table-header h4 {
  font-size: 40px; }

@media screen and (max-width: 992px) {
  .price-table-two .price-table-header h5 {
    font-size: 25px; }
  .price-table-two .price-table-header h4 {
    font-size: 33px; } }
@media screen and (max-width: 767px) {
  .price-table-two .price-table-header h5 {
    font-size: 23px; }
  .price-table-two .price-table-header h4 {
    font-size: 25px; } }
/* call-to-action-one */
.call-to-action-one .inner-content {
  margin-bottom: -100px;
  background: transparent;
  z-index: 9;
  position: relative; }
  .call-to-action-one .inner-content .content-img {
    height: 500px; }

.count-box .count-no {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }

/* services-one */
.services-one .service-box .service-content {
  position: absolute;
  bottom: 0;
  background: #fff;
  margin: 15px;
  padding: 30px;
  transition: .4s; }
  .services-one .service-box .service-content h3 a, .services-one .service-box .service-content i {
    color: #fd914f;
    transition: .4s; }
.services-one .service-box:hover .service-content {
  background-color: #fd914f; }
  .services-one .service-box:hover .service-content h3 a, .services-one .service-box:hover .service-content i, .services-one .service-box:hover .service-content p {
    color: #fff !important;
    transition: .4s; }

@media screen and (max-width: 767px) {
  .services-one .service-box .service-content {
    padding: 25px; } }
/* emerency-content */
.emerency-content .emerency-icon {
  font-size: 100px;
  line-height: 1; }
.emerency-content .content-inner span {
  font-size: 70px;
  line-height: 1; }
.emerency-content:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(23, 56, 78, 0.6);
  top: 0;
  left: 0;
  position: absolute; }

@media screen and (max-width: 1200px) {
  .emerency-content .content-inner span {
    font-size: 60px; } }
@media screen and (max-width: 992px) {
  .emerency-content .emerency-icon {
    font-size: 80px; }
  .emerency-content .content-inner span {
    font-size: 40px; } }
@media screen and (max-width: 767px) {
  .emerency-content .emerency-icon {
    font-size: 60px; }
  .emerency-content .content-inner span {
    font-size: 30px; } }
@media screen and (max-width: 575px) {
  .emerency-content .content-inner span {
    font-size: 25px; } }
/* error-content */
.error-content h1 {
  font-size: 200px;
  line-height: 1;
  font-weight: 500; }
.error-content h3 {
  font-size: 32px; }

@media screen and (max-width: 767px) {
  .error-content h1 {
    font-size: 160px; }
  .error-content h3 {
    font-size: 26px; } }
@media screen and (max-width: 575px) {
  .error-content h1 {
    font-size: 125px; }
  .error-content h3 {
    font-size: 19px; } }
/* comingsoon-content */
.comingsoon-content h1 {
  font-size: 70px; }
.comingsoon-content p {
  font-size: 30px; }
.comingsoon-content ul.countdown li {
  display: inline-block;
  margin: 10px; }
  .comingsoon-content ul.countdown li span {
    font-size: 75px;
    font-weight: 600;
    text-align: center;
    color: #fd914f;
    line-height: normal;
    position: relative;
    display: inline-block; }
    .comingsoon-content ul.countdown li span:before {
      content: "";
      position: absolute;
      height: 1;
      width: 100%; }
  .comingsoon-content ul.countdown li p.timeRefDays, .comingsoon-content ul.countdown li p.timeRefHours, .comingsoon-content ul.countdown li p.timeRefMinutes, .comingsoon-content ul.countdown li p.timeRefSeconds {
    font-size: 20px;
    font-weight: 500;
    color: #17384e;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    display: inline-block; }

@media screen and (max-width: 1200px) {
  .comingsoon-content h1 {
    font-size: 60px; }
  .comingsoon-content p {
    font-size: 25px; }
  .comingsoon-content ul.countdown li span {
    font-size: 57px; } }
@media screen and (max-width: 992px) {
  .comingsoon-content h1 {
    font-size: 50px; } }
@media screen and (max-width: 767px) {
  .comingsoon-content h1 {
    font-size: 40px; }
  .comingsoon-content p {
    font-size: 20px; } }
@media screen and (max-width: 575px) {
  .comingsoon-content h1 {
    font-size: 24px; }
  .comingsoon-content p {
    font-size: 15px; }
  .comingsoon-content ul.countdown li span {
    font-size: 29px; }
  .comingsoon-content ul.countdown li p.timeRefDays, .comingsoon-content ul.countdown li p.timeRefHours, .comingsoon-content ul.countdown li p.timeRefMinutes, .comingsoon-content ul.countdown li p.timeRefSeconds {
    font-size: 15px; } }
/* blog-sidebar */
.blog-sidebar .input-group .input-group-append button.butn-style2 {
  width: 60px;
  height: 46px;
  line-height: 46px;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }
.blog-sidebar .blog-tags a {
  border: 1px solid #fd914f;
  background-color: #fff;
  padding: 7px 25px;
  font-size: 14px;
  line-height: 20px;
  margin: 0.6rem 10px 0 0;
  display: inline-block;
  border-radius: .25rem;
  transition: .5s; }
  .blog-sidebar .blog-tags a:hover {
    color: #fff;
    background-color: #17384e;
    border: 1px solid #17384e; }

/* blog-detail-content */
.blog-detail-content .card .card-body p span.letter-inner {
  font-size: 25px;
  color: #fff;
  background: #fd914f;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: .25rem;
  float: left;
  margin-right: 15px;
  margin-top: 10px; }
.blog-detail-content .comment-box-one {
  border-bottom: 5px solid #fd914f !important; }

/*==============================
 *    Footer
 *    ================================ */
footer {
  padding: 70px 0 0;
  background: #1f1f1f;
  color: #939393; }

.footer-logo {
  max-width: 214px;
  width: 100%;
  display: inline-block; }
  .footer-logo > a {
    display: inline-block; }

@media screen and (max-width: 767px) {
  footer {
    padding-top: 50px; } }
/*footer bar*/
.footer-bar {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 70px;
  text-align: center;
  color: #fff; }

@media screen and (max-width: 767px) {
  .footer-bar {
    margin-top: 50px; } }
/*footer list*/
.footer-list {
  margin: 0; }
  .footer-list li {
    list-style-type: none;
    color: #fff;
    opacity: .9;
    line-height: 20px;
    padding: 8px 0;
    font-size: 15px; }
    .footer-list li a {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
      opacity: .9; }
      .footer-list li a:before {
        content: '\f105';
        font-weight: 700;
        font-family: Font Awesome\ 5 Free;
        color: #fff;
        padding-right: 8px; }
      .footer-list li a:hover {
        color: #fd914f;
        opacity: 1; }
        .footer-list li a:hover:before {
          color: #fd914f; }

/* footer-one */
.footer-one:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(23, 56, 78, 0.9); }
.footer-one .insta-img .insta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  opacity: 0;
  transition: .5s; }
.footer-one .insta-img:hover .insta-icon {
  opacity: 1; }
.footer-one .insta-img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  content: "";
  opacity: 0;
  transition: .5s; }
.footer-one .insta-img:hover:before {
  opacity: 1; }

/*# sourceMappingURL=styles.css.map */
