@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

* {
    margin: 0;
    padding: 0;
}

/*font-family: 'Raleway', sans-serif;*/

body {
    font-family: 'Poppins', sans-serif;
}
/* ====================== INNER PAGE STYLE
*/
.banner{
    background: url(../img/banner.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 350px;
    overflow: hidden;
}
.banner .overlay{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: -webkit-flex;
    display: inline-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.banner .overlay:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: rgba(7, 209, 211, 0.5);
    z-index: -1;
}

.banner .overlay h1{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 52px;
    font-weight: 900;
}

.inner-caption{
    background: #fafafa;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
}

.inner-caption p{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666666;
    padding-bottom: 10px;
}


/*  TOPBAR STYLE
======================*/
.topbar{
    border-top: 1px solid #07d1d3;
    background: #fbfbfb;
}

.tb-contact-details ul li{
    position: relative;
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    padding: 10px 0px 10px 0px;
    padding-right: 30px;
}

.tb-contact-details ul li strong{
    font-weight: 600;
    color:#333333;
}

.tb-contact-details ul li span{
    font-weight: 400;
    color:#999999;    
}

.tb-contact-details ul li:not(:last-child):before{
    content: "";
    position: absolute;
    top: 0px;
    right: 10px;
    width: 1px;
    height: 42px;
    background: #999999;
    display: block;
}

.tb-contact-details ul, .tb-social-link ul {
    margin:  0px;
}

.tb-social-link ul li {
    display:  inline-block;
}

.tb-social-link ul li a {
    color: #999999;
    font-size: 16px;
    text-decoration:  none;
    display:  block;
    width: 45px;
    height: 42px;
    text-align:  center;
    padding-top: 10px;
    position: relative;
    z-index: 0;
    transition:  all 1s;
}

.tb-social-link ul {
    text-align:  right;
}

.tb-social-link ul li a:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 0%;
    background: #07d1d3;
    z-index: -1;
    transition:  all 1s;
}

.tb-social-link ul li a:hover {
    color: #fff;
}

.tb-social-link ul li a:hover:before{
    height: 100%;
}


/*  HEADER STYLE
======================*/
header{
    padding:20px 0;
}

a.logo {
    text-decoration: none;
    display: block;
    text-align: center;
}

a.logo img {
    width: 100%;
    height: auto;
}

.nav-menu ul li a {
    color: #333333;
    font-size:  14px;
    font-family: 'Poppins', sans-serif;
    text-decoration:  none;
    text-transform:  capitalize;
    position: relative;
    transition: all 1s;
}

.nav-menu ul li a:before{
    content:"";
    position: absolute;
    bottom: -5px;
    left: 0px;
    right:0px;
    background: #07d1d3;
    width: 0%;
    height: 2px;
    transition: all 1s;
}

.nav-menu ul li a:hover{
    color: #07d1d3;
}

.nav-menu ul li a:hover:before{
    width: 100%;
}

.nav-menu ul li:not(:last-child) {
    padding-right: 18px;
}

.nav-menu {
    padding-top: 5px;
}

/*  HOME SLIDER STYLE
=========================*/
.main-slider-area{
    width: 100%;
    height: 700px;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s;
}

.hs-item{
    outline: none;
}

.hs-content{
    background: -webkit-linear-gradient(left, rgb(7, 209, 211) 0%, rgb(70, 238, 240) 83%, rgb(84, 244, 246) 100%);
    background: -o-linear-gradient(left, rgb(7, 209, 211) 0%, rgb(70, 238, 240) 83%, rgb(84, 244, 246) 100%);
    background: -ms-linear-gradient(left, rgb(7, 209, 211) 0%, rgb(70, 238, 240) 83%, rgb(84, 244, 246) 100%);
    background: -moz-linear-gradient(left, rgb(7, 209, 211) 0%, rgb(70, 238, 240) 83%, rgb(84, 244, 246) 100%);
    background: linear-gradient(to right, rgb(7, 209, 211) 0%, rgb(70, 238, 240) 83%, rgb(84, 244, 246) 100%);
    width: 35vw;
    padding: 50px 40px;
}

