*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/*--------- Page Header ---------*/

.header{
    height: 90px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-color: rgb(231, 226, 226);
    color: #fff;
    position: fixed;
    top: 0;
    z-index: 1;
}
nav{
    overflow: hidden;
    display: flex;
    padding: 1% 3%;
    justify-content: space-between;
    align-items: right;  
}
nav img{
    width: 200px;
    height: 70px;
}
nav .fa{
    color: rgb(231, 226, 226);
    display: none;
}
.menu{
    flex: auto;
    text-align: left;
}
.menu ul{
    margin-top: 10px;
    margin-left: 30px;
}
.menu ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.mbut{
    height: 40px;
    width: 150px;
    margin-top: 10px;
    background: rgba(236, 185, 17, 0.904); 
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 550;  
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}
.mbut1{
    background: none; 
    color: rgba(236, 185, 17, 0.904);
    font-size: 16px; 
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}
.menu ul li a{
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
.menu .fa{
    margin-right: 8px;
}
.sub-menu-1{
    height: 200px;
    position: absolute;
    margin-top: 8px;
    margin-left: -15px;
    display: none;
}
.sub-row{
    width: 650px;
    margin-top: 30px;
    margin-bottom: 60px;
    display: inline-flex;
    background: rgb(231, 226, 226);
}
.sub-row p{
    padding: 0px 20px;
    color:rgba(0, 0, 0, 0.747);
    font-size: 13px;
    text-align: left;
}
#sr1{
    margin-left: -90px;
    display: block;
}
#sr2{
    margin-left: -190px;
}
#sr3{
    margin-left: -278px;
}
#sr4{
    margin-left: -385px;
}
#sr1 p{
    padding-top: 20px;
}
.sub-row2{
    display: inline-flex;
    width: 100%;
}
.sub-col{
    width: 50%;
    margin-top: -15px;
}
.sub-col ul li{
    float: left; 
    clear: left;
}
#mli1, #mli2{
    padding-bottom: 0px;
}
.sub-line{
    width: 80%;
    margin-top: 40px;
    margin-left: 30px;
}
.sub-line p{
    color:rgba(0, 0, 0, 0.747);
    font-size: 13px;
    text-align: left;
    padding-bottom: 20px;
}
.sub-menu-1 ul{
    width: 100%;
    display: inline-block;
    margin-left: 0px;
    margin-top: 25px;
}
.sub-menu-1 ul li{
    display: flex;
    padding: 20px 10px;
    background-color: rgb(231, 226, 226);
    border-radius: 0;
}
.sub-menu-1 ul li a{
    margin-left: 0px;
    font-weight: 510;
    color: rgba(0, 0, 0, 0.747);
    text-align: left;
}
.sub-menu-1 .fa{
    display: inline-block;
    margin-left: 10px;
    margin-right: 15px;
    color: rgba(241, 208, 99, 0.904)
}
#slia, #slia1{
    width: 230px;
}
#slia1{
    margin-top: 5px;
}
.sub-menu-2{
    position: absolute;
    width: 400px;
    margin-top: -20px;
    margin-left: 220px;
    background: rgb(231,226,226);
    display: none;
}
.sub-menu-2 ul{
    margin-top: 0px;
}
.sub-menu-2 ul li{
    width: auto;
    padding: 10px;
    display: block;
    border-bottom: 1px dotted #000;
}
.sub-menu-2 ul li a{
    margin-left: 10px;
}
.sub-menu-2 ul li:last-child{
    border-bottom: none;
}
.menu:hover{
    height: 550px;
}
#hlia0{
    background: rgb(212, 208, 208);
    border-radius: 3px;
    height: auto;
}
#hlia:hover{
    background: rgb(212, 208, 208);
    border-radius: 3px;
    height: auto;
}
#hlia:hover .sub-menu-1, #hlia0:hover .sub-menu-1{ 
    display: block;  
}
#slia:hover, #slia1:hover{
    background-color: rgb(233, 241, 210);
}
.sub-menu-1 ul li a:hover{
    color: rgb(20, 117, 173); 
}
#slia:hover .sub-menu-2, #slia1:hover .sub-menu-2{
    display: block;
}
    
