@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* font-family: 'Roboto', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
/* font-family: 'Source Sans Pro', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;300;400;500;600;700;800&display=swap');
/* font-family: 'Barlow Condensed', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600&display=swap');
/* font-family: 'Nunito', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&display=swap');
/* font-family: 'Noto Sans JP', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');
/* font-family: 'PT Serif', serif; */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500&display=swap');
/* font-family: 'Heebo', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600&display=swap');
/* font-family: 'Karla', sans-serif; */

html {scroll-behavior: smooth;}
body {
    padding: 0;
    margin: 0;
    background-color: #fff;
}

a {text-decoration: none;}
.bold{font-weight: bold;}
.italic{font-style: italic;}
.mob-view {display: none;}
.desk-view {display: block;}

.contained {
    padding-left: 4%;
    padding-right: 3.5%;
}

#error {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    color: #fa263b;
    margin: 80px auto;
}

/*********************************************************
    Header Section Start
*********************************************************/
#header {
    background-color: #ededed;
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

#header .h-left,
#header .h-right {
    width: 25%;
}

#header .h-middle {width: 50%;}

.h-left .logo a {
    display: inline-block;
}

.h-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.h-middle .whatsapp-btn a {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    background-color: #1d8b54;
    color: #fff;
    padding: 7px 12px;
    border-radius: 5px;
    transition: all 0.4s;
}

.h-middle .whatsapp-btn a:hover {
    background-color: #046836;
}

.h-middle .whatsapp-btn a i {font-size: 22px;}

.h-middle .assessment-btn a {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    background-color: #c51303;
    color: #fff;
    padding: 7px 25px;
    border-radius: 5px;
    transition: all 0.4s;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.h-middle .assessment-btn a::before {
    content: '';
    background-color: #F47000;
    width: 50px;
    height: 150px;
    position: absolute;
    top: -45px;
    left: -55px;
    z-index: -1;
    transform: rotate(45deg);
    transition: all 1.5s;
}

.h-middle .assessment-btn a:hover::before {
    left: calc(100% - 10px);
}

#header .h-right {
    text-align: right;
}

/*********************************************************
    Navbar Section Start
*********************************************************/
#navbar {
    background-image: linear-gradient(to right, #c51303 30%, #f47000);
    display: flex;
}

#navbar-menu {width: 85%;}

#navbar-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#navbar-menu ul li {margin-right: 30px;}
#navbar-menu ul li:last-child {margin-right: 0;}

#navbar-menu ul li a {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #f5f1f1;
    padding: 10px 0;
    position: relative;
}

#navbar-menu ul li a::before {
    content: '';
    background-color: #ededed;
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s;
}

#navbar-menu ul li a:hover:before {height: 2px;}

#navbar .social-media {width: 15%;}

#navbar .social-media ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    height: 100%;
}

#navbar .social-media ul li a {
    display: block;
    color: #f7f3f3;
    background-color: #223e72;
    font-size: 13px;
    width: 29px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s;
}

#navbar .social-media ul li.facebook a {background-color: #315891;}
#navbar .social-media ul li.facebook a:hover {background-color: #3c68aa;}
#navbar .social-media ul li.twitter a {background-color: #32c8de;}
#navbar .social-media ul li.twitter a:hover {background-color: #2cb7cc;}
#navbar .social-media ul li.linkedin a {background-color: #037FC5;}
#navbar .social-media ul li.linkedin a:hover {background-color: #0577b9;}
#navbar .social-media ul li.instagram a {background-color: #d83ca4;}
#navbar .social-media ul li.instagram a:hover {background-color: #b63289;}

/*********************************************************
    Slider Section Start
*********************************************************/
#main-slider {
    position: relative;
}

#main-slider .slider-nav {
    position: absolute;
    right: 0;
    bottom: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.4);
}

#main-slider .slider-nav button.owl-dot {
    border: 1px solid transparent;
    background-color: transparent;
    padding: 0;
    margin-bottom: 10px;
    text-align: left;
}

#main-slider .slider-nav button:last-child {margin-bottom: 0;}
#main-slider .slider-nav button.owl-dot.active {border: 1px solid #ccc;}

#main-slider .slider-nav button.owl-dot span {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #cdcdcd;
    padding: 6px 10px;
    padding-right: 35px;
    transition: all 0.4s;
}

#main-slider .slider-nav button.owl-dot.active span,
#main-slider .slider-nav button.owl-dot:hover span {
    font-weight: 500;
    color: #fff;
}

