/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Courgette&display=swap');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(icomoon.css);
@import url(font-awesome.min.css);
@import url(owl.carousel.min.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
     box-sizing: border-box !important;
}

.container {
    max-width: 1170px;
}

html {
     scroll-behavior: smooth;
}

body {
    color: rgb(0, 100, 150);
    font-size: 14px;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break words when necessary */
}

a {
    color: rgb(0, 100, 150);
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0;
     line-height: normal;
     color: rgb(0, 50, 100);
}

h1 {
     font-size: 18px;
}

h2 {
     font-size: 18px;
}

h3 {
     font-size: 18px;
}

h4 {
     font-size: 16px
}

h5 {
     font-size: 14px
}

h6 {
     font-size: 13px
}

*,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: rgb(0, 100, 150);
    text-decoration: none !important;
    opacity: 1
}

button:focus {
     outline: none;
}

ul,
li,
ol {
     margin: 0px;
     padding: 0px;
     list-style: none;
}

p {
     margin: 0px;
     font-weight: 400;
     font-size: 14px;
     line-height: 24px;
}

a {
    color: rgb(0, 100, 150);
    text-decoration: none;
    outline: none !important;
}

a,
.btn {
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

img {
     max-width: 100%;
     height: auto;
}

 :focus {
     outline: 0;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent !important;
    border: 2px solid rgb(0, 100, 150);
    padding: 12px 40px;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: rgb(0, 100, 150);
    margin: 0;
    padding: 0;
}




.badge {
     font-weight: 500;
}

blockquote {
     margin: 20px 0 20px;
     padding: 30px;
}

button {
     border: 0;
     margin: 0;
     padding: 0;
     cursor: pointer;
}

.full {
     float: left;
     width: 100%;
}

.full {
     width: 100%;
     float: left;
     margin: 0;
     padding: 0;
}

.titlepage {
     padding-bottom: 60px;
}

    .titlepage h2 {
        font-size: 45px;
        color: rgb(0, 100, 150);
        line-height: 10px;
        font-weight: bold;
        padding: 0;
        display: inline-block;
    }

.d_flex {
     display: flex;
     flex-wrap: wrap;
}

.read_more {
    font-size: 17px;
    text-transform: uppercase;
    transition: ease-in all 0.5s;
    font-weight: bold;
    color: rgb(0, 100, 150);
    z-index: 999;
    position: relative;
}

.link_btn {
     display: flex;
     align-items: center;
}

.read_more:before {
    content: "";
    width: 0px;
    height: 1px;
    border: rgb(0, 100, 150) solid 1px;
    transition: all 0.2s linear;
    display: block;
    margin-bottom: -16px;
    position: relative;
    z-index: -1;
    left: 104px;
    opacity: 0;
    transition: ease-in all 0.5s;
}

.read_more:hover:before {
     width: 140px;
     opacity: 1;
     transition: ease-in all 0.5s;
}

.read_more:hover {
    color: rgb(0, 100, 150);
    transition: ease-in all 0.5s;
}

.read_more::before::after {
     width: 100%;
     transition: ease-in all 0.5s;
}

.text_align_left {
     text-align: left;
}

.text_align_right {
     text-align: right;
}

.text_align_center {
     text-align: center;
}

.img_responsive {
     max-width: 100%;
}


/**-- heading section --**/


/*---------------------------- preloader area ----------------------------*/

.loader_bg {
    position: fixed;
    z-index: 9999999;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
}

.loader {
     height: 100%;
     width: 100%;
     position: absolute;
     left: 0;
     top: 0;
     display: flex;
     justify-content: center;
     align-items: center;
}

.loader img {
     width: 280px;
}


/*-- header --*/





.nav-link {
    color: rgb(0, 100, 150) !important;
    padding: 0px 10px;
    font-size: 14px;
    line-height: 35px;
    font-weight: 500;
    border-radius: 5px;
}

    .nav-link:focus,
    .nav-link:active,
    .nav-link:hover {
        color: rgb(0, 100, 150) !important;
        background: rgb(255, 180, 200) !important;
    }


.di_no {
     display: none;
}

ul.email {
    padding-top: 5px;
    display: flex;
    align-items: first baseline;
    justify-content: flex-end;
    flex-wrap: wrap;
}

ul.email li {
     padding: 0px 30px;
}

ul.email li a {
    font-size: 20px;
    color: rgb(0, 100, 150);
}




/** end header **/


/** banner section **/

.full_bg {
    background: rgb(0, 100, 150);
}

.slider_main {
     padding-top: 6%;
}

.relative {
     left: 0;
     right: 0;
     text-align: left;
     position: inherit;
}

.carousel-indicators {
     bottom: 0;
}

.carousel-control.right,
.carousel-control.left {
     background-image: none;
}

.carousel-item {
     min-height: 350px;
     height: 100%;
     width: 100%;
}

.board {
     max-width: 474px;
     float: right;
     text-align: left;
     width: 100%;
}

.relative h3 {
     padding-top: 60px;
     font-size: 70px;
     line-height: 85px;
     color: rgb(0, 100, 150);
     font-weight: bold;
     padding-bottom: 60px;
}

.carousel .icon-container {
     display: inline-block;
     font-size: 25px;
     line-height: 25px;
     padding: 1em;
     text-align: center;
     border-radius: 50%;
}

.slider_main .carousel-indicators {
     display: none;
}

#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next {
    width: 66px;
    height: 66px;
    background-color: rgb(0, 100, 150);
    color: rgb(0, 100, 150);
    font-size: 15px;
    opacity: 1;
    border-radius: 50px;
    top: 100%;
}

