@import url('base.css');

main {
    margin: auto;
    width: 1100px;
    justify-content: center;
}

a:hover {
    color: unset !important;
}

.btn-accent:hover {
    color: var(--default) !important;
}

.btn-outline:hover {
    color: var(--default) !important;
}

header {
    background-color: var(--default);
}

.navbar {
    background-color: var(--default) !important;
}

header .navbar .navbar-brand img {
    width: 160px;
}

header .navbar .nav-item {
    position: relative;
    border: 1px solid transparent;
    /* border-radius: 5px; */
}

header .navbar .nav-link {
    color: var(--primary) !important;
    font-family: var(--font-default);
    font-size: 14px;
}

header .navbar .nav-item:hover {
    border-bottom: 1px solid var(--accent);
    /* border-radius: 5px; */
}

header .navbar .nav-item:hover .nav-link{
    color: var(--secondary) !important;
}

header .navbar .nav-item.active {
    border-bottom: 1px solid var(--accent);
    /* border-radius: 5px; */
}

header .navbar .nav-item.active .nav-link{
    color: var(--secondary) !important;
}

header .navbar .nav-link img {
    height: 30px;
    color: var(--default);
}

.hero {
    margin-top: 0px;
    /*height:calc(90vh - 200px);*/
    background-image: linear-gradient(to right , rgba(242, 247, 248, 0.9) , rgba(2,0,36,0.001) 60%) , url('../images/doctor.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.hero h1 {
    font-size: 60px;
    color: var(--text-dark);
    font-weight: 100;
}

.hero p {
    font-size: 20px;
    font-weight: normal;
}

.inner-hero {
    margin-top: 0px;
    height: 45vh;
    background-image: linear-gradient(to right , rgba(0, 0, 0, 0.7) , rgba(0,0,0,0.7) ) , url('../images/about.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 10% 15%;
}

.inner-hero h1 {
    font-size: 60px;
    color: var(--default);
    font-weight: 100;
}

.inner-hero .breadcrumb-item {
    font-size: 20px;
    font-weight: normal;
    color: var(--default);
}

.inner-hero .breadcrumb-item a{
    font-weight: bold;
    color: var(--default);
}

.features .card {
    background-color: var(--tertiary);
    border-radius: 5px;
    border: none;
    /* height: 316px; */
    vertical-align: middle;
    margin-bottom: .5rem;
    transition: all ease .5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.features .card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--accent);
    border-radius: 5px 5px 0 0;
    z-index: -1;
    transition: all ease .5s;
}

.features .card::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--accent);
    border-radius: 0 0 5px 5px;
    z-index: -1;
    transition: all ease .5s;
}

.features .card:hover::before {
    top: 0;
}

.features .card:hover::after {
    bottom: 0;
}

.features .card:hover h4 {
    color: var(--default);
}

.features .card:hover p {
    color: var(--default);
}

.features .card .card-body {
    padding-top: 1.5rem;
}

.features .card .card-body i {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 5px;
    display: inline-block;
    color: var(--secondary);
}
.features .card h4 {
    font-size: 20px;
}

features .card p {
    font-size: 14px;
    color: var(--text-dark);
}

.section-title {
    text-align: center;
    margin-top: 5rem;
}
.section-title h1{
    font-size: 60px;
    font-weight: 100;
}

.section-title p {
    font-size: 20px;
    font-weight: 100;
}

.pointers ul {
    list-style: none;
}

.pointers ul li {
    border-radius: 5px;
    border: 1px solid var(--border);
    margin-bottom: 10px;
    padding: 5px 10px;
}

.pointers ul li:hover {
    background-color: var(--secondary);
    color: var(--default);
}

.pointers ul li a:hover {
    color: var(--font-default) !important;
}

.pointers .card {
    height: 218px;
}

.vacancies .card {
    border-radius: 10px;
    border: none;
    background-color: var(--tertiary);
    margin-bottom: 2rem;
}

.vacancies .card:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.vacancies .card h4 {
    font-size: 20px;
    font-weight: 500;
}

.vacancies .card h3 {
    font-size: 16px;
    font-weight: 500;
}

.vacancies .card p {
    font-size: 14px;
    font-weight: 100;
}
.vacancies .card li {
    font-size: 14px;
    font-weight: 100;
}

.vacancies .card hr {
    background-color: var(--border);
}

.vacancies .card .points {
    font-size: 16px;
    color: var(--secondary) !important;
}

.vacancies .card .card-footer {
    border: none;
    background-color: var(--tertiary-dark);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.rate {
    /* float: left; */
    height: 30px;
    color: #ffc700;
}
.rate span {
    font-size: 14px;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:20px;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked ~ label {
    color: #ffc700;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

#testimonials .swiper-slide .testimonial-item {
    background-color: var(--tertiary);
    border-radius: 10px;
    padding: 30px;
}

#testimonials .swiper-slide .testimonial-item h5 {
    font-size: 20px;
    font-weight: 100;
}

#testimonials .swiper-slide .testimonial-item h5 {
    font-size: 20px;
    font-weight: 100;
}

#testimonials .swiper-slide .testimonial-item a {
    text-decoration: underline;
}

#testimonials .swiper-pagination {
    position: relative;
    background-color: var(--default);
}

.swiper-pagination-bullet {
    width:10px;
    height:10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent);
    width: 30px;
    border-radius: 10px;
}

.subscribe {
    background-color: var(--primary);
    border-radius: 10px;
    color: var(--default);
    /*min-height: 450px;*/
    /*height: auto;*/
    padding-top: 20px;
}
.subscribe h1{
    font-size: 60px;
    font-weight: 100;
}

.subscribe p {
    font-size: 20px;
    font-weight: 100;
}

.subscribe .input-group-text {
    background-color: var(--accent);

}

.subscribe .input-group-text button{
    color: var(--default);
}

footer {
    background-color: var(--tertiary);
}

footer img {
    width: 250px;
}

footer .btn-to-top {
    opacity: 0;
    position: fixed;
    right: 0px;
    width: 49px;
    z-index: 111;
    display: block;
    bottom: 15%;
    background-repeat: no-repeat;
    background-position: center 15px;
    background-color: var(--accent);
    font-size: 9px;
    font-weight: 900;
    color: var(--default);
    text-align: center;
    line-height: 1;
    border-radius: 2px;
    padding: 15px 0 15px 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

footer .btn-to-top.show {
    opacity: 1;
}

footer .btn-to-top:hover {
    background-color: var(--secondary);
    color: var(--accent);
}

footer .btn-to-top i {
    font-size: 12px;
    display: block;
}

footer .footer-bottom {
    background-color: var(--primary);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

footer ul li {
    display: inline-block;
    padding: 0 15px 0 0;
    position: relative;
    margin-right: 0.5rem;
}

footer ul li:not(:last-child):after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    height: 15px;
    width: 1px;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
}

footer ul li a {
    font-weight: 300;
    font-size: 15px;
    color:var(--default);
    transition: all ease .5s;
}

footer ul li a:hover {
    color: var(--secondary);
}

footer .footer-bottom p {
    font-weight: 300;
    font-size: 15px;
    color:var(--default);
    text-align: right;
}

footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: var(--default);
    margin-right: 10px;
    transition: 0.3s;
    background-color: var(--primary);
}

footer .social-links a:hover {
    background-color: var(--accent);
}