* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


body {
  font-size:15px;
  color:#848484;
  line-height:26px;
  font-weight:400;
  background:#ffffff;
  font-family: 'Open Sans', sans-serif;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1170px;
    padding: 0px;
  }
}

.boxed_wrapper{
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  position: relative;
  font-size: 15px;
  font-family: 'Open Sans',sans-serif;
  line-height: 26px;
  font-weight: 400;
  cursor:pointer;
  color:#848484;
  transition: all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
  color: #ff0000;
}

button{
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
}

input,button,select,textarea {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
}


ul,li{
  list-style:none;
  padding:0px;
  margin:0px;
}
button:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

h1 {
  position:relative;
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  margin-bottom: 0px;
  color: #222222;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6 {
    position: relative;
    font-family: 'Hind', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    color: #222222;
    transition: all 500ms ease;
}

h1{
  font-size: 44px;
  line-height: 55px;
  font-weight: 500;
}

figure{
  margin: 0px;
}

.theme-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  padding: 10px 39px;
  background: #ff0000;
  color: #ffffff;
  border : 2px solid #ff0000;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.theme-btn:hover{
  background: transparent;
  color: #ff0000;
}

.scroll-top {
  width: 60px;
  height: 60px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 24px;
  border-radius: 50%;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: #ff0000;
  transition: all 500ms ease;
}
.scroll-top:hover{
  background: #1c2026;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top span{
  color: #fff;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.sec-title{
  position: relative;
  font-size: 42px;
  font-family: 'Hind', sans-serif;
  line-height: 50px;
  color: #222222;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 19px;
}
.title-text{
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #ff0000;
  text-transform: capitalize;
  padding-left: 111px;
  margin-bottom: 25px;
}
.title-text:before{
  position: absolute;
  content: '';
  background: #ff0000;
  width: 100px;
  height: 1px;
  left: 0px;
  top: 50%;
  margin-top: 0px;
}

.main-header{
  position:relative;
  left:0px;
  top:0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  background: #ffffff;
  left:0px;
  top:0px;
  border-bottom: 1px solid #e0e0e0;
  width:100%;
  z-index:0;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


.header-top{
  position: relative;
  width: 100%;
  background: #f7f5f5;
  padding: 5px 0px 5px 0px;
}
.header-top .top-left{
  position: relative;
  float: left;
}
.header-top .top-right{
  position: relative;
  float: right;
  margin-top: 3px;
}

.header-bottom{
  position: relative;
  background: #ffffff;
}
.header-bottom .menu-area{
  position: relative;
  float: left;
}

.main-menu{
  position: relative;
  display: block;
}
.main-menu .navbar-collapse{
  padding:0px;
}

.main-menu .navigation > li{
  position:relative;
  float:left;
  margin-right: 42px;
}
.main-header .menu-column{
  padding: 0px;
}
.main-menu .navigation > li > a{
  position:relative;
  display:block;
  font-size:16px;
  font-family: 'Open Sans', sans-serif;
  color:#222222;
  line-height:30px;
  font-weight:400;
  opacity:1;
  text-transform:capitalize;
  padding: 17px 18px 19px 0px;
  letter-spacing: 1px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.main-menu .navigation > li:hover > a{
  color: #ff0000;
}
.navbar-header {
  display: none;
}

.sticky-header .main-menu .navigation > li{
  margin: 0px;
}
.sticky-header .main-menu .navigation > li > a{
  padding: 14px 30px 16px 30px;
}
.sticky-header .main-menu .navigation > li > a{
  color: #222222;
}
.sticky-header .main-menu .navigation > li:hover > a{
  background: #ff0000;
  color: #ffffff;

}
.sticky-header .logo-box{
  margin-top: 11px;
}
.sticky-header .menu-area{
  padding: 0px;
  margin: 0px;
  border: none;
}



.main-slider{
  position:relative;
}

.main-slider .slide{
  position:relative;
  padding:142px 0px;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
}

.main-slider .slide:before{
  position: absolute;
  content: '';
  background: rgba(18, 25, 48, 0.50);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}
.main-slider .owl-dots {
    display: none !important;
}

.main-slider .owl-nav {
    position: absolute;
    left: 50%;
    top: 80%;
    z-index: 1;
    width: 92px;
    margin-top: 14px;
    margin-left: -325px;
}

.main-slider .owl-theme .owl-controls .owl-nav [class*="owl-"] {
    position: absolute;
    color: #ffffff;
}

.main-slider .owl-nav .owl-prev {
    position: absolute;
    left: 0px;
    cursor: pointer;
    display: inline-block;
    color: #ffffff;
    background: transparent;
    margin: 0px 0px;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
}

.main-slider .owl-nav .owl-next {
    position: absolute;
    right: 0px;
    cursor: pointer;
    display: inline-block;
    color: #ffffff;
    background: transparent;
    margin: 0px 0px;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
}

inner-box {
    position: relative;
}

.inner-box .image-box {
    position: relative;
    overflow: hidden;
}

.inner-box .image-box img {
    width: 100%;
}

.inner-box .image-box .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 0 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    visibility: hidden;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    -moz-transform-origin: left top;
    transform-origin: left top;
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

.inner-box .image-box .overlay:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    display: block;
    visibility: hidden;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    background-color: rgba(255, 0, 0, 0.80);
}

.inner-box:hover .overlay:before {
    opacity: 1;
    visibility: visible;
}

.inner-box:hover .overlay {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.inner-box .image-box .overlay .wrapper a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0px 3px;
    background: #ffffff;
    color: #ff0000;
}


/** service-section **/
.inner-box{
  position: relative;
}
.inner-box .image-box{
  position: relative;
  overflow: hidden;
}
.inner-box .image-box img{
  width: 100%;
}
.inner-box .image-box .overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 0 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  visibility: hidden;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  -moz-transform-origin: left top;
  transform-origin: left top;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.inner-box .image-box .overlay:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  display: block;
  visibility: hidden;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  background-color: rgba(255, 0, 0, 0.80);
}
.inner-box:hover .overlay:before {
  opacity: 1;
  visibility: visible;
}
.inner-box:hover .overlay {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.inner-box .image-box .overlay .wrapper a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin: 0px 3px;
  background: #ffffff;
  color: #ff0000;
}
/** main-footer **/

