@import url(../font/MrEavesXLModNarOT-Reg.ttf);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: MrEavesXLModOT-Reg sans-serif
}

::selection {
    color: #fff;
    background: #265a94;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #265a94;
}

::-webkit-scrollbar-thumb:hover {
    background: #265a94;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    display: inline-block;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

.menu-bar-icon {
    width: 40px;
    height: 50px;
    position: relative;
    justify-content: center;
    display: flex;
    margin: 20px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.menu-bar-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu-bar-icon span:nth-child(1) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.menu-bar-icon span:nth-child(2) {
    top: 17px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.menu-bar-icon span:nth-child(3) {
    top: 26px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.menu-bar-icon.bar-open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 2px;
    left: 7px;
}

/*.menu-bar-icon.bar-open span:nth-child(2) {*/
/*    width: 0%;*/
/*    opacity: 0;*/
/*}*/

.menu-bar-icon.bar-open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 30px;
    left: 8px;
}

.logo {
    text-align: center;
}

.logo img {
    margin-bottom: 5px;
    height: 145px;
}

.logo {
    position: absolute;
    top: 40%;
    margin: auto;
    right: 0;
    left: 0;
}

.menu {
    position: fixed;
    background: #ffffff;
    height: 100vh;
    z-index: 9999;
    width: 10%;
    border-right: solid 1px rgba(51, 51, 51, 0.1);
    transition: all 0.4s linear;
}

.menu.open {
    width: 25.5%;
    transition: all 0.4s linear;
}

.main-wapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footer {
    background: #174272;
}

.copy-right p {
    font-size: 15px;
    margin-bottom: 0;
    padding: 10px 20px;
    color: #fff;
}

.footer-menu a {
    font-size: 15px;
    color: #fff;
}

.footer-menu li {
    margin-left: 10px;
}

.footer-menu {
    display: inline-block;
    padding: 7px;
}

.social-media {
    display: inline-block;
    padding: 0;
    margin-right: 40px;
}

.social-media a { 
    font-size: 18px;
    color: #fff;
}

.social-media li {
    padding-left: 10px;
}

.menu-right {
    position: fixed;
    left: 24.5%;
    height: 100vh;
    top: 0;
    width: 25%;
    background: #f9fafc;
    padding: 20px;
    z-index: 99;
    transform: translateX(-200%);
    transition: all 0.5s;
}

.menu-right.open {
    transform: translateX(0);
}

.menu-right ul li {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 31.5%;
}

.menu-right ul li a {
    width: 100%;
    padding: 10px;
    border: solid 1px rgba(51, 51, 51, 0.1);
    font-size: 25px;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    z-index: 1;
    color: #000;
    transition: all 1s;
}

.menu-right ul li a::after {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: rgba(51, 51, 51, 0.1);
    opacity: 0;
    content: '';
    z-index: -1;
}

.menu-right ul li a:hover::after {
    opacity: 1;
}

.menu-right ul li img {
    opacity: 0;
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    object-position: top;
    transition: all 0.5s;
}

.menu-right ul li a:hover img {
    opacity: 0.8;
}

.menu-right ul li a:hover {
    color: #fff;
}

.menu-right ul {
    height: 100vh;
}

.menu-bar-icon h3 {
    padding-top: 35px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    color: #333;
}

.main-showdow {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #233256;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    pointer-events: none;
}

.main-showdow.active {
    opacity: 0.6;
}

.top-bar {
    background: #174272;
    position: relative;
    padding: 25px 0;
    text-align: center;
    z-index: 1;
}

.top-bar h2 {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    /*border-top: 1px solid #6884a3;*/
    padding-top: 8px;
    /* letter-spacing: 1px; */
    text-transform: uppercase;
}

.span1 {
    position: absolute;
    width: 100%;
    z-index: -1;
    left: 0;
    height: 100%;
    top: 0;
}

.span1::before {
    position: absolute;
    content: '';
    border-top: 1px solid #ffffff59;
    top: 15px;
    width: 100%;
    z-index: 999;
    left: 0;
}

.span1::after {
    position: absolute;
    content: '';
    border-top: 1px solid #ffffff59;
    bottom: 15px;
    width: 100%;
    z-index: 999;
    left: 0;
}

.span2 {
    position: absolute;
    width: 100%;
    z-index: -1;
    left: 0;
    height: 100%;
    top: 0;
}

.span2::before {
    position: absolute;
    content: '';
    border-left: 1px solid #ffffff59;
    left: 20px;
    height: 100%;
    z-index: 999;
}

.span2::after {
    position: absolute;
    content: '';
    border-left: 1px solid #ffffff59;
    right: 15px;
    height: 100%;
    z-index: 999;
    width: 2%;
}

.top-bar h1 {
    color: #fff;
    text-align: center;
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 0;
}

.first-services {
    background: url(../images/biography2.png)no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    height: 100vh;
}

.first2-services {
    background: url(../images/slider2.png)no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    height: 80vh;
}

.first3-services {
    background: url(../images/slider3.png)no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    height: 100vh;
}

.first-services::before,
.first2-services::before,
.first3-services::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    background: #0000004a;
    z-index: -1;
    transition: all .5s;
}

.first-services:hover::before,
.first2-services:hover::before,
.first3-services:hover::before {
    background: #6de1e91a;
    transition: all .5s;
}
 
.content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
    padding: 22px 25px 30px;
    z-index: 999;
}