.hs-content h2{
    color: #ffffff;
    font-size:  52px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 15px;
}

.hs-content a{
    text-decoration: none;
    color: #ffffff;
    padding: 8px 20px;
    border: 2px solid #ffffff;
    font-size:  18px;
    font-family: 'Poppins', sans-serif;   
    text-transform: uppercase;
    position: relative;
    transition: all 1s;
    z-index: 0;
    font-weight: 600;
}

.hs-content a:before{
    content:"";
    position: absolute;
    top:0px;
    left: 0%;
    right: 0px;
    bottom: 0px;
    background: rgba(255,255,255,0.2);
    width: 0%;
    height: 100%;
    transition: all 1s;
    z-index: -1;
}

.hs-content a:hover:before{
    width: 100%;
}

/* SECTION ONE STYLE
==============================*/
.sec-one{
    padding: 80px 0;
}
.so-mini-one{
    border: 10px solid #07d1d3;
    padding: 80px 40px;
    position: relative;
    margin-bottom: 40px;
}

.so-mini-one:before{
    content: "";
    position: absolute;
    display: block;
    top: 10%;
    right: -10px;
    width: 10px;
    height: 80%;
    background: #fff;
}

.somo-content p{
    color: #666666;
    font-size:  18px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 15px;    
}

.somo-content a{
    text-decoration: none;
    color: #ffffff;
    padding: 8px 20px;
    border: 1px solid #ffffff;
    font-size:  14px;
    font-family: 'Poppins', sans-serif;   
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: all 1s;
    background: #07d1d3;
}

.somo-content a:before{
    content:"";
    position: absolute;
    top:0px;
    left: 0%;
    right: 0px;
    bottom: 0px;
    background: rgba(255,255,255,0.2);
    width: 0%;
    height: 100%;
    transition: all 1s;
}

.somo-content a:hover:before{
    width: 100%;
}

.somo-head h4{
    color: #07d1d3;
    font-size:  18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform:  lowercase;
}

.somo-head span{
    background: #07d1d3;
    width: 70px;
    height: 4px;
    display: inline-block;
    margin-right: 25px;
    position:  relative;
    top: -4px;
}

.somo-head h1 {
    color:  #333333;
    font-size: 42px;
    padding-top: 30px;
    font-family: 'Poppins', sans-serif;
}

.somt-items{    
}

.somt-items span{    
    color:  #07d1d3;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;    
    text-transform: uppercase;
}

.somt-items h3{    
    color:  #333333;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;    
    text-transform: uppercase;
}

.somt-items p{   
    color:  #666666;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.somt-items a{ 
    color: #07d1d3;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;  
    font-weight: 500;
    text-decoration: none;  
    transition: all 1s;
    position: relative;
}

.somt-items a:before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0px;
    right: 0px;
    background: #07d1d3;
    width: 0%;
    height: 2px;
    transition: all 1s;
}

.somt-items a:hover:before{
    width: 100%;
}

/*  AREAS OF PRACTICE STYLE
===============================*/
.sec-aop{
    background: #fafafa;
    padding: 50px 0; 
}

.main-heading{
    padding-bottom: 40px;
    display: inline-block;
}

.main-heading h4{
    color: #07d1d3;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: lowercase;
    padding-bottom: 20px;
}

.main-heading h4 span{    
    background: #07d1d3;
    width: 70px;
    height: 4px;
    display: inline-block;
    margin-right: 25px;
    position: relative;
    top: -4px;
}

.main-heading h2{
    color: #333333;
    font-size: 36px;
    font-family: 'Poppins', sans-serif;    
}

.aop-head{
    position: relative;
    padding-bottom: 30px;
}

.aop-hleft{
    display: inline-block;
    width: 60px;
    height: 80px;
    border-bottom: 4px solid #07d1d3;
    padding-bottom: 20px;
    vertical-align: middle;
    margin-right: 20px;
}