#carouselExampleIndicators .carousel-control-prev {
     left: 4%;
}

#carouselExampleIndicators .carousel-control-next {
     right: inherit;
     left: 10%;
}

    #carouselExampleIndicators .carousel-control-next:focus,
    #carouselExampleIndicators .carousel-control-next:hover,
    #carouselExampleIndicators .carousel-control-prev:focus,
    #carouselExampleIndicators .carousel-control-prev:hover {
        background-color: rgb(0, 100, 150);
        color: rgb(0, 100, 150);
    }

.banner_img {
     padding-right: 50px;
}

.banner_img figure {
     margin: 0;
}


/** end banner section **/


/** our class **/

.class {
     padding: 140px 0px 60px 0px;
}

    .class .titlepage p {
        font-size: 17px;
        padding-top: 15px;
        color: rgb(0, 100, 150);
    }

.class_box {
    border-radius: 10px;
    background: rgb(0, 100, 150);
    margin-bottom: 58px;
    transition: ease-in all 0.5s;
    padding: 40px 50px 75px 50px;
}

    .class_box h3 {
        color: rgb(0, 100, 150);
        font-size: 25px;
        transition: ease-in all 0.5s;
        font-weight: bold;
        line-height: 18px;
        padding: 30px 0;
    }

    .class_box p {
        color: rgb(0, 100, 150);
        font-size: 16px;
        line-height: 28px;
        transition: ease-in all 0.5s;
    }

.blue {
    background: rgb(0, 100, 150);
}

.margi_bottom {
     margin-bottom: 30px;
}


/** end our class **/


/** about section **/

.about {
     background: url(../images/about_bg.jpg);
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
     background-attachment: fixed;
     padding-top: 90px;
}

.about .titlepage {
     padding-bottom: 0;
     max-width: 554px;
     float: right;
}

    .about .titlepage h2 {
        padding-bottom: 30px;
        color: rgb(0, 100, 150);
    }

    .about .titlepage p {
        font-weight: 400;
        font-size: 17px;
        line-height: 30px;
        color: rgb(0, 100, 150);
        padding-bottom: 29px;
    }

.about_img figure {
     margin: 0;
}

.about_img figure img {
     width: 100%;
     margin-bottom: -11px;
}

.about .read_more {
    color: rgb(0, 100, 150);
    background: rgb(0, 100, 150);
}

    .about .read_more:hover {
        color: rgb(0, 100, 150);
        background: rgb(0, 100, 150);
    }


/** end about section **/


/** skating **/

.skating {
    background: rgb(0, 100, 150);
    padding: 90px 30px 90px 30px;
}

    .skating .titlepage p {
        padding-top: 15px !important;
        line-height: 30px;
        font-size: 17px;
        color: rgb(0, 100, 150);
    }

.skating-box figure {
     margin: 0;
}

.skating-box figure img {
     max-width: 100%;
     margin-bottom: 35px;
}

.skating .read_more::before {
     left: 89px;
}


/** end skating **/


/** shop section **/

.shop {
    background: rgb(0, 100, 150);
}

.shop .titlepage {
     padding-bottom: 0;
     max-width: 458px;
     float: left;
}

    .shop .titlepage h2 {
        padding-bottom: 30px;
        color: rgb(0, 100, 150);
    }

    .shop .titlepage p {
        font-weight: 400;
        font-size: 17px;
        line-height: 30px;
        color: rgb(0, 100, 150);
        padding-bottom: 29px;
    }