#main-slider .slider-nav button.owl-dot:hover span::before,
#main-slider .slider-nav button.owl-dot.active span::before {background-color: #223e72;}

#main-slider .slider-desk {display: block;}
#main-slider .slider-mob {display: none;}

#main-slider .slider-caption {
    background-color: rgba(2, 10, 29, 0.6);
    width: 44%;
    position: absolute;
    top: 22%;
    right: 0;
    border-left: 6px solid #c51303;
    padding: 30px 20px;
    padding-bottom: 40px;
}

#main-slider .slider-caption h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 35px;
    color: #ebebeb;
    margin-bottom: 15px;
}

#main-slider .slider-caption p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 26px;
    color: #dfdfdf;
    margin-bottom: 0;
    margin-top: 10px;
}

#main-slider .slider-caption p:first-child {margin-top: 0;}

#main-slider .slider-caption h2,
#main-slider .slider-caption p {
    opacity: 0;
    transform: translateY(60px);
}

#main-slider .owl-item.active .slider-caption h2 {transition-delay: 0.1s;}
#main-slider .owl-item.active .slider-caption p {transition-delay: 0.4s;}

#main-slider .owl-item.active .slider-caption h2,
#main-slider .owl-item.active .slider-caption p {
    opacity: 1;
    transform: translateY(0px);
    transition-duration: 2s;
}

/*********************************************************
    Brief About Section Start
*********************************************************/
#about-brief {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
}

#about-brief h1 {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    background: linear-gradient(to bottom, #A74C00, #700100);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 80px;
}

#about-brief h1::before {
    content: '';
    background-color: #700100;
    width: 50%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 25%);
}

#about-brief .about-text {
    display: flex;
}

#about-brief .about-text h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 40px;
    background: linear-gradient(to right, #ac0213, #045E1B);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-align: right;
    padding-right: 20px;
    margin-bottom: 0;
    width: 50%;
}

#about-brief .short-profile {
    width: 50%;
    border-left: 1px solid #ccc;
    padding-left: 20px;
    text-align: left;
}

#about-brief .short-profile .profile-details {
    display: flex;
    gap: 12px;
}

#about-brief .short-profile .profile-designation {
    font-family: 'Roboto', sans-serif;
    margin-top: auto;
}

#about-brief .short-profile .profile-designation h3 {
    font-size: 24px;
    color: #c51303;
    margin-bottom: 0;
}

#about-brief .short-profile .profile-designation h6 {
    font-weight: 400;
    color: #c51303;
    font-size: 17px;
}

#about-brief .short-profile p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #2c323f;
    margin-top: 10px;
    margin-bottom: 0;
}

#about-brief .read-more-btn {
    margin-top: 60px;
}

#about-brief .read-more-btn a {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #2B0098;
    transition: all 0.5s;
}

#about-brief .read-more-btn a i {
    color: #c51303;
    font-size: 24px;
}

#about-brief .read-more-btn a:hover {transform: translateX(10px);}

/*********************************************************
    Areas of Practice Section Start
*********************************************************/
#practice-area {margin-bottom: 70px;}

#practice-area .practice-hd {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

#practice-area .practice-hd h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    color: #c51303;
    text-transform: uppercase;
    padding-bottom: 5px;
    position: relative;
}

#practice-area .practice-hd h2::before {
    content: "";
    background-color: #a5a4a4;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 40%;
}

#practice-area .practice-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 30px;
    margin-top: 20px;
}

#practice-area .single-practice-fields {
    width: calc(20% - 16px);
    padding: 15px 10px;
    border: 1px solid #f3f3f3;
    border-left: 4px dotted #f0f0f0;
    transition: all 0.3s;
}

#practice-area .single-practice-fields:hover {
    transform: translateY(-3px);
    border-color: #dfdfdf;
}

#practice-area .single-practice-fields .practice-fields-icon {
    text-align: center;
    margin-bottom: 20px;
}

#practice-area .single-practice-fields h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #011a3a;
    text-align: center;
    margin-bottom: 25px;
}

#practice-area .single-practice-fields .more-fields {
    text-align: center;
}

#practice-area .single-practice-fields .more-fields a {
    display: inline-block;
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    border: 1px solid #003470;
    color: #003470;
    padding: 10px 25px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    transition: all 0.3s;
}

#practice-area .single-practice-fields .more-fields a:hover {color: #fff;}