.content-wrap .content {
    position: relative;
    top: 0;
    -ms-flex-item-align: end;
    align-self: end;
    width: 100%;
    padding: 25px 0 27px;
    z-index: 999;
}

.content h3 {
    margin: 0;
    color: #fff;
    font-weight: 600;
    font-size: 35px;
    line-height: 45px;
    text-transform: capitalize;
    text-align: center;
    pointer-events: none; 
    margin-bottom: 10px;
}
 
.content h3 span {
    display: block;
    margin-bottom: 10px; 
    font-size: 12px;
    letter-spacing: 1px;
}

.content-wrap .content .owl-carousel {
    margin: 20px 0;
    text-align: center;
}

.content-wrap .content .owl-carousel h4 {
    /* font-size: 30px; */
    /* font-weight: 600; */
    color: #fff;
    font-size: 20px;
}

.content-wrap .content .owl-carousel p {
    color: #fff;
    font-size: 20px;
}


/* Loader */

.loader svg {
    width: 300px;
    height: 300px;
}

.loader path.right-snake { 
    stroke-dasharray: 223;
    stroke-dashoffset: 446;
    animation: dash 3s linear infinite;
}

path.left-snake { 
    stroke-dasharray: 223;
    stroke-dashoffset: 446;
    animation: dash 3s linear infinite;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 446;
    }
    100% {
        stroke-dashoffset: -446;
    }
}

path.snake { 
    stroke-dasharray: 222;
    stroke-dashoffset: 444;
    animation: dash-long 2s linear infinite;
}

@keyframes dash-long {
    0% {
        stroke-dashoffset: 444;
    }
    100% {
        stroke-dashoffset: -444;
    }
}

.loader.preloader {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background: #174272;
    justify-content: center;
    display: flex;
    align-items: center;
}

.loader {
    display: none;
}

.main-over {
    overflow: hidden;
}


/* breadcrumb */
 
.breadcrumb {
    display: block; 
    padding: 50px 0;
    margin: 0;
    height: 400px;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    z-index: 1;
}

.breadcrumb::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0000007d;
    z-index: -1;
}


/* about main */

.about-main {
    position: relative;
    z-index: 2;
    padding: 70px 10px 10px;
}
 
.about-main h4 {
    font-size: 35px;
    text-align: center;
    color: #333;
    font-family: serif;
}

.about-main h5 {
    font-size: 30px;
    color: #000;
    text-align: center;
    font-family: serif;
    font-weight: 700;
}

.duble-quote{
    position: relative;
}
/* 
.duble-quote::before {
    position: absolute;
    display: block;
    width: 3rem;
    height: 4rem;
    z-index: 0;
    font-size: 6rem;
    font-family: Georgia, Times, Garamond, serif;
    text-shadow: -2px 2px #fff, -1.5px 1.5px #fff, -1px 1px #fff, -0.5px 0.5px #fff;
    top: -4rem;
    left: 8rem;
    content: open-quote;
    color: #000;
    opacity: 0.2;
}

.duble-quote::after {
    position: absolute;
    display: block;
    width: 3rem;
    height: 4rem;
    z-index: 0;
    font-size: 6rem;
    font-family: Georgia, Times, Garamond, serif;
    text-shadow: -2px 2px #fff, -1.5px 1.5px #fff, -1px 1px #fff, -0.5px 0.5px #fff;
    bottom: -1rem;
    right: 8rem;
    content: close-quote;
    color: #000;
    opacity: 0.2;
} */