.shop_img {
     padding-left: 40px;
}

.shop_img figure {
     margin: 0;
}

.shop .titlepage .read_more::before {
     left: 89px;
}


/** end shop section **/


/** testimonial **/

.testimonial {
    background: rgb(0, 100, 150);
    padding: 90px 0;
    margin-top: 90px;
}

    .testimonial .titlepage h2 {
        color: rgb(0, 100, 150);
    }

.carousel-indicators {
     display: none;
}

#myCarousel a.carousel-control-next,
#myCarousel a.carousel-control-prev {
    background: rgb(0, 100, 150);
    width: 72px;
    height: 72px;
    top: 112%;
    opacity: 1;
    font-size: 33px;
    border-radius: 40px;
    color: rgb(0, 100, 150);
}

#myCarousel a.carousel-control-prev {
     left: 44%;
}

#myCarousel a.carousel-control-next {
     right: 44%;
}

    #myCarousel a.carousel-control-next:focus,
    #myCarousel a.carousel-control-next:hover,
    #myCarousel a.carousel-control-prev:focus,
    #myCarousel a.carousel-control-prev:hover {
        color: rgb(0, 100, 150);
        background: rgb(0, 100, 150);
        opacity: 1;
    }

.relative {
     position: inherit;
     bottom: 0;
     padding: 0;
}

.testimonial .carousel-item {
     padding-top: 53px;
}

.test_box {
    background: rgb(0, 100, 150);
    border-radius: 20px;
    padding: 0 20px 40px 20px;
}

    .test_box span {
        width: 100px;
        box-shadow: 0 0 38px rgba(14, 14, 13, 0.10);
        height: 100px;
        background: rgb(0, 100, 150);
        border-radius: 50px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        margin-top: -49px;
        display: inline-grid;
    }

.test_box span img {
     width: 38px;
     height: 52px;
     padding: 0;
}

    .test_box h4 {
        color: rgb(0, 100, 150);
        font-size: 24px;
        line-height: 25px;
        font-weight: bold;
        margin-top: 38px;
    }

.test_box img {
     width: 20px;
     margin: 0 auto;
     padding: 15px 0;
}

    .test_box p {
        color: rgb(0, 100, 150);
        font-size: 17px;
    }

.white_bg {
    background: rgb(0, 100, 150);
    padding: 0 40px 60px 40px;
    margin: 0 20px;
    box-shadow: 0 0 38px rgba(14, 14, 13, 0.27);
}

.white_bg span {
     width: 120px;
     height: 120px;
     border-radius: 60px;
}

.white_bg span img {
     width: 45px;
     height: 52px;
     padding: 0;
}

    .white_bg h4 {
        font-size: 25px;
        color: rgb(0, 100, 150);
    }

.white_bg img {
     width: 41px;
     margin: 0 auto;
     padding: 25px 0;
}

    .white_bg p {
        color: rgb(0, 100, 150);
    }


/** end testimonial **/


/** footer **/

.footer {
    padding-top: 30px;
    background: white;
    text-align: center;
}

.border_left {
    border-left: rgb(0, 100, 150) solid 1px;
    padding-left: 40px;
}

.infoma {
    padding-top: 25px;
    display: block;
}

    .infoma h3 {
        text-align: left;
        font-weight: bold;
        font-size: 30px;
        line-height: 24px;
        color: rgb(0, 100, 150);
        padding-left: 15px; /* Add padding to the left of the heading */
        padding-bottom: 15px; /* Add padding to the left of the heading */
    }


    .infoma ul li a {
        text-align: center;
        font-weight: bold;
        color: rgb(0, 100, 150);
        padding: 10px;
        display: block;
        border: 2px solid rgb(0, 100, 150);
        border-radius: 10px; /* Add curved borders */
    }

.infoma ul li a:hover {
  background-color: rgb(255, 180, 200);
}




.infoma ul li img {
     max-width: 84px;
}

ul.conta {
     padding-top: 12px;
}

    ul.conta li {
        color: rgb(0, 100, 150);
        text-align: left;
        padding-bottom: 18px;
        font-size: 17px;
        line-height: 18px;
        display: flex;
        align-items: center;
    }

