@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
}
body{
  min-height: 100vh;
}
nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    height: 63px;
    background:#096baf;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}
.btn-mod.btn-with-icon:hover{
    background-color: #096baf;
}

nav .navbar{
  height: 100%;
  max-width: 1315px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 5px;
}
.navbar .logo a{
  font-size: 30px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 30px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 16px 14px;
}
nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #ffffff;
    font-size: 17px;
}
.links li:hover .htmlcss-arrow,.links li:hover .htmlnew-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.logo img {
    width: 250px;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}

/*---------------home section----------------*/
#service{
    padding: 60px 0px;
}
.page-section, .small-section, .bg-image {
    width: 100%;
    display: block;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 85px;
}
.mt-n40 {
    margin-top: -40px !important;
}
.home-content {
    width: 100%;
    position: relative;
    text-align: center;
}
.hs-title-9 {
    margin-top: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    /* letter-spacing: -0.037em; */
    color: #005da0;
}
.hs-descr {
    font-size: 27px;
    font-weight: 400;
    line-height: 1.353;
    letter-spacing: -0.0075em;
}
.composition-8-image {
    position: relative;
    width: 56.7936%;
    margin-left: auto;
    overflow: hidden;
    /* border-radius: 30px; */
    isolation: isolate;
    transform: translateZ(0);
    top: 41px;
    left: -155px;
}
.btn-mod {
    padding: 20px 40px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: 0;
}

.btn-mod.btn-hover-anim {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}
.btn-mod.btn-color.btn-hover-anim:before {
    background:#9c6cfe;
}

.btn-mod.btn-hover-anim:before {
    content: "";
    display: block;
    width: 100%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(.7) translateY(55%);
    background: #9c6cfe;
    border-radius: 100%;
    transition: all 0.25s cubic-bezier(0,0,.31,.99);
}
.composition-8-decoration-2 {
    position: absolute;
    bottom: -9%;
    left: 18px;
}
.mt-n90 {
    margin-top: -90px !important;
}
.composition-8-decoration-1 {
    position: absolute;
    top: 68px;
    left: 0;
}
.btn-mod.btn-with-icon {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 17px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: normal;
    border: none;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.09);
    background: #ffffff;
}
.btn-mod.btn-circle {
    border-radius: 30px;
}
.btn-icon.color-3 {
    color: #fff;
    background: #005da0;
}
.btn-icon.color-2 {
    color: #fff;
    background:rgb(45 161 235);
}
.btn-icon.color-4 {
    color: #fff;
    background:#8febff;
}
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-left: -10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 50%;
}
.btn-animate-y-1 {
    display: block;
    font-size: 15px;
}
.btn-animate-y-2 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translate(0, 100%);
    transition: all .37s cubic-bezier(.15,.7,.78,1), opacity .37s linear;
}
.get_btn {
    line-height: 2;
    font-size: 16px;
    padding: 6px 12px;
    background: #2da1eb;
    color: #ffffff;
    border: transparent;
}
.get_btn:hover {
    border-color: #096baf;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
}
.btn-mod:hover{
    color: white;
}
.para_graph{
    font-size: 16px;
    font-weight: 400;
    color: #696767;
    text-align: justify;
}

p.para_test {
    font-size: 16px;
    color: #797979;
    text-align: justify;
    padding-top: 18px;
}
/*---------------service section---------------*/
/*---------------service section---------------*/



.feature-section {
    background: #f6f6f6;
    background-repeat: no-repeat;
    background-position: left center, right center;
    padding: 40px 0 40px;
}
.section-heading h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 2px;
    text-align: center;
}
.section-heading p {
    font-size: 16px;
    color: #74788d;
    margin-bottom: 10px;
    text-align: center;
}
.feature-box {
    background: #fff;
    /* box-shadow: 0px 10px 20px -5px rgba(76, 64, 237, 0.08); */
    padding: 30px 15px;
    text-align: center;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    position: relative;
    display: block;
    z-index: 1;
    overflow: hidden;
        border: 1px solid #ccc;
}
.feature-box:hover {
    border-color: transparent;
    -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
    -moz-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
}
.feature-icon span {
    width: 71px;
    height: 71px;
    background: #c2e4f91a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    border-radius: 55%;
    margin: 0 auto 18px;
}
.feature-icon img {
    width: 40px;
}
.feature-box:hover h5 {
    color: #2e2e2e;
    font-size: 15px;
}
.feature-box h5 {
    margin-bottom: 0;
    color: #2da1eb;
        font-size: 15px;
}
.feature-box:hover .feature-overlay {
    opacity: 1;
    left: 0;
}
.service_a {
    text-decoration: none;
}
.feature-box .feature-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.4s;
    width: 100%;
}
.feature-box:hover .feature-overlay:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 69%);
    border-radius: 10px;
}
.feature-box .feature-overlay img {
    border-radius: 10px;
    background-position: top left;
    width: 260px;
}

