/* ==================================================================================
                    common css start
===================================================================================== */

*{
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}

ul,ol{
    list-style: none;
}

a,
a:hover,
a:focus{
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p{
    margin: 0;
    padding: 0;
}

.main{
    display: flex;
}

.title{
    margin-top: 70px;
    text-align: center;
}

.title h1{
    font-family: 'Raleway', sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: #111111;
}

.title p{
    width: 567px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 60px;
}

/* ==================================================================================
                    common css end
===================================================================================== */

/* ==================================================================================
                    nav-part css start
===================================================================================== */

nav{
    margin-top: 20px;
    border-bottom: 1px solid #4a350c;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}

nav ul{
    position: relative;
}

nav ul li{
    margin-right: 32px;
    transition: .4s;
    margin-top: 20px;
    margin-bottom: 20px;
}

nav ul li a{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    transition: .4s;
    position: relative;
    padding: 0 !important;
}

nav ul li a::after{
    content: "";
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 0;
    height: 3px;
    background: #fec600;
    transition: .4s;
}

nav ul li i{
    font-size: 20px;
    color: #ffffff;
    margin-left: 7px;
    transition: .4s;
}

nav ul li .droparea{
    width: 100%;
    top: 100px;
    position: absolute;
    bottom: -220px;
    left: 0;
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding: 20px;
    padding-right: 0;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

nav ul li .droparea ol{
    border-right: 1px solid #353535;
    width: 25%;
}

nav ul li .droparea ol li {
    margin-right: -1px;
    padding: 20px;
    transition: .4s;
}

nav ul li .droparea ol li a{
    color: #353535;
    transition: .4s;
}

nav ul li:hover .droparea{
    visibility: visible;
    opacity: 1;
    top: 50px;
}

nav ul li .droparea ol li:hover{
    background: #2d3e50;
}

nav ul li .droparea ol li:hover a{
    color: #fec600;
}


nav ul li:hover .droparea ol li .mega-item::after{
    width: 0;
}

nav ul li a:hover{
    color: #fec600;
}

nav ul li a:hover i{
    transform: rotate(180deg);
    color: #fec600;
}

nav ul li a:hover::after{
    width: 100%;
} 

/* ==================================================================================
                    nav-part css end
===================================================================================== */

/* ==================================================================================
                    banner-part css start
===================================================================================== */

#banner-part .banner-slider{
    position: relative;
}

#banner-part .banner-slider .banner{
   background: url(../images/banner.png) no-repeat center;
   background-size: cover;
}

#banner-part .banner-slider .banner1{
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
}

#banner-part .banner-slider .banner2{
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
}

#banner-part .banner-slider .banner .overlay{
     width: 100%;
     height: 100%;
     background: rgb(0, 0, 0,.8);
     padding-top: 245px;
     padding-bottom: 187px;
}

#banner-part .banner-slider .banner .overlay .text{
     text-align: center;
}

#banner-part .banner-slider .banner .overlay .text h2{
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
}

#banner-part .banner-slider .banner .overlay .text h1{
    font-family: 'Raleway', sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: #fec600;
}

#banner-part .banner-slider .banner .overlay .text p{
    width: 538px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f1f1f1;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 60px;
}

#banner-part .banner-slider .banner .overlay .text a{
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: #fec600;
    color: #111111;
    border: 1px solid #fec600;
    padding: 10px 20px;
    margin-right: 20px;
    transition: .4s;
}

#banner-part .banner-slider .banner .overlay .text .banner-button{
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

#banner-part .banner-slider .prev{
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #ffffff;
    color: #0c0c0d;
    border: 1px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    transition: .4s;
}

#banner-part .banner-slider .next{
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #ffffff;
    color: #0c0c0d;
    border: 1px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    transition: .4s;
}

#banner-part .banner-slider .banner .overlay .text a:hover{
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

#banner-part .banner-slider .banner .overlay .text .banner-button:hover{
    background: #fec600;
    border-color: #fec600;
    color: #111111;
}

