@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");

/* font-family: 'Poppins',
sans-serif;
font-family: 'Roboto Slab',
serif; */


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* ------Scrollbar CSS Start----- */

/* Firefox */

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background: var(--white);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 5px;
   border: 0px;
}

/* ------Scrollbar CSS End----- */



/*--- Common Style Start---*/

:root {
    --black: #101010;
    --dark: #101010;
    --white: #fff;
    --blue: #4777FB;
    --menu: #000000;
    --light-gray: #878787;
    --light-white: #F7F8FC;
    --body-font: 'Poppins',
        sans-serif;
    --heading: 'Roboto Slab',
        serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 23px;
    color: var(--black);
    font-family: var(--body-font);
}
p {
    padding: 0;
    font-weight: 400;
}
p:last-child {
    margin-bottom: 0;
}

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
   -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-black);
}

figure {
    margin: 0;
    padding: 0;
   display: block;
}

img {
    width: 100%;
    height: 100%;
}

.heading h2, .heading h1{
    color: #1e3f6a;
    font-size: 40px;
    line-height: 46px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

h3 {
    font-size: 22px;
}


h4 {

    font-size: 20px;

}



h5 {

    font-size: 18px;

}



h6 {

    font-size: 16px;

}



ul {

    padding-left: 0px;

    margin-bottom: 0px;

}



/*--- Common Style End---*/

/* ==========loader common css========== */
.loader-off.loaderWrap {
    opacity: 0;
    visibility: hidden;
}
.loader img {
    width: 50px;
}

.loaderWrap {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 300ms ease-in-out; 
}
.loader{
    animation: loader 2s infinite linear;
}
/* ============Loader Two CSS Start=============== */

@keyframes loader {
    0% {
      transform: rotate(-45deg);
    }
    50% {
      transform: rotate(-135deg);
    }
    100% {
      transform: rotate(-225deg);
    }
  }


/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control::placeholder {
    color: var(--color-gray);
}

.sec-space {
    padding: 60px 0;
}

.sec-space-bottom {
    padding: 0 0 60px;
}

.sec-space-top {
    padding: 60px 0 0;
}

/*- Bootstrap Form End -*/

/*-- Button Start --*/

.btn {
    border-radius: 5px;
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px;
    border: 1px solid transparent;
    text-transform: capitalize;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

buton:focus,
.btn:focus,
buton:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn-solid {
    background: var(--black);
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 1px solid transparent;
    transition: all .4s;
}

.btn-solid:hover, .btn-solid:focus {
    background: var(--blue);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    z-index: 9;
    position: relative;
    height: auto;
    line-height: normal;
    transition: all .4s;
    padding: 0px;
    font-weight: 600;
}
.btn-outline:before {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--black);
    height: 1px;
    width: 100%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.btn-outline:hover::before {
    border: 1px solid var(--black);
    border-top: 0px;
    height: 1px;
    width: calc(100% + 15px);
    transition: all .4s;
}

/*-- Button End --*/

/*--- TITLE Start---*/

.section-title h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 0px;
    font-family: var(--heading);
}

.section-title h6 {
    font-size: 14px;
    color: var(--green-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 30px;
}

/*--- TITLE End---*/

/*----   HEADER  START  ----*/

.main-header {
    margin: 0;
    padding: 10px 0;
    background: #1e3f6a;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}
.navbar {
    padding: 0;
    justify-content: space-between;
}

.navbar-brand {
    padding: 0px;
}

.navbar-brand img {
    height:100px;
    width: auto;
}

.navbar-collapse ul li {
    margin-right: 40px;
    position: relative;
}

.navbar-collapse ul li:last-child {
    margin-right: 0px;
}

.navbar-collapse ul li>a
{
    color:#fff;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
}
.navbar-collapse ul li:hover > a,
.navbar-collapse ul li.current_page_item > a{
    color:#e6c43f;
}

.navbar-collapse ul li>a:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    content: '';
    border-radius: 50%;
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
}

.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item::before {
    left: 95%;
    background: #3f74f573;
}

.headrgt .bd_btn {
    border-color: #e1c143;
    background: #e1c143;
    color: #1e3f6a;
}

.navbar-text {
    padding: 13px 0;
    margin-left: 10px;
}
.navbar-text ul {
    list-style: none;
    display: flex;
    align-items: center;
}
.navbar-text ul li {
    margin-right: 9px;
    position: relative;
    z-index: 9;
}

.navbar-text ul li a {
    display: inline-block;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
}
.navbar-text ul li:hover a img {
    filter: brightness(0) invert(0);
    transition: all .3s;
}
.navbar-text ul li:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    height: 0px;
    width: 0px;
    border-radius: 50%;
    content: '';
    z-index: -1;
    transition: all .4s;
}
.navbar-text ul li:hover::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    height: 36px;
    width: 36px;
    border-radius: 50%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:last-child {
    margin-right: 0px;
}

.navbar-text ul li a img {
    width: auto;
    height: 14px;
}

.navbar-collapse ul li>ul {
    position: absolute;
    min-width: 200px;
    z-index: 99;
    background: #1e3f6a;
    top: 100%;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s;
    border-radius: 0;
    border: 0;
}

.navbar-collapse ul li.menu-item-has-children:hover>ul.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    display: block;
    transition: all .4s;
}

