*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    color: #999999;
    text-decoration: none;
}

.mt-30{
    margin-top: 30px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.menu-two{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*=================================
        Hero Area Section
====================================*/

.hero-section {
    background-image: url(../img/home/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 90vh;
}

.hero-section:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.6;
}

.hero-section .header-heading{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 35%);
}

.hero-section .hero-title {
    color: #fff;
    margin: 0px 0px 45px 0px;
    font-size: 90px;
    font-weight: 700;
    line-height: 110px;
    font-family: 'Playfair Display', serif;
}

.hero-section .header-heading p {
    font-size: 20px;
    line-height: 30px;
    color: #383c64;
    margin-bottom: 35px;
}

.hero-section .hero-title span{
    font-size: inherit;
    color: #f10e00;
}

.btn-wraper{
    text-align: left;
}

.btn-wraper .creative_button {
    padding: 16px 46px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    line-height: 25px;
    border: 1px solid #fff;
    border-radius: 999px;
    transition: all 0.3s;
}

.btn-wraper .creative_button span{
    color: #fff;
}

.btn-wraper .creative_button i{
    position: relative;
    top: 3px;
    margin-left: 5px;
    font-size: 20px;
}

.btn-wraper .creative_button:hover{
    background-color: #fff;
}

.creative_button:hover span{
    color: #1f1f1f;
}

@media (min-width: 1200px){
    .container, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl {
        max-width: 1200px;
    }
}

/*====================
  feature section css
 =====================*/

.feature-sec {
  position: relative;
}

.feature-sec .feature-item {
    overflow: hidden;
    margin-bottom: 30px;
}

.feature-sec .feature-item .feature-area {
    position: relative;
}

.feature-item .feature-area img {
    transition: all 300ms ease-in-out 0s;
}

.feature-item .feature-area .title {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -82%;
    background: #1F406D;
    padding: 10px 20px 20px;
    color: #fff;
    border-top: 2px solid #f10e00;
    transition: all 300ms ease-in-out 0s;
}

.feature-item .feature-area .title h3 {
    font-size: 19px;
    color: #fff;
    margin: 0 0 15px;
}

.feature-item:hover .feature-area img {
    transform: scale3d(1.1, 1.1, 1.1);
}

.text-color {
    color: #f10e00 !important;
}

.feature-item:hover .feature-area .title {
    bottom: 0;
    opacity: 0.9;
    padding-top: 30px;
}

.feature-item:hover .feature-area .title p{
    color: #fff;
}

.feature-item .feature-area .title i {
    margin-top: 8px;
}

.feature-item span{
    color: #f10e00;
}

.mt-5 {
    margin-top: 5px !important;
}


/*=========================
    service css start
==========================*/

.service-section{
    background-color: #f5f5f5;
}

.pb-20 {
    padding-bottom: 20px;
}

.section-title .title {
    margin-top: 0;
    position: relative;
    line-height: 1;
}

.section-title p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 35px;
}

.text-color {
    color: #f10e00;
    font-size: inherit;
}

.section-sep {
    margin-bottom: 25px;
    margin-top: 25px;
    padding-bottom: 5px;
    position: relative;
}

.section-sep:after{
    border: 1px solid #f10e00;
}

.section-sep:before{
    border: 3px solid #fff;
    bottom: -5px;
    content: "";
    height: 14px;
    left: 0;
    margin: 0 auto;
    background: #f10e00;
    position: absolute;
    right: 0;
    width: 14px;
    z-index: 3;
    transform: rotate(45deg);
}

.section-sep:after {
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 100px;
}

.icon-box.left {
    text-align: left;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.font-weight-600{
    font-weight: 600;
}

.icon-box.left a {
    margin-right: 30px;
    padding: 0;
}

.icon-box i {
    display: inline-block;
    font-size: 40px;
    transition: all 0.3s ease;
}

/*--------------------------------------------------------------
    # Portfolio
--------------------------------------------------------------*/

.portfolio-sec{
    position: relative;
}

.portfolio-sec .portfolio-wrap {
  height: auto;
  transition: 0.3s;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  z-index: 1;
  margin-bottom: -6px;
}

.portfolio-sec .portfolio-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 168 255);
  opacity: 0;
  z-index: 2;
  transition: all ease-in-out 0.5s;
}

.portfolio-sec .portfolio-wrap img {
  max-width: 100%;
  height: auto;
  transition: all ease-in-out 0.5s;
}