@media (max-width: 1000px){
    .header{
        height: 80px;
    }
    nav img{
    width: 250px;
    height: 70px;
    }
    .mbut{
        width: 130px;
        font-size: 13px;
    }
    nav .fa{
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .menu{
        position: absolute;
        background: #f3f0f0;
        height: 1500px;
        width: 100%;
        top: 80px;
        right: -100%;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .menu ul{
        margin-top: 5px;
        margin-bottom: 20px;
        margin-left: 0px;
        padding: 10px;
    }
    .menu ul li{
        width: 120px;
        display: block;
        margin-bottom: 0px;
        padding: 10px 5px;
    }
    .menu ul li a{
        color: #000;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
    }
    #fshow{
        display: block;
    }
    #fhide{
        display: none;
    }
    .sub-menu-1{
        height: 1000px;
        width: 1000px;
        position: absolute;
        margin-top: -48px;
        margin-left: 100px;
        background-color: rgb(231, 226, 226);
    }
    .sub-menu-1 ul{
        margin: 0px;
    }
    #sm1-1 ul li{
        width: 280px;
        margin-left: 5px;
        padding: 0px 0px;
    }
    #sm1-1 ul li a{
        font-size: 13px;
        font-weight: 550;
    }
    #slia1, #slia{
        width: 70%;
    }
    #sm1-2{
        top: -10px;
    }
    #sm1-3{
        top: -55px;
    }
    #sm1-4{
        top: -100px;
    }
    #sm1-5{
        top: -145px;
    }
    .sub-row{
        width: 550px;
        margin-top: 10px;
        margin-bottom: 60px;
    }
    #sr1, #sr2, #sr3, #sr4{
        margin-left: 0px;
    }
    #sr1 p{
        padding-top: 0px;
    }
    .sub-row, .sub-row2{
        margin-top: 10px;
    }
    .sub-col{
        width: 50%;
        margin-top: -15px;
    }
    .sub-col ul li{
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    .sub-col ul li a{
        font-size: 13px;
        font-weight: 550;
    }
    .sub-line{
        width: 100%;
        margin-left: 0px;
    }
    .sub-line p{
        padding-bottom: 0px;
    }
    .sub-menu-2{
        position: absolute;
        height: 1000px;
        width: 1000px;
        margin-left: 180px;
        background: rgb(236, 229, 229);
        z-index: 1;
    }
    #sm2-1{
        margin-top: -55px;
    }
    #sm2-2{
        margin-top: -97px;
    }
    #sm2-3{
        margin-top: -139px;
    }
    .sub-menu-2 ul li{
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 5px;
        background: rgb(236, 229, 229);
    }
    .sub-menu-2 ul li a{
        margin-left: 0px;
    }
    #sm2-1 ul li a, #sm2-2 ul li a, #sm2-3 ul li a{
        font-size: 12px;
    }  
}  

@media (max-width: 500px){
    .header{
        height: 70px;
    }
    nav img{
    width: 180px;
    height: 50px;
    }
    .mbut{
        width: 100px;
        font-size: 11px;
    }
    .menu{
        top: 70px;
    }
    .menu ul li{
        width: 110px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #sm1-1 ul li{
        width: 400px;
        margin-left: 30px;
        padding-bottom: 10px;
    }
    #sm1-1 ul li a{
        font-size: 15px;
    }
    #slia1, #slia{
        width: 70%;
    }
    #sm1-1{
        top: 35px;
    }
    #sm1-2{
        top: -30px;
    }
    #sm1-3{
        top: -95px;
    }
    #sm1-4{
        top: -160px;
    }
    #sm1-5{
        top: -225px;
    }
    .sub-col{
        width: 100%;
        margin-top: -15px;
    }
    .sub-col ul li{
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    .sub-row{
        width: 280px;
    }
    .sub-row, .sub-row2{
        flex-direction: column;
        margin-top: 10px;
    }
    #sr1 p{
        padding-left: 10px;
        font-size: 15px;
    }
    .sub-col ul{
        margin-bottom: 0px;
    }
    .sub-col ul li{
        margin-left: -5px;
    }
    .sub-col ul li a{
        font-size: 15px;
        font-weight: 550;
    }
    .sub-menu-2{
        width: 500px;
        margin-left: -140px;
        background: rgb(231,226,226);
    }
    #sm2-1{
        top: 105px;
    }
    #sm2-2{
        top: 148px;
    }
    #sm2-3{
        top: 190px;
    }
    .sub-menu-2 ul li{
        width: 75%;
        margin-left: 0px;
        margin-bottom: 5px;
        padding-bottom: 0px;
        background: rgb(231,226,226);
    }
    .sub-menu-2 ul li a{
        font-size: 15px;
    }
    #sc2{
        margin-top: -28px;
    }
    .menu:hover{
        height: 700px;
    }
}  