.navbar-collapse ul li>ul>li>a {
    display: inline-block;
    padding: 5px 10px;
}

/* MEGA MENU */

.main-header .mega-menu-wrap li.mega-mobile-parent-nav-menu-item {
    display: none;
}

.main-header #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link{
    color: #ffffff;
}
.main-header #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link{
    position: relative;
}
.main-header #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
}
/*---   HEADER END   ---*/

/*---   BANNER START   ---*/

.bannersec {
    position: relative;
    padding: 230px 0 200px 0;
    background-size: cover !important;
    min-height: 840px;
}

.bannersec img {
    /* transform: scale(1.2); */
}

.banner-home .owl-nav button {
    background: #1e3e6a !important;
    opacity: 0.2;
    color: #fff !important;
    width: 50px;
    height: 50px;
    font-size: 25px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -ms-transition: 0.8s;
    -moz-transition: 0.8s;
}
.banner-home .owl-nav button:hover{
    opacity: 1;
}
.banner-home .owl-nav button:focus{
    outline: none;
}

.banner-home .owl-nav button+button {
    margin-left: 5px;
}

.banner-home .owl-nav button.owl-prev {
    left: 15px;
}

.banner-home .owl-nav button.owl-next {
    right: 10px;
}


.bannerarea {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.bannerinfo {
    /*flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
     background: #6ed1f7; */
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
}
.bd_banner {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    padding-top: 45%;
}
.bd_banner:after {
/*    content: "";*/
    margin: 0;
    padding: 0;
    width: 70%;
    height: 90%;
    background: #ffffff7a;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.bd_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
/*    padding: 40px 0 0 40px;*/
}

.bannertxt {
    /* background: #ffffffc9;
    padding: 20px; */
    max-width:60%;
}
.bannertxt h2, .bannertxt h1, .bannertxt h3, .bannertxt h4 {
    color: #FFE900;
    font-size: 58px;
    line-height: 60px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 800;
}
.bannertxt h5 {
    font-size: 50px;
    line-height: 56px;
    color: #ffe900;
    font-weight: 200;
}
.bannertxt p{
    font-size: 22px;
    line-height: 30px;
    color: #fff;
}

.banner-home{
    position: relative;
/*    background: linear-gradient( 135deg, #ffffff 0%, #ffffff 15%, #63cdf6 100% );*/
background: #63cdf6;
/*    padding: 60px 0;*/
}

.banner-content-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.banner-content {
    width: fit-content;
    max-width: 570px;
    margin: auto auto;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.banner-content h1,
.banner-content h2,
.banner-content h3 {
    font-family: var(--heading);
    font-size: 52px;
    line-height: 62px;
    margin-bottom: 15px;
}

.banner-content p {
    max-width: 470px;
    margin: 0 auto;
}

/*---   BANNER END   ---*/


/*--- About Home Start ---*/

.query-home {
    position: relative;
}
.query-text {
    color: var(--black);
    z-index: 9;
    padding:0 100px;
        font-size: 16px;
    line-height: 28px;
}
/*--- About Home End ---*/

.bluebg{
    background: #63cdf6;
}
.bggray{
    background: #c0c8df;
}
.bgwhite{
    background: #fff;
}

.navbar-collapse ul li>ul.dropdown-menu li {

    margin: 0;

}



.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item {

    padding: 10px;

}





/*--- Article Start ---*/

/* #blog_slider .owl-stage-outer {

    padding: 20px;

} */

.article-wrap {

    box-shadow: 0px 3px 6px #0000001C;

    padding: 15px;

}



.article-content p.article-date {

    color: var(--light-gray);

    font-size: 12px;

    font-style: italic;

    margin-bottom: 2px;

    padding: 0px;

}



.article-content h6 {

    color: var(--black);

    font-size: 14px;

    line-height: 20px;

    font-weight: 600;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}



.article-content {

    padding: 15px 5px 10px;

}



.article-image {

    height: 250px;

}



.article-image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.article-content .btn {

    margin-top: 0px;

}





.blogslider .owl-nav {

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    transform: translateY(-50%);

    display: flex;

    justify-content: space-between;

}



.blogslider .owl-nav button {

    width: 30px;

    height: 30px;

    background: #3f74f5 !important;

    color: #fff !important;

    outline: none;

}

/*--- Article End ---*/

.consec {
    background: #dce5ff;
}
.mapsec iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    object-fit: cover;
}

.form-content h2 {
    letter-spacing: 0;
    margin-bottom: 0;
        color: #ffffff;
}
.form-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
        color: #ffffff;
}
.form-wrap .btn {
    color: #fff;
    background-color: #3671ef;
}