#banner-part .banner-slider .prev:hover{
    background: #fec600;
    border-color: #fec600;
}

#banner-part .banner-slider .next:hover{
    background: #fec600;
    border-color: #fec600;
}

/* ==================================================================================
                    banner-part css end
===================================================================================== */

/* ==================================================================================
                    banner shape-part css start
===================================================================================== */

#shape-part{
    position: relative;
}

#shape-part .banner-shape{
    height: 210px;
    width: 100%;
    background: #ffffff;
    transform: skewX(-86deg);
    transform-origin: left bottom;
    position: absolute;
    top: -210px;
    left: 0;
}

/* ==================================================================================
                    banner shape-part css end
===================================================================================== */

/* ==================================================================================
                    about-part css start
===================================================================================== */

#about-part .item{
    background: #eeeeee;
    padding: 35px 35px;
    text-align: center;
    position: relative;
    transition: .4s;
}

#about-part .item h3{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
}

#about-part .item p{
    width: 304px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    line-height: 24px;
    padding-top: 25px;
}

#about-part .item .shape{
    width: 80px;
    height: 25px;
    background: #eeeeee;
    position: absolute;
    top: 104%;
    left: 50%;
    transform: translate(-50%,-50%);
    clip-path: polygon(53% 100%, 0 0, 100% 0);
}

#about-part .item1{
    background: #eeeeee;
    padding: 35px 35px;
    margin-top: 95px;
    text-align: right;
    position: relative;
    transition: .4s;
}

#about-part .item1 h3{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
}

#about-part .item1 p{
    width: 310px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    line-height: 24px;
    padding-top: 25px;
}

#about-part .item1 .shape{
    width: 25px;
    height: 50px;
    background: #eeeeee;
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translate(-5%,-50%);
    clip-path: polygon(0 0, 0 100%, 100% 55%);
}

#about-part .item2{
    background: #eeeeee;
    padding: 35px 35px;
    margin-top: 95px;
    text-align: left;
    position: relative;
    transition: .4s;
}

#about-part .item2 h3{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111111;
}

#about-part .item2 p{
    width: 306px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    line-height: 24px;
    padding-top: 25px;
}

#about-part .item2 .shape{
    width: 25px;
    height: 50px;
    background: #eeeeee;
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translate(-5%,-50%);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

#about-part .item3{
    background: #eeeeee;
    padding: 35px 35px;
    text-align: center;
    position: relative;
    transition: .4s;
}

#about-part .item3 h3{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
}

#about-part .item3 p{
    width: 304px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    line-height: 24px;
    padding-top: 25px;
}

#about-part .item3 .shape{
    width: 80px;
    height: 25px;
    background: #eeeeee;
    position: absolute;
    bottom: 93%;
    left: 50%;
    transform: translate(-50%,-50%);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

#about-part .item-img{
    width: 315px;
    height: 315px;
    border: 1px solid #535353;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 31px;
    position: relative;
    z-index: -1;
}

#about-part .item .dot1{
    width: 20px;
    height: 20px;
    background: #444444;
    border: 1px solid #444444;
    border-radius: 50%;
    position: absolute;
    bottom: -25%;
    left: 51%;
    transform: translate(-51%,-25%);
    transition: .4s;
}

#about-part .item1 .dot2{
    width: 20px;
    height: 20px;
    background: #444444;
    border: 1px solid #444444;
    border-radius: 50%;
    position: absolute;
    top: 42%;
    right: -12%;
    transform: translate(-12%,42%);
    transition: .4s;
}

#about-part .item2 .dot3{
    width: 20px;
    height: 20px;
    background: #444444;
    border: 1px solid #444444;
    border-radius: 50%;
    position: absolute;
    top: 42%;
    left: -11%;
    transform: translate(-11%,42%);
    transition: .4s;
}