.aop-hright{
    display: inline-block;
    width: 65%;
    vertical-align: top;
}

.aop-hright h3{
    color: #333333;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
}

.aop-content p{
    color: #666666;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}


/*  SERVICES STYLE
=====================================*/
.sec-services{
    padding: 50px 0;
}

.view-services{
    float: right;
    padding-top: 35px;
}

.view-services a{
    text-decoration: none;
    color: #ffffff;
    padding: 15px 30px;
    border: 1px solid #ffffff;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: all 1s;
    background: #07d1d3;
}

.view-services a:before{
    content:"";
    position: absolute;
    top:0px;
    left: 0%;
    right: 0px;
    bottom: 0px;
    background: rgba(255,255,255,0.2);
    width: 0%;
    height: 100%;
    transition: all 1s;
}

.view-services a:hover:before{
    width: 100%;
}

.services{
    padding-bottom: 80px;
}

.service-items{
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-items a{
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 0;
    transition: all 1s;
}

.service-items a img{
    height: 100%;
}

.service-content{
    background: rgba(7, 209, 211, 0.5);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    transition: all 1s;
}

.service-content h4{
    color: #ffffff;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;    
    text-align: center;
}

.service-items a:hover .service-content{
    background: #07d1d3; 
}


/*  OUR PHILOSOPHY STYLE
=================================================================*/
.fpiw-area{
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.fpiw-area img{
    position: absolute;
    z-index: 1;
    top: 12%;
}

.fpiw-box {
    background: #07d1d3;
    padding: 80px 120px;
}

.main-heading-inverse{
    width: 65%;
}

.main-heading-inverse h4,
.main-heading-inverse h2{
    color: #ffffff;
}

.main-heading-inverse h4 span{
    background: #ffffff;
}

.fpiw-content p{
    color: #ffffff;
    font-size: 18px;
    font-family: 'Poppins', sans-serif; 
    padding-bottom: 20px;
}

.fpiw-content a{
    text-decoration: none;
    color: #ffffff;
    padding: 8px 20px;
    border: 2px solid #ffffff;
    font-size:  18px;
    font-family: 'Poppins', sans-serif;   
    text-transform: uppercase;
    position: relative;
    transition: all 1s;
    z-index: 0;
    font-weight: 600;
}

.fpiw-content a:before{
    content:"";
    position: absolute;
    top:0px;
    left: 0%;
    right: 0px;
    bottom: 0px;
    background: rgba(255,255,255,0.2);
    width: 0%;
    height: 100%;
    transition: all 1s;
    z-index: -1;
}

.fpiw-content a:hover:before{
    width: 100%;
}

/*  OUR EVENT STYLE
===========================*/
.our-event-section{
    background: #fafafa;
    padding:50px;
}

.oes-item{
}

.oes-card{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.oes-card-head{
    width: 100%;
    height: 295px;
    position: relative;
    z-index: 0;
}

.oes-card-head img{
    width: 100%;
    height: 100%;
}

.oes-card-head p{
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #07d1d3;
    z-index: 1;
    width: 100px;
    height: 70px;
    margin: 0px;
    text-align: center;
    color: #fff;
    font-size:  18px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    padding-top: 8px;
}

.oes-card-head span{
    display: block;
}

.oes-card-content{
    background: #fff;
    padding: 30px 20px;
    text-align: center;
}

.oes-card-content h3{
    color: #333333;
    font-size:  20px;
    font-family: 'Poppins', sans-serif;    
    text-transform: capitalize;
    font-weight: 600;
    padding-bottom: 10px;
}

.oes-card-content p{
    color: #666666;
    font-size:  15px;
    font-family: 'Poppins', sans-serif;        
}

.oes-card-content a{ 
    color: #07d1d3;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;  
    font-weight: 500;
    text-decoration: none;  
    transition: all 1s;
    position: relative;
}

.oes-card-content a:before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0px;
    right: 0px;
    background: #07d1d3;
    width: 0%;
    height: 2px;
    transition: all 1s;
}

.oes-card-content a:hover:before{
    width: 100%;
}

/*  OUR CLIENT SAYS STYLE
===============================*/
.testmonials-sec{
    padding: 100px 0;
}

.test-slider{
}

.test-items{
    outline: none;
}

.ti-area{
    width: 90%;
    margin-left: 3px;
}

.test-content{
    background: #ffffff;
    box-shadow: -1px 2px 10px rgba(0,0,0,0.1);
    padding: 20px 10px;
    width: 100%;
    position: relative;
}

.test-content:before{
    content: "";
    position: absolute;
    bottom: -42px;
    right: -3px;
    background: url(../img/test-arrow-img.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    width: 50px;
    height: 50px;
}

.test-content p{
    color: #a6a6a6;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;      
    padding-left: 60px;
    position: relative;
}

.test-content p:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 10px;
    background: url(../img/quote.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    width: 30px;
    height: 30px;
}

.test-foot{
    margin-top: 20px;
}

.test-foot img{
    display: inline-block;
    width: 50px;
    vertical-align: middle;
    margin-right: 10px;
    height: 50px;
}

.test-foot .test-info{
    display: inline-block;
    vertical-align: middle;
}

.test-info h4{
    color: #373636;
    font-size: 16px;
    font-family: 'Poppins', sans-serif; 
    margin: 0px;   
}

.test-info span{
    color: #666666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;  
    font-weight: 300;    
}

.test-slider .slick-dots{
    bottom: -70px;
}

.test-slider .slick-dots li button:before {
    display:  none;
}

.test-slider .slick-dots li button {
    width: 100%;
    background: #666666;
    height: 5px;
    margin:  0px;
    display:  block;
    padding: 0px;
}

.test-slider .slick-dots li {
    width: 25px;
}

.test-slider .slick-dots li.slick-active button {
    background: #07d1d3;
}

/* FOOTER STYLE
==========================*/
footer{
    background: #000000 url(../img/ft-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 40px 0;
}

.ft-head h4{
    color: #ffffff;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;  
    text-transform: uppercase;
    padding-bottom: 20px;
}

.ft-info p{
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;  
}

.ft-contact-details ul li{
    padding-bottom: 15px;
    position: relative;
}

.ft-contact-details ul li i{
    color: #fff;
    font-size: 18px;
    position: absolute;
    left: 0px;
    top: 4px;
}

.ft-contact-details ul li span{
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding-left: 28px;
}

.ft-link ul li{
    padding-bottom: 15px;
}

.ft-link ul li a{
    color: #ffffff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    text-decoration: none;
}

.ft-link ul li a:before{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0px;
    right: 0px;
    background: #07d1d3;
    width: 0%;
    height: 1px;
    transition: all 1s;
}

.ft-link ul li a:hover{
    color: #07d1d3;
}

.ft-link ul li a:hover:before{
    width: 100%;
}

.subscription-form{
    background: #07d1d3;
    border: 1px solid #fff;
}

.subscription-form input{
    width: 78%;
    padding: 10px 15px;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    vertical-align: top;
    background: #07d1d3;
    border: none;
    outline: none;
}

.subscription-form input::placeholder{
    color: #ffffff;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;    
}

.subscription-form button{
    width: 20%;
    padding: 8px 15px;
    color: #ffffff;
    font-size: 16px;
    vertical-align: top;
    background: #07d1d3;
    border: none;
    outline: none;
    position: relative;
    border-left: 1px solid #fff;
}

.subscription-form button:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(255,255,255,0.2);
    width: 0%;
    height: 100%;
    transition: all 1s;
}

.subscription-form button:hover:before{
    width: 100%;   
}

.copyright{
    background: #000000;
    text-align: center;
}

.copyright p{
    color: #cccccc;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;   
    margin: 0px;
    padding: 20px 0;     
}