.main-footer{
  position: relative;
  background: #22262e;
  color: #d4dae3;
  padding: 30px 0px 10px 0px;
}
.main-footer .widgets-section{
  position: relative;
}
.main-footer .widgets-section:before{
  position: absolute;
  content: '';
  background: url(../images/background/footer-pattern.webp);
  left: 40%;
  top: -45px;
  width: 100%;
  height: 10%;
  min-height: 322px;
  background-repeat: no-repeat;
  animation-name: float-bob;
  animation-duration: 45s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 45s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 45s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 45s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 45s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.main-footer .logo-widget{
  margin-top: -12px;
}
.main-footer .logo-widget .footer-logo{
  position: relative;
  margin-bottom: 11px;
}
.main-footer .logo-widget .text{
  margin-bottom: 36px;
}
.main-footer .logo-widget .footer-social li{
  position: relative;
  float: left;
  margin-right: 12px;
}
.main-footer .logo-widget .footer-social li:last-child{
  margin-right: 0px;
}
.main-footer .logo-widget .footer-social li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  width: 47px;
  height: 47px;
  line-height: 47px;
  background: #2f333b;
  text-align: center;
  border-radius: 50%;
}
.main-footer .logo-widget .footer-social li a:hover{
  background: #ff0000;
}
.footer-title{
  position: relative;
  font-size: 20px;
  font-family: 'Hind', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 31px;
}
.main-footer .link-widget{
  margin-left: 70px;
}
.main-footer .newsletter-widget .text{
  margin-bottom: 26px;
  line-height: 24px;
}
.main-footer ::-webkit-input-placeholder { /* Chrome */
  color: #d4dae3;
}
.main-footer :-ms-input-placeholder { /* IE 10+ */
  color: #d4dae3;
}
.main-footer ::-moz-placeholder { /* Firefox 19+ */
  color: #d4dae3;
}
.main-footer :-moz-placeholder { /* Firefox 4 - 18 */
  color: #d4dae3;
}
.main-footer .newsletter-widget .footer-title{
  margin-bottom: 30px;
}

.footer-bottom{
  position: relative;
  background: #1c2026;
  color: #d4dae3;
  padding: 20px 0px 19px 0px;
}
.footer-bottom .copyright{
  font-weight: 500;
}
.footer-bottom .copyright a{
  color: #ff0000;
  font-weight: 500;
}
.footer-bottom .copyright a:hover{
  color: #d4dae3;
}

.slider-style-two{
  position: relative;
}
.slider-style-two h1{
  font-size: 55px;
  line-height: 62px;
  color: #ffffff;
  font-weight: 500;
  opacity: 0;
  margin-bottom: 41px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.slider-style-two .active h1 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1000ms;
}

.slider-style-two .slider-btn{
  position:relative;
  opacity:0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.slider-style-two .active .slider-btn {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1300ms;
}


.slider-style-two .slider-btn .theme-btn{
  padding: 12px 45px;
}
.slider-style-two .slide{
  padding: 50px 0px 10px 0px;
}

.slider-style-two .owl-nav {
    position: absolute;
    right: 50px;
    bottom: 40px;
    margin-top: 0px;
    margin-left: 0px;
    width: 160px;
    left: inherit;
    top: inherit;
}

.slider-style-two .owl-theme .owl-controls .owl-nav [class*="owl-"] {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #172424;
    text-align: center;
    color: #ffffff;
    border-radius: 0px;
    margin: 0px;
}
.team-section{
  position: relative;
  padding: 116px 0px 84px 0px;
}
.team-section .title-box{
  padding-bottom: 18px;
}
.single-team-content .lower-content{
  position: relative;
  padding: 24px 0px 0px 0px;
  margin-bottom: 30px;
}
.single-team-content .lower-content .text{
  position: relative;
  font-size: 16px;
  color: #ff0000;
  padding-left: 50px;
}
.single-team-content .lower-content .text:before{
  position: absolute;
  content: '';
  background: #ff0000;
  width: 40px;
  height: 1px;
  left: 0px;
  top: 50%;
}

.title-text{
  margin-bottom: 0px;
}

.main-slider .content-box{
  position: relative;
  display: block;
  z-index: 3;
}

#profile_image {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  height: auto;
}

@media all and (max-width: 1000px)
{
  #logo_left {
    margin-left: 0%;
    position: absolute;

  }

  #logo_right
  {
    margin-right: 0%;
  }


}

a {
    text-decoration: none !important;
}

/** about-style-three **/

.about-style-three{
  position: relative;
  padding: 50px 0px 103px 0px;
}
.about-style-three .title-box{
  margin-right: 20px;
  margin-top: 2px;
}
.about-style-three .title-box .sec-title{
  line-height: 54px;
  margin-bottom: 17px;
}
.about-style-three .content-box .top-text{
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: #222222;
  margin-bottom: 31px;
}
.about-style-three .content-box .text{
  line-height: 30px;
}