#about-part .item3 .dot4{
    width: 20px;
    height: 20px;
    background: #444444;
    border: 1px solid #444444;
    border-radius: 50%;
    position: absolute;
    top: -22%;
    left: 50%;
    transform: translate(-50%,-25%);
    transition: .4s;
}

#about-part .item-img img{
    width: 275px;
    height: 275px;
    border-radius: 50%;
}

#about-part .item:hover{
    filter: drop-shadow(0px 2px 3px #bdb3b3);
}

#about-part .item:hover .dot1{
    background: #fec600;
    border-color: #fec600;
    filter: drop-shadow(0px 2px 3px #bdb3b3);
}

#about-part .item1:hover{
    filter: drop-shadow(0px 2px 3px #bdb3b3);
}

#about-part .item1:hover .dot2{
    background: #fec600;
    border-color: #fec600;
    filter: drop-shadow(0px 2px 3px #bdb3b3);
}

#about-part .item2:hover{
    filter: drop-shadow(0px 2px 3px #bdb3b3);
}

#about-part .item2:hover .dot3{
    background: #fec600;
    border-color: #fec600;
    filter: drop-shadow(0px 2px 3px #bdb3b3);
}

#about-part .item3:hover{
    filter: drop-shadow(0px 2px 3px #bdb3b3);
}

#about-part .item3:hover .dot4{
    background: #fec600;
    border-color: #fec600;
    filter: drop-shadow(0px 2px 3px #bdb3b3);
}

/* ==================================================================================
                    about-part css end
===================================================================================== */

/* ==================================================================================
                    portshape up css start
===================================================================================== */

#portshape-up{
    position: relative;
}

#portshape-up .port-up{
    width: 100%;
    height: 210px;
    background: #ffffff;
    transform: skewX(-86deg);
    transform-origin: left top;
    position: absolute;
    top: 66px;
    left: 58px;
} 

/* ==================================================================================
                    portshape up css end
===================================================================================== */

/* ==================================================================================
                    portshape down css start
===================================================================================== */

#portshape-down{
    position: relative;
}

#portshape-down .port-down{
    height: 210px;
    width: 100%;
    background: #ffffff;
    transform: skewX(-86deg);
    transform-origin: left bottom;
    position: absolute;
    top: -210px;
    left: 0;
}

/* ==================================================================================
                    portshape down css end
===================================================================================== */


/* ==================================================================================
                    portfolio-part css start
===================================================================================== */

#portfolio-part .title{
    padding-top: 165px;
}

#portfolio-part .title h1{
    font-family: 'Raleway', sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: #ffffff;
}

#portfolio-part .title p{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f1f1f1;
}

#portfolio-part .port-banner{
    background: url(../images/portfoliobanner.png) no-repeat center;
    background-size: cover;
}

#portfolio-part .port-banner .overlay{
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0,.8);
}

#portfolio-part .port-banner .overlay .port-item{
    display: flex;
    flex-direction: column;
    margin-bottom: 170px;
}

#portfolio-part .port-banner .overlay .port-item:nth-child(even){
    flex-direction: column-reverse;
}

#portfolio-part .port-banner .overlay .port-item .port-img{
    margin: 15px 0;
    position: relative;
}

#portfolio-part .port-banner .overlay .port-item .port-img img{
    width: 100%;
}

#portfolio-part .port-banner .overlay .port-item .port-img .overlay{
    width: 100%;
    height: 0;
    background: rgb(0, 0, 0,.6);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
    opacity: 0;
}

#portfolio-part .port-banner .overlay .port-item .port-img .overlay a{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    color: #444444;
    text-align: center;
}

#portfolio-part .port-banner .overlay .port-item .port-img:hover .overlay{
    height: 100%;
    opacity: 1;
}


/* ==================================================================================
                    portfolio-part css end
===================================================================================== */

/* ==================================================================================
                    service-part css start
===================================================================================== */

#service-part{
    position: relative;
}

#service-part .service-item{
    padding-top: 30px;
}

#service-part .service-line{
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-35%);
    height: 79%;
}

