
/*----------------------------------
Table of contents
01.Common
02.Loading
03.Buttons
04.Title
05.Header
06.Home Banner
07.skill text
08.Progress
09.Feature
10.Modal
11.Counter
12.Testimonial
13.Portfolio
14.Video box
15.Blog
16.Call To action
17.Contact Us
18.Footer
19.Background Properties
20.Margins
21.Padding
----------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/*---------------------------------
  Common
-----------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  background-color: #000;
  background-size: cover;
  background-attachment: fixed;
}
.dark-bg {
  background: #131313;
}

.dark-color {
  color: #ff0000;
}

.white-color {
  color: #fff;
}

.white-color-light {
  color: rgba(255,255,255,.6);
}

img {
  max-width: 100%;
}

a:hover {
  color: #000;
}

.section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 767px){
 .section {
    padding: 40px 0;
} 
}

/*---------------------------------
* Loading
-----------------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 999999;
}

.load-circle:after,
.load-circle:before{
  content: '';
  background: #fff;
  height: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 1s;
}

.load-circle:after{
  top: 0;
}

.load-circle:before{
  bottom: 0;
}

.load-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 10px solid #e8e8e8;
  border-top: 10px solid #000;
  -webkit-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

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

/*---------------------------------
  Buttons
-----------------------------------*/
.btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: 3px;
  border: none;
}

.btn-theme {
  color: #fff;
}
.btn-theme:focus,
.btn-theme:active,
.btn-theme:hover {
  color: #fff;
  background: #111;
  text-decoration: none;
}

.btn-t-white {
  border: 2px solid #ff0000;
  color: #fff;
}
.btn-t-white:hover {
  background: #ff0000;
  color: #fff;
  border: none;
}

/*---------------------------------
  Title
-----------------------------------*/
.bg-title {
  position: absolute;
  top: 10px;
  text-align: center;
  width: 100%;
  font-size: 9vw;
  text-transform: uppercase;
  font-weight: 900;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.05);
  display: none;
}
.section-title h2 {
  color: #ff0000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.section-title h2:after,
.section-title h2:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.section-title h2:after {
  left: -40px;
}

.section-title h2:before {
  right: -40px;
}
.section-title p {
  margin: 15px 0 0;
  word-spacing: 1.5px;
}

/*@media(max-width: 767px){
  .bg-title {
    top: 15px;
    font-size: 12vw;
  }
  .section-title h2 {
    font-size: 26px;
  }
  .section-title p {
    margin-top: 10px;
  }
}*/

.home-banner .scroll-top  {
  position: absolute;
  top: 55%;
  left: 0;
  z-index: 3;
  width: 40px;
}
.home-banner .scroll-top a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  width: 41px;
  height: 21px;
}
.home-banner .scroll-top .text {
  display: block;
  transform: rotate(-90deg) translateX(2rem);
  -webkit-transform: rotate(-90deg) translateX(2rem);
  font-size: 12px;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0px;
  right: 0px;
  line-height: 28px;
}
.bar-line {
  height: 50px;
  width: 3px;
  overflow: hidden;
  float: left;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -40px;
}
.bar-line--down {
  height: 47px;
  background: #fff;
  width: 3px;
  -webkit-animation: slide-down 2s steps(100) infinite;
  animation: slide-down 2s steps(100) infinite;
  float: left;
}


@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }
}

@keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }
}


/*---------------------------------
  Header
-----------------------------------*/
.header-nav-01 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 0;
  background: rgba(255,255,255,0);
  transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
}
.header-nav-01 .navbar-brand {
  margin-right: auto;
  color: #000;
  padding: 0 25px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 70px;
  font-size: 20px;
  letter-spacing: 1px;
  box-shadow: 5px 5px 0px 1px rgba(0, 0, 0, 0.08);
}
.header-nav-01 .navbar-brand.navbar-brand-full {
  display: none;
}