/* -------- Page Main --------- */

.main{
    height: auto;
    margin-top: 0px;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bg0.jpg);
    background-position: center;
    background-size: cover;
}
.container{
    margin-top: 5%;
    display: block;
    width: 100%;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}   
.text-box-vis, .text-box-mis{
    width: 90%;
    height: auto;
    color: #fff;
    position: relative;
    margin-top: 50px;
    margin-left: 5%;
    text-align: center;
}
.text-box-vis1{
    width: 90%;
    height: auto;
    color: #fff;
    position: relative;
    margin-top: 20px;
    margin-left: 5%;
    text-align: center;
}
.text-box-vis2{
    width: 90%;
    height: auto;
    color: #fff;
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 5%;
    text-align: center;
}

.text-box-mis1{
    width: 90%;
    height: auto;
    color: #fff;
    position: relative;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 5%;
    text-align: center;
}
.text-box-vis h1, .text-box-vis1 h1, .text-box-vis2 h1{
    padding-top: 65px;
    font-size: 40px;
}
#mtbp1{
    display: contents;
}
#mtbp2{
    display: none;
}
.text-box-mis p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    padding-top: 30px;
}
.pslid-col{
    margin-top: 0%;
    padding: 20px 20px;
    position: relative;
}
.slider-container{
    width: 1200px;
    height: auto; 
    margin-left: 50px; 
    Overflow: hidden;
    text-align: center;
    position: relative;
}
.image-container{
    width: 5000px;
    height: auto;
    position: relative;
    overflow: auto;
}
.slider-image{
    float: left;
    margin-left: 0px;
    padding: 0px 5px;
}
.pslid-col img{
    width: 100px;
    height: 100px; 
    animation: simage 20s linear infinite;
}

@keyframes simage{
    0%{
        transform: translateX(50vh);
        opacity: 0;
    }
    50%{   
        opacity: 1;
    }
    70%{   
        opacity: 1;
    }
    100%{
        transform: translateX(-200vh);
        opacity: 0;
    }
}

@media (max-width: 600px){
    .container{
        margin-top: 5%;
    }
    .text-box-vis h1{
    font-size: 30px;
    }
    .text-box-mis p{
    font-size: 16px;
    }
    #mtbp1{
        display: none;
    }
    #mtbp2{
        display: contents;
    }
    .slider-container{ 
        width: 1000px;
        margin-left: 10px; 
    }
    .pslid-col img{
        width: 200px;
        height: 200px; 
        animation: simage 40s linear infinite;
    }
    @keyframes simage{
        0%{
            transform: translateX(50vh);
            opacity: 0;
        }
        50%{   
            opacity: 1;
        }
        70%{   
            opacity: 1;
        }
        100%{
            transform: translateX(-650vh);
            opacity: 0;
        }
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
}

/* -------- Other Sections -------- */

.sh-text-box h1{
    font-size: 30px;
    font-weight: 600;
    text-align: left;
}
.sh-text-box h3{
    width: 5%;
    border-top: 2px solid #f44336;
    }

/*------ Service Lines -------*/

.slines{
    width: 97%;
    height: auto;
    margin: auto;
    text-align: left;
    padding-top: 100px;
}
.sl-container{
    left: 0px;
    width: 100%;
    height: 100%; 
    background: rgb(243, 239, 239);
    margin-left: 5px;
    padding: 10px 10px;
    Overflow: auto;
}
.sl-row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.slines-col{
    float: left;
    width: 35%;
    height: auto;
    text-align: left;
    background: #4d3302;
    margin-top: 0px;
}
.sl-tab{
    float: left;
    left: 5%;
    top: 5%;
    width: 100%;
    height: 300px;
    position: relative;
}
.sl-tab button{
    display: block;
    background-color: inherit;
    color: #fff;
    padding: 22px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}