/* .about-main h4::before {
    position: absolute;
    left: 0;
    right: 0;
    content: 'DR';
    margin: auto;
    font-size: 90px;
    opacity: 0.4;
    top: -40px;
    color: #a7a0a0;
    font-weight: 200;
    font-family: serif;
    z-index: -1;
} */

.title-content {
    margin-bottom: 50px;
}

.about-us-content p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}

.more-pages {
    padding: 20px;
}

.more-pages-des {
    position: relative;
    z-index: 1;
    /* margin: 30px; */
}

.more-pages-des-content {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
    padding: 0 60px;
}

.more-pages-des:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #0000007a;
    z-index: 0;
}

.more-pages-des-content h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
    position: relative;
    top: 20px;
    transition: all 0.5s;
}

.more-pages-des-content p {
    font-size: 19px;
    color: #fff;
    opacity: 0;
    transition: all 0.5s;
}

.more-pages-des:hover .more-pages-des-content p {
    opacity: 1;
}

.more-pages-des:hover .more-pages-des-content h3 {
    top: 0;
}

/* .more-title h5 {
    font-size: 140px;
    text-align: center;
    font-family: initial;
    opacity: 0.6;
    line-height: 100px;
    margin-bottom: 10px;
    color: #e1e1e1;
} */

/*  */


