@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600&family=Rubik:wght@400;500;600&display=swap');
@import url('../font/gillsansmt.css');

/* General */
:root {
    --black: #000000;
    --card-color: #1D495A;
    --charcoal: #313131;
    --dark: #1a1a1a;
    --grey: #545454;
    --light-bg: #f4f4f4;
    --light: #D9D9D9;
    --primary: #043548;
    --rackley: #5F91A4;
    --silver: #A7A7A7;
    --white: #ffffff;
}

html {
    font-size: 62.5%;
}

body{
    font-family: 'gillsansmt';
    font-weight: 400;
    font-size: 1.6rem;
    line-height: normal;
}

h1,
h2,
h3,
p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.mt-50 {
    margin-top: 5rem;
}

.mt-40 {
    margin-top: 4rem;
}
        
/* Navbar */
.navbar {
    padding: 3rem 0;
}

.bg-nav {
    background: var(--primary);
    opacity: 0.9;
}

.navbar .header-logo {
    height: auto;
    max-width: 19rem;
    width: 100%;
}

.navbar .navbar-toggler {
    border: 0.1rem solid var(--silver);
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 var(--light);
}

.navbar .navbar-toggler .navbar-toggler-icon {
    filter: invert(1);
}

.navbar .navbar-nav .nav-item {
    margin-bottom: 3rem;
}

.navbar .navbar-nav .nav-item:last-of-type {
    margin-bottom: 0;
}

.navbar .navbar-nav .nav-link {
    color: var(--white);
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0;
}

.navbar .navbar-nav .nav-link.active {
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-thickness: 0.2rem;
}

.navbar .navbar-nav .nav-item .btn.active {
    background: var(--white);
    color: var(--primary);
}

.navbar .navbar-nav .nav-item .btn.active > img {
    filter: none;
}

.navbar .navbar-nav .nav-item .btn {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--white);
    font-family: 'Rubik', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0.7rem 2.4rem;
}

.navbar .navbar-nav .nav-item .btn-primary {
    background: transparent;
}

.navbar .navbar-nav .nav-item .btn-primary > img {
    filter: invert(100%) sepia(69%) grayscale(1) brightness(100%) hue-rotate(171deg) contrast(100%);
}

.navbar .navbar-nav .nav-item .btn-primary:hover {
    background: var(--white);
    color: var(--primary);
}

.navbar .navbar-nav .nav-item .btn-primary:hover > img {
    filter: none;
}

@media screen and (min-width:992px) {
    .navbar .navbar-nav .nav-item {
        margin-bottom: 0;
        margin-right: 5.5rem;
    }
    
    .navbar .navbar-nav .nav-item:last-of-type {
        margin-right: 0;
    }
}

/* Hero */
.section-hero .img-hero {
    object-fit: cover;
    height: 30rem;
    max-width: 100%;
    width: 100%;
}

@media screen and (min-width:768px) {
    .section-hero .img-hero {
        height: 50rem;
    }
}

/* About */
.section-about {
    margin: 4rem 0 8rem;
}

.section-about .about-title {
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
    text-align: center;
}

.section-about .about-desc {
    color: var(--charcoal);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 245.833%;
}

@media screen and (min-width:768px) {
    .section-about .about-title {
        font-size: 3.2rem;
    }

    .section-about .about-desc {
        font-size: 1.8rem;
    }
}

/* Disclaimer */
.section-disclaimer {
    background: var(--primary);
    opacity: 0.9;
    padding: 9rem 0;
}

.section-disclaimer .disclaimer-link {
    color: var(--white);
    font-family: 'Rubik', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
    text-transform: capitalize;
}

/* Agreement */
.section-agreement {
    margin: 6rem 0;
}

.section-agreement .agreement-title {
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.section-agreement .agreement-desc,
.section-agreement .agreement-list > li {
    color: var(--charcoal);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 166.667%;
    text-align: justify;
}

.section-agreement .agreement-list {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .section-agreement .agreement-title {
        font-size: 3.2rem;
    }

    .section-agreement .agreement-desc,
    .section-agreement .agreement-list > li {
        font-size: 1.8rem;
    }
}

/* About-Us */
.section-about-title {
    padding: 6rem 0 3rem;
}

.section-about-title .title {
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.section-about-content {
    background: var(--light-bg);
    padding: 6rem 0 7rem;
}

.section-about-content .subtitle {
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: capitalize;
}

.section-about-content .list-group-item {
    align-items: center;
    background: transparent;
    border: none;
    display: flex;
    gap: 2.4rem;
    margin-bottom: 3rem;
    padding: 0;
}

.section-about-content .list-group-item > a {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: underline;
}

@media screen and (min-width:768px) {
    .section-about-title .title {
        font-size: 3.2rem;
    }

    .section-about-content .subtitle {
        font-size: 2.8rem;
    }
}

@media screen and (min-width:992px) {
    .section-about-content .list-group-item > a {
        font-size: 2.4rem;
    }
}

/* Contact */
.section-contact-form {
    margin: 7rem 0 6rem;
}

.section-contact-form .title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: capitalize;
}

.section-contact-form .form-control {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--grey);
    font-size: 1.6rem;
    font-weight: 400;
    padding: 1.2rem;
}