.feature-box:hover .feature-icon span {
    background: #ededed;
}
/*---------------about us --------------------*/
.fugu-about-section{
   padding:40px 0 40px;
}
.fugu-about-thumb img {
    border-radius: 11px;
}
/*.fugu-about-thumb {
    position: relative;
    display: inline-block;
}*/
.fugu-about-thumb2 {
    bottom: -20px;
    right: -22%;
    position: absolute;
    width: 57.87%;
    border-radius: 10px;
    transform: rotate(5deg);
    filter: drop-shadow(10px 14px 50px rgba(0, 0, 0, .15));
}
.fugu-about-thumb img {
    width: 100%;
}
.fugu-default-content h2 {
     font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.fugu-default-content {
    padding: 0px 40px;
/* -webkit-animation: slideIn 2s forwards;
  animation: slideIn 2s forwards; */
}

@keyframes slideIn {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

}
/*----------why choose----------*/
.rr-promo {
  padding:40px 0 40px;
}
.rr-promo-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 30px;
    position: relative;
    border: 1px solid #f0ecf9;
}
.rr-promo-title {
    font-style: normal;
    font-weight: 700;
    font-size: 37px;
    line-height: 36px;
    text-transform: capitalize;
    color: #2da1eb;
    opacity: 0.1;
    position: absolute;
    right: 9px;
    top: 7px;
}
.rr-promo-card .title {
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 36px;
    text-transform: capitalize;
    color: #005da0;
    display: flex;
    align-items: center;
    gap: 18px;
}
/*-------------------testimonails------------*/
.test_monials{
    padding:40px 0 40px;
}
.p-15px {
    padding: 15px !important;
    background: #f7f7f7;
}
.p-35px {
    padding: 15px 21px !important;
}
.vertical-title-center {
    display: flex;
    height: 100%;
}
.vertical-title-center .title {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    writing-mode: vertical-lr;
}
.border-color-extra-medium-gray {
    border-color: rgb(228 228 228) !important;
    border-radius: 0px 10px 10px 0px;
}
.title_testi {
    font-size: 16px;
    color: #005da0;
    font-weight: 600;
}
/*--------------floating button-------------------*/
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 66px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 15px;
    margin-left: 5px;
    transition: .2s;
    line-height: 2px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 85px;
    background:linear-gradient(117deg, #005da0, #2da1eb);
}

.btn-floating.phone:hover {
    background-color: #c03421;
}
.btn-floating.phone i {
    font-size: 19px;
}
/*--------------last section-------------------*/
.our-cta{
      padding:40px 0 40px;
}
.cta-home3-last {
    background-image: url(assets/cta2-bg-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
}
.btn-thm2 {
    background-color: #005da0;
    border-radius: 3px;
    color: #ffffff;
    font-size: 18px;
    padding: 8px 24px;
    border: 1px solid #005da0;
}
.cta-img {
    bottom: -66px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    z-index: 1;
}
h2.cta-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 4px;
}
/*---------------footer section----------------*/
.footer-style1 {
    background-color: #000;
}