.portfolio-sec .portfolio-wrap .portfolio-info {
  position: absolute; 
  opacity: 0;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio-sec .portfolio-wrap .portfolio-info h4{
    margin-bottom: 0;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.portfolio-sec .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio-sec .portfolio-wrap:hover::before {
  opacity: 0.8;
  background: #000;
}

.portfolio-sec .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio-sec .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-sec .mb-30{
    margin-bottom: 60px;
}

.portfolio-sec .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 25px;
    display: inline-block;
    transition: 0.3s;
    vertical-align: middle;
    height: 50px;
    margin-top: 15px;
    width: 50px;
    line-height: 50px;
    border-radius: 15px;
    background: #f10e00;
}

.card{
    padding: 0;
    margin: 0;
    border: none;
    background: #fff;
}

.card img{
    width: 100%;
    transition: 0.3s;
}

@media screen and (max-width: 991px){
    .card-columns{
        column-count: 2;
    }
}

@media screen and (max-width: 520px){
    .card-columns{
        column-count: 1;
    }
}

@media (min-width: 576px){
.card-columns {
    column-gap: 0;
   }
}

/*=========================
    call to action css
==========================*/
.cta-sec-one{
    padding: 120px 0;
    position: relative;
    background-image: url(../img/cta/cta-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.cta-sec-one:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
}

.mb-20 {
    margin-bottom: 20px !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.font-18 {
    font-size: 18px !important;
}
.text-white {
    color: #fff !important;
}

.cta-sec-one .banner-text h2{
    font-size: 42px;
    letter-spacing: 1px;
}

.cta-sec-one .banner-text h5{
    font-size: 18px;
    color: #ccc;
    margin-top: 20px;
    margin-bottom: 20px;
}

.font-weight-600{
    font-weight: 600;
}


.cta-sec-one .btn-wraper{
    margin-top: 30px;
}

.cta-sec-2{
    padding: 120px 0;
    color: #fff;
    position: relative;
    background: #f10e00;
}

.cta-sec-2 .section-title{
    color: #fff;
    font-family: "Playfair Display", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 95px;
    letter-spacing: -1px;
}
.cta-sec-2 .heading-description{    
    max-width: 800px;
    margin: 0 auto;
}

.cta-sec-2 .heading-description p{
    color: #ccc;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.btn-wraper{
    text-align: center;
}

/*--------------------------------------------------------------
          # Team
--------------------------------------------------------------*/
.team-sec{
    position: relative;
    background: #fff;
}

.team-sec .single-member .team-detail {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.team-sec .single-member .team-detail h4 {
    bottom: 0;
    padding: 15px;
    position: absolute;
    right: -99%;
    font-size: 16px;
    margin-right: 5px;
    border-left: 4px solid #f10e00;
    background-color: rgba(33, 35, 49, 0.9);
    transition: all 500ms ease-in-out 0s;
    width: 100%;
}

.m-0 {
    margin: 0px !important;
}
.ml-5 {
    margin-left: 5px !important;
}

.font-12 {
    font-size: 12px !important;
}

.text-white {
    color: #fff !important;
}

.team-sec .single-member:hover .team-detail h4 {
    right: 0;
}

.team-sec .team-detail h4 span{
    font-size: 13px;
    color: #fff;
    margin-left: 5px;
    text-transform: capitalize;
}

.team-sec .team-detail img{
    transition: all .4s ease;
    width: 100%;
}

.team-sec .single-member:hover img{
    -webkit-transform: scale(1.05) rotate(2deg);
    transform: scale(1.05) rotate(2deg);
}

@media (max-width: 991px){
 img{
    width: 100%;
  }
}

/*--------------------------------------------------------------
# News & Blog
--------------------------------------------------------------*/

.blog-sec {
  position: relative;
  background: #fff;
}

.blog-sec .blog-item {
    transition: all 0.3s linear;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all .4s ease;
    box-shadow: 9.899px 9.899px 30px 0 rgb(0 0 0 / 10%);
    overflow: hidden; 
}

.blog-sec .post-body {
    padding: 40px 10px 40px 30px;
    position: relative;
}

.blog-sec .post-body .post-meta-list {
    text-align: left;
    margin: 0px 0px 24px 0px;
    color: rgba(255,255,255,.5);
}

.blog-sec .post-body .post-meta-list > span {
    margin: 0px 20px 0px 0px;
    padding: 0px 0px 0px 0px;
    color: #f10e00;
    display: inline-block;
}

.blog-sec .post-body .post-meta-list>span i {
    padding-right: 5px;
    
    transition: all .4s ease;
    transition: all .4s ease;
}

.blog-sec .post-meta-list .admin-text,
.blog-sec .post-meta-list .meta-date-text,
.blog-sec .post-meta-list .post-cat a{
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
}

.blog-sec .post-body .entry-title {
    text-align: left;
    line-height: 22px;
}

.blog-sec .post-body .entry-title a{
    color: #222222;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.blog-sec .post-body .entry-title a:hover{
    color: #f10e00;
}

.blog-sec .blog-btn {
    position: relative;
    padding: 20px 0px 0px 0px;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 24px;
    color: #FF4636;
    background-color: rgba(2, 1, 1, 0);
}

.blog-sec .blog-btn i{
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 22px;
    border: 2px solid #FF4636;
    border-radius: 50px;
    transition: all .4s ease;
}

.blog-sec .blog-btn:hover i{
    color: #999999;
    border-color: #999;
}

.blog-sec .blog-item img {
    transition: all .4s ease;
    width: 100%;
}
.blog-sec .blog-item:hover img {
    -webkit-transform: scale(1.05) rotate(2deg);
    transform: scale(1.05) rotate(2deg);
    opacity: .8;
}

/*==============================================
              Start Testimonials
===============================================*/

.testimonial-sec{
  position: relative;
  background: #f5f5f5;
}

.testimonial-sec .testimonial{
    margin: 0 20px 0;
}
.testimonial-sec .testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
}
.testimonial-sec .testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-sec .testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background: #f10e00;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-sec .testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #f10e00;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial-sec .testimonial .description{
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 600;
    line-height: 23px;
    margin: 0;
}
.testimonial-sec .testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial-sec .testimonial .post{
    display: block;
    font-size: 14px;
    color: #f10e00;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #f10e00;
}

/*==============================================
                Start Footer
===============================================*/

.footer{
  background-image: url(../img/footer/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 0px;
}

.footer:before{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.footer .footer-about h3,
.footer .footer-links h3{
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 38px;
  text-transform: capitalize;
}

.footer .footer-about p{
  margin: 0 0 20px;
  color: #C0C1C2;
  line-height: 30px;
}

.footer .footer-about li{
  display: inline-block;
  text-align: center;
}

.footer .footer-about li i{
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    position: relative;
    display: block;
    margin-right: 5px;
    background-color: #24262F;
    border-radius: 50%;
    transition: all 0.5s;
}

.footer .footer-about li i:hover{
    background: #f10e00;
}

.footer .footer-links li a{
    color: #C0C1C2;
    padding-left: 0;
    margin-bottom: 16px;
    font-size: 16px;
    display: block;
    transition: all 0.5s;
}

.footer .footer-links li a:hover{
   color: #f10e00;
}

.footer .footer-links .link-list li a{
  padding-left: 8px;
}

.footer .contact-info{
  display: flex;
  position: relative;
  margin-bottom: 13px;
}

.footer .contact-info .icon{
  position: relative;
  margin-right: 15px;
}

.footer .contact-info .icon i{
  position: absolute;
  top: 8px;
  font-size: 28px;
  color: #f10e00;
}

.footer .contact-info .contact-detail{
  padding-left: 40px;
}

.footer .contact-info .contact-detail p{
  font-size: 16px;
  font-weight: 400;
  color: #C0C1C2;
  margin-bottom: 5px;
}

.footer .contact-info .contact-detail h4{
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
}

.footer-bottom{
  position: relative;
  width: 100%;
}

.footer-bottom .bottom-copyright{
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-bottom .bottom-copyright p{
  margin-bottom: 0;
  padding: 0 10px;
  color: #C0C1C2;
}

/* ==================
    End of footer
=================*/

@media screen and (max-width: 991px){
.navbar {
    width: 100%;
    padding: 0;
    position: absolute;
    top: 62px;
    right: 10px;
  }
}

@media screen and (max-width: 1024px){
    .hero-section .header-heading {
        transform: translate(-50%, 15%);
    }
    .feature-item .feature-area .title {
        padding: 8px 10px 10px;
    }
    .feature-item:hover .feature-area .title {
        padding-top: 10px;
    }
    .feature-item .feature-area .title h3 {
        font-size: 14px;
        margin: 0 0 10px;
    }
    .feature-item:hover .feature-area .title p {
        font-size: 13px;
        padding-bottom: 0px;
    }
    .icon-box.left a {
        margin-right: 15px;
    }
    .service-content .service-content-heading{
        font-size: 19px;
    }
}

@media screen and (max-width: 768px){
    .feature-item:hover .feature-area .title {
        padding-top: 20px;
    }
    .hero-section .header-heading {
        transform: translate(-50%, 0%);
    }
    .section-title .title{
        font-size: 28px;
    }
    .blog-sec .post-body {
        padding: 25px 0px 25px 10px;
    }
    .footer {
        padding: 60px 0 0 0;
    }
    .blog-sec .post-body .entry-title a {
        font-size: 16px;
    }
}

@media screen and (max-width: 525px){
    .cta-sec-2, .cta-sec-one {
        padding: 60px 0;
    }
    .cta-sec-2 .section-title {
        font-size: 40px;
        line-height: 60px;
    }
    .cta-sec-one .banner-text h2 {
        font-size: 35px;
    }
    
    .btn-wraper .creative_button {
        padding: 12px 30px;
    }
    .icon-box.left a {
        margin-right: 15px;
    }
    .icon-box i {
        font-size: 28px;
    }
    .hero-section {
        height: 50vh;
    }
    .hero-section .hero-title {
        margin: 0px 0px 25px 0px;
        font-size: 35px;
        line-height: 50px;
    }
    .hero-section .header-heading {
        transform: translate(-50%, 10%);
    }
}