.header-nav-01 .toggler-menu {
  margin-left: auto;
  width: 70px;
  height: 70px;
  background: #000;
  border: none;
  position: relative;
  cursor: pointer;
}
.toggler-menu:hover{
box-shadow: -3px 2px 20px 0px rgb(255 0 0 / 43%)
}
.header-nav-01 .toggler-menu span {
  pointer-events: none;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(5%);
  transform: translateX(5%);
  transition: ease all 0.55s;
  -webkit-transition: ease all 0.55s;
}
.header-nav-01 .toggler-menu span:after {
  content: "";
  top: 0;
  bottom: 0;
  left: 50%;
  background-color: #ff0000;
  width: 1.28571rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: ease all 0.55s;
  -webkit-transition: ease all 0.55s;
}
.header-nav-01 .toggler-menu span:first-of-type {
    top: calc(50% - 6px);
}
.header-nav-01 .toggler-menu span:nth-of-type(3) {
    top: calc(50% + 6px);
}

.header-nav-01 .toggler-menu span:nth-of-type(3):after,
.header-nav-01 .toggler-menu span:first-of-type:after {
    -webkit-transform: translateX(-90%);
    transform: translateX(-90%);
}

.header-nav-01 .toggler-menu:hover span:nth-of-type(3):after,
.header-nav-01 .toggler-menu:hover span:first-of-type:after {
  -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


.header-nav-01.fixed-header {
   background: #000;
}
.header-nav-01.fixed-header .navbar-brand,
.header-nav-01.fixed-header .toggler-menu {
  box-shadow: none;
}

.header-nav-01.fixed-header .navbar-brand.navbar-brand-half {
  display: none;
}
.header-nav-01.fixed-header .navbar-brand.navbar-brand-full {
  display: block;
}

/*---------------------------------
  Header nav
-----------------------------------*/
.top-side-nav {
  position: fixed;
  background: #060606;
  bottom: 0;
  width: 50%;
  top: 0;
  right: 0;
  padding: 0 5%;
  z-index: 10;
  max-height: 100vh;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s,-webkit-transform 1s;
}
.top-side-nav.menu-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
}

.top-side-nav .bg-effect {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 120px;
  pointer-events: none;
}

.top-side-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-side-nav .menu-bar li a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
  line-height: normal;
  padding: 0;
}
.top-side-nav .menu-bar li a:after {
  content: "";
  position: absolute;
  transition: width 0.55s;
  -webkit-transition: width 0.55s;
  width: 0%;
  height: 43%;
  left: 0;
  float: left;
  z-index: -1;
  bottom: 0;
}
.top-side-nav .menu-bar li a:hover:after,
.top-side-nav .menu-bar li a.active:after {
  width: 70%;
}
.top-side-nav .menu-bar li {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  opacity: 0;
  transition: ease all 0.55s;
  -webkit-transition: ease all 0.55s;
}