.pb10 {
    padding-bottom: 10px !important;
}
.bb-white-light {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-style1{
 padding: 40px 0 4px;
}
.left_side {
    font-size: 16px;
}
.left_side a{
  text-decoration: none;
}
p.copyright-text {
    text-align: center;
    color: #8febff;
    font-size: 13px;
    margin-bottom: 0px;
}
.left_side a {
    margin: 12px;
}
/*---------------------testi slider---------*/
a.carousel-control-prev {
    width: 102px;
    border: 1px solid #a6a6a6;
       padding: 15px;
    border-radius: 10px;
}
a.carousel-control-next {
    width: 102px;
    border: 1px solid #a6a6a6;
    padding: 15px;
    border-radius: 10px;
}
.appoin_border {
    border: 1px solid #e7e7e77d;
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
/*-------------------------------------------------------------------------service details---------------------------------------------*/
/*----------------breadcrumb-------*/
.optech-breadcrumb {
    padding: 128px 0px 64px;
    background: #f5f5f5;
}
.post__title {
    margin-bottom: 8px;
    font-size: 29px;
    color: #3c3c3c;
    text-align: center;
    font-weight: 700;
}
.breadcrumbs ul {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 5px;
    align-items: center;
    align-content: center;
}
.breadcrumbs ul li a {
    color: #2da1eb;
    text-decoration: none;
}
.breadcrumbs ul li:first-child {
    padding-left: 0;
}
.breadcrumbs ul li {
    line-height: 9px;
    z-index: 0;
    font-size: 15px;
    padding: 0 11px;
    position: relative;
    display: inline-block;
    color: #202121;
}


/*----------------service detsil-------*/
.service_section h2{
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}
.choose_us-section {
    padding: 70px 0px;
}
.choose_us_content {
    padding-top: 120px;
}
.choose_us-section .box {
    display: inline-block;
    background:linear-gradient(10deg, #f5f5f5 10%, #f7f7f7 100%);
    width: 29.3%;
    align-items: center;
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 2px solid #888888;
    margin-right: 28px;
}
.choose_us-section .box {
    display: inline-block;
    background-color: #ffffff;
    align-items: center;
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 2px solid #888888;
    margin-right: 28px;
}
.sub_p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}
.service_section h4 {
    font-size: 22px;
    margin-bottom: 10px;
}
.box_wrapper {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0px;
}
.choose_us_image img {
    border-radius: 10px;
}
.choose_us-section .box h2 {
    color: #0a63a4;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 26px;
}
.notee {
    text-align: center;
    font-size: 17px;
    margin: 60px 0px 0px;
    color: #6d6d6d;
    line-height: 1.7;
}
.suport_text {
    font-size: 20px;
    color: #005da0;
    font-weight: 500;
    text-align: center;
    padding: 40px 0px 10px;
}
.sotcox-card-wrapper {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 40px 50px;
}
.sotcox-card-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
}
.sotcox-card-box .icon {
    margin-right: 18px;
    width: 70px;
}
.sotcox-card-box .sotcox-dots {
    background: #1279bf;
    border-radius: 40px;
    position: absolute;/*
    left: 0;*/
    bottom: -50px;
}
.sotcox-dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 25px;
}
.sotcox-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    margin: 0px 2.5px;
    display: inline-block;
}
.sotcox-card-box .sotcox-dots span {
    opacity: 0.3;
}
.sotcox-card-wrapper > div:nth-child(2) {
    border-left: 1px solid #878787;
    border-right: 1px solid #878787;
    padding: 0px 60px;
}
.btn-chat{
    font-size: 17px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 9px 29px;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    background: #1278be;
    letter-spacing: 0.1em;
    border: 1px solid #1278be;
    position: relative;
    -webkit-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    overflow: hidden;
    z-index: 1;
}
.btn-chat:hover{
    background:#00548f;
}
.service_cat {
    text-align: center;
    padding: 10px 0px;
    font-size: 25px;
    font-weight: 600;
    color: #00548f;
    margin-top: 15px;
}
.content .title {
    margin-bottom: 0px;
}

/*-------------owl--------------*/
.carousel-wrap {
    margin: 10px auto;
    padding: 0 5%;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 50px;
}

.owl-nav .owl-prev {
  left: -50px;
}

.owl-nav .owl-next {
  right: -50px;
}
.owl-carousel .owl-item img {
    display: block;
    width: auto;
    margin: auto;
    -webkit-transform-style: preserve-3d;
}
.item {
    padding: 25px;
    margin: 0px 2px;
    border: 1px solid grey;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}