#practice-area .single-practice-fields .more-fields a::before {
    content: "";
    background-color: #003470;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}

#practice-area .single-practice-fields .more-fields a:hover::before {
    bottom: 0;
    opacity: 0.7;
}

/*********************************************************
    Provincial Nominee Program Section Start
*********************************************************/
#services {margin-bottom: 80px;}

#services h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #c51303;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 50px;
}

#services .services-box {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

#services .services-box .single-service {
    width: calc(25% - 3px);
    position: relative;
    z-index: 9;
    overflow: hidden;
}

#services .services-box .single-service::before {
    content: '';
    background-color: rgba(2, 21, 66, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#services .services-box .single-service h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 29px;
    color: #fff;
    width: 100%;
    padding: 0 6%;
    text-align: center;
    position: absolute;
    top: 35%;
    z-index: 9;
}

#services .single-service .service-description {
    /* background-image: linear-gradient(to bottom, #0C2254, #1C2E3F); */
    background-color: #c51303;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: all 0.4s;
    opacity: 0;
}

#services .single-service:hover .service-description {
    transition: all 0.5s;
    top: 0;
    opacity: 1;
}

#services .single-service .service-description p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 21px;
    color: #f1f1f1;
    margin-bottom: 20px;
}

#services .single-service .service-description a {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: #f1f1f1;
    background-color: #e44233;
    padding: 12px;
    padding-bottom: 10px;
    position: relative;
    z-index: 9;
}

#services .single-service .service-description a::before,
#services .single-service .service-description a::after {
    content: '';
    background-color: rgba(0, 20, 141, 0.2);
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    transition: all 0.4s;
}

#services .single-service .service-description a::before {left: 0;}
#services .single-service .service-description a::after {right: 0;}

#services .single-service .service-description a:hover:before,
#services .single-service .service-description a:hover::after {
    width: 100%;
}

/*********************************************************
    Testimonail Section Start
*********************************************************/
#testimonial {
    text-align: center;
    padding: 0 8%;
    margin-bottom: 60px;
    position: relative;
}

#testimonial h1 {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #c51303;
    padding: 0 30px;
    padding-bottom: 10px;
    margin-bottom: 70px;
    position: relative;
}

#testimonial h1::before {
    content: '';
    background-image: linear-gradient(to left, transparent, #ca6d65, transparent);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
}

#testimonial .single-testimonial {
    display: flex;
}

#testimonial .single-testimonial .testimonial-thumb {
    overflow-y: hidden;
    max-height: 223px;
}

#testimonial .single-testimonial img {
    max-width: 173px;
    height: auto;
}

#testimonial .testimonial-description {
    font-family: 'Roboto', sans-serif;
    width: calc(100% - 222px);
    border-left: 1px solid #adadad;
    padding-left: 40px;
    margin-left: 30px;
    text-align: left;
}

#testimonial .testimonial-description p {
    font-size: 22px;
    font-weight: 300;
    color: #1a1919;
    margin-bottom: 0;
}

#testimonial .testimonial-description h2 {
    font-size: 22px;
    margin-bottom: 0;
}

#testimonial .testimonial-description h4 {
    font-size: 19px;
    font-weight: 400;
}

/*********************************************************
    Inner Pages Section Start
*********************************************************/
#inner-banner {
    background-image: url('../img/inner-banner.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 50px 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 9;
}

#inner-banner::before {
    content: '';
    background-image: linear-gradient(to right, rgba(1, 18, 43, 0.85), rgba(1, 18, 43, 0.85), transparent, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#inner-banner .breadcrumb {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

#inner-banner .breadcrumb li {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #ffffff;
}

#inner-banner .breadcrumb li+::before {
    font-family: FontAwesome;
    font-size: 10px;
    content: "\f054";
    padding: 0 8px;
    display: inline-block;
    color: #ff4747;
}

#inner-banner .breadcrumb li a {color: #ff6347;}
#inner-banner .breadcrumb li a:hover {text-decoration: underline;}

#inner-banner h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    color: #d8f3fb;
    margin-top: 20px;
    margin-bottom: 0;
}

#content {font-family: 'Roboto', sans-serif;}

#content .main-hd {
    font-size: 28px;
    font-weight: 600;
    color: #0f151f;
    margin-bottom: 17px;
}

#content h2 {font-size: 24px;}
#content h3 {font-size: 21px;}

#content p {
    font-size: 17px;
    color: #363636;
}