.section-contact-form textarea.form-control {
    resize: none;
}

.section-contact-form form .btn {
    border: 0.1rem solid var(--primary);
    border-radius: 0.5rem;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.2rem 0;
    text-transform: capitalize;
    width: 100%;
}

.section-contact-form form .btn-submit {
    background: var(--primary);
    color: var(--white);
}

.section-contact-form form .btn-submit:hover {
    background: transparent;
    color: var(--primary);
}

.section-contact-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(4,53,72,.25); 
}

.section-contact-details {
    margin: 6rem 0 7rem;
}

.section-contact-details .contact-media {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-contact-details .contact-media .img-icon {
    height: 4.2rem;
    max-width: 4.2rem;
    width: 100%;
}

.section-contact-details .contact-media a {
    color: var(--grey);
    font-size: 1.6rem;
    font-weight: 700;
}

.g-recaptcha > div {
    width: auto !important;
}

@media screen and (min-width:768px) {
    .section-contact-form .title {
        font-size: 3.2rem;
    }

    .section-contact-form .form-control {
        font-size: 2.4rem;
    }

    .section-contact-form form .btn {
        font-size: 2.4rem;
        width: 50%;
    }

    .section-contact-details .contact-media a {
        font-size: 1.8rem;
    }
}

@media screen and (min-width:992px) {
    .g-lg-70, .gx-lg-70 {
        --bs-gutter-x: 7rem;
    }

    .section-contact-details .contact-media a {
        font-size: 2.2rem;
    }
}

/* Login */
.section-login {
    margin: 6rem 0;
}

.section-login .title {
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: capitalize;
}

.section-login .desc {
    color: var(--charcoal);
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
}

.section-login .form-control {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--grey);
    font-size: 1.6rem;
    font-weight: 400;
    padding: 1.2rem;
}

.section-login form .btn {
    border: 0.1rem solid var(--primary);
    border-radius: 0.5rem;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.2rem 0;
    text-transform: capitalize;
    width: 80%;
}

.section-login form .btn-login {
    background: var(--primary);
    color: var(--white);
}

.section-login form .btn-login:hover {
    background: transparent;
    color: var(--primary);
}

.section-login .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(4,53,72,.25); 
}

.section-login .forget-link {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: capitalize;
}

@media screen and (min-width:768px) {
    .section-login .title {
        font-size: 3.2rem;
    }

    .section-login .desc {
        font-size: 2.4rem;
    }

    .section-login .form-control {
        font-size: 2.4rem;
    }
    
    .section-login form .btn {
        font-size: 2.4rem;
    }

    .section-login .forget-link {
        font-size: 2.4rem;
    }
}

/* Footer */
.section-footer {
    background: var(--dark);
    padding: 5rem 0 4rem;
    text-align: center;
}

.section-footer .footer-logo {
    height: auto;
    max-width: 19rem;
    width: 100%;
}

.section-footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.section-footer .footer-links > a {
    color: var(--light);
    font-family: 'Jost', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 133.333%;
    text-transform: capitalize;
}

.section-footer .footer-text {
    color: var(--silver);
    font-family: 'Rubik', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.4rem;
    letter-spacing: 0.257px;
}

@media screen and (min-width:768px) {
    .section-footer .footer-links {
        flex-direction: row;
        gap: 3.8rem;
        line-height: 88.889%;
    }
}

/* Inner Pages CSS */
.navbar .dropdown-menu li {
    position: relative;
}

.navbar .dropdown-menu {
    padding: 0;
    border: none;
}

.navbar .dropdown-menu .dropdown-item {
    color: var(--primary);
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: all 0.2s ease-in-out;
}

.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
    opacity: 0.9;
}

.section-inner-title {
    margin: 4rem 0;
}