.top-side-nav.menu-open .menu-bar li {
  opacity: 1;
}
.top-side-nav.menu-open .menu-bar li:first-of-type {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.top-side-nav.menu-open .menu-bar li:nth-of-type(2) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.top-side-nav.menu-open .menu-bar li:nth-of-type(3) {
    -webkit-transition-delay: .5s;
    transition-delay: 0.5s;
}
.top-side-nav.menu-open .menu-bar li:nth-of-type(4) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.top-side-nav.menu-open .menu-bar li:nth-of-type(5) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.top-side-nav.menu-open .menu-bar li:nth-of-type(6) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.top-side-nav.menu-open .menu-bar li:nth-of-type(7) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.menu-address {
  opacity: 0;
  -webkit-transition: opacity 1s,-webkit-transform 1s;
  transition: opacity 1s,-webkit-transform 1s;
  transition: transform 1s,opacity 1s;
  transition: transform 1s,opacity 1s,-webkit-transform 1s;
}
.top-side-nav.menu-open .menu-address {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  opacity: 1;
}

.toggler-menu-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.toggler-menu-close:hover {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}
.toggler-menu-close span:first-child,
.toggler-menu-close span:last-child {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 38px;
  height: 2px;
  background: #fff;
}
.toggler-menu-close span:first-child {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.toggler-menu-close span:last-child {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.menu-address .ma-name {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.menu-address p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.69);
}
.menu-address p strong {
  color: #fff;
}
.menu-address .ma-social-icons {
  margin: 0;
  padding: 10px 0 0;
}

.menu-address .ma-social-icons li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.menu-address .ma-social-icons a {
  color: #fff;
  font-size: 15px;
  width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  display: block;
  text-align: center;
  line-height: 33px;
  border-radius: 3px;
}


@media(max-width: 1100px) {
  .top-side-nav {
    width: 80%;
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
  }
}

/*---------------------------------
  Home Banner
-----------------------------------*/
.full-screen {
  min-height: 100vh;
}

.particles-js-canvas-el {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.5;
}


.home-social-icons {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 40px;
  text-align: center;
  right: 650px;
  list-style: none;
}

.home-social-icons:after {
  content: "";
  position: absolute;
  height: 30px;
  width: 1px;
  background: #fff;
  bottom: -20px;
}

.home-social-icons:before {
  content: "";
  position: absolute;
  height: 30px;
  width: 1px;
  background: #fff;
  top: -20px;
}

.home-social-icons a {
  color: #fff;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 30px;
}

.home-social-icons li {
  margin: 25px 0;
}

.home-banner {
  position: relative;
  overflow: hidden;
  width: 100%;

}
.home-text{
  width: 50%;
}
.home-text a{
  margin-top: 25px;
}
.home-banner .home-text {
  padding: 120px 0 70px;
  text-align: left;
}
.home-banner .home-text h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px rgba(8, 8, 8, 0.16);
  text-transform: uppercase;
}
.home-banner .home-text h1 {
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 18px;
  text-transform: uppercase;
  line-height: normal;
}
.home-banner .home-text h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
.home-banner .home-text h4 span {
  text-transform: uppercase;
  color: #ff0000;
}
.home-p{
  padding: 25px 216px 0 0 ;
}


.home-banner .banner-img img {
  position: relative;
  top: 0;
  transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
}


@media(max-width: 767px) {
  .home-banner .home-text {
    padding: 110px 0 50px;
  }
}
  .home-banner .home-text h6 {
    font-size: 12px;
    margin: 0 0 8px 0;
  }
  .home-banner .home-text h1 {
    font-size: 32px;
    margin: 0 0 10px;
  }
  .home-banner .home-text h4 {
    font-size: 16px;
  }

  .home-social-icons {
    display: none;
  }
  .home-banner .scroll-top {
    display: none;
  }


/*---------------------------------
  about text
-----------------------------------*/
.about{
  background-color: ##131313;
}

.about-left{
  text-transform: uppercase;
}
.about-left h1{
    font-weight: 700;
    font-size: 30px;
    position: absolute;
    top: -10%;
    color: #ff0000;
}
.about-left h2{
  padding: 40px 147px 0 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
  word-spacing: 3px;
}

/*---------------------------------
  skill text
-----------------------------------*/
.skill{
  overflow: hidden;
  background-image: url(img/magbook.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;

}
.skl-img {
  padding: 0 50px 30px 0px;
}
.skl-img-box .bg-effect {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 60px;
  right: 20px;
  background-color: #222;
  background-size: 120px;
  z-index: -1;
}
}
.skill-content h6 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.skill-content h2 {
  color: #ff0000;
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 15px;
}

@media(max-width: 767px){
  /*.skill-content h2 {
    font-size: 22px;
  }*/
}

/*---------------------------------
  Progress
-----------------------------------*/
.progress-lt {
  margin-top: 20px;
  position: relative;
}
.progress-lt:first-child {
  margin-top: 0;
}
.progress-lt h6 {
  display: inline-block;
  width: 47%;
  margin-right: 1.5%;
  color: #fff;
  margin: 0;
  padding: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: normal;
}
.progress-lt span {
  position: absolute;
  top: 0;
  right: 1.5%;
  font-size: 12px;
  color: #ff0000;
}
.progress-lt .progress {
  margin-bottom: 0;
  height: 7px;
  border-radius: 10px;
}
.progress-lt .progress-bar {
  width: 0%;
  -webkit-transition: width 1.2s ease;
     -moz-transition: width 1.2s ease;  
       -o-transition: width 1.2s ease;  
          transition: width 1.2s ease;
}
/*-----------------------------------------
*  Portfolio
-----------------------------------------*/
.pfolio{

}
.portfolio-col {

  margin-top: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.portfolio-col:hover {
      transform: scale(.95);
 box-shadow: 11px 11px 20px 0px rgb(255 0 0 / 28%);

}

.portfolio-col .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio-col .see-more {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 60px;
  background: rgb(0 0 0 / 94%);
  opacity: 0;
  transition: cubic-bezier(0.65, 0.05, 0.36, 1) all 0.5s;
  -webkit-transition: cubic-bezier(0.65, 0.05, 0.36, 1) all 0.5s;
}

.portfolio-col:hover .see-more {
  opacity: 1;
}
.port-content{
  padding-top: 25px;
}
.portfolio-col .see-more a {
  display: inline-block;
  vertical-align: top;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin: 20px 20px 0;
  color: #ff0000;
  text-decoration: none;
}
.portfolio-col:hover .see-more a {
  color: #fff;
}
/*-----------------------------------------
*  Call To action
-----------------------------------------*/
.call-to-action{
  background-color: ##131313;
}
.call-to-action h4 {
  font-size: 30px;
  font-weight: 600;
}
.call-to-action p {
  margin: 0;
}



/*---------------------------------
  Feature
-----------------------------------*/
.service{
  padding: 50px 0;
}
.feature-box {
  position: relative;
  padding-left: 60px;
}

.feature-box .icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}

.feature-box .icon:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.4;
}