#service-part .service-line img{
    height: 100%;
}

#service-part .service-slider{
    position: relative;
}

#service-part .service-slider .prev{
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #111111;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -2%;
    left: 50%;
    transform: translate(-50%,2%);
    z-index: 1;
    cursor: pointer;
    transition: .4s;
}

#service-part .service-slider .next{
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #111111;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    bottom: -4%;
    left: 50%;
    transform: translate(-50%,4%);
    cursor: pointer;
    transition: .4s;
}

#service-part .service-slider .item{
    width: 100%;
    height: 300px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    outline: 0;
    position: relative;
}

#service-part .service-slider .item:nth-child(even){
    flex-direction: row-reverse;
}

#service-part .service-slider .item:nth-child(even) .left{
    justify-content: flex-start;
}

#service-part .service-slider .item .left{
    width: 39%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#service-part .service-slider .item .left h2{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
}

#service-part .service-slider .item .middle{
    width: 10%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#service-part .service-slider .item .middle .round{
    width: 70px;
    height: 70px;
    line-height: 70px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    background: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    overflow: hidden;
}

#service-part .service-slider .item .web-part{
    margin-left: 22px;
}

#service-part .service-slider .item .photo-grapics{
    margin-right: 22px;
}

#service-part .service-slider .item .right{
    width: 41%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

#service-part .service-slider .item .right .box{
    padding: 55px 30px;
    background: #f1f1f1;
    position: relative;
}

#service-part .service-slider .item .right .box .web-shape{
    width: 25px;
    height: 65px;
    background: #f1f1f1;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    position: absolute;
    top: 50%;
    left: -4%;
    transform: translate(-4%,-50%);
}

#service-part .service-slider .item .right .box p{
    width: 409px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
}

#service-part .service-slider .item .right .box .graphic{
    width: 414px;
    text-align: right;
}

#service-part .service-slider .item .box .grapic-shape{
    width: 25px;
    height: 65px;
    background: #f1f1f1;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translate(-5%,-50%);
}

#service-part .service-slider .slick-center .box{
    filter: drop-shadow(3px 3px 2px #bdb3b3);
}

#service-part .service-slider .slick-center .graphic-arrow{
    filter: drop-shadow(-3px 3px 2px #bdb3b3);
}

#service-part .service-slider .slick-center .middle .round{
    background: #fec600;
    border-color: #fec600;
    transform: scale(1.3);
    overflow: hidden;
}

#service-part .service-slider .prev:hover{
    background: #fec600;
    border-color: #fec600;
}

#service-part .service-slider .next:hover{
    background: #fec600;
    border-color: #fec600;
}


/* ==================================================================================
                    service-part css end
===================================================================================== */

/* ==================================================================================
                    testishape up css start
===================================================================================== */

#testishape-up{
    position: relative;
}

#testishape-up .testi-up{
    width: 100%;
    height: 210px;
    background: #ffffff;
    transform: skewX(-86deg);
    transform-origin: left top;
    position: absolute;
    top: 96px;
    left: 58px;
} 

/* ==================================================================================
                    testishape up css end
===================================================================================== */

/* ==================================================================================
                    testimonial-part css start
===================================================================================== */

#testimonial-part{
    margin-top: 100px;
}

#testimonial-part .testi-banner{
    background: url(../images/testi-banner.png) no-repeat center;
    background-size: cover;
}

#testimonial-part .testi-banner .overlay{
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0,.8);
    padding: 200px 0;
}

#testimonial-part .testi-banner .overlay .main .left{
    width: 200px;
    position: relative;
    padding: 60px 0;
}

#testimonial-part .testi-banner .overlay .main .left .left-slider .img{
    outline: 0;
}

#testimonial-part .testi-banner .overlay .main .left .left-slider .testi-img{
    width: 100px;
    height: 100px;
    background: #cccccc;
    border-radius: 50%;
    margin: 30px 0;
    margin-left: 25px;
    overflow: hidden;
    transform: scale(1);
    position: relative;
}

