/*  ==========================================================================
    Table of Contets
    ==========================================================================
    
    1.0 Common Styles
    2.0 Header Section
    3.0 Hero Section
    4.0 Feature Section
    5.0 Counter Section
    6.0 Content Section
    7.0 Pricing Section
    7.1 Pricing Table Section
    8.0 About Section
    9.0 Service Section
    10.0 Projects Section
    11.0 Projects Single Section
    12.0 Team Section
    13.0 Testimonial Section
    14.0 Cta Section
    15.0 Page Header Section
    16.0 404 Error Section
    17.0 Page Header Section
    18.0 Contact Section
    19.0 Blog Section
    20.0 Blog Single Section
    21.0 Sponsor Section
    22.0 Widget Section
    23.0 Footer Section
    
    ==========================================================================
    Arkit By DynamicLayers
    ========================================================================== */

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro|Poppins:600,700|Work+Sans:600&display=swap");

/*  ==========================================================================
    Common Styles
    ========================================================================== */

:root {
  --text: #1c1718;
  --background: #f9f9f9;
  --primary: #e6284d;
  --primary-10: #fce8ec;
  --primary-20: #f7bbc7;
  --primary-30: #f28da1;
  --primary-40: #ec5f7b;
  --primary-50: #e73256;
  --primary-55: #e41b43;
  --primary-60: #cd183c;
  --primary-70: #a0132f;
  --primary-80: #720d22;
  --primary-90: #440814;

  --secondary: #dee3e2;
  --accent: #6f7f85;

  --white: #fff;
  --grey: #f9fafa;

  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;

  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;

  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

* {
  padding: 0;
  margin: 0;
}
body {
  background-color: var(--white);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #6a7695;
  font-weight: 400;
  letter-spacing: -0.2px;
  position: relative;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--primary);
}

::selection {
  background-color: var(--primary);
  color: var(--white);
}

-webkit-::selection {
  background-color: var(--primary);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary);
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
}
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5 {
  color: var(--white);
}
.bg-dark p,
.bg-dark span {
  color: #999;
}
h1 {
  font-size: 72px;
  font-weight: 600;
  line-height: 80px;
  margin: 10px 0 20px;
  color: var(--text);
}
h2 {
  font-size: 32px;
  line-height: 42px;
  color: var(--text);
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -1px;
}
h3,
h4 {
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  letter-spacing: -0.5px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 16px;
}
h5,
h6 {
  font-size: 16px;
  margin: 0 0 10px;
}
img {
  border: none;
  outline: none;
  max-width: 100%;
}
ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}
a,
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0;
  text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ddd !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #ddd !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #ddd !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd !important;
}
button {
  border: none;
  background: none;
}
/* Helper Class */
.padding {
  padding: 100px 0;
}
.padding-top {
  padding-top: 200px;
}
.padding-bot {
  padding-bottom: 75px;
}
.padding-bot-2 {
  padding-bottom: 175px;
}
.no-padding {
  padding: 0;
}
.padding-15 {
  padding: 15px;
}
.padding-20 {
  padding: 20px;
}
.box-padding {
  padding: 0 50px;
}

@media (min-width: 1900px) {
  .padding {
    padding: 150px 0;
  }
}

.br-5-top {
  border-radius: 5px 5px 0 0;
}

.br-5-bot {
  border-radius: 0 0 5px 5px;
}