.feature-box h5 {
  font-size: 16px;
  padding: 0 0 5px;
  font-weight: 600;
}

.feature-box p {
  font-size: 14px;
}

/*2*/
.feature-box-01 {
  position: relative;
  border: 1px solid;
  overflow: hidden;
  text-align: center;
  transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
}

.feature-box-01:hover {
  box-shadow: inset 1px 0px 20px 5px rgb(255 1 1 / 91%);
}
.feature-box-01 .icon {
  font-size: 30px;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 0% 0% 50% 50%;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-shadow: -1px 2px 22px -2px rgba(0, 0, 0, 0.33);
  transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
  margin-bottom: 30px;
}

.feature-box-01:hover .icon {
  border-radius: 0;
}
.feature-box-01 h5 {
  font-size: 18px;
  margin: 0;
  padding: 0 0 12px;
  font-weight: 600;
}

.feature-box-01 p {
  margin: 0;
}


.feature-box-01 .btn-bar a {
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
}
.inner{
  padding: 40px;
}

/*---------------------------------

/*---------------------------------
  Counter
-----------------------------------*/
.counter{
  background-color: ##131313;
}
.counter-data {
  position: relative;
  text-align: center;
}

.counter-data i {
  font-size: 90px;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  opacity: 0.08;
  color: #fff;
  transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
}

.counter-data:hover i {
  top: -15px;
}
.counter-data .count {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  padding: 0 0 10px;
}

.counter-data h6 {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
}

/*-----------------------------------------
*  Testimonial
-----------------------------------------*/
.text{
  background-color: ##131313;
}
.bg-effect-section {
  position: relative;
}
.bg-effect-section .bg-effect {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 80px;
  pointer-events: none;
}

.testimonial-col {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
}
.testimonial-col .tc-avtar {
  width: 100px;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 25px;
}
.testimonial-col .tc-content {
  width: 100%;
  padding-left: 0;
}

.testimonial-col .tc-content p {
  margin: 0 0 10px;
}
.testimonial-col .tc-content .tc-name {
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}
.testimonial-col .tc-content .tc-name h6 {
  margin: 0;
  padding-top: 30px;
  font-size: 30px;
}
.tc-say h2{
  text-align: left;
  font-size: 100px;
  color: #ff0000;
}
.tc-say h6{
  color: #ff0000;
}


.owl-dots {
  width: 100%;
  text-align: center;
  font-size: 0px;
  margin-top: 20px;
}

.owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  display: inline-block;
  vertical-align: top;
  border-radius: 8px;
  margin: 30px 5px;
  transition: ease all 0.3s;
}

.owl-dots .owl-dot.active {
  width: 18px;
  background: #fff;
  border-radius: 5px;
}

.owl-dark-dot .owl-dots .owl-dot {
  border-color: #ff0000;
}
.owl-dark-dot .owl-dots .owl-dot.active {
  background: #ff0000;
}