.form-wrap .btn:hover {
    background-color: #1c1c1c;
}

.form-wrap .row {
    margin: 0 -8px -16px;
}
.form-wrap .row [class*="col-"] {
    padding: 0 8px;
    margin-bottom: 16px;
}
.form-wrap .form-control {
    background-color: rgb(255 255 255 / 60%);
    border-color: #95aae9;
    padding-left: 24px;
}
.form-wrap .form-control::placeholder {
    color: #1c1c1c;
}
.form-wrap textarea.form-control {
    height: 140px;
    padding-top: 20px;
}


/*--  Footer Start  --*/

.footer-main {
    background:#1e3f6a;
}
.footer-link-wrapper {
    padding: 50px 0 0;
}
.ft-logo a {
    background: #1e3f6a;
    padding:10px;
}

.ft-logo a img {
    width: auto;
    height:80px;
}
.ft-logo p {
    font-size: 13px;
    line-height: 20px;
    margin-top: 14px;
    color: #ffffff;
}

.quick-link-box h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 10px;
    color: #e1c245;
}
.quick-link-box p{
    font-size: 13px;
    line-height: 20px;
}
.contact-book .headsocial {
    margin-top: 30px;
}

.quick-link-box ul {
    list-style: none;
}

.quick-link-box ul li {  
    font-size: 12px;
}
.quick-link-box ul li+li{
    margin-top: 5px;
}