/*********************************************************
    Reveiw Form Section Start
*********************************************************/
#review-form {
    background-color: #eff6ff;
    border: 1px solid #dbd9d9;
    width: 60%;
    margin: 50px auto;
}

#review-form .form-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #225595;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
}

#form-area {padding: 30px;}

#previewImg {
    width: 200px;
    height: 200px;
    border: 1px dashed #8b8b8b;
}

#review-form .upload {
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px !important;
    background-color: #2b6c9b;
    color: #fff !important;
    text-align: center;
    width: 200px;
    margin-left: auto;
    margin-top: 1px;
    padding: 6px;
    cursor: pointer;
    user-select: none;
    transition: all 0.4s;
}

#review-form .upload:hover {background-color: #1b5985;}

#form-area input, #form-area textarea, #form-area select {
    border-radius: 0;
    padding: 8px 10px;
}

#form-area .form-group {
    position: relative;
    margin-bottom: 25px;
}

#form-area .form-group label {
    font-size: 15px;
    font-weight: 400;
    color: #928a8a;
}

#form-area .form-group .error {
    position: absolute;
    bottom: -18px;
    left: 0;
    color: #dc3545;
    font-size: 12px;
    width: 100%;
}
#form-area input:focus, #form-area textarea:focus, #form-area select:focus {box-shadow: none;}

#rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 8px;
    margin-top: 5px;
}

#rating input {
    position: relative;
    width: 27px;
    line-height: 27px;
    height: 27px;
    cursor: pointer;
    appearance: none;
}

#rating input::before {
    font-size: 24px;
    font-family: FontAwesome;
    content: '\f005';
    position: absolute;
    top: 0;
    left: 0;
    color: #7a7a7a;
    transition: all 0.4s;
}

#rating input:hover ~ input::before,
#rating input:hover::before,
#rating input:checked ~ input::before,
#rating input:checked::before {
    color: #f28700;
}

#btnUploadPage {
    color: #fff;
    background: #3376ce;
    border-radius: 3px;
    border: none !important;
    font-size: 18px;
    font-family: arial;
    padding: 13px 20px;
    line-height: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

#btnUploadPage:hover {background-color: #2361b3;}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-top a {
    font-size: 15px;
    color: #fff;
    background-color: #d43426;
    line-height: 100%;
    padding: 12px 20px;
    border-radius: 3px;
    transition: all 0.3s;
}

.review-top a:hover {background-color: #f55243;}

/*********************************************************
    USP Section Start
*********************************************************/
#usp-area {
    background-image: url(../img/usp-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
    margin: 80px 0;
}

.usp-box {
    width: 62%;
    background-image: linear-gradient(to left, #e8fdff, #dfe7fa);
    padding: 30px 20px;
    border-radius: 5px;
}

.usp-box h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #011a3a;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.usp-box ul {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding-left: 15px;
}

.usp-box ul li {
    font-size: 18px;
    font-weight: 500;
    color: #3d3d3d;
    padding-left: 9px;
    margin-bottom: 7px;
}

.usp-box ul li::marker {
    content: "\2714";
    font-size: 16px;
}

/*********************************************************
    Provinces in Canada Section Start
*********************************************************/
#provinces-area {
    margin: 70px 0;
}

#provinces-area h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #203a64;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 60px;
    position: relative;
}

#provinces-area h1::after {
    content: "";
    background-color: #d43426;
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 25px);
}

#provinces-area h1 span {
    display: block;
    font-size: 25px;
    color: #899bb8;
}

#provinces-area .provinces-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.provinces-box .single-provinces {
    width: calc(20% - 16px);
    background-color: #eef1f1;
    border: 1px solid #e7e7e7;
    padding: 10px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.provinces-box .single-provinces:hover {transform: scale(1.03);}

.provinces-box .single-provinces .provice-title {
    font-family: 'Karla', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #011a3a;
    margin-top: 10px;
    margin-bottom: 0;
}

/*********************************************************
    Educational Institution Section Start
*********************************************************/
#edu-institution {
    background-color: #fff8f8;
    padding: 50px 0;
    margin: 80px 0;
}

#edu-institution h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #203a64;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 60px;
    position: relative;
}

#edu-institution h1::after {
    content: "";
    background-color: #d4655a;
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 25px);
}

.single-institution-box {margin-bottom: 40px;}

.single-institution-box h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0b356d;
    margin-bottom: 10px;
}