.bg-white {
  background-color: var(--white);
}
.bg-grey {
  background-color: #f9fafa;
}
.bg-dark {
  background-color: #242323 !important;
}
.bd-top {
  border-top: 1px solid #e5e5e5;
}
.bd-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-25 {
  margin-left: 25px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-35 {
  margin-left: 35px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-80 {
  padding-top: 80px;
}
.fz-28 {
  font-size: 28px;
}
.fz-24 {
  font-size: 24px;
}
.fz-22 {
  font-size: 22px;
}
.fz-20 {
  font-size: 20px;
}
.fz-18 {
  font-size: 18px;
}
.fz-16 {
  font-size: 16px;
}
.text-black {
  color: #333;
}
.text-white {
  color: var(--white) fff;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.fl-right {
  float: right;
}
.fl-left {
  float: left;
}
.display-table {
  width: 100%;
  height: 100%;
  display: table;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.overlay {
  width: 100%;
  position: relative;
  z-index: 1;
}
.overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.jc-sb {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

/* Preloader Styles */
.loaded .site-preloader-wrap {
  opacity: 0;
  visibility: hidden;
}
.site-preloader-wrap {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  background: var(--white);
  top: 0;
  left: 0;
}

.site-preloader-wrap .spinner {
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
}

.spinner {
  width: 40px;
  height: 40px;

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/* Button Style */

.btn_group a {
  margin: 5px;
}
.btn_group_left a {
  margin-right: 15px;
  margin-bottom: 15px;
}
.default-btn {
  background-color: var(--primary);
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  color: var(--white);
  font-size: 14px;
  border-radius: 2px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 15px 30px;
  -webkit-box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);
  box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);
}
.default-btn:hover {
  background-color: var(--primary-70);
  color: var(--white);
}

.secondary-btn {
  -webkit-box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);
  -moz-box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);
  box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);

  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  color: var(--primary);
  font-size: 14px;
  border-radius: 2px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 15px 30px;
}

.secondary-btn:hover {
  -webkit-box-shadow: inset 0px 0px 0px 2px var(--primary),
    0 3px 10px rgba(71, 44, 173, 0.2);
  -moz-box-shadow: inset 0px 0px 0px 2px var(--primary),
    0 3px 10px rgba(71, 44, 173, 0.2);
  box-shadow: inset 0px 0px 0px 2px var(--primary),
    0 3px 10px rgba(71, 44, 173, 0.2);

  color: var(--primary-60);
}

.margin-btn-group {
  margin-right: 1em;
}

@media (max-width: 1200px) {
  .margin-btn-group {
    margin-bottom: 1em;
  }
}

@media (max-width: 335px) {
  .default-btn {
    line-height: 30px;
  }
}

/* Section Heading */
.section-heading h2 {
  font-size: 32px;
  display: block;
}
.section-heading .sub-heading {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  color: #fa071c;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}


/* ==========================================================================
   Sticky Head
   ========================================================================== */

   .sticky-head {
    position: fixed;
    top: 0;
    left: 0;
    height: 35px;
    width: 100%;
    z-index: 100;
    background-color: var(--primary);
   }

   .sticky-head-list {
    text-align: center;
    color: var(--grey);
    height: 35px;
    gap: 200px;
    justify-content: center;
    align-items: center;
    display: flex;
   }

   @media (max-width: 992px) {
    .sticky-head-list {
      gap: 0;
      justify-content: space-around;
    }
   }
   @media (max-width: 576px) {
    .sticky-head-list li:last-child{
      display: none;
    }
   }

   .sticky-head-list li{
    display: inline;
   }

   .sticky-head-list li a{
    color: var(--grey);
   }

   .sticky-head-list li a:hover{
    text-decoration: underline;
   }

   .sticky-head-list li:last-child{
    margin-right: 0;
   }

   .sticky-head-list li i{
    margin-right: 12px;
    font-size: 14px;
   }


/* ==========================================================================
   Header Section
   ========================================================================== */
.header-section {
  background-color: var(--white);
  width: 100%;
  height: 80px;
  z-index: 99;
  position: fixed;
  left: 0;
  top: 35px;
  padding: 0;
}
.navbar-fixed-top.header-section {
  background-color: var(--white);
  -moz-box-shadow: 0 2px 5px rgba(16, 16, 16, 0.08);
  -webkit-box-shadow: 0 2px 5px rgba(16, 16, 16, 0.08);
  box-shadow: 0 2px 5px rgba(16, 16, 16, 0.08);
  height: 80px;
  border-bottom: 0;
  padding: 0;
}
.navbar-fixed-top.header-section,
.header-section {
  transition: all 0.3s ease-in-out;
}
.navbar {
  border: medium none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin: 0;
  position: relative;
  padding: 0;
}
.navbar-brand {
  width: 140px;
}
.header-btn {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.header-btn a {
  margin-top: 0;
}

/* Nav Menu */

ul.nav > li {
  position: relative;
}
ul.nav > li > a {
  color: var(--text);
  font-family: "Work Sans", sans-serif;
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 80px;
  z-index: 1;
}
ul.nav li.phone {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  font-weight: 600;
  line-height: 80px;
  padding-left: 50px;
}
ul.nav li.phone i {
  color: var(--primary);
  margin-right: 5px;
}
ul.nav > li > a:hover,
ul.nav > li > a:focus,
ul.nav > li > a.active {
  background: none;
  color: var(--primary);
  opacity: 1;
}
.menu-btn {
  margin-left: 10px;
  margin-top: 10px;
}

.navbar-fixed-top ul.nav > li > a:hover,
.navbar-fixed-top ul.nav > li > a:focus,
.navbar-fixed-top ul.nav > li.active > a {
  color: var(--primary);
}

/*Dropdown Style
==================*/
#mainmenu li ul {
  background-color: var(--white);
  width: 200px;
  height: auto;
  position: absolute;
  left: 0;
  top: 140%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 999;
}
#mainmenu li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
#mainmenu li ul li {
  border-bottom: 1px solid #e5e5e5;
  display: block;
  position: relative;
  padding: 0;
}
#mainmenu li ul li:last-child {
  border: none;
}
#mainmenu li ul li a {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 45px;
  display: block;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: var(--text);
  -webkit-transition: color 0.3s ease 0s, padding 0.3s ease 0s;
  transition: color 0.3s ease 0s, padding 0.3s ease 0s;
}
#mainmenu li > ul > li:hover a {
  background-color: var(--primary);
  color: var(--white);
}
#mainmenu li > ul ul {
  background-color: var(--white);
  left: 200px;
}
#mainmenu li > ul li:hover > ul li a {
  color: #777;
}
#mainmenu li ul li:hover > ul {
  top: 0;
  opacity: 1;
  visibility: visible;
}
#mainmenu li > ul li:hover > ul li > a:hover {
  background-color: transparent;
  color: var(--white);
}
#mainmenu li ul li li a:hover {
  color: var(--primary-70) !important;
}

