body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Chivo', sans-serif;
}

a {
    text-decoration: none;
}

/* header area css*/

.nav {
    padding: 10px 0;
    background-color: #ffffff;
    transition: all 0.4s ease-in-out;
    position:  ;
    width: 100%;
    left: 0;
    top: 0;
}


.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    border-top: 0;
    background-color: #fff !important;
    padding: 10px 0px;
    border-bottom: none;
    box-shadow: 0 10px 30px -10px rgb(0 64 128 / 20%);
} 

.navbar-brand img {
    width: 150px;
}

.navbar li.nav-item {
    padding: 0 12px;
}

.navbar a.nav-link {
    color: #000;
    font-weight: 500;
    transition: all 0.2s;
}

.navbar a.nav-link:hover {
    color: #01667a;
    transition: all 0.2s;
}


.navbar-nav {
    align-items: center;
}

a {
    color: #01667a;
}

/* css start */

.btn-one {
    background-color: #fff;
    display: inline-block;
    padding: 12px 40px;
    color: #01667a;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
 
.btn-one {
    background-color: #fff;
    color: #01667a;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 6px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-one:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background-color: #212121;
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.4s ease-out;
}

.btn-one:hover:before {
    transform: translate(-50%, -50%) scale(3);
}

.btn-one:hover {
    cursor: pointer;
    color: #fff;
}
 
.btn-two {
    background-color: #01667a;
    display: inline-block;
    padding: 12px 40px;
    color: #fff;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
 
.btn-two {
    background-color: #01667a;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-two:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #212121;
    z-index: -1;
    transition: transform 0.4s ease-out;
    transform: translateX(-100%);
}

.btn-two:hover:before {
    transform: translateX(0);
}

.btn-two:hover {
    cursor: pointer;
    color: #fff;
}

.banner {
    background-image: url(img/01.png);
    background-position: right;
    background-repeat: no-repeat;
    height: 85vh;
    background-color: #01667a;
    color: #fff;
    display: flex;
    align-items: center;
}

.card-one {
    position: relative;
    padding: 40px 30px;
    overflow: hidden; 
    border-radius: 1rem;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
}

.card-one:before {
    position: absolute;
    content: "";
    left: -100px;
    top: 0;
    height: 2px;
    width: 100px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; 
    background: #01667a; 
    background: linear-gradient(to right, rgba(9, 179, 239, 1) 0%, #01667a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#09b3ef', endColorstr='#1e50e2', GradientType=1);
}

.card-one:after {
    position: absolute;
    content: "";
    right: -100px;
    bottom: 0;
    height: 2px;
    width: 100px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; ;
    background: #01667a; 
    background: linear-gradient(to right, rgba(9, 179, 239, 1) 0%, #01667a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#09b3ef', endColorstr='#1e50e2', GradientType=1);
}

.card-one:hover:before {
    left: 0;
}

.card-one:hover:after {
    right: 0;
}

.card-one img {
    width: 100px;
    margin-bottom: 20px;   
}

.card-one h4 {
    font-weight: 600;
    color: #000;
}

.divider {
    border: 2px solid #01667a;
    position: relative;
    display: inline-block;
    width: 30px;
    margin-top: 30px;
}

.divider:before {
    position: absolute;
    content: "";
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 1px;
    background: #01667a;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; 
}

.divider:after {
    position: absolute;
    content: "";
    top: -8px;
    left: 0;
    width: 50px;
    height: 1px;
    background: #01667a;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; 
}


.shadow.p-4.rounded-4 {
    transition: all 0.3s;
    position: relative;
    height: 100%;
}

.shadow.p-4.rounded-4:hover {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important; 
    transition: all 0.3s;
    transform: translateY(-30px);
}

.footer {
    background: #01667a;
    color: #fff;
    padding: 70px 0;
}

.footer a{ 
    color: #fff;
}

.footer .social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    color:  #01667a;
    text-align: center;
    line-height: 50px;
    margin-right: 6px;
}


.footer .social a:hover { 
    height: 50px;
    background-color: #212121; 
    color:  #fff; 
    padding-right: 10px;
}


.footer-bottom {
    background-color: #212121;
    padding: 25px 0;
    color: #fff;
}

.footer a { 
    transition: all 0.3s;
}

.footer a:hover {
    padding-left: 10px;
    transition: all 0.3s;
    color: #212121;
    font-weight: 500;
}



