*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html{
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
}

header h1,
header h2,
footer p {
   margin: 0;
}

header,
footer{
   overflow: auto;
}

a{
    text-decoration: none;
}

.main-content {
    display:table;
    width:100%;
    height:100%;
}

nav{
    display: flex;
    align-items: center;
    width: 100%;
    height: 5.5rem;
    border-bottom: 1px solid rgba(255,255,255, .1);
    background: rgba(0,0,0, .6)!important;
}

.container{
    width: 100vw;
}

.logo img{
    width: 15rem;
    display: flex;
}

.navbar-nav{
    display: flex;
    width: 100%;
    line-height: initial;
    margin-left: 15rem;
}

.navbar-nav li{
    line-height: 3rem;
    position: relative;
}

.sub-menu li{
    line-height: 4rem;
}

.navbar-nav a{
    display: block;
    color: #eee;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    text-decoration: none;
}

.navbar-nav a:hover{
    color: #498be7;
    text-decoration: none;
}

.IQ-navbar ul a{
    border-bottom: 2px solid transparent;
}

.sub-menu{
    width: 27rem;
    display: block;
    position: absolute;
    background-color: #191919;
    z-index: 100;
    top: 25rem;
    opacity: 0;
    visibility: hidden;
    transition: 400ms ease-in;
}

.IQ-navbar ul a:hover{
    border-bottom: 2px solid #4986E7;
    border-top: 2px solid #4986E7;
    color: #4986E7 !important;
}

.navbar-nav li:hover > .sub-menu{
    top: 3.5rem;
    opacity: 1;
    visibility: visible;
}

.sub-menu li:hover > .sub-menu{
    top: 0;
    left: 100%;
}

/* CAROUSEL DESIGN  */

/* .carousel-item{
    height: 100vh;
    background: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
} */

.carousel-caption{
    position: absolute;
    width: 100%;
    top: 38%;
    right: 0;
    left: 0;
}

.carousel-caption h1{
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3rem;
    text-shadow: .1rem .1rem .8rem black;
    padding-bottom: 1rem;
}

.carousel-caption p {
    font-size: 2.5rem;
    text-shadow: .1rem .1rem .5rem, black;
    padding-bottom: 1.6rem;
}

.carousel-inner .bg-1{
    background: linear-gradient(rgba(247, 241, 227,0.1),rgba(44, 44, 84,0.9)), url(../img/carousel-bg1.jpg);
    height: 100vh;
    -webkit-background-size: cover;
    background-size: cover;

}

.carousel-inner .bg-2{
    background: linear-gradient(rgba(247, 241, 227,0.1),rgba(44, 44, 84,0.9)), url(../img/carousel-bg2.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    height: 100vh;
}

.carousel-inner .bg-3{
    background: url(../img/carousel-bg3.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    height: 100vh;
}


 /* about section  Starts*/

.about-section{
    margin-top: 3rem;
}

.section-title{
    font-size: 32px;
}

.section-title::before{
    content: '';
    background: #4986E7;
    height: 5px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(63px);
}

.section-title::after{
    content: '';
    background: #4986E7;
    height: 10px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: block;
    transform: translateY(8px);
}

.welcome-text-IQ{
    margin-bottom: 7px;
    padding-left: 7px;
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
    color: #aaaaaa;
    border-left: 3px solid #4986E7;
    font-weight: 700;
}

.card-body p{
    font-size: 15px;
}

.about-img{
    width: 100%;
}
 /* about section  Ends*/

/* Services Section Starts */
.section-services{
    text-align: center;
    margin-bottom: 30px;
    margin-top: 15px;
}
.single-service{
    border: 1px solid #ebebeb;
    text-align: center;
    background: #ffffff;
}

.service-bg{
    height: 300px;
    position: relative;
}

.service-bg img{
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.service-bg h2{
    color: #ffffff;
    background: #4986E7;
    border:1 px solid #4986E7;
    font-size: 17px;
    text-align: center;
    padding: 15px;
    position: absolute;
    left: 8%;
    width: 84%;
     margin: 0;
    bottom: -25px;
   border-radius: 50px;
   letter-spacing: 2px;
}

.single-service:hover .service-bg h2{
    background: #ffffff;
    transition: .9s;
    color: #4986E7;
}

.service-text{
    padding: 50px 30px 20px;
    font-size: 15px;
    font-weight: 400;
}

.service-text p:last-child{
   margin:0;
   line-height: 1.8;
}
.btn-area{
    display: inline-block;
    color: #333333;
    font-size: 17px;
    font-weight: 700;
    margin-top: 30px;
    text-transform: capitalize;
}

/* Services Section Ends */


/* CALL TO ACTION */

#call-to-action {
    background: #2d2b46;
    background-size: cover;
    padding: 40px 0;
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#call-to-action .cta-text {
    color: #fff;
    font-weight: bold;
}

#call-to-action a {
    color: #fff;
    text-align: center;
    font-size: 16px;
}

#call-to-action p i{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

#call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    border: 3px solid #fff;
    color: #fff;
}