/* Mobile Menu */
.slicknav_menu {
  background: none;
  padding: 4px 0;
  display: none;
  z-index: 999;
}
.slicknav_nav {
  background-color: var(--white);
  font-size: 16px;
  padding: 20px 15px;
}
.js .slicknav_menu {
  width: 100%;
  position: absolute;
  right: 0;
  top: 76px;
}
.slicknav_btn {
  background-color: transparent;
  margin: -58px 0px 0px;
}
.slicknav_menu .slicknav_icon-bar {
  width: 25px;
  height: 5px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav .slicknav_row,
.slicknav_nav a,
.slicknav_nav a:hover {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav a {
  padding: 10px 15px;
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.slicknav_nav .slicknav_arrow {
  float: right;
}
.slicknav_nav a .caret {
  display: none;
}
.slicknav_nav ul {
  margin: 0;
}
.slicknav_nav ul li a {
  padding-left: 30px;
  font-size: 16px;
  color: #444;
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
  background-color: transparent;
  color: #333;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  height: 650px;
}

.hero-content .sub-heading {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  color: #fa071c;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
}
.hero-content h2 {
  font-size: 46px;
  line-height: 55px;
  color: var(--text);
  margin: 15px 0 25px;
  font-weight: 600;
  letter-spacing: -1px;
}
.hero-content p {
  margin-bottom: 30px;
}

/* ==========================================================================
   Feature Section
   ========================================================================== */
.feature-section {
  padding-bottom: 80px;
}
.feature-wrap {
  display: flex;
  align-items: center;
}

.feature-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.feature-content h2 span {
  color: #111;
}
.feature-content p {
  margin-bottom: 30px;
  max-width: 50ch;
}
.play-btn {
  display: flex;
  align-items: center;
}
.play-btn:hover {
  opacity: 0.8;
}
.play-btn i {
  font-size: 50px;
  color: var(--primary-50);
  display: flex;
  align-items: center;
}
.play-btn span {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  margin-left: 10px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0;
}

.feature-item i {
  font-size: 40px;
  color: var(--primary-50);
  margin-bottom: 15px;
  display: block;
}

/* ==========================================================================
   Counter Section
   ========================================================================== */

.section-heading h2 {
  margin-bottom: 20px;
}
.section-heading p {
  margin-bottom: 20px;
}

.counter-content i {
  font-size: 40px;
  color: var(--primary-50);
  margin-bottom: 15px;
  display: block;
}
.counter-content h2 {
  font-size: 28px;
  margin-bottom: 0;
}
.counter-content h3 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Work Sans", sans-s;
}
.counter-content p {
  margin-bottom: 0;
}

/* ==========================================================================
   Content Section
   ========================================================================== */

.content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 80px;
  margin-bottom: 80px;
}

@media (max-width: 550px) {
  .content-wrapper {
    gap: 40px;
    margin-bottom: 40px;
  }
}

.content-wrapper:nth-child(2) {
  flex-direction: row-reverse;
}

.content-wrapper:last-child {
  margin-bottom: 0px;
}


.content-item .sub-heading {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  color: #fa071c;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}

.content-item h2 {
  margin: 0 0 20px;
}
.content-item p {
  margin-bottom: 20px;
}
.content-img {
  width: 1088px;
  top: auto;
}
.content-img img {
  height: 350px;
  top: auto;
}
.content-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.content-list li {
  line-height: 1.4rem;
  margin-bottom: 30px;
}
.content-list li i {
  color: var(--primary);
  font-size: 15px;
}
.content-list li span {
  color: var(--text);
  margin-left: 20px;
  font-weight: 600;
}

@media (max-width: 400px) {
  .content-list li span {
    margin-left: 10px;
  }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-wrappper,
.pricing-wrap {
  display: flex;
  align-items: center;
}

.pricing-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(61, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(61, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
}

.pricing-box:nth-child(2) {
  border-radius: 0 0 5px 5px; 
}


.pricing-head span {
  text-transform: uppercase;
  font-size: 14px;
  color: #ff3465;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
}

.pricing-month {
  margin-left: 15px;
}

.pricing-head h3 {
  font-size: 55px;
}
.pricing-head h4 {
  margin-top: -15px;
}
.pricing-list {
  margin-top: 50px;
}
.pricing-list li {
  margin-bottom: 15px;
}
.pricing-list li:last-child {
  margin-bottom: 0;
}
.pricing-list li i {
  color: #0abf53;
  font-size: 10px;
  margin-right: 10px;
}
.pricing-footer .default-btn {
  margin-top: 50px;
}

.pricing-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

/*Section Heading For Dark Background*/
.bg-dark .section-heading span {
  color: #ddd;
}
.bg-dark .section-heading h2 {
  color: var(--white);
}
/* Transition Effect */
a,
a:hover,
.overlay,
img,
.form-control,
.form-control:hover,
button {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/* ==========================================================================
   Pricing Table Section
   ========================================================================== */

@media (max-width: 1000px) {
   .table-section {
    display: none;
  }
}

.pricing-table_wrapper {
  margin-top: 80px;
}
.bestseller-box {
  height: 45px;
  background-color: var(--primary-60);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px 5px 0 0;
}
.bestseller-box p{
  margin: 0;
  color: var(--grey);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Work Sans", sans-serif;
}

.pricing-box:nth-child(1){
  margin-top: 45px;
}

.pricing-table {
  table-layout: fixed;
  width: 100%;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  display: none;
  background-color: #fff;
}

@media only screen and (min-width: 1000px) {
  .pricing-table {
    display: table;
  }
}

.pricing-table thead {
  background-color: inherit;
}

.pricing-table thead th {
  color: var(--text);
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  text-align: center;
  padding: 20px 10px;
  vertical-align: top;
  word-break: break-word;
}

.pricing-table tbody tr {
  background-color: inherit !important;
}

.pricing-table tbody tr.is-hoverable td:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pricing-table tbody tr.is-hoverable:hover {
  border-radius: 4px;
  background-color: rgba(105, 105, 105, 0.15) !important;
}

.pricing-table_title {
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.pricing-table tbody td {
  padding: 20px;
  vertical-align: middle;
  color: var(--text);
}

.pricing-table tbody td:nth-child(even) {
  text-align: center;
}

.pricing-table a.link-more {
  font-size: 14px;
}

.white-column {
  width: 16px;
}
.pricing-table tbody tr td i {
  color: #0abf53;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-content h2 {
  margin-bottom: 30px;
}
.about-content .default-btn {
  margin-top: 40px;
}
.about-bg {
  background-image: url(../img/about.jpg);
  background-position: top right;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  top: 0;
  right: 0;
  position: relative;
}


/* ==========================================================================
   Projects Section
   ========================================================================== */

.project-wrap {
  display: flex;
  flex-wrap: wrap;
}

.project-wrap > div {
  display: flex;
}

.project-box {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.project-box img {
  height: 100%;
  width: 100%;
  object-fit: cover !important;
  flex-shrink: 0;
}

.project-img {
  margin: 80px 0 50px 0;
  overflow: hidden;
}

.project-img a img{
  height: 100%;
  width: 100%;
  object-fit: contain !important;

  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.project-img:hover a img {
  transform: scale(1.04);
}

.project-box:hover img {
  transform: scale(1.1);
}
.project-content {
  background-color: var(--primary);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
  text-align: center;
  transform: translateY(100px);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.project-content-inner {
  padding: 40px;
  transform: translateY(50px);
  transition: all 0.2s ease-in-out;
  transition-delay: 0.2s;
  visibility: hidden;
  opacity: 0;
}
.project-box:hover .project-content,
.project-box:hover .project-content-inner {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.project-content h3 {
  color: var(--white);
}
.project-content span {
  color: #ddd;
}

/* ==========================================================================
   Projects Single Section
   ========================================================================== */

.project-content-2 {
  display: block;
  margin: 0 auto;
  max-width: 115ch;
  text-align: center;
}
.project-content-2 h2 {
  margin-bottom: 1em;
}
.project-content-2 p {
  margin-bottom: 4em;
}
.project-content-2 a {
  color: var(--text);
}
.project-content-2 a:hover {
  color: var(--primary);
}

.project-info h3 {
  margin-bottom: -2px;
}

.skill_items h3 {
  font-size: 16px;
}
.skill_items .skill_item {
  margin-bottom: 20px;
  overflow: hidden;
}
.skill_items .skill_item h5 {
  font-size: 10px;
  margin: 0 0 7px;
}
.skill_items .skill_item .progress {
  height: 10px;
  background-color: #ddd;
  box-shadow: none;
  margin-bottom: 0;
  overflow: visible;
}
.skill_items .skill_item .progress,
.skill_items .skill_item .progress .progress-bar {
  border-radius: 3px;
}
.skill_items .skill_item .progress .progress-bar {
  line-height: 5px;
  background-color: var(--primary);
  position: relative;
}
.skill_items .skill_item .progress .progress-bar span {
  position: absolute;
  top: -15px;
  right: -15px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}
.skill_items .skill_item .progress .progress-bar span:before {
  content: "";
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: calc(50% - 4px);
  bottom: -4px;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonial-carousel .testi-item {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9fafa;
}

.testimonial-carousel .testi-item h3 span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
  display: block;
  margin-bottom: 20px;
}
.testimonial-carousel .testi-item img {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto;
}

/* ==========================================================================
   Cta Section
   ========================================================================== */
.cta-section {
  background-image: url(../img/call-to-action-bg.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.cta-content {
  margin-top: 105px;
}
.cta-content h2 {
  color: var(--white);
}
.cta-content p {
  color: #ddd;
}
.cta-section .default-btn {
  color: var(--text);
  background-color: var(--white);
}
.cta-section .default-btn:hover {
  color: var(--text);
  background-color: var(--secondary);
}

/*Boolets*/
.owl-controls .owl-dots {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -50px;
  text-align: center;
}
.owl-controls .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 1px;
  background-color: #555;
  margin: 0 3px;
  position: relative;
  text-align: center;
}
.owl-controls .owl-dots .owl-dot.active {
  background-color: var(--primary);
}

/* ==========================================================================
   Page Header Section
   ========================================================================== */
.page-header {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.price-header {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-content h2 {
  color: var(--text);
  font-size: 36px;
}
.page-content p {
  color: var(--accent);
  margin: 0;
}

/* ==========================================================================
   404 Error Section
   ========================================================================== */
.error-section {
  height: 45em;
  display: flex;
  align-items: center;
}
.error-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-content img {
  max-width: 100%;
}
.error-content .error-info {
  text-align: center;
}
.error-content .error-info h2 {
  font-size: 200px;
  line-height: 200px;
  letter-spacing: -10px;
}
.error-content .error-info a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
}
.error-content .error-info a:hover {
  color: var(--primary);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  position: relative;
  z-index: 1;
}
.contact-section .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../img/bg-dots.png) 0 0 repeat;
  z-index: -1;
}
.contact-info h3 {
  line-height: 28px;
}
.contact-info h4 {
  font-size: 16px;
  line-height: 28px;
}
.contact-info span {
  text-transform: uppercase;
  margin-right: 5px;
}

/* Form Style
===============*/
.form-control {
  background-color: var(--white);
  border-radius: 0;
  padding: 15px 10px;
  box-shadow: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
  outline: none;
}
#form-messages {
  display: none;
}
#form-messages.alert-danger,
#form-messages.alert-success {
  display: block;
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: start;
}
.checkbox-group input {
  margin: 5px 10px 0 0;
}
.checkbox-group p {
  margin: 0;
}
.checkbox-group p a {
  color: var(--primary);
}
.checkbox-group p a:hover {
  text-decoration: underline;
}
/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section.bg-dark .dots{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.png) 0 0 repeat;
    z-index: -1;
}
.blog-item{
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.blog-item .blog-thumb{
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.blog-item .blog-thumb .category{
    background-color: var(--primary);
    padding: 5px 15px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Work Sans",sans-serif;
    position: absolute;
    width: auto;
    height: auto;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.blog-item .blog-thumb .category a{
    color: #fff;
}
.blog-item .blog-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    display: block;
}
.blog-content{
    background-color: #f9fafa;
    padding: 30px;
}

/* Bg-dark */
.bg-dark .blog-content{
    background-color: #242323;
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: 5px solid var(--primary);
}
.bg-dark .blog-content h3 a{
    color: #fff;
}
.bg-dark .blog-content p{
    color: #999;
}
.bg-dark .blog-content .read-more{
    color: #fff;
}
.blog-content h3{
    line-height: 24px;
}
.blog-content h3 a{
    color: #0B2238;
    font-size: 18px;
    line-height: 24px;
}
.blog-content h3 a:hover{
    color: var(--primary);
}
.blog-content .read-more{
    font-family: "Work Sans",sans-serif;
    color: #0B2238;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
}
.blog-content .read-more:hover{
    color: var(--primary);
}
.blog-content .read-more:before{
    background-color: var(--primary);
    position: absolute;
    content: "";
    width: 30px;
    height: 4px;
    left: 0;
    top: calc(50% - 2px);
    
}

/* Pagination 
=============== */
.pagination-wrap li{
    display: inline-block;
    margin: 0 5px;
}
.pagination-wrap.text-left li {
    margin: 0 10px 0 0;
}
.pagination-wrap li a{
    border: 1px solid #e5e5e5;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    color: #0B2238;
    font-weight: 600;
    border-radius: 2px;
}
.pagination-wrap li a:hover{
    background-color: var(--primary);
    color: #fff;
    opacity: 1;
    text-decoration: none;
}
.pagination-wrap li a.active{
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

/* Sidebar Style
===============*/
.sidebar-wrap{
    padding-left: 40px;
}
.sidebar-wrap .widget-content:not(:last-of-type){
    margin-bottom: 40px;
}
.sidebar-wrap .widget-content h4{
    position: relative;
    margin-bottom: 30px;
}
.sidebar-wrap .widget-content h4:before{
    background-color: var(--primary);
    position: absolute;
    content: "";
    width: 20%;
    height: 3px;
    left: 0;
    bottom: -5px;
}
.sidebar-wrap .widget-content .widget-links li a:hover{
    text-decoration: underline;
}

/* Search Form Style
===================*/
.search-form{
    position: relative;
    margin-left: -2px;
}
.search-form .form-control{
    background-color: #f5f5f5;
    box-shadow: none;
    width: 100%;
    display: block;
    border: 1px solid #e5e5e5;
    color: #0B2238;
    height: auto;
    padding: 15px 20px;
    border-radius: 2px;
    padding-right: 60px;
}
.search-form .search-btn{
    background-color: transparent;
    font-size: 15px;
    color: #0B2238;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 10px 0;
    opacity: 0.6;
    border: none;
}
.search-form .search-btn:focus,
.search-form .search-btn:hover{
    opacity: 1;
    cursor: pointer;
}
.search-form input::-webkit-input-placeholder{
    color: #8d9aa8 !important;
}
.search-form input:-moz-placeholder{ /* Firefox 18- */
    color: #8d9aa8 !important;  
}
.search-form input::-moz-placeholder{  /* Firefox 19+ */
    color: #8d9aa8 !important;  
}
.search-form input:-ms-input-placeholder{  
    color: #8d9aa8 !important;  
}

/* Thumbnails Post Style
========================*/
.thumb-post li{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: top;
    margin-bottom: 20px;
}
.thumb-post li:last-child{
    margin-bottom: 0;
}
.thumb-post li img{
    width: 100px;
    display: block;
    
}
.thumb-post li a{
    font-family: "Poppins",sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0B2238;
    padding-left: 15px;
    letter-spacing: -0.5px;
}
.thumb-post li a:hover{
    color: var(--primary);
    text-decoration: underline;
}
/* Tag Cloud Style
==================*/
.widget-content .tags li{
    display: inline-block;
}
.widget-content .tags li a{
    display: inline-block;
    background-color: var(--primary);
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    margin: 3px;
}
.widget-content .tags li a:hover{
    background-color: #0B2238;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* ==========================================================================
   Blog Single Section
   ========================================================================== */

.blog-thumb img{
    margin-bottom: 30px;
}

.blog-single-content h2 a{
    font-size: 28px;
    color: #0B2238;
}

.blog-single-content p{
  max-width: 120ch;
  margin-bottom: 30px;
}
.blog-single-content h2 a:hover{
    color: var(--primary);
}
.single-post-meta{
    margin-bottom: 30px;
}
.single-post-meta li{
    display: inline-block;
    margin-right: 20px;
}
.single-post-meta li i{
    font-size: 12px;
    color: var(--primary);
    margin-right: 5px;
}
.single-post-meta li a{
    display: inline-block;
    font-family: "Work Sans",sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #0B2238;
}
/* Blog Quote
===============*/
blockquote{
    background-color: #f5f5f5;
    padding: 40px;
    border-left: 4px solid var(--primary);
    margin: 30px 0;
    position: relative;
    z-index: 1;
}
blockquote .dots{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.png) 0 0 repeat;
    z-index: -1;
}
blockquote p{
    color: #0B2238;
    font-size: 20px;
    
}
blockquote span{
    display: block;
    margin-top: 20px;
    color: #0B2238;
}
/* Post Tags Style
==================*/
.post-tags{
    margin-top: 30px;
}
.post-tags li{
    display: inline-block;
}
.post-tags li a{
    display: inline-block;
    background-color: var(--primary);
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    margin: 3px;
}
.post-tags li a:hover{
    background-color: #0B2238;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* Author Box Style
====================*/
.author-box{
    display: flex;
    align-items: center;
    padding: 30px;
    margin-top: 30px;
    border-left: 4px solid var(--primary);
}
.author-box img{
    border-radius: 50%;
}
.author-info{
    padding-left: 30px;
}
.author-info h3{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
}
.author-box .social-icon li{
    display: inline-block;
    margin-right: 8px;
}
.author-box .social-icon li a{
    font-size: 14px;
    color: #0B2238;
}
.author-box .social-icon li a:hover{
    color: var(--primary);
}
/* Post Navigation
====================*/
.post-navigation {
    border: 1px solid #e5e5e5;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
}
.post-navigation .col{
    padding: 20px;
}
.post-navigation .col:not(:last-of-type){
    border-right: 1px solid rgba(17,17,17,0.04);
}
.post-navigation .col a{
    color: #0B2238;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Work Sans",sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.post-navigation .col.next-post a{
    justify-content: flex-end;
}
.post-navigation .col i{
    display: inline-block;
    font-size: 14px;
}
.post-navigation .ti-arrow-left{
    margin-right: 10px;
}
.post-navigation .ti-arrow-right{
    margin-left: 10px;
}
.post-navigation .col a:hover{
    color: var(--primary);
}
.post-navigation .col.prev-post .fa{
    margin-right: 10px;
}
.post-navigation .col.next-post .fa{
    margin-left: 10px;
}

/* Comments Style
==================*/
.blog-single-wrap .comments-area {
    margin-top: 40px;
}

.blog-single-wrap .comments-area .comments {
    border-bottom: 0;
}
.blog-single-wrap .comments-area li > div {
    border-bottom: 1px solid rgba(17,17,17,0.05);
    padding: 35px;
}
.blog-single-wrap .comments-area ol {
    list-style-type: none;
    padding-left: 0;
}
.blog-single-wrap .comments-area ol ul {
    padding-left: 30px;
    list-style-type: none;
    margin: 0;
}
.blog-single-wrap .comments-area ol > li:last-child div {
    border-bottom: 0;
}
.blog-single-wrap .comments-area .comments-title{
    font-size: 22px;
    font-weight: 600;
}
.blog-single-wrap .comments-area li > div{
    position: relative;
}
.blog-single-wrap .comments-area .comment-thumb{
    position: absolute;
    left: 35px;
}
.blog-single-wrap .comments-area .comment-thumb .comment-img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.blog-single-wrap .comments-area .comment-thumb .comment-img img{
    border-radius: 50%;
}
.blog-single-wrap .comments-area .comment-main-area{
    padding-left: 100px;
}
.blog-single-wrap .comments-area .comment-main-area p {
    margin-bottom: 20px;
}
.blog-single-wrap .comments-area .comments-meta h4{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1px;
}
.blog-single-wrap .comments-area .comments-meta h4 span{
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-transform: none;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 5px;
}
.blog-single-wrap .comments-area .comment-reply-link {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
    text-transform: uppercase;
    padding-left: 35px;
    position: relative;
}
.blog-single-wrap .comments-area .comment-reply-link:before{
    background-color: var(--primary);
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    left: 0;
    top: calc(50% - 1px);
}
.blog-single-wrap .comments-area .comment-reply-link:hover{
    text-decoration: underline;
}
.blog-single-wrap .comment-respond .comment-reply-title{
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.blog-single-wrap .comment-respond form input,
.blog-single-wrap .comment-respond form textarea {
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 50px;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: all 0.3s;
}
.blog-single-wrap .comment-respond form input:focus,
.blog-single-wrap .comment-respond form textarea:focus {
    border-color: var(--primary);
}
.blog-single-wrap .comment-respond form textarea {
    height: 200px;
    padding: 15px;
}
.blog-single-wrap .comment-respond .form-inputs {
    overflow: hidden;
}
.blog-single-wrap .comment-respond .form-inputs > input:nth-child(2) {
    width: 49%;
    float: left;
}
.blog-single-wrap .comment-respond .form-inputs > input:nth-child(3) {
    width: 49%;
    float: right;
}
.blog-single-wrap .comment-respond .form-submit input{
    font-family: "Work Sans", sans-serif;
    max-width: 180px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    border-radius: 0;
    text-transform: uppercase;
}
.blog-single-wrap .comment-respond .form-submit input:hover {
    opacity: 0.9;
}

/* ==========================================================================
   Impressum
   ========================================================================== */

.impressum-section {
  min-height: 65vh;
}

/* ==========================================================================
   Widget Section
   ========================================================================== */
.widget-section {
  background-color: #212529;
  border-bottom: 1px solid #333;
}
/*Dark Background*/
.widget-section.bg-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-content img {
  margin-bottom: 20px;
}
.widget-content h4 {
  color: var(--text);
}
.widget-content p {
  color: #ddd;
}
.widget-content span {
  display: block;
  color: var(--white);
}
.widget-content .widget-links li {
  line-height: 1.9;
}
.widget-content .widget-links li a {
  color: #6a7695;
  line-height: 1.9;
}
.home-widgets h4 {
  color: var(--white);
}
.home-widgets .widget-links li a {
  color: #ddd;
}
.widget-content .widget-links li a:hover {
  color: var(--primary);
}

.contact-info h4 a {
  color: inherit;
}
.contact-info h4 a:hover {
  color: var(--primary);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
  background-color: #212529;
  display: flex;
  color: var(--white);
  text-align: center;
  justify-content: center;
  padding: 25px 0;
}
.footer-section p {
  font-size: 16px;
  color: #ddd;
  margin-right: 2em;
}
.footer-section a {
  color: var(--white);
  margin-right: 2em;
}
.footer-section a:hover {
  color: var(--primary);
}
.footer-section a:last-child {
  margin-right: 0;
}

.widget-content a img {
  max-width: 75%;
}

/* ==========================================================================
   Scroll To Top
   ========================================================================== */
#scroll-to-top {
  background-color: var(--primary);
  display: none;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  line-height: 45px;
  color: var(--white);
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
}
#scroll-to-top:hover {
  background-color: var(--primary);
  color: var(--white);
  opacity: 0.8;
}
@media (max-width: 767px) {
  #scroll-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    bottom: 20px;
    right: 20px;
  }
}

.scroll-to-top_icon {
  width: 15px;
  margin-bottom: 4px;
}


/* ==========================================================================
   Owl Carousel - Animate Plugin
   ========================================================================== */

 .owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}


/* ==========================================================================
    Responsive Design
   ========================================================================== */


@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .contant-img {
    height: 500px;
    left: -450px;
  }
  .content-item {
    padding-left: 0;
  }
}

/* ---- Start of max-width 992px CSS ---- */
@media (max-width: 992px) {
  .sm-padding {
    padding: 15px;
  }
  .header-section .navbar-brand {
    height: 80px;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .js .mainmenu {
    display: none;
  }
  .js .slicknav_menu {
    display: block;
  }
  .header-btn a {
    margin-right: 50px;
  }
  .hero-content h2 {
    font-size: 36px;
    line-height: 36px;
  }
  .content-item {
    padding: 0;
  }
  .error-content .error-info {
    padding-left: 10px;
  }
  .sidebar-wrap {
    padding-left: 0;
    margin-top: 20px;
  }
}
/* ---- End of max-width 992px CSS ---- */

@media (max-width: 538px) {
  .header-btn {
    display: none;
  }
}

/* ---- Start of min-width 480px and max-width 768px CSS ---- */
@media all and (min-width: 480px) and (max-width: 768px) {

  .pricing-head h3 {
    font-size: 42px;
  }
}
/* ---- End of min-width 480px and max-width 768px CSS ---- */

/* ---- Start of max-width 767px CSS ---- */
@media all and (max-width: 767px) {
  body,
  p {
    font-size: 12px;
    line-height: 22px;
  }
  h1 {
    font-size: 50px;
    line-height: 55px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 16px;
  }
  p br {
    display: none;
  }
  .padding {
    padding: 60px 0;
  }
  .xs-padding {
    padding: 15px;
  }
  .section-heading h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .hero-section {
    height: 650px;
  }
  .hero-content h2 {
    font-size: 24px;
    line-height: 36px;
    margin: 0;
  }
  .feature-content {
    text-align: center;
  }
  .feature-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 36px;
    text-align: center;
  }
  .feature-content .play-btn {
    justify-content: center;
  }
  .feature-item {
    text-align: center;
    padding: 0 40px;
  }
  .contant-section {
    padding: 50px 0;
  }
  .contant-item {
    padding-left: 0;
  }
  .page-header {
    height: 250px;
  }
  .page-content h2 {
    font-size: 30px;
    margin: 0;
  }
  .about-content h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .cta-content h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .pricing-footer a {
    font-size: 10px;
  }
  .error-content {
    display: block;
  }
  .error-content .error-info {
    margin-top: 40px;
  }
  .error-content .error-info h2 {
    font-size: 120px;
    line-height: 120px;
    margin-bottom: 30px;
  }
  .error-content .error-info a {
    display: block;
  }
  .contact-form .form-group .col-sm-6:first-child {
    margin-bottom: 15px;
  }
  .contact-info h2 {
    line-height: 28px;
  }
  .sidebar-wrap {
    padding-left: 0;
  }
  .blog-single-content h2 a {
    font-size: 22px;
    line-height: 28px;
  }
  .blog-single-content h2 {
    line-height: 28px;
  }
  blockquote p {
    line-height: 32px;
  }
  .year-bg {
    width: 100%;
  }
  .testimonial-section {
    padding-bottom: 100px;
  }
  .counter-content,
  .counter-section .section-heading {
    text-align: center;
  }
  .section-heading {
    text-align: center;
    padding: 0px 5px;
  }
}

/* ---- End of max-width 767px CSS ---- */

/* ---- Start of max-width 580px CSS ---- */
@media all and (max-width: 580px) {
  .pricing-box {
    text-align: center;
  }
  .subscribe-form {
    width: 100%;
  }
  .counter-wrap .col-lg-4:first-child {
    margin-bottom: 50px;
  }
}
/* ---- End of max-width 580px CSS ---- */

/* ==========================================================================
    Responsive Design
   ========================================================================== */

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
