/* General CSS */
@import url(http://fonts.googleapis.com/css?family=Coda:regular,800|Lora:regular,500,600,700,italic,500italic,600italic,700italic|Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic&amp;subset=latin);

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
}

:root {

    /* Text Colors */
    --primary-color: #008AFC;
    --secondary-color: #014EBC;
    --light-pink-color: #FFFCF8;
    --light-color: #CCCCCC;
    --black-color: #000;
    --white-color: #fff;
    --nav-color:#e9490a;
    --box-shadow: 0.1rem -0.07rem 1.5rem 0.3rem rgb(0 0 0 / 26%);

    /* font-family */
    --primary-font: 'Lato', sans-serif;
    --secondary-font: 'Montserrat', sans-serif;
}

body,
html {
    font-size: 10px;
    font-weight: 400;
    font-family: var(--primary-font);
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.5;
}

h1 {
    color: var(--white-color);
    font-size: 5.5rem;
    font-weight: 800;
    font-family: var(--secondary-font);
    display: inline-block;
    /* text-transform: uppercase; */
    line-height: 1.4;
    margin-bottom: 2rem;
}

h2 {
    color: var(--white-color);
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--secondary-font);
    display: inline-block;
    /* text-transform: uppercase; */
    line-height: 1.4;
    margin-bottom: 2rem;
}

h2 span {
    color: var(--primary-color);
}

h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--secondary-font);
    color: var(--white-color);
    margin-bottom: 1rem;
}

h4 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    font-family: var(--secondary-font);
    color: var(--black-color);
    margin-bottom: 2rem;
}

h5 {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--white-color);
    font-family: var(--secondary-font);
    margin-bottom: 0.9375rem;
    font-weight: 300;
    text-transform: uppercase;
}

p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-top: 1rem;
    color: var(--black-color);
}

a,
a:active,
a:focus,
a:hover,
.btn:focus {
    text-decoration: none;
    box-shadow: none;
    outline: 0;
}

/* x */