#call-to-action .cta-btn:hover {
    background: #4986E7;
    border: 3px solid #4986E7;
}

/* Call to Action Ends */

/* Clients Section
--------------------------------*/

#clients {
    padding: 60px 0;
}

#clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#clients .owl-dot {
    display: inline-block;
    margin: 3px 3px 5px 1px;
    width: 18px;
    height: 18px;
    opacity: 0.5;
    border-radius: 50%;
    background-color: #ddd;
}

#clients .owl-dot.active {
    background-color: #4986E7;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin: 1px 3px;
    opacity: 1;
    border: 5px double;
    color: #fff;
}



/* Testimonials Starts Here */
.testimonials .testimonial {
    position: relative;
    text-align: center;
}
.testimonials .testimonial .testimonials-text{
    font-size: 15px;
}
.testimonials .testimonial::before {
    content: '';
    color: #e2e2e2;
    font-weight: bold;
    font-size: 68px;
    line-height: 54px;
    position: absolute;
    left: 15px;
    top: 0;
}

.testimonials .overview b {
    text-transform: uppercase;
    color: #4986E7;
}

.testimonials .carousel-indicators {
        bottom: -40px;
}

.carousel-indicators li, .carousel-indicators li.active {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 1px 3px;
}
.carousel-indicators li {
    background: #e2e2e2;
    border: 4px solid #fff;
}

.carousel-indicators li.active {
    color: #fff;
    background: #4986E7;
    border: 5px double;
}

/* Footer Design Starts */


/*FOOTER*/

footer {
    background: #111;
    color: white;
    margin-top:100px;
}

footer .footer-pad h4{
    font-size: 25px;
}

footer .footer-pad p{
    color: #808080;
    font-size: 15px;
}

.copy {
    font-size: 12px;
    padding: 10px;
    border-top: 1px solid #FFFFFF;
}

.footer-middle {
    padding-top: 2em;
    color: white;
}

footer .footer-middle .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
footer .footer-middle .footer-links ul i {
    padding-right: 8px;
    color: #ddd;
}
  
footer .footer-middle .footer-links ul a {
    font-size: 15px;
    color: #eee;
}
  
footer .footer-middle .footer-links ul a:hover {
    color: #4986E7;
}

/*SOCİAL İCONS*/
/* footer social icons */

ul.social-network {
    list-style: none;
    display: inline;
    margin-left: 0 !important;
    padding: 0;
}

 ul.social-network li {
   display: inline;
   margin: 0 5px;
}


/* footer social icons */

.social-network a.icoFacebook:hover {
    background-color: #3B5998;
}

.social-network a.icoLinkedin:hover {
    background-color: #007bb7;
}