.item_texxt {
    font-size: 17px;
    text-align: center;
    padding-top: 15px;
    margin-bottom: 0px;
    color: #218fd7;
    font-weight: 500;
}
.item a {
    text-decoration: none;
}
.item:hover:before, .item:hover:after {
    opacity: 1;
    height: 100%;
    width: 100%;
    bottom: 0px;
    right: 0px;
    border-radius: 0;
}
.item:before {
    bottom: -73px;
    right: -28px;
}
.item:before, .item:after {
    content: '';
    position: absolute;
    height: 110px;
    width: 110px;
    background-color: #badef5;
    opacity: 0.6;
    border-radius: 50%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.item:after {
        bottom: -60px;
    right: -50px;
}
/*-------------------------------policy pages-------------------*/

.policy{
    padding: 70px 0px;
}
.blockquote-two.bgc-lighter {
    background: #2595de38;
    padding: 26px;
    border-radius: 10px;
    TEXT-ALIGN: center;
}


/*------------------------popup --------------------------------*/
       .popup {
                display: none;
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background:linear-gradient(312deg, #9dd6fe, #ffffff);
                padding: 40px 20px;
                box-shadow: 0 4px 8px rgb(92 92 92 / 52%);
                z-index: 1000;
                border-radius: 10px;
            }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0 0 0 / 66%);
            z-index: 999;
        }
        .close-btn {
            cursor: pointer;/*
            margin-bottom: 21px;*/
            position: relative;
            left: 505px;
            border-radius: 50%;
            line-height: 9px;
            padding: 7px 7px;
            font-size: 17px;
            border:1px solid #000000;
            background: white;
        }
       .live_chat {
                border: 1px solid #4e4e4e;
            padding: 16px 20px;
                border-radius: 10px;
                background: #fff;
            }

        .book_appoinment {
            border: 1px solid #4e4e4e;
            padding: 16px 20px;
            border-radius: 10px;
            background: #efefef;
        }
        .live_chat h4 {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            margin-top: 12px;
        }
        .book_appoinment h4 {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            margin-top: 12px;
        }
        .live_chat p{
            font-size: 14px;
            text-align: justify;
            padding: 2px 0px;
        }
        .book_appoinment p{
            font-size: 14px;
            text-align: justify;
            padding: 2px 0px;
        }
        .live_btn a{
            text-decoration: none;
            color: white;
        }
        .live_btn {
            padding: 8px 25px;
            font-size: 17px;
            margin: auto;
            display: block;
            background: #000;
            color: #ffffff;
            border: 1px solid black;
        }
        .live_btn:hover {
            background: #1075ba;
        }
         .appoin_btn {
            padding: 8px 25px;
            font-size: 17px;
            margin: auto;
            display: block;
            background: #ffff;
            color: #ffffff;
            border: 1px solid black;
        }
        .appoin_btn a{
            text-decoration: none;
            color: black;
        }
        .appoin_btn:hover {
            background: #fae326;
            color: #ffffff;
        }
        .live_chat .best_plan {
            position: absolute;
            left: 118px;
            border: 1px solid #000000;
            top: 55px;
            padding: 4px 10px;
            background: #ffffff;
            font-size: 13px;
            color: #000000;
            font-weight: 500;
            border-radius: 10px 10px 0px 0px;
        }
        .flex_boxes_div {
            display: flex;
            gap: 0px;
        }
        .flex_boxes_div>div {
            width: 275px;
            padding: 11px;
        }



        /* ------------------------contact us --------------------------- */
        .section-descr {
            font-size: 29px;
            font-weight: 400;
            line-height: 1.448;
            letter-spacing: -0.005em;
            color: rgb(1 1 1);
        }
        .contact-item {
            padding-left: 76px;
        }
        .mb-40 {
            margin-bottom: 40px !important;
        }
        .contact-item {
            position: relative;
            padding: 0 0 0 74px;
            color: rgb(1 1 1);
        }
       
        .contact_sidedetsil {
            background: #f8f8f8;
            border-radius: 10px;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        }
        .ci-icon {
            position: absolute;
            top: 4px;
            left: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            font-size: 24px;
            color: #000000;
            border-radius: 50px;
            text-align: center;
            background: #dadada;
        }
        .ci-icon:before {
            background-color: #fff;
            opacity: .15;
        }
        .ci-title {
            font-size: 21px;
            color: #001524;
            font-weight: 700;
        }
        .ci-text.large {
            font-size: 16px;
            color: #464141;
        }
        .ci-link a {
            border: 1px solid #096baf;
            border-radius: 5px;
            line-height: 2;
            font-size: 16px;
            padding: 10px 25px;
            text-decoration: none;
            color: white;
            background: #096baf;
        }
        .ci-link{
            margin-top: 20px;
        }
        .section-title-small {
            font-size: 26px;
            font-weight: 500;
            line-height: 1.2;
            letter-spacing: -0.02em;
            text-align: center;
        }
        .form .form-group {
            margin-bottom: 35px;
        }
        .form label {
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 500;
            padding: 0px 10px;
        }
        .border-color-primary-1 {
            border: 2px solid #096baf;
            border-radius: 10px;
        }
        .form .form-group input, .form .form-group  textarea {
            border-bottom: 1px solid #bfbfbf !important;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            padding: 10px 10px;
            background: #f8f8f8;
        }
        .form-tip {
            font-size: 15px;
        }
        .submit_btn {
            border: 1px solid #096baf;
            color: #096baf;
        }
        .submit_btn:hover {
            border: 1px solid #096baf;
            color: #ffffff;
            background: #0a63a4;
        }