ul.conta li:last-child {
     padding-right: 0;
}

        ul.conta li i {
            padding-right: 15px;
            text-align: center;
            font-size: 18px;
            color: rgb(0, 100, 150);
        }

        ul.conta li a {
            color: rgb(0, 100, 150);
        }


/*newsletter*/

.form_subscri {
     margin-top: 10px;
}

.newsl {
    margin-bottom: 20px;
    width: 100%;
    height: 48px;
    background: rgb(0, 100, 150);
    color: rgb(0, 100, 150);
    font-size: 16px;
    font-weight: normal;
    border: inherit;
    box-shadow: 0 0 5px 0px rgb(0, 100, 150);
    padding: 0 15px;
}

.subsci_btn {
    font-size: 17px;
    transition: ease-in all 0.5s;
    background-color: rgb(0, 100, 150);
    text-transform: uppercase;
    color: rgb(0, 100, 150);
    max-width: 220px;
    width: 100%;
    display: block;
    font-weight: 500;
    height: 48px;
    float: right;
    line-height: 48px;
    border-radius: 10px;
}

    .subsci_btn:hover {
        background-color: rgb(0, 100, 150);
        transition: ease-in all 0.5s;
        color: rgb(0, 100, 150);
    }


/* end newsletter*/

ul.fullink li {
     float: left;
     padding: 0px 18px;
}

    ul.fullink li a {
        color: rgb(0, 100, 150);
        font-size: 14px;
    }

        ul.fullink li a:hover {
            color: rgb(0, 100, 150);
        }

ul.fullink li:nth-child(1) {
     padding-left: 0;
}

ul.fullink li:nth-child(5) {
     padding-right: 0;
}

ul.social_icon {
     float: left;
     padding-top: 0px;
}

ul.social_icon li {
     display: inline-block;
     margin: 0 1px;
}

    ul.social_icon li a {
        background: rgb(0, 100, 150);
        width: 33px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgb(0, 100, 150);
        border-radius: 30px;
    }

ul.social_icon li a i {
     font-size: 19px;
     transition: ease-in all 0.5s;
}

        ul.social_icon li a:hover {
            color: rgb(0, 100, 150);
            background: rgb(0, 100, 150);
            transition: ease-in all 0.5s;
        }

.copyright {
    margin-top: 90px;
    padding-bottom: 25px;
    background: rgb(0, 100, 150)
}

    .copyright p {
        color: rgb(255, 200, 14);
        font-size: 17 px;
        line-height: 18px;
        text-align: center;
        padding-top: 25px;
        font-weight: 400;
        font-weight: normal;
    }

    .copyright a {
        color: rgb(255, 200, 14);
    }

        .copyright a:hover {
            color: rgb(255, 200, 14);
        }


/** end footer **/


/**  inner page css **/

.inner_page .header {
    box-shadow: 0px 5px 0 rgb(50, 150, 200);
    margin-bottom: 10px;
    position: inherit;
}

.inner_page .about {
     margin-top: 80px;
}

.inner_page .class {
     padding-top: 10px;
     padding-bottom: 10px;
}


/** contact **/

.contact {
    background: rgb(0, 100, 150);
    padding-bottom: 90px;
    padding-top: 88px;
}

/* Add inner borders to the table cells */
table-striped, table-bordered, th, td {
    border: 5px solid black;
}

.main_form {
     width: 100%;
}

 Dark row 
.table-striped tbody tr:nth-child(odd) .main_form .contactus,
.table-striped tbody tr:nth-child(odd) .main_form .contactus:not(:focus) {
    background-color: rgb(180, 230, 250);
}


/* Style for odd rows */
.odd-row {
    background-color: rgb(180, 230, 250) !important;
}

/* Style for even rows */
.even-row {
    background-color: rgb(255, 255, 255) !important;
}

.error_background {
    background-color: rgb(255, 200, 200) !important;
}

.main_form .contactus,
.main_form .contactus:focus {
    margin-bottom: 0;
    width: 100%;
    color: rgb(0, 0, 255);
    font-size: 20px;
    font-weight: bold; /* Add this line to make the font bold */
    border-radius: 10px;
    border: inherit;
    box-shadow: 0px 0px 3px 0 rgb(0, 100, 150);
    outline: none; /* Remove the default focus outline */
}

/* Highlight focused cell */
.main_form .contactus:focus {
    background-color: rgba(230, 215, 200) !important; /* Add your desired temporary background color */
}

/* Dark row */
.table-striped tbody tr:nth-child(odd) {
    background-color: rgb(205, 235, 245);
}