.quick-link-box ul li a {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.ft-social {
    margin-top: 15px;
}

.footer-main .row [class*="col-"] {
    position: relative;
}

.footer-main .row [class*="col-"]:first-child:before {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background: #CACBD2;
    height: 100%;
    width: 1px;
}

.ft-social ul {
    list-style: none;
}

.ft-social ul li {
    margin-right: 12px;
    position: relative;
    z-index: 9;
}

.ft-social ul li:last-child {
    margin-right: 0px;
}

.ft-social ul li a {
    height: 28px;
    width: 28px;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    transition: all .4s;
    -webkit-transition: all .4s;
   -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a img {
    height: 16px;
}

.ft-social ul li a:before {
    position: absolute;
    background: var(--blue);
    width: 0px;
    height: 0px;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a:hover::before {
    width: 32px;
    height: 32px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.copy-right {
    background: #0d2748;
    padding: 15px 0;
    margin-top: 30px;
}

.copy-right p {
    line-height: 13px;
    font-size: 13px;
    color:#fff;
    font-weight: 500;
}

.copy-right p a {
    color: #fff;
}

.contact-book ul li {
    position: relative;    
    color: var(--dark);
    font-weight: 500;
}

.contact-book ul li a i {
    color: #e1c143;
    position: absolute;
    top: 6px;
    left: 0;
}

.contact-book ul li a {
    text-transform: none;
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    line-height: 26px;
}

/*--  Footer End  --*/

.aboutimg {
    height: 100%;
}

.aboutimg img {
    object-fit: cover;
}

.contact_form1 form fieldset {
    max-width: 100%;
}
.inner_con .sectwocon ul li {
    font-weight: 400;
}

.inner_con .sectwocon ul li+li {
    margin-top: 20px;
}
.inner_con td {
    border: 1px solid #1c1c1c;
    padding: 20px;
    font-size: 15px;
    line-height: 20px;
}
.pdfdownload a {
    background: #ffffff;
    display: block;
    padding: 15px;
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.pdfdownload li+li {
    margin-top: 15px;
}

.pdfdownload a i {
    margin-right: 10px;
    color: #126f93;
}

/* frames product */
.framestab .tab-content {
    border: 1px solid #1e3f6a;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
}
.framestab .tab-content .tab-pane {
  background: white;
}
.framestab .tab-content img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
.framestab .nav-tabs {
    border: 0;
    display: flex;
    justify-content: center;
}

.framestab .nav-tabs .nav-item {
    margin: 0;
}

.framestab .nav-tabs .nav-item .nav-link {
    border: 0;
    background: transparent;
    padding: 0;
    width: 36px;
}

.framestab .nav-tabs .nav-item+.nav-item {
    margin-left: 10px;
}
.framestab .nav-tabs .nav-item .nav-link:focus {
    outline: none;
}
/* accordion */

.accordion button.btn i {
    position: absolute;
    right: 10px;
    top: 14px;
    font: normal normal normal 14px / 1 FontAwesome;
}

.accordion button.btn {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    padding: 10px 30px 10px 20px;
    border-radius: 10px;
    white-space: normal;
    position: relative;
    color: #ffffff;
    background: #1e3f6a;
    margin: 0;
}
.accordion button.btn:hover, .accordion button.btn:focus{
    text-decoration: none;
}

.accordion .card {
    border-radius: 10px !important;
    background: transparent;
    border: 1px solid #cfcfcf !important;
}

.accordion .card-header {
    background: transparent;
}
.accordion .card .card-body {
    border-radius: 0px 0px 10px 10px;
}
.accordion button.btn.arrow {

}
.accordion .card .card-body p, .accordion .card .card-body ul li{
    font-size: 16px; line-height: 22px;
}

.pageproinfo {
    display: block;
    color: #000;
    border: 1px solid #000;
    padding: 15px;
    border-radius: 10px;
    position: relative;
}

.pageproinfo img {
    height: 200px;
    object-fit: contain;
}
.pageproinfo .polink {
    background: #e1c143;
    color: #1e3f6a;
    width: 35px;
    display: block;
    height: 35px;
    border-radius: 50px;
    text-align: center;
    line-height: 37px;
    position: absolute;
    bottom: 40px;
    right: 10px;
    transition: 0.5s;
}
.pageproinfo:hover .polink{
    width: 45px;
}
.pageproinfo p {
    margin-bottom: 0;
}

/*  */

.magnifinfo {
    display: flex;
    align-items: center;
}

.magnifinfo img {
    width: 280px;
}

.magnifinfo .magnifinfocon {
    flex: 1;
    padding: 0 0 0 30px;
}

.magnificationsec .nav-tabs li.nav-item {
    margin: 0;
}

.magnificationsec .nav-tabs {
    border: 0;
    margin-bottom: 20px;
}

.magnificationsec .nav-tabs li.nav-item .nav-link {
    background-color: #fff;
    border-radius: 50px;
    border: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    padding: 10px 25px;
}

.magnificationsec .nav-tabs li.nav-item + li.nav-item {
    margin-left: 10px;
}

.magnificationsec .tab-pane {
    background: #FFF;
    padding: 20px;
    border-radius: 20px;
}

.magnificationsec .nav-tabs li.nav-item .nav-link.active {
    background: #1e3f6a;
    color: #FFF;
}

.fullvdoimg{
    position: relative;
    padding-top: 55%;
}
.fullvdoimg iframe{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.beninfo {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}

.bencon p {
    margin-bottom: 5px;
}

.bencon h4 {
    font-size: 26px;
    line-height: 30px;
}

.boxsec {
    background: #fff;
    height: 100%;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 10px #1e3f6a12;
}

.boxsec h4 {
    font-weight: 600;
    color: #1e3f6a;
}

.mytable {
  overflow-y: scroll;
}