/*
::Table Of Content
    1.) banned css
    2.) tabbing css
    3.) responsive css


----------------------------------------------------*/

 /*
    1.) banned css
------------------------------------------*/
 
 .no_gap{
     padding: 0 0;
     margin: 0 0;
 }
 
 .banner{
     background: #313bfc;
     margin-bottom: 4rem;
 }
 
 .banner_text{
     position: relative;
     color: #fff;
 }
 
 .banner_content {
    width: 45%;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 9;
}

.banner_content h1{
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
 
 .banner_text span{
   font-size: 17.5rem;
    color: #2c36f3;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    left: -1%;
    line-height: 0.71;
    text-transform: uppercase;
}

.banner_img img{
    width: 100%;
}


.easy_contact_btn {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--grayColor);
    border: 1px solid transparent;
    background: #fff;
    color: var(--btnbgColor);
    position: static; 
     transform: translateX(0%); 
    border-radius: 30px;
    width: 185px;
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 2rem;
    display: inline-block;
}

.easy_contact_btn:hover{
    border-color: #fff;
}

/*2.) tabbing css*/
 /*------------------------------------------*/
 
 .tabbing {
    margin-bottom: 10rem;
}
 
 .tabbing h2, .tabbing h3{
     margin-bottom: 1rem;
     padding-top: 0.5rem;
 }
 
 .tabbing content{
     margin-bottom: 3rem;
 }
 
 ul.tab_list li {
    list-style: none;
}

.tab h3{
    position: relative;
}


.tab h3:after{
    content: '';
    width: 55%;
    height: 1px;
    background: #313bfc;
    position: absolute;
    right: 0;
    bottom: 0;
}

.tab_list li{
    background: #515aff;
    margin-bottom: 0.2rem;
}

.tab_list li a{
    display: inline-block;
    font-size: 1.6rem;
    width: 100%;
    height: 100%;
    color: #fff !important;
    padding: 2rem 0rem 2rem 6rem;
    border-left: 4px solid transparent;
    position: relative;
    transition: 0.5s all ease;
    cursor: pointer;
}

.tab_list li a:hover, .tab_list li a.active{
    background: #1b24cd;
    border-color:#44daf5;
}

.tab_list li a:before{
   content: '\f18e';
    font-family: 'Fontawesome';
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    font-size: 3rem;
}

.tab_list li a:hover::before, .tab_list li a.active::before{
    color:#44daf5;
}

.tabbing_detail_box{
    display: none;
}


/*3.) responsive css*/
/*----------------------------------*/

@media screen and (max-width: 900px){
    .tabbing .container .row {
        flex-direction: column-reverse;
    }
/*}*/

/*@media screen and (max-width: 767px){*/
    
    .banner {
        flex-direction: column-reverse;
    }
    .banner_content {
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0%);
        z-index: 9;
        padding: 5rem 5rem 12rem 5rem;
    }
    
    .banner_text span {
        font-size: 12rem;
    }
}