.section-inner-title .title {
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.section-inner-title .title span {
    color: var(--rackley);
}

.section-inner-content {
    background: var(--light-bg);
    padding: 5.5rem 0 5.2rem;
}

.section-inner-content .card {
    border: 0.1rem solid var(--primary);
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
}

.section-inner-content .card .card-body {
    background: var(--card-color);
    padding: 2.2rem 1rem;
}

.section-inner-content .card-body .card-title {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0;
}

.section-inner-content .card .card-footer {
    background: var(--card-color);
    border-top-color: transparent ;
    padding: 0rem 1rem 1.5rem;
}

.section-inner-content .card-footer .card-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.section-inner-content .card-footer .btn {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    outline: none;
    padding: 0.3rem 2.5rem;
    text-transform: capitalize;
}

.section-inner-content .card-footer .btn-primary,
.section-inner-content .card-footer .btn-secondary:hover {
    background: var(--white);
    color: var(--card-color);
}

.section-inner-content .card-footer .btn-secondary,
.section-inner-content .card-footer .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

@media screen and (max-width:991.98px) {
    .dropend .dropdown-toggle::after {
        transform: rotate(90deg);
    }
}

@media screen and (min-width:768px) {
    .section-inner-title .title {
        font-size: 3.2rem;
    }
}

@media screen and (min-width: 992px) {
    .section-inner-content .card-body .card-title {
        font-size: 2rem;
    }

    .section-inner-content .card-footer .btn {
        font-size: 2rem;
    }
}

.section-edit-profile {
    padding: 4.5rem 0 6rem;
    background: var(--light-bg);
}

.section-edit-profile .title {
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: capitalize;
}

.section-edit-profile .form-control {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--grey);
    font-size: 1.6rem;
    font-weight: 400;
    padding: 1.2rem;
}

.section-edit-profile form .check-text {
    color: var(--grey);
    font-size: 1.6rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.section-edit-profile form .btn {
    border: 0.1rem solid var(--primary);
    border-radius: 0.5rem;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.2rem 0;
    text-transform: capitalize;
    width: 80%;
}

.section-edit-profile form .btn-login {
    background: var(--primary);
    color: var(--white);
}

.section-edit-profile form .btn-login:hover {
    background: transparent;
    color: var(--primary);
}

.section-edit-profile .form-control:focus,
.section-edit-profile .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(4,53,72,.25); 
}

.section-edit-profile .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

@media screen and (min-width:768px) {
    .section-edit-profile .title {
        font-size: 3.2rem;
    }

    .section-edit-profile .form-control {
        font-size: 2rem;
    }
    
    .section-edit-profile form .btn {
        font-size: 2rem;
    }

    .section-edit-profile form .check-text {
        font-size: 2rem;
    }
}





/* about-new-content start */
.about-new-content{
    padding: 8rem 0 !important;
}
.about-image-main{
    position: relative;
    background: rgba(29, 73, 90, 1);
    border-radius: 0 0 0 10px;
}
.about-new-content .about-image-sec{
    width: 100%;
    height: 500px;
}
.about-new-content .about-image-sec img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.55);
    border: 10px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    position: absolute;
    top: -30px;
    left: 30px;
}

.perry-rod-main{
    margin-left: 60px;
}
.perry-rod-main .cio{
    color: rgba(0, 0, 0, 1);
    font-size: 25px;
    font-weight: 400;
    margin-top: 20px !important;
}

.perry-rod-main p{
    color: rgba(49, 49, 49, 1);
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
    font-size: 18px;
}

.new-heading{
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    font-size: 41px;
}

.callery-sec{
    padding: 3rem 0 7rem 0;
}

.callery-sec .gallery-image-sec{
    width: 100%;
    height: 325px;
}
.callery-sec .gallery-image-sec img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .about-new-content .about-image-sec {
        height: 420px;
    }
    .perry-rod-main {
        margin-left: 0px;
    }
}

@media (max-width: 576px) {
    .about-new-content .about-image-sec {
        height: 350px !important;
    }
    .callery-sec .gallery-image-sec {
        width: 100%;
        height: 290px !important;
    }
}
/* about-new-content End */



/* Tear Sheet section start */
.tear-sheet-sec{
    background: #F4F4F4;
    padding: 30px 0 50px 0;
}
.tear-sheet-sec .tear-image-sec{
    width: 100%;
    max-height: 900px;
    border: 10px solid #1D495A;
    margin-bottom: 0;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.55);
}
.tear-sheet-sec .tear-image-sec img{
    width: 100%;
    max-height: 849px !important;
    object-fit: fill;
    border-radius: 15px;
}

.tear-sheet-sec span{
    font-size: 23px !important;
    border-bottom: 2px solid #1D495A; 
}
/* Tear Sheet section End */