/* Light row */
.table-striped tbody tr:nth-child(even) {
    background-color: rgb(240, 245, 255); /* Set the color for even rows */
}

.main_form .contactus {
    margin-bottom: 0;
    width: 100%;
    color: rgb(0, 100, 150);
    font-size: 20px;
    font-weight: normal;
    border-radius: 4px;
    border: inherit;
    box-shadow: 0px 0px 5px 0 rgb(0, 100, 150);
    outline: none; /* Remove the default focus outline */
}


.main_form .textarea {
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
    background: rgb(235, 245, 255);
    color: rgb(0, 100, 250);
    font-size: 16px;
    font-weight: bold;
    padding: 5px 5px 5px 10px;
    border-radius: 5px;
    border: inherit;
    box-shadow: 0px 0px 0px 2px rgb(0, 100, 150);
    line-height: 1.5; /* You can adjust this value to increase or decrease the spacing */
}


.main_form .send_btn {
    font-size: 18px;
    transition: ease-in all 0.5s;
    background-color: rgb(0, 100, 150);
    text-transform: uppercase;
    color: rgb(0, 100, 150);
    max-width: 193px;
    width: 100%;
    display: block;
    margin-top: 10px !important;
    font-weight: 600;
    height: 53px;
    border-radius: 10px;
    padding: 13px 0;
}

    .main_form .send_btn:hover {
        background: rgb(0, 100, 150);
        color: rgb(0, 100, 150);
        transition: ease-in all 0.5s;
    }

#request *::placeholder {
    color: rgb(0, 100, 150);
    opacity: 1;
}

#GeneratedFindings {
    font-size: 18px;
    color: rgb(255, 100, 120);
}

/* styles.css */

.ErrorText {
    color: rgb(200, 0, 50);
    font-weight: bold;
}

.select-1 {
    color: rgb(0, 50, 100);
    background-color: transparent;
    background: rgb(200, 200, 200);
    font-weight: bold;
    background-image: none;
    border-radius: 15px;
    box-shadow: 0 0 0 3px rgb(100, 150, 175);
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break words when necessary */
    text-align: center;
}

    .select-1:focus {
        background-color: rgba(230, 215, 200) !important; /* Add your desired temporary background color */
        color: rgb(0, 100, 150);
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0 0 0 2px rgb(100, 150, 175);
        white-space: normal; /* Allow text to wrap */
        word-wrap: break-word; /* Break words when necessary */
        text-align: center;
    }
    /* Add styles for list options */
    .select-1 option {
        color: rgb(0, 100, 150);
        font-weight: bold;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
    }

        .select-1 option:hover {
            background-color: rgba(230, 215, 200) !important; /* Add your desired temporary background color on hover */
        }

        /* Additional styles for selected option */
        .select-1 option:checked {
            background-color: rgba(230, 215, 200) !important; /* Add your desired background color for the selected option */
            color: rgb(0, 100, 150);
            font-weight: bold;
        }

/* Basic styling for date input */
.date-entry {
    background-color: rgba(230, 215, 200) !important; /* Add your desired temporary background color */
    color: rgb(0, 100, 150);
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 0 0 2px rgb(100, 150, 175);
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break words when necessary */
    text-align: left;
}

    /* Styling for date input on focus */
    .date-entry:focus {
        box-shadow: 0 0 0 2px rgb(100, 150, 175);
        color: rgb(0, 100, 150);
        background-color: transparent;
        font-weight: bold;
        white-space: normal;
        word-wrap: break-word;
        text-align: left;
    }

/* Highlight the entire row when any cell receives focus */
.table tbody tr:focus-within {
    background-color: rgb(200, 240, 220) !important;
}


.image-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px; /* Add padding to the top and bottom */
}

.image-content {
    display: flex;
    flex-direction: row; /* Align items horizontally */
    justify-content: flex-start; /* Align content to the left */
}

.image-item {
    width: 25%; /* Make the images fill the container */
    height: auto;
    border: 2px solid rgb(255, 255, 255) !important;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 20px; /* Add margin to create space between items */
}


.image-text {
    text-align: left;
    color: rgb(0, 50, 130);
    font-weight: bold; /* Make the text bold */
    margin-top: 10px;
}


.toast-info {
    background-color: rgb(255, 200, 0) !important;
    color: rgb(0, 50, 130) !important;
    font-weight: bold !important;
    opacity: 1 !important;
    font-size: 15px;
}