.single-institution-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-institution-box ul li {
    border: 1px solid #dadada;
    background-color: #fff;
    padding: 10px;
    width: calc(10% - 9px);
    transition: all 0.3s;
    cursor: pointer;
}

.single-institution-box ul li:hover {transform: translateY(-2px);}

/*********************************************************
    Testimonials Section Start
*********************************************************/
.testimonials-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 60px;
}

.testimonials-box .single-testimonial {
    display: flex;
    gap: 25px;
    background-color: #f8fdff;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
}

.practices .single-testimonial {
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.6s;
}

.practices .single-testimonial:hover {transform: translateY(-2px);}

.testimonials-box .single-testimonial:last-child {margin-bottom: 0;}
.testimonials-box .single-testimonials:nth-child(2n) {margin-right: 0;}

.testimonials-box .single-testimonial .client-thumb {
    max-width: 70px;
    width: 70px;
    height: 70px;
}

.testimonials-box .single-testimonial .client-thumb img {
    max-width: 72px;
    width: 72px;
    height: 72px;
    border: 2px solid #464646;
    border-radius: 50%;
    overflow: hidden;
}

.single-testimonial .client-name {
    font-size: 22px !important;
    color: #2a4779;
}

.single-testimonial .rating-box {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    gap: 4px;
}

.single-testimonial .rating-box li {
    font-size: 15px;
    color: #6a6a6a;
}

.single-testimonial .rating-box li.rated {color: #f28700;}

.single-testimonial .client-review p {
    font-size: 18px !important;
    color: #6a6a6a !important;
    margin-bottom: 0;
}

.experience-more {
    text-align: center;
    margin-top: 40px;
}

.experience-more a {
    font-size: 16px;
    font-family: 'Karla', sans-serif;
    line-height: 100%;
    background-color: #011a3a;
    color: #fff;
    padding: 12px 15px;
    border-radius: 3px;
    transition: all 0.3s;
}

.experience-more a:hover {background-color: #0b356d;}

/**********************************************************
	Contact Us Begin Here
**********************************************************/
.contact-form {
    margin-top: 30px;
    margin-bottom: 60px;
}

.form-box {
	font-family: 'Karla', sans-serif;
    padding: 30px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
	border-top: 3px solid #d43426;
}

.contact-form .form-area h2 {
	font-size: 22px;
	font-weight: 600;
	font-family: 'Karla', sans-serif;
	color: #2FA22C;
	text-align: center;
	margin-top: 0;
    margin-bottom: 5px;
}

.contact-form .form-area p {
	font-size: 17px;
	font-weight: 500;
	font-family: 'Karla', sans-serif;
	color: #384237;
	text-align: center;
	margin-bottom: 30px;
}

.contact-form .form-area h5 {
	font-size: 17px;
	font-weight: 500;
	font-family: 'Karla', sans-serif;
	color: #da0000;
	text-align: center;
	margin-bottom: 30px;
}

.form-box .form-group {margin-bottom: 20px;}
.form-box .form-group .form-control {height: 100%;}

.form-box .form-group input,
.form-box .form-group select,
.form-box .form-group textarea {
    border-radius: 0 !important;
	font-size: 17px;
	padding: 10px 12px;
	color: #000;
}

.form-box .form-group input:focus,
.form-box .form-group select:focus,
.form-box .form-group textarea:focus {
    box-shadow: none;
}

.form-box .form-group textarea {resize: vertical;}

.form-box .form-group input[type=number]::-webkit-outer-spin-button,
.form-box .form-group input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.submit-btn {
    display: inline;
    color: #fff;
    background: #3376ce;
    border-radius: 2px;
    border: none !important;
    font-size: 18px;
    padding: 7px 25px;
    padding-top: 7px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1966ca;
	border: none !important;
	outline: none !important;
}

.contact-detail {
	padding-left: 50px;
}

.contact-detail h1 {
	font-family: 'PT Serif', serif;
    font-weight: 600;
    font-size: 28px;
	background: linear-gradient(11deg, #d43426, #410c06);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
	margin-bottom: 15px;
}

.contact-detail .contact-box {
	margin-top: 40px;
}

.contact-detail .contact-box .single-contact-box {
	display: flex;
	margin-bottom: 30px;
}

.contact-detail .contact-box .single-contact-box .c-icon {
	width: 50px;
	height: 50px;
	line-height: 58px;
	text-align: center;
	background-color: #ff6e60;
	border-radius: 50%;
	margin-right: 25px;
	transition: background-color 0.4s;
}

.contact-detail .contact-box .single-contact-box:hover .c-icon {
	background-color: #003470;
}

.contact-detail .contact-box .single-contact-box .c-icon i {
	font-size: 22px;
	color: #fff;
}

.contact-detail .contact-box .single-contact-box .c-text {
	width: calc(100% - 75px);
	font-family: 'Karla', sans-serif;
}

.contact-detail .contact-box .single-contact-box .c-text h4 {
	font-size: 22px;
	font-weight: 500;
	color: #003470;
	margin-top: 0;
	margin-bottom: 5px;
}

.contact-detail .contact-box .single-contact-box .c-text p {
	font-size: 18px;
	font-weight: 400;
	color: #5c5f61;
	margin-bottom: 0;
}

.contact-detail .contact-box .single-contact-box .c-text p a {
	color: #004eaf;
}

/*********************************************
Photo Gallery Section Start
*********************************************/
#gallery {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

#gallery a {
    display: block;
    width: calc(33.33% - 10px);
    margin: 5px;
    position: relative;
}

#gallery a::before {
    font-family: icofont;
    font-size: 80px;
    content: '\ec97';
    color: rgba(32, 32, 32, 0.2);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

#gallery a:hover::before {
    background-color: rgba(1, 13, 29, 0.4);
    color: rgba(54, 7, 19, 0.8);
}

/*********************************************************
    Footer Section Start
*********************************************************/
#footer {
    border-top: 5px solid #c51303;
    background-color: #333333;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-menu h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    color: #999999;
    border-bottom: 1px solid #bbbbbb;
    padding-bottom: 4px;
    margin-bottom: 20px;
}