.sl-tab button:hover{
    background-color: #daa520;
}
.sl-tab button.active{
    background-color: #c2931d
}
.pg-row{
    width: 65%;
    height: auto;
    margin-top: 60px;
    margin-left: 70px;
    margin-bottom: 15px;
    display: block;
    justify-content: space-between;
    background: #f1f0ee;
    border-radius: 10px;
    position: relative;
}
.pg-col{
    width: 100%;
    height: 100%;
    display: inline-flex;
    text-align: left;
    margin-top: 2px;
    margin-bottom: 15px;
}
.pg-row img{
    width: 50px;
    height: 30px;
    margin-top: 10px;
    margin-left: 25px;
}

/* what is wrong with this picture */




.pg-row p{
    font-size: 16px;
    margin-top: 15px;
    margin-left: 10px;
}
.plines-col{
    float: right;
    overflow: hidden;
    width: 63%;
    height: 580px auto;
    text-align: left;
    background: #fff;
    margin-top: 20px;
    position: relative;
} 
.sl-tabcontent{
    display: none;
    float: left;
    padding: 0px 12px;
    width: 100%;
    height: 100%;
    position: relative;   
}
.pl-text-box{
    width: 95%;
    color: #000;
    position: relative;
    top: 5%;
    left: 5%;
    text-align: left;
}
.pl-text-box h1{
    font-size: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.pl-text-box h3{
    width: 5%;
    border-top: 2px solid #f44336;
    }
.pl-text-box p{
    margin: 5px 0 10px;
    font-size: 20px;
    color: #000;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.pl-container{
    width: 80%;
    height: auto; 
    margin-top: 30px;
    margin-left: 10%;
    padding: 15px;
    background: #fff;
    Overflow: none;
}
#pg{
    margin-top: 0px;
}
.plines-col ul li{
    top: 0px;
    list-style-type: square;
    padding: 8px 5px;
    position: relative;
}
.plines-col ul li a{
    color: #000;
    font-size: 17px;
}
.plines-col a:hover{
    color: #daa520;
}
.sp-bottom{
    width: 85%;
    height: 20px;
    position: relative;
    background: #fff;
    margin-left: 15%;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

@media (max-width: 600px){
    .slines-col{
        width: 30%;
    }
    .plines-col{
        width: 69%;
    }
    .sl-tab button{
        font-size: 15px;
    }
    .pl-container{
        width: 90%;
        margin-top: 40px;
    }
    /* .pl-text-box h1{
        font-size: 22px;
    } */

    
    .pl-text-box p{
        font-size: 20px;
    }
    .plines-col ul li a{
        font-size: 17px;
    }
    .pg-row{
        width: 90%; 
        margin-top: 90px;
        margin-bottom: 5px;
        margin-left: 15px;
    }
    .pg-row img{
        margin-left: 15px;
    }
    .pg-row p{
        font-size: 15px;
    }   
}

/*------------ Industry ---------*/

.industry{
    width: 97%;
    margin: auto;
    height: auto;
    text-align: left;
    padding-top: 100px;
}
.ind-container{
    left: 0px;
    width: 100%;
    height: 100%; 
    background: rgb(243, 239, 239);
    margin-left: 5px;
    padding: 10px 10px;
    Overflow: hidden;
}
.ind-tab{
    left: 0px;
    top: 5%;
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
} 
.indlinks{
    display: inline-flex;
    background-color: #daa520;
    color: #fff;
    padding: 5px 5px;
    margin-top: 20px;
    height: 50px;
    width: 13%;
    border: none;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    outline: none;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}
.indlinks:hover{
    background-color: #b98a13;
    padding: 10px 5px;
}
.indlinks.active{
    background-color: #b98a13;
    margin-top: 5px;
    height: 65px;
} 
.ind-row{
    margin-top: 2.5%;
    display: flex;
    justify-content: space-between;
}
.ind-tabcontent{
    display: none;
    float: left;
    padding: 0px 0px;
    width: 100%;
    height: auto;
    position: relative; 
    overflow: hidden;  
}
.ind-col{
    float: left;
    width: 55%;
    height: auto;
    text-align: left;
    background: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
}

#inda1, #indb1, #indc1{
    width: 30%;
    background: inherit;
}
#inda2{
    width: 33%;
    background: inherit;
}