.main-btn {
    color: var(--white-color);
    background-color: var(--nav-color);
    /* text-transform: capitalize; */
    border-radius: 5px;
    border: none;
    padding: 0.9rem 3rem;
    font-family: var(--secondary-font);
    font-weight: 300;
    font-size: 2rem;
    height: 65px;
    margin-top: 1.5rem;
    transition: all .3s linear;
}
.main-btn:hover {
    background: var(--white-color);
    color: var(--nav-color);
    border-color: var(--nav-color);
}
.main-btn span{
    font-size: 16px;
}
.view-link {
    font-size: 1.4rem;
    margin-top: 1rem;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.view-link:hover {
    color: var(--white-color);
    font-size: 1.6rem;
}


.wrapper {
    padding: 7rem 0;
}

.sec-title h1 {
    position: relative;
}

.sec-title h1::after {
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    width: 50%;
    height: 50%;
    right: -4px;
    bottom: 0%;
    opacity: 0.5;
}

/* 01 navbar css */

.header {
    background-color: var(--white-color);
    padding: 1rem 0;
}

.header .navbar-brand img {
    width: 7rem;
    height: auto;
    object-fit: cover;
}

.header .navbar-nav .nav-link {
    color: var(--black-color);
    font-family: var(--secondary-font);
    /* text-transform: uppercase; */
    font-size: 1.5625rem;
    font-weight: 400;
    padding: 0.5rem 1.5rem;
    margin: 0px 0.2rem;
    text-align: center;
}

/* Logo Text */
.moto-text_1 {
    font-weight: 800;
    font-style: normal;
    font-family: 'Coda', display;
    color: #e9490a;
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: 2px;
}
.moto-text_1 a {
    color: #e9490a;
    text-decoration: none;
    font-weight: 800;
    font-style: normal;
}

/* dropdown menu */
.header .dropdown-menu {
    min-width: 20rem;
    margin-left: 65px;
    padding: 1.5rem 0;
    background-color: var(--white-color);
    /* border: 0.2rem solid var(--primary-color); */
}
.header .dropdown-item {
    line-height: 1.3;
    padding: 1rem;
    font-size: 1.5625rem;
    color: var(--black-color);
    font-weight: 400;
    font-family: var(--secondary-font);
}

.dropdown-toggle::after {
    content: "+";
    border: none;
    vertical-align: middle;
    font-size: 1.6rem;
}

.nav-item:hover>.dropdown-toggle::after,
.nav-link.dropdown-toggle.show {
    color: var(--nav-color);
}

.dropdown-item:focus,
.dropdown-item:hover,
.header .navbar-nav .nav-link:hover {
    color: var(--nav-color);
    background-color: transparent;
}

.navbar-nav li:hover>ul.dropdown-menu {
    display: block;
}

.header .navbar-toggler {
    color: var(--black-color);
    font-size: 2rem;
    height: 2.7rem;
    padding: 0;
}

.header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/*  Banner Section */
.banner-wrapper {
    margin-top: 8rem;
    background-image: url('../images/banner/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding-bottom: 5rem;

}

/* parallax-effetct */

.parallax {
    position: relative;
    background-position: left;
    background-size: 48%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: inline-block;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.parallax-1 {
    position: relative;
    background-position: right;
    background-size: 48%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: inline-block;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.parallax-main {
    position: relative;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: inline-block;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.parallax.img1 {
    background-image: url('../images/banner/Banner-1.jpg');
    height: 100%;
}

.parallax.img2 {
    background-image: url('../images/Services/web-designing.webp');
    height: 608px;
}

.parallax.img3 {
    background-image: url('../images/Services/branding.webp');
    height: 608px;
}

.parallax.img4 {
    background-image: url('../images/Services/advertising.webp');
    height: 608px;
}

.parallax.img5 {
    background-image: url('../images/Services/seo.webp');
    height: 608px;
}

/* About CSS */
.main-wrapper {
    margin-top: 80vh;
    background-color: var(--white-color);
    width: 100%;
}

.main-wrapper .black-card {
    position: absolute;
    top: 25%;
    left: -400px;
    width: calc(100% - 20%);
    box-shadow: var(--box-shadow);
    border-radius: 2.5rem;
    background-color: var(--black-color);
    padding: 2.5rem;
    text-align: left;
    z-index: 1;
}

.main-wrapper .black-card.right {
    right: -400px;
    left: unset;
}


/* Process Css  */

.process-wrapper {
    background-color: var(--black-color);
}

.process-wrapper h1,
.work-wrapper h1 {
    color: var(--white-color);
}

.process-wrapper .process-content {
    padding: 4rem 6rem;
    position: relative;
}

.process-wrapper .process-content::after {
    position: absolute;
    content: '';
    width: 40%;
    margin: auto;
    bottom: 0;
    border-bottom: 1px solid var(--white-color);
}

.process-wrapper .process-content span {
    color: var(--primary-color);
    font-size: 7rem;
    font-weight: 800;
    margin-right: 2rem;
}

/* Work CSS */
.work-wrapper {
    background: var(--black-color);
}

/* Testimonial CSS */
.testimonial-wrapper h2 {
    color: var(--black-color);
}

.testimonial-wrapper .card {
    border: none;
    background-color: var(--light-pink-color);
    box-shadow: var(--box-shadow);
    border-radius: 1rem;
    margin: 2rem;
    padding: 4rem 2rem;
}

.testimonial-wrapper .card i {
    color: rgb(255, 191, 0);
    font-size: 1.4rem;
}

.testimonial-wrapper .card p {
    color: var(--black-color);
}

.testimonial-wrapper .card h5 {
    color: var(--black-color);
    font-weight: 700;
}

.testimonial-wrapper .carousel-indicators {
    margin-bottom: -3rem;
}

.testimonial-wrapper .carousel-indicators button {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--black-color);
}

/* Footer CSS */

.footer_wrapper {
    background-color: var(--black-color);
    padding-bottom: 0 0 30px 0;
}

.footer_wrapper .footer-logo img {
    width: 25rem;
    height: auto;
    object-fit: cover;
}

.footer_wrapper h5 {
    color: var(--white-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 2rem;
}

.footer_wrapper h5 a {
    color: var(--white-color);
}

.footer_wrapper ul {
    list-style: none;
    display: flex;
    align-items: center;
}


.footer_wrapper ul li {
    margin-right: 1.5rem;
}

.footer_wrapper .copyright-section p {
    margin: 0;
    padding: 3rem 0;
    text-align: center;
}


/* whatsapp intgration */
.whatsapp-icon {
    position: relative;
}

.whatsapp-icon .whatsapp {
    position: fixed;
    width: 6rem;
    z-index: 1;
    bottom: 1rem;
    right: 0.5rem;
}

.whatsapp-icon .whatsapp img {
    width: 5.5rem;

}

/* =====================================
About Page CSS 
=======================================*/

.about .abilities-wrapper ul {
    list-style: none;
    padding: 0;
}

.about .abilities-wrapper h3 {
    color: var(--black-color);
}

.about .abilities-wrapper ul li p {
    color: var(--black-color)
}

/* Team CSS */
.about .team-wrapper .card .team-img {
    width: 15rem;
    height: 15rem;
    margin: 0 auto;
    border-radius: 50%;
    border: 0.5rem solid var(--primary-color);
}

.about .team-wrapper .card .team-img img {
    border-radius: 50%;
}

.about .team-wrapper .card .team-detail h5 {
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 0;
    padding-top: 1.5rem;
}

.about .team-wrapper .card .team-detail p {
    color: var(--black-color);
    margin: 0;
}

/* ====================================
Portfolio Page CSS
====================================== */

.portfolio-services .card-detail {
    box-shadow: var(--box-shadow);
    background-color: var(--black-color);
    border-radius: 2rem;
    padding: 3rem;
    margin-top: -2rem;
}

.portfolio-services .card-detail h5 {
    font-weight: 800;
    font-family: var(--secondary-font);
}

/* ====================================
Contact Page CSS
====================================== */

.contact .get-in-touch .card {
    background-color: var(--white-color);
    min-height: 36rem;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.contact .card i {
    font-size: 8rem;
    margin-bottom: 3rem;
}

.contact .card h4 {
    font-weight: 800;
}

.contact .card p {
    color: var(--black-color);
}

.contact .card p:last-child {
    font-family: var(--secondary-font);
    font-weight: 700;
}

.form-section {
    padding: 10rem;
    background-color: var(--black-color);
    box-shadow: var(--box-shadow);
    border-radius: 2rem;
}

.form-section .form-control:focus {
    box-shadow: none;
    border-color: var(--light-color);

}

.form-section input.form-control {
    height: 4.5rem;
    border: 0.1rem solid var(--light-color);
    font-size: 1.5rem;
}

.form-section textarea {
    border: 0.1rem solid var(--light-color);
    font-size: 1.5rem;
}
/* Carousel Button CSS */
.carousel-btn{
    font-family: 'Coda', display;
    font-size: 2rem;
    border: 3px;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    background-color: #e9490a;
    border-color: #e9490a;
}
.carousel-text {
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: #ffffff;
    font-size: 73px;
    line-height: 1.3;
    letter-spacing: 0px;
}
.carousel-subtext {
    font-weight: 400;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.9;
    letter-spacing: 0px;
}

/* Benefits CSS Section */
.benefits_wrapper{
    color: var(--black-color);
    margin-top: 50px;
}
.benefits_wrapper h2{
    color: var(--black-color);
}
.benefit-text{
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: #1f1d1d;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0px;
}
.benefit-text .col-md-4 span{
    font-size: 16px;
    color: #1f1d1d;
    text-decoration: none;
    font-weight: 400;
    font-style: normal;
}

/* Who  we are css section */
.are_wrapper{
    color: var(--black-color);
    margin-top:53px;
}
.are_wrapper img{
    margin-left: -8px;
}
.are-text{
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: #1f1d1d;
    font-size: 40px;
    margin-left: 106px;
    line-height: 1.4;
    letter-spacing: 0px;
}
.are-text-1{
    font-weight: 400;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    color: #e9490a;
    font-size: 18px;
    margin-left: 106px;
    line-height: 1.7;
    letter-spacing: 2px;
    margin-top: -7px;
}
.are-text-2{
    font-weight: 300;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    color: #1f1d1d;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0px;
    margin-left: 106px;
}

/* Service CSS Section */
.text-service1{
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: #1f1d1d;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0px;
    margin-top: 7px;
}
.text-service2{
    font-weight: 300;
    font-style: normal;
    font-family: Roboto, sans-serif;
    color: rgb(50, 62, 72);
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0px;
}
.service-btn {
    color: var(--white-color);
    background-color: var(--nav-color);
    /* text-transform: capitalize; */
    border-radius: 5px;
    border: none;
    padding: 0.9rem 3rem;
    font-family: var(--secondary-font);
    font-weight: 300;
    font-size: 2rem;
    margin-top: 1.5rem;
    transition: all .3s linear;
}
.service-btn:hover {
    background: var(--white-color);
    color: var(--nav-color);
    border-color: var(--nav-color);
}
.service-btn span{
    font-size: 16px;
}

/* Project Need CSS Section */
.project_wrapper{
    background-image: url('../images/mt-2050-home-bg3.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 70px;
}
.project-text{
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.2;
    margin-top: 35px;
    letter-spacing: 0px;
}
.project-subtext{
    font-weight: 400;
    font-style: italic;
    font-family: 'Lora', serif;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.8;
    margin-top: -14px;
    letter-spacing: 0px;
}
.project-btn {
    color: var(--white-color);
    background-color: var(--nav-color);
    /* text-transform: capitalize; */
    border-radius: 5px;
    border: none;
    padding: 0.9rem 3rem;
    font-family: var(--secondary-font);
    font-weight: 300;
    font-size: 2rem;
    margin-top: 38px;
    margin-left: 152px;
    width: 250px;
    height: 54px;
    transition: all .3s linear;
}
.project-btn:hover {
    background: var(--white-color);
    color: var(--nav-color);
    border-color: var(--nav-color);
}
.project-btn span{
    font-size: 16px;
}

/* Work CSS Section */
.work-text{
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: #000;
    font-size: 46px;
    line-height: 1.2;
    margin-top: 42px;
    letter-spacing: 0px;
}

/* Customer CSS Section */

.customer_wrapper{
    color: var(--black-color);
}
.customer-card{
    background-image: url('../images/mt-2050-testim-bg.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 70px;
}
.customer-text{
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: #000;
    font-size: 46px;
    line-height: 1.2;
    margin-top: 70px;
    letter-spacing: 0px;
}
.customer-text-1{
    font-weight: 400;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    color: #e9490a;
    font-size: 18px;
    margin-left: 2px;
    line-height: 1.7;
    letter-spacing: 2px;
    margin-top: -7px;
}
.customer_wrapper .card{
    border-radius: 30px;
    box-shadow: 5px 3px 5px 3px #888888;
}
.customer-text2{
    font-weight: 400;
    font-style: italic;
    font-family: 'Lora', serif;
    color: #1f1d1d;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0px;
    margin-top: 95px;
    margin-left: 10px;
}
.customer-text3{
    font-weight: 400;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
    color: #e9490a;
    font-size: 18px;
    line-height: 1.6;
    margin-right: 30px;
    margin-top: -15px;
    letter-spacing: 0px;
}
.are-text-4{
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: #1f1d1d;
    font-size: 24px;
    margin-top: 27px;
    margin-right: 30px;
    line-height: 1.4;
    letter-spacing: 0px;
}

/* Insight & News CSS */
.insight-text{
    font-weight: 400;
    font-style: normal;
    font-family: 'Coda', display;
    color: var(--black-color);
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: 0px;
}
.insight-subtext{
    font-weight: 300;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    color: #323e48;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0px;
    margin-top: -10px;
}

/* Footer CSS */
 .site-footer{
    padding:5em 0;
    background: #131413;
    font-size: 14px;
    color:rgb(131, 125, 125);
  }
  .site-footer p:last-child{
    margin-bottom: 0;
  }
  .site-footer a{
    color:#f3f1eb;
    border-bottom: 1px solid transparent;
  }
  .site-footer a:hover{
    color:#fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .site-footer h2{
    font-size: 22px;
    margin-bottom: 28px;
    letter-spacing: .05em;
    color: #e94f0a;
  }
  .site-footer .footer-link li{
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .footer-social a{
    line-height: 0;
    border-radius: 50%;
    margin: 0 5px 5px 0;
    border: 1px solid rgba(255,255,255,0.1);
    width:30px;
    height: 30px;
    text-align: center;
    display: inline-block;
  }
  .footer-social a:hover{
    background:#fff;
    border-color: #fff;
    color:rgb(158, 90, 13);
  }
  .footer-social.fa{
    margin-top:7px;
  }
  
/* Scrolltotop Button CSS */
.arrow-btn{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    font-size: 20px;
  }
  .arrow-btn a{
    height: 60px;
    width: 60px;
    text-align: center;
    background: var(--nav-color);
    color: var(--white-color);
    display: block;
    border-radius: 50px;
    cursor: pointer;
  }
  .arrow-btn a i{
    color: var(--white-color);
    line-height: 39px;
    font-size: 25px;
    margin-top: 8px;
  }
  
  
  
  
  
  
  
  
  
  
  
  .fac-ma {
    box-shadow: 1px 1px 10px #cccc;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 15px;
    text-align: center;
}


.form-sec {
    width: 500px;
    margin: auto;
    background: #e9490a;
    border-radius: 5px;
        box-shadow: 1px 1px 10px #cccc;
}

.form-control-inp {
    padding: 4px 12px;
    width: 100%;
    margin-bottom: 9px;
    border-radius: 5px;
    border: none;
        font-size: 16px;
}
input.form-control-inp-sub {
    background: transparent;
    font-size: 20px;
    padding: 4px 30px;
    border: 1px solid #fff;
    color: #fff;
    box-shadow: 1px 1px 10px #fffc;
}