.footer-menu ul, #footer .social-media ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    color: #f3f3f3;
    font-size: 14px;
    margin-bottom: 3px;
}

.footer-menu ul li a {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #f3f3f3;
    transition: all 0.4s;
}

.footer-menu ul li a:hover {color: #f14839;}

#footer .social-media {margin-top: 10px;}

#footer .social-media ul {
    display: flex;
    gap: 5px;
}

#footer .social-media ul li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    transition: all 0.4s;
}

#footer .social-media ul li a.facebook {background-color: #315891;}
#footer .social-media ul li a.twitter {background-color: #2DA8D2;}
#footer .social-media ul li a.linkedin {background-color: #037FC5;}
#footer .social-media ul li a.instagram {background-color: #d83ca4;}
#footer .social-media ul li a.youtube {background-color: #ff0000;}

#footer .social-media ul li a:hover {transform: translateY(-2px);}

.middle-footer {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px 20px;
    margin: 35px 0;
}

.middle-footer .footer-address {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #ccc;
}

.copyright p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 0;
}

/*********************************************************
    Thank You Page
*********************************************************/
#success-bdy {
    width: 50%;
    margin: 60px auto;
    box-shadow: 0 0 25px rgba(0,0,0,.15);
  }
  
  #success-bdy .success-head {
    background-color: #95c75b;
    padding: 30px;
    text-align: center;
  }
  
  #success-bdy .success-head i {
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
  }
  
  #success-bdy .success-head h2 {
    font-size: 29px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    margin-bottom: 0;
  }
  
  #success-bdy .success-info {
    padding: 40px 20px;
    background-color: #ecf5ff;
    text-align: center;
  }
  
  #success-bdy .success-info p {
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #4e4e4e;
    text-align: center;
  }
  
  #success-bdy .success-info .small {font-size: 18px;}
  
  #success-bdy .success-info .goBack a {
    display: inline-block;
    border: 1px solid #72a737;
    color: #72a737;
    border-radius: 50px;
    margin-top: 40px;
    padding: 8px 15px;
  }
  
  #success-bdy .success-info .goBack a:hover {
    background-color: #72a737;
    color: #fff;
  }

/* =========================================
Scroll Section Start
========================================= */
#scrollTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 42px;
    height: 42px;
    background-color: #d43426;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0px 5px 20px 0 rgba(66, 65, 65, 0.5);
    display: none;
}

#scrollTop:hover {
    background-color: #c51303;
    transition: all 0.3s linear;
}

#scrollTop i {
    color: #f2f2f2;
    font-size: 32px;
    line-height: 44px;
    transition: all 0.3s linear;
}

#scrollTop:hover i {color: #f2f2f2;}