#testimonial-part .testi-banner .overlay .main .left .left-slider .testi-img img{
    position: absolute;
    top: 12px;
    left: 5px;
}

#testimonial-part .testi-banner .overlay .main .left .left-slider .testi-img .testi-img2{
    position: absolute;
    top: 12px;
    left: -6px;
}

#testimonial-part .testi-banner .overlay .main .left .left-slider .testi-img .overlay{
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255,.6);
    position: absolute;
    top: 0;
    left: 0;
}

#testimonial-part .testi-banner .overlay .main .left .left-slider .slick-center .testi-img{
    background: #fec600;
    transform: scale(1.3);
}

#testimonial-part .testi-banner .overlay .main .left .left-slider .slick-center .testi-img .overlay{
    opacity: 0;
}

#testimonial-part .main .left .testi-line{
    position: absolute;
    top: 42%;
    left: 38%;
    transform: translate(-38%,-40%);
    height: 79%;
}

#testimonial-part .main .left .testi-line img{
    height: 100%;
}

#testimonial-part .left-slider .prev{
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -10%;
    left: 38%;
    transform: translate(-48%,1%);
    cursor: pointer;
    transition: .4s;
}

#testimonial-part .left-slider .next{
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    bottom: -10%;
    left: 38%;
    transform: translate(-48%,4%);
    cursor: pointer;
    transition: .4s;
}

#testimonial-part .testi-banner .overlay .main .right{
    width: 835px;
    margin-left: 70px;
    display: flex;
    align-items: center;
} 

#testimonial-part .testi-banner .overlay .main .right .right-item{
    width: 835px;
    height: 340px;
    background: #f1f1f1;
    position: relative;
} 

#testimonial-part .testi-banner .overlay .main .right .right-item .right-banner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#testimonial-part .testi-banner .overlay .main .right .right-item .right-slider .text{
    width: 835px;
    padding: 60px 33px;
    outline: 0;
}

#testimonial-part .testi-banner .overlay .main .right .right-item .right-slider .text h4{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #111111;
}

#testimonial-part .testi-banner .overlay .main .right .right-item .right-slider .text .icon{
    margin: 5px 0;
}

#testimonial-part .testi-banner .overlay .main .right .right-item .right-slider .text .icon i{
    font-size: 16px;
    color: #fec600;
}

#testimonial-part .testi-banner .overlay .main .right .right-item .right-slider .text h6{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #111111;
}

#testimonial-part .testi-banner .overlay .main .right .right-item .right-slider .text p{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    width: 771px;
    padding: 30px 0;
}

#testimonial-part .testi-banner .overlay .main .right .right-item .right-slider .text .signature{
    margin-left: auto;
}

#testimonial-part .testi-banner .overlay .main .right .right-item .testi-shape{
    width: 25px;
    height: 65px;
    background: #f1f1f1;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translate(2%,-50%);
}

#testimonial-part .left-slider .prev:hover{
    background: #fec600;
    color: #111111;
    border-color: #fec600;
}

#testimonial-part .left-slider .next:hover{
    background: #fec600;
    color: #111111;
    border-color: #fec600;
}


/* ==================================================================================
                    testimonial-part css end
===================================================================================== */


/* ==================================================================================
                    testishape down css start
===================================================================================== */

#testishape-down{
    position: relative;
}

#testishape-down .testi-down{
    height: 210px;
    width: 100%;
    background: #ffffff;
    transform: skewX(-86deg);
    transform-origin: left bottom;
    position: absolute;
    top: -210px;
    left: 0;
}

/* ==================================================================================
                    testishape down css end
===================================================================================== */

/* ==================================================================================
                    pricing-part css start
===================================================================================== */

#pricing-part .title{
    margin-bottom: 60px;
}

#pricing-part .pricing-plan{
    background: #444444;
    position: relative;
    transition: .4s;
}