#inda1 a, #indb1 a, #indc1 a, #inda2 a{
    margin-left: 0px;
    font-weight: 510;
    font-size: 30px;
    color: rgba(0, 0, 0, 0.747);
    text-align: left;
}
#inda1 .fa, #indb1 .fa, #indc1 .fa{
    display: inline-block;
    margin-left: 10px;
    margin-right: 15px;
    color: rgba(241, 208, 99, 0.904)
}
#inda1 .icons .fa{
    height: 100px;
    width: 100px;
}





#inda{
    width: 35%;
    background: inherit;
}
#indb{
    background: inherit;
}

#inda img{
    height: 400px;
    width: 100%;
}

#inda1 img, #indb1 img, #indc1 img{
    height: 200px;
    width: 90%;
}
#inda2 img{
    height: 450px;
    width: 90%;
}


.ind-text-box{
    margin-top: 5%;
    margin-left: 5%;
    margin-right: 5%;
}
.ind-text-box h2{
    font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.ind-col ul{
    margin-top: 5%;
    margin-left: 10%;
    margin-right: 5%;
    font-size: 18px;
}
.ind-col ul li{
    padding: 5px 0px;
}
.indbut, .rdbut{
    background-color: #daa520;
    color: #fff;
    padding: 5px 5px;
    margin-top: 20px;
    margin-left: 60px;
    margin-bottom: 20px;
    height: 45px;
    width: 180px;
    border: none;
    border-radius: 20px;
    outline: none;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;  
}

@media (max-width: 600px){
    .industry{
        width: 100%;
    }
    .ind-m-row{
        margin-top: 5%;
        display: flex;
        justify-content: space-between;
    }
    #col1{
        width: 30%;
    }
    #col2{
        width: 73%;
    }
    .ind-tab{
        flex-direction: column;
        width: 100%;
        height: 500px;
    }
    .ind-row{
        float: right;
        width: 100%;
        margin-top: 0%;
        margin-left: 0%;
    }
    .ind-tabcontent{
        width: 95%; 
        padding: 0px 0px;  
    }
    .indlinks{
        width: 95%;
        height: auto;
        padding: 10px 5px;
        margin-top: 0px;
        border: none;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
        outline: none;
        font-size: 12px; 
    }
    .indlinks.active{
        background-color: #b98a13;
        margin-top: 0px;
        width: 100%;
        height: auto;
    } 
    .ind-col{
        width: 100%;
        float: right;
    }
    #inda{
        width: 95%;
        margin-right: 15px;
    }
    .ind-col img, .ind-col video{
        height: 300px;
        width: 100%;
    }
    .ind-text-box h2{
        font-size: 19px;
    }
    .ind-col ul{
    font-size: 15px;
    }
    .indbut{
        margin-left: 30px;
    }
} 

/*--------- Request Demo ----------*/

.requestdemo{
    width: 97%;
    height: auto;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(wp1.png);
    border-radius: 10px;
    margin-left: 10px; 
}
.rd-row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.rd-col{
    float: left;
    width: 50%;
    height: 400px;
    text-align: left;
    margin-top: 50px;
}
.rd-col h1{
    font-size: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    margin-left: 20px;
    margin-bottom: 40px;
    padding: 0;
}
.rd-col img{
    width: 80%;
    height: 80%;
    margin-bottom: 10px;   
}

@media (max-width: 600px){
    .rd-col h1{
        font-size: 20px;
        margin-top: 40px;
        margin-right: 5px;
    }
    .rdbut{
        margin-left: 25px;
        margin-top: -5px;
    }
} 

/*--------- Service Page ----------*/


.ind-text-box1{
    margin-top: 2%;
    margin-left: 5%;
    margin-right: 5%;
}
.ind-text-box1 h2{
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.ind-text-box1 ul1 ul{
    margin-top: 0px;
}
.ind-text-box1 ul2 ul{
    margin-top: 0px;
}
.ind-text-box1 ul3 ul{
    margin-top: 0px;
}
.ind-text-box1 ul1 ul li{
    top: 0px;
    list-style-type: circle;
    color: #e85555;
    padding: 2px 15px;
    position: relative;
}
.ind-text-box1 ul2 ul li{
    top: 0px;
    list-style-type: "\2713\0020";
    color: #e85555;
    padding: 2px 15px;
    position: relative;
}

.ind-text-box1 ul3 ul li{
    top: 0px;
    padding: 2px 15px;
}
.ind-text-box1 ul1 ul li a, ul2 ul li a{
    color: #000;
    text-decoration: none;
    font-size: 17px;
}
.ind-text-box1 ul3 ul li a, a1{
    color: #000;
    text-decoration: none;
    font-size: 17px;
}
.ind-text-box1 ul3 ul li a1{
    font-style: italic;
    font-weight: bold;
}
.ind-text-box1 ul3 ul li a2{
    font-style: italic;
    font-weight: bolder;
}

/*--------- About Page ----------*/

#indb1 .img1{
    display: none;
}