.main-timeline {
    position: relative;
    margin: 20px 0;
    padding: 0 30px;
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.main-timeline:before {
    content: '';
    background-color: #000;
    height: 100%;
    width: 3px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 0;
    border-radius: 5px;
}

.main-timeline .timeline {
    width: 50%;
    padding: 3px 0;
    margin: 0 2px 0 0;
    float: left;
}

.main-timeline .timeline-content {
    color: #777;
    padding: 0 130px 0 0;
    display: block;
    position: relative;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:before {
    content: '';
    background: #fff;
    width: 20px;
    height: 20px;
    border: 3px solid #000;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: -10px;
    top: 50%;
}

.main-timeline .timeline-icon {
    color: #fff;
    background-color: #376891;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    line-height: 60px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 1;
}

.main-timeline .title {
    color: #376891;
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
    line-height: 32px;
}

.main-timeline .description {
    font-size: 18px;
    line-height: 27px;
    margin: 0;
    text-transform: capitalize;
    color: #000;
}

.main-timeline .timeline:nth-child(even) {
    margin: 0 0 0 2px;
    float: right;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 0 0 0 130px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
    right: auto;
    left: -10px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    right: auto;
    left: 20px;
}

@media screen and (max-width:767px) {
    .main-timeline:before {
        transform: translateX(0);
        left: 10px;
    }
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even) {
        width: 100%;
        margin: 0 0 20px;
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 0 0 0 150px;
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:before {
        left: 0;
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(even) .timeline-icon {
        left: 30px;
        right: auto;
    }
}

@media screen and (max-width:479px) {
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 80px 0 0 5px;
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:before {
        transform: translateY(0);
        top: 25px;
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateY(0);
        top: 0;
    }
} 

.main-timeline .year {
    color: #1f3140;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.video-review {
    display: flex;
    margin: auto;
    justify-content: center;
    padding-top: 50px;
}

.video-review .wrapper-video-rs {
    position: relative;
    padding: 30px;
    background: #fff;
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
    border-radius: 15px;
}

.video-review .wrapper-video-rs .bg-video {
    position: relative;
}

.video-review .wrapper-video-rs .bg-video:before {
    content: "";
    height: 4px;
    background: #2dc1ff;
    position: absolute;
    bottom: 60px;
    left: 110px;
    right: 40px;
    width: 100px;
    z-index: 1;
    border-radius: 3px;
}   

.video-review .wrapper-video-rs .bg-video .button-play {
    position: absolute;
    cursor: pointer;
    bottom: 38px;
    left: 50px; 
    width: 40px;
}


.video-review .wrapper-video-rs .bg-video .button-play:before {
    content: "";
    background: url(../images/list-icon.png);
    width: 43px;
    height: 50px;
    background-position: -25px 0;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}


.video-review .wrapper-video-rs .bg-video:after {
    content: "";
    height: 4px;
    background: rgba(255, 255, 255, .2);
    position: absolute;
    bottom: 60px;
    left: 110px;
    right: 40px;
    border-radius: 3px;
}


.video-review .wrapper-video-rs #player {
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    max-width: 100%;
    border-radius: 40px;
    height: 100%;
}

.btn-yotube {
    margin: 30px 0;
    text-align: center;
}

.btn-yotube a {
    background: linear-gradient(107deg, #265a94 0%, #2d3dffa8 50%, #265a94 91%);
    padding: 18px 55px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    border-radius: 4px;
    color: #fff;
    position: relative;
}

.certificate-main {
    position: relative;
    z-index: 2;
    padding: 40px 70px 10px;
}

.certificate-main h3 {
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
}

.logo-slide{
    position: absolute;
    bottom: 10px;
    margin: auto;
    right: 0;
    left: 0;
}

.logo-slide img.img-fluid {
    width: 130px;
    margin: auto;
}

.title-block {
    margin-bottom: 30px;
}

.title-block .tag-line {
    display: inline-block;
    vertical-align: middle;
    color: #265a94;
    font-size: 20px;
    font-weight: 500;
    line-height: 1em;
}


.title-block .tag-line::before {
    margin-right: 20px;
}

.title-block .tag-line:before, 
.title-block .tag-line:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 2px;
    background-color: #265a94;
}

.title-block .tag-line::after {
    margin-left: 20px;
}

.title-block h1 {
    margin: 0;
    color: #2e2b2b;
    font-size: 42px;
    line-height: 50px;
    font-weight: 600;
    margin-top: 10px;
}

.high-gutter {
    margin-left: -27px;
    margin-right: -27px;
}

.single-contact-info-one {
    margin-bottom: 30px;
    background-color: #fff;
    min-height: 300px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 0 20px;
}


.single-contact-info-one i {
    color: #265a94;
    font-size: 50px;
}

.single-contact-info-one h3 {
    color: #222222e0;
    font-size: 26px;
    font-weight: 600;
    margin: 15px 0;
}


.single-contact-info-one p {
    font-size: 17px;
    line-height: 26px;
    color: #9FA2A6;
    margin: 0;
    text-transform: capitalize;
}

.contact-info {
    background-color: #EBF0EB;
    padding: 50px 80px;
}

.contact-form{
    padding: 50px 80px;
}

input.form-control {
    height: 40px;
    border-radius: 0px;
}

textarea.form-control {
    border-radius: 0;
}

.btn-custom {
    background: #265a94;
    padding: 12px 35px;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
    border: none;
}

.contact-form h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form label {
    padding-bottom: 5px;
    font-size: 17px;
}

.privacy-policy-info,
.terms-condition {
    padding: 40px 50px;
}

.privacy-policy-info h3,
.terms-condition h3 {
    font-size: 32px;
    font-weight: 600;
}

.privacy-policy-info p,
.terms-condition p {
    font-size: 20px;
}

.privacy-policy-info li,
.terms-condition li{
    display: block;
     font-size: 19px;

}

.privacy-policy-info ul{
    padding-bottom: 20px;
}

.new-pages-des h3 {
    font-size: 25px;
    color: #000;
    font-family: serif;
    font-weight: 700;
}

.new-pages-des .des {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.new-pages-des ul li i{
    margin-right: 5px;
}

.new-pages-des ul li {
    margin-bottom: 5px;
    font-size: 15px;
    display: block;
    color: #000;
    font-family: serif;
}

.new-pages-des ul li:last-child{
    margin: 0;
}

.gallery {
    margin: 20px 0;
}

.gallery .gallery-title h2 {
    color: #2e2b2b;
    font-size: 42px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.box-top {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 25px;
    bottom: 15px;
    border: solid 1px rgba(255, 255, 255, 0.25);
    pointer-events: none;
    z-index: 1;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.more-pages-des img.img-fluid {
    height: 260px;
    object-fit: cover;
}