#pricing-part .pricing-plan .price-title{
    display: flex;
    justify-content: center;
}

#pricing-part .pricing-plan .price-title h3{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 30px;
    transition: .4s;
}

#pricing-part .pricing-plan .price-round{
    width: 100px;
    height: 100px;
    background: #f1f1f1;
    border: 1px solid #444444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 16%;
    left: 36%;
    z-index: 1;
    transition: .4s;
}

#pricing-part .pricing-plan .price-round .month-round{
    width: 90px;
    height: 90px;
    background: #444444;
    border: 1px solid  #444444;
    border-radius: 50%;
    transition: .4s;
}

#pricing-part .pricing-plan .price-round .month-round .price{
    font-family: 'Raleway', sans-serif;
    font-size: 29px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
}

#pricing-part .pricing-plan .price-round .month-round .month{
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-top: -5px;
}

#pricing-part .pricing-plan .price-item{
    background: #f1f1f1;
    clip-path: polygon(100% 25%, 100% 86%, 0 95%, 0 33%);
    padding-top: 190px;
    padding-bottom: 50px;
    margin-top: -80px;
    margin-right: -1px;
}

#pricing-part .pricing-plan .price-item ul li{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    text-align: center;
    margin-top: 25px;
}

#pricing-part .pricing-plan a{
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-top: -30px;
    padding-bottom: 25px;
    transition: .4s;
}

#pricing-part .pricing-plan:hover{
    background: #fec600;
    filter: drop-shadow(0px 0px 3px #bdb3b3);
}

#pricing-part .pricing-plan:hover h3{
    color: #222222;
}

#pricing-part .pricing-plan:hover a{
    color: #222222;
}

#pricing-part .pricing-plan:hover .price-round{
    border-color: #fec600;
}

#pricing-part .pricing-plan:hover .month-round{
    border-color: #fec600;
    background: #fec600;
}


/* ==================================================================================
                    pricing-part css end
===================================================================================== */

/* ==================================================================================
                    counter-part css start
===================================================================================== */

#counter-part{
    background: url(../images/team-banner.png) no-repeat top;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 120px;
    transform: skewY(-4deg);
}

#counter-part .overlay{
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0,.8);
    padding: 30px 0;
}

#counter-part .overlay .item{
    width: 100%;
    border: 1px solid #ffffff;
    padding: 12px;

}

#counter-part .overlay .item p{
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
}

/* ==================================================================================
                    counter-part css end
===================================================================================== */

/* ==================================================================================
                    team-part css start
===================================================================================== */

#team-part .title{
    margin-top: 100px;
}

#team-part .team-member{
    background: #f1f1f1;
    border: 1px solid #dddddd;
}

#team-part .team-member .member-img{
    width: 100%;
    height: 275px;
    background: #f1f1f1;
    text-align: center;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    position: relative;
    padding-top: 10px;
}

#team-part .team-member .member-img .team-img3{
    position: absolute;
    top: 10px;
    left: -30px;
}

#team-part .team-member .member-img .overlay{
    width: 100%;
    height: 0;
    background: rgb(254, 198, 0,.5);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .4s;
}

#team-part .team-member .member-img .overlay a i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    background: #ffffff;
    color: #444444;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    margin-top: 115px;
}

#team-part .team-member .member-details{
    width: 100%;
    background: #ffffff;
    margin-top: -33px;
    padding-top: 45px;
    padding-bottom: 20px;
    text-align: center;
}

#team-part .team-member .member-details h3{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #111111;
}

#team-part .team-member .member-details h6{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    margin-top: 10px;
}

#team-part .team-member .member-details .icon a{
    display: inline-block;
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #444444;
    border-radius: 50%;
    color: #444444;
    margin-left: 10px;
    transition: .4s;
}

#team-part .team-member .member-details .icon{
    margin-top: -20px;
    opacity: 0;
    transition: .4s;
}

#team-part .team-member:hover .member-details .icon{
    margin-top: 15px;
    opacity: 1;
}