/*-----------------------------------------
*  Packages
-----------------------------------------*/
.feature-content h5{
  font-size: 30px;
  color: #fff;
}
.pkg{
  text-align: left;
}
.pkg h3{
  font-size: 30px;
}
.pkg span{
  font-size: 45px;
  color: #ff0000;
}
/*-----------------------------------------
*  Contact Us
-----------------------------------------*/
.contact{
  padding-top: 50px;
}
.output_message {
  vertical-align: top;
  margin-top: 15px;
  padding: 4px 10px;
  display: inline-block;
  font-size: 13px;
  text-align: center;
  letter-spacing: .5px;
  border-radius: 3px;
}
.output_message.success{
  background: #25a224;
  display: block;
  color: #fff;
  width: 100%;
  float: left;
}
.output_message.error{
  background: #dc1e1e;
  display: block;
  color: #fff;
  width: 100%;
  float: left;
}

.contact-form {
  padding: 35px;
  min-height: 100%;
  overflow: hidden;
}
.contact-form h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form .send {
  display: inline-block;
}

.form-group {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.form-group .form-control {
  padding-bottom: 30px;
  box-shadow: none;
  height: 45px;
  border: none;
  border-bottom: 1px solid #ff000094;
  width: 100%;
  font-size: 14px;
  color: #000;
  background: none;

}

.form-group .form-control.form-xl {
  height: 55px;
  border: 1px solid #ddd;
  font-size: 16px;
  border-bottom: 2px solid #ddd;
}

.form-group textarea.form-control {
  height: 120px;
}
.form-group textarea.form-control.form-xl {
  height: 120px; 
}

.form-group .input-focus-effect {
  width: 0 !important;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  height: 2px;
}

.form-group textarea:focus:not([readonly]) + span.input-focus-effect,
.form-group input:focus:not([readonly]) + span.input-focus-effect,
.form-group select:focus:not([readonly]) + span.input-focus-effect {
    width: 100% !important;
}


.cnt-left{
  padding-top: 65px;
}
.cnt{
  padding:35px 0 40px 22px;
}
.cnt h2{
  font-size: 55px;
}
.contact-head{
    font-size: 30px;
    letter-spacing: 1px;
    word-spacing: 1.5px;
    line-height: 45px;
}
.contact-head span{
  padding-left: 5px;
}
.contact-info {
  font-size: 30px;
  padding: 20px 15px 20px 70px;
  position: relative;
  margin-bottom: 15px;
  /*border: 1px solid #ddd;*/
  overflow: hidden;
}
.contact-info h6 {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 10px;
}
.contact-info i {
  color: #ff0000;
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  top: 20px;
  left: 20px;
}
.contact-info a{
  font-size: 25px;
  color: #fff;
}
.contact-info p {
  margin: 0;
}
.contact-info:last-child {
  margin-bottom: 0;
}

@media(max-width: 767px){
  /*.contact-form {
    padding: 20px;
  }*/
}

/*-----------------------------------------
*  Footer
-----------------------------------------*/
.footer {
  padding: 60px 0 0;
  text-align: center;
}
.footer-logo{
  width: 25%;
  margin: 0 auto;
}
.footer-logo p{
  color: #ff0000;
}

.footer .footer-logo h6 {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  width: 100%;
  text-align: center;
}
.footer .footer-logo h6::after,
.footer .footer-logo h6::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ff0000;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;

}
.footer .footer-logo h6::before{
  top: -5px;
  transform-origin: left;
}

.footer .footer-logo h6:hover::after,
.footer .footer-logo h6:hover::before{
  transform: scaleX(1);
}

.footer .social-icons {
  margin: 0;
  padding: 15px 0 30px;
  list-style: none;
}
.footer .social-icons li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
.footer .social-icons li a {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  line-height: 36px;
  font-size: 15px;
  border-radius: 50%;
}
.footer .social-icons li a:hover {
  background: #000;
}

.footer .copyright {
  border-top: 1px solid rgb(255 8 8 / 49%);
  margin: 0;
  font-size: 12px;
  padding: 25px 0;
  word-spacing: 3px;
}
.footer .copyright span{
  color: red;
}



/*@media(max-width: 767px) {
  .footer {
    padding: 40px 0 0;
  }
  .footer .social-icons {
  }
}*/