@media (max-width: 900px){  

    #inda1, #indb1, #indc1{
        width: 95%;
        margin-top: 0px;
        height: auto;
    } 
    #indb1 .img2{
    display: none;
    }
    #indb1 .img1{
    display: flex;
    }
    #inda2{
        width: 95%;
        margin-top: 0px;
        height: auto;
    } 

}



/*--------- Footer ----------*/

.footer{
    width: 100%;
    height: auto;
    text-align: center;
    padding: 15px 0;
    background-color: rgb(248, 237, 237);
    box-sizing: 0 3px rgba(0, 0, 0, 0.2);
}
.ft-row{
    margin-top: 5%;
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
}
.ft-col1{
    float: left;
    width: 20%;
    height: auto;
    padding: 0px 5px;
    text-align: left;
    margin-top: 50px;
}
.ftc-row{
    width: 80%;
    display: flex;
    justify-content: space-between;
}
.fta-row, .ftb-row{
    width: 100%;
    margin-top: 0%;
    margin-left: 18px;
    display: flex;
    justify-content: space-between;
}
.ft-col2{
    float: left;
    width: 50%;
    height: auto;
    padding: 0px 5px;
    text-align: left;
    margin-top: 50px;
}
.m-icons{
    padding: 20px 0px;
}
#fnum{
    padding-top: 5px;
}
.ft-col1 img{
    width: 200px;
    height: 70px;
}
.ftl{
    margin-top: 30px;
}
.fts{
    margin-top: 50px;
}
.ft-col2 ul li{
    list-style: none;
    display: block;
    padding: 5px 12px;
    position: relative;  
}
.ft-col2 ul li a{
    text-decoration: none;
    font-size: 14px;
    color: #000;
}
.ft-col2 ul li:hover{
    text-decoration-line: underline;
}
#dtel{
    display: block;
}#mtel{
    display: none;
}

.m-icons img{
    width: 20px;
    height: 20px;  
}
.m-icons a{
    color: #83251e;
    text-decoration: none;
    font-size: 15.5px;
    font-weight: bold;
    font-family:Arial, Helvetica, sans-serif;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #f44336;
    cursor: pointer;
    padding: 0px 5px;
}
.fa-heart-o{
    color: #f44336;
}
.fa.fa-twitter{
    font-family: sans-serif;
}
.fa.fa-twitter::before{
    content:"X";
    font-size:1.2em;
}
@media (max-width: 900px){  
    .ft-col1{
        width: 40%;
        margin-top: 0px;
        height: auto;
    } 
    .m-icons a{
        font-size: 18px;
    }
     .ftc-row{
         width: 60%;
         flex-direction: column;
     }
    .fta-row{
        flex-direction: column;
        margin-top: 0%;
    }
    .ftb-row{
        flex-direction: column;
        margin-top: 0%;
    }
    .ft-col2{
        width: 100%;
        margin-top: 0px;
        height: auto;
    }  
    .ftl, .fts{
        margin-top: 20px;
    }
    .footer h4{
        font-size: 25px;
    }
    .ft-col2 ul li a{
        font-size: 18px;
    }
}
@media (max-width: 600px){ 
    .ft-row{
        flex-direction: column;  
    }  
    .ft-col1{
        width: 100%;
    } 
    .m-icons a{
        font-size: 20px;
    }
    #icfa{
        margin-bottom: 25px;
    }
    .icons .fa{
        width: 60px;
        height: 30px;
        padding: 0px 10px;
    }
     .ftc-row{
         width: 100%;
     }  
    #dtel{
        display: none;
    }
    #mtel{
        display: block;
    }
    .footer h4{
        font-size: 23px;
    }
    .ft-col2 ul li a{
        font-size: 18px;
    } 
}