#team-part .team-member:hover .member-img .overlay{
    height: 100%;
    opacity: 1;
}

#team-part .team-member .member-details a:hover{
    background: #fec600;
    border-color: #fec600;
}

/* ==================================================================================
                    team-part css end
=====================================================================================*/

/* ==================================================================================
                    company-part css start
=====================================================================================*/

#company-part{
    margin-top: 145px;
    background: #f1f1f1;
    transform: skewY(-4deg);
    padding: 40px 0;
}

#company-part .item{
    margin-left: 30px;
    outline: 0;
}

#company-part .item .img{
    border: 1px solid #cccccc;
    padding: 40px 15px;
    text-align: center;
    box-sizing: border-box;
}

#company-part .item .img img{
    width: 100%;
}

#company-part .item .docean{
    padding-bottom: 38px;
}

#company-part .item .graphic{
    padding-bottom: 30px;
}

#company-part .slick-center .img{
    border-color: #fec600;
}

/* ==================================================================================
                    company-part css end
=====================================================================================*/

/* ==================================================================================
                    footerlogo-part css start
=====================================================================================*/

#footerlogo-part{
    background: #222222;
    transform: skewY(-4deg);
    padding-bottom: 100px;
}

#footerlogo-part .footer-logo{
    margin-top: 50px;
    text-align: center;
    transform: skewY(4deg);
}

#footerlogo-part .footer-after::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #535353;
    position: absolute;
    top: 150px;
    left: 0;
}

/* ==================================================================================
                    footerlogo-part css end
=====================================================================================*/

/* ==================================================================================
                    footer-part css start
=====================================================================================*/

#footer-part{
    background: #222222;
    clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 100%);
    margin-top: -67px;
    position: relative;
}

#footer-part .phone::after{
    content: "";
    width: 1px;
    height: 100px;
    background: #555555;
    position: absolute;
    top: 80px;
    left: 0;
}

#footer-part .mail::after{
    content: "";
    width: 1px;
    height: 100px;
    background: #555555;
    position: absolute;
    top: 80px;
    left: 0;
}

#footer-part .globe::after{
    content: "";
    width: 1px;
    height: 100px;
    background: #555555;
    position: absolute;
    top: 80px;
    left: 0;
}

#footer-part .footer-item .icon{
    margin-top: 80px;
    text-align: center;

}

#footer-part .footer-item .icon i{
    font-size: 20px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #fec600;
    color: #353535;
    text-align: center;
    border:1px solid #fec600;
    border-radius: 50%;
}

#footer-part .footer-item .footer-address p{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    transition: .4s;
}

#footer-part .footer-item .footer-address .address{
    margin-top: 15px;
}

#footer-part .footer-item a{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    display: block;
    transition: .4s;
}

#footer-part .footer-item .number{
    margin-top: 15px;
    transition: .4s;
}

#footer-part .footer-title h2{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin-top: 60px;
}

#footer-part .footer-icon{
    text-align: center;
    margin: 30px 0;
}

#footer-part .footer-icon a{
    display: inline-block;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #ffffff;
    color: #444444;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    margin-left: 30px;
    transition: .4s;
}

#footer-part .footer-item .footer-address:hover p{
    color: #fec600;
}

#footer-part .footer-item .number:hover{
    color: #fec600;
}

#footer-part .footer-item a:hover{
    color: #fec600;
}

#footer-part .footer-icon a:hover{
    background: #fec600;
    border-color: #fec600;
}

/* ==================================================================================
                    footer-part css end
=====================================================================================*/

/* ==================================================================================
                    copy-part css start
=====================================================================================*/

#copy-part{
    background: #444444;
}

#copy-part p{
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #f1f1f1;
    text-align: center;
    padding: 20px 0;
}

#copy-part p i{
    font-size: 13px;
    color: #f1f1f1;
}

#copy-part p span{
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #fec600;
}

/* ==================================================================================
                    copy-part css end
=====================================================================================*/