/*-------------------------------------------------------------------------------------------------responsive----------------------------------------------------*/
/*-0-------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------mobile responsive----------------*/










@media (max-width:1024px) {
    .composition-8-decoration-1 {
        position: absolute;
        top: 40px;
        left: -80px;
    }
    .composition-8-decoration-2 {
        position: absolute;
        bottom: 3%;
        left: 18px;
    }
    .composition-8-image {
        position: relative;
        width: 59.7936%;
        top: 51px;
        left: -72px;
    }
    .feature-box{
        padding: 21px 9px;
    }
    .feature-box h5 {        
        font-size: 13px;
    }
    .para_graph {
        font-size: 14px;
    }
    .rr-promo-card .title {
        font-style: normal;
        font-weight: 700;
        font-size: 22px;
    }
    .item_texxt {
    font-size: 14px;
    }
    .item {
    padding: 8px;
}
.item img {
    width: 44px !important;
}

}





@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 20px;
  }
}




    @media (max-width:800px){
        nav {
            /* position: relative; */
        }
        .navbar .bx-menu {
            display: block;
        }
        nav .navbar .nav-links {
            position: fixed;
            top: 0;
            left: -100%;
            display: block;
            max-width: 316px;
            width: 100%;
            background: #578db3;
            line-height: 40px;
            padding: 34px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
            z-index: 1000;
        }
        .navbar .nav-links .sidebar-logo {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .sidebar-logo .logo-name {
            font-size: 25px;
            color: #fff;
        }
        .sidebar-logo i,
        .navbar .bx-menu {
            font-size: 36px;
            color: #ffffff;
        }
        nav .navbar .links {
            display: block;
            margin-top: 20px;
        }
        nav .navbar .links li .arrow {
            line-height: 40px;
        }
        nav .navbar .links li {
            display: block;
        }
        nav .navbar .links li .sub-menu {
            position: relative;
            top: 0;
            box-shadow: none;
            display: none;
        }
        nav .navbar .links li .sub-menu li {
            border-bottom: none;
        }
        .navbar .links li .sub-menu .more-sub-menu {
            display: none;
            position: relative;
            left: 0;
        }
        .navbar .links li .sub-menu .more-sub-menu li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .links li:hover .htmlcss-arrow,
        .links li:hover .htmlnew-arrow,
        .links li:hover .js-arrow {
            transform: rotate(0deg);
        }
        .navbar .links li .sub-menu .more-sub-menu {
            display: none;
        }
        .navbar .links li .sub-menu .more span {
            /* background: red; */
            display: flex;
            align-items: center;
            /* justify-content: space-between; */
        }

        .links li .sub-menu .more:hover .more-sub-menu {
            display: none;
        }
        nav .navbar .links li:hover .htmlCss-sub-menu,
        nav .navbar .links li:hover .js-sub-menu {
            display: none;
        }
        .navbar .nav-links.show1 .links .htmlCss-sub-menu,
        .navbar .nav-links.show3 .links .js-sub-menu,
        .navbar .nav-links.show4 .links .htmlNew-sub-menu,
        .navbar .nav-links.show2 .links .more .more-sub-menu {
            display: block;
        }
        .navbar .nav-links.show1 .links .htmlcss-arrow,
        .navbar .nav-links.show4 .links .htmlnew-arrow,
        .navbar .nav-links.show3 .links .js-arrow {
            transform: rotate(180deg);
        }
        .navbar .nav-links.show2 .links .more-arrow {
            transform: rotate(90deg);
        }

}




    @media (max-width:770px){
            .fugu-about-thumb2{
                display: none;
            }
           .service_section h2 {
                font-size: 28px;
            }
            span.logo-name a {
            text-decoration: none;
            font-size: 28px;
            color: black;
            font-weight: 500;
            padding-left: 29px;
        }
        .composition-8-image, .composition-8-decoration-2, .composition-8-decoration-1, .fugu-about-thumb{
            display: none;
        }
        .left_side a {
            font-size: 13px;
        }
        p.copyright-text {
            font-size: 13px;
        }
        .white-bdrt1.py-4 {
            padding: 0px !important;
        }
        h2.cta-title {
            font-size: 22px;
        }
        .rr-promo-card .title {
            font-size: 21px;
            line-height: 29px;
        }
        .para_graph {
            font-size: 16px;

        }
        /* moz and webkit keyframes excluded for space */

            .hs-title-9 {
            margin-top: 0;
            font-size: 30px;
        }
        .hs-descr {
            font-size: 19px;

        }
        .page-section
        {
            padding-bottom: 33px;
        }
        .feature-box h5 {
            margin-bottom: 0;
            font-size: 11px;
        }
        .feature-box {
            background: #fff;
            box-shadow: 0px 10px 20px -5px rgb(9 9 9 / 55%);
            padding: 31px 13px;
        }
        .feature-icon span{
            margin: 0 auto 9px;
        }
    }




    @media (max-width:475px){
            .fugu-about-thumb2{
                display: none;
            }
            span.logo-name a {
            text-decoration: none;
            font-size: 28px;
            color: black;
            font-weight: 500;
            padding-left: 29px;
        }
        .composition-8-image, .composition-8-decoration-2, .composition-8-decoration-1, .fugu-about-thumb{
            display: none;
        }
        .left_side a {
            font-size: 13px;
        }
        p.copyright-text {
            font-size: 13px;
        }
        .white-bdrt1.py-4 {
            padding: 0px !important;
        }
        h2.cta-title {
            font-size: 22px;
        }
        .rr-promo-card .title {
            font-size: 21px;
            line-height: 29px;
        }
        .para_graph {
            font-size: 16px;}

            .hs-title-9 {
            margin-top: 0;
            font-size: 30px;
        }
        .hs-descr {
            font-size: 19px;

        }
        .page-section
        {
            padding-bottom: 33px;
        }
        .feature-box h5 {
            margin-bottom: 0;
            font-size: 14px;
        }
        .feature-box:hover h5 {
            color: #fff;
            font-size: 14px;
        }
        .feature-box {
                background: #ffffff;
                box-shadow: 0px 10px 20px -5px rgb(255 255 255 / 0%);
                padding: 25px 10px;
            }
        .feature-icon span{
            margin: 0 auto 9px;
        }
        .section-heading h2 {
            font-size: 25px;
        }
        .fugu-default-content {
            padding: 0px 6px;
        }
        .fugu-default-content h2 {
            font-size: 25px;
        }
        .sotcox-card-wrapper {
            background: #f5f5f5;
            border-radius: 10px;
            padding: 21px 14px;
            display: block !important;
        }
        .sotcox-card-wrapper > div:nth-child(2) {
            border-left: 1px solid #ffffff00;
            border-right: 1px solid #87878700;
            padding: 0px 0px;
        }
        .sotcox-card-box {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            border-bottom: 1px solid #80808047;
        }
        .choose_us-section .box {
            padding: 23px 9px;
            border-radius: 15px;
            text-align: center;
            border-bottom: 2px solid #888888;
            margin-right: 0px;
        }
        .sub_p {
            font-weight: 500;
            font-size: 14px;
            line-height: 21px;
        }
        .optech-breadcrumb {
            padding: 79px 0px 5px;
            background: #f5f5f5;
        }
        .owl-nav i {
          font-size: 20px;
        }

        .owl-nav .owl-prev {
          left: -0px;
        }

        .owl-nav .owl-next {
          right: -0px;
        }
        .item {
            padding: 9px;
        }
        .item_texxt {
            font-size: 15px;
        }
        .flex_boxes_div {
            display: block;
        }
        nav .navbar .links li {
        border-bottom: 1px solid #d2d2d2;
         }
    }



    @media (max-width:370px){
          nav .navbar .nav-links{
          max-width: 100%;
        } 
    }