.social-network a.icoFacebook:hover i,
.social-network a.icoLinkedin:hover i {
    color: #fff;
}

.social-network a.socialIcon:hover,
.socialHoverClass {
    color: #44BCDD;
}

.social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
}

.social-circle li i {
    margin: 0;
    line-height: 30px;
    text-align: center;
}

.social-circle li a:hover i,
.triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.social-circle i {
    color: #595959;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

.social-network a {
    background-color: #F9F9F9;
}

/* Footer Deisgn Ends */


/* ============================
###############################
############FIND A JOB#########
###############################
===============================*/

.section-jobs{
    margin: 10px;
    margin-top: 7rem;
    font-size: 15px;
}

.section-jobs .dataTables_filter, 
.section-jobs .dataTables_filter input,
.section-jobs .dataTables_length, 
.section-jobs .dataTables_length select,
.section-jobs .dataTables_info{
    font-size: 15px;
}

/* JOBS COL Ends */





/* ============================
###############################
#######VIEW JOB DETAILS########
###############################
===============================*/

.view-company-details .company-details{
    font-size: 5rem;
    font-weight: 500;
}


.job-desc {
    font-size: 1.5rem;
}

.apply-btn {
    color: #ffffff;
    background: #4986E7;
    border: 1 px solid #4986E7;
    font-size: 17px;
    text-align: center;
    padding: 15px;
    position: absolute;
    left: 8%;
    width: 84%;
    margin: 0;
    border-radius: 50px;
    letter-spacing: 2px;
}

.apply-btn:hover{
    background: #ffffff;
    transition: .9s;
    color: #4986E7;
}












/* MEDIA QUERIES */


@media screen and (max-width: 1200px){

    .navbar-nav{
        position: fixed;
        margin: 0;
        top: 55px;
        left: 0;
        height: 100vh;
        display: block;
        flex-direction: column;
        align-items: initial;
        background-color: #191919;
        z-index: 1000;
        overflow-y: scroll;
    }

    .navbar-nav > li{
        line-height: 6rem;
    }

    .sub-menu{
        position: initial;
        border: 3px solid transparent;
        border-left-color: #498be7;
        margin-left: 1rem;
        max-height: 0;

    }

    .sub-menu::before{
        display: none;
    }

    .navbar-nav li:hover > .sub-menu{
        opacity: 1;
        visibility: visible;
        max-height: initial;
    }

    .navbar-nav{
        margin: 0;
    }
    .welcome-text-IQ {
        font-size: 15px;
    }
    .about-text-IQ{
        font-size: 12px;
    }
    .service-bg h2{
        font-size: 12px;
    }
    .service-bg{
        height: 250px;
    }
    .service-text{
        font-size: 10px;
    }
} 


@media only screen and (max-width:1199px){
    .service-text p{
        font-size: 15px;
        display: block;
    }
}

@media only screen and (max-width:767px){
    .single-service{
        margin-top: 30px;
    }

    .service-bg h2{
        font-size: 13px;
    }
    
  .apply-btn {
    color: #ffffff;
    background: #4986E7;
    border: 1 px solid #4986E7;
    font-size: 17px;
    text-align: center;
    padding: 15px;
    position: absolute;
    left: 8%;
    width: 84%;
    margin: 0;
    bottom: -30px;
    border-radius: 50px;
    letter-spacing: 2px;
    }
}

@media only screen and (max-width:575px){
    .main-content{
        width: 100vw;
    }
    
    .welcome-text-IQ {
        font-size: 17px;
    }

    .about-text-IQ{
        font-size: 15px;
    }

    .navbar-nav{
    margin: 0;
    }

    .service-text p{
        font-size: 15px;
    }

    .cta-text a{
        font-size: 17px;
    }

    .testimonials .testimonial {
        padding: 0 15px 0 15px;
        position: relative;
        text-align: center;
    }
    
    .job-btn-text{
        font-size:15px;
    }
}