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

body {
    font-family: "Gilroy", Arial, sans-serif;
}

a {
    color: black;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0%;
    z-index: 555;

}

.fixed {
    position: fixed;
    width: 100%;
    background-color: #fff !important;
    top: 0;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    left: 0;
    z-index: 9999;
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 5px;
}

header.fixed .navbar .navbar-brand .logo{
    filter: brightness(100%);
}

.navbar>.container {
    padding:20px 0;
}
header.fixed .navbar .navbar-brand{
    max-width: 125px;
   
}

header.fixed .navbar-nav .nav-item .nav-link{
    color: black;
}

header.fixed .dropdown .dropdown_icon{
    stroke: black;
}

header.fixed .language .dropdown_text{
    color: black;
}

header.fixed .order_btn a {
    background-color: #54c4dc;
    color: white;
}

header.fixed .order_btn a:hover {
    color: #54c4dc;
    background-color: transparent;
}

/* =======================================Header=========================== */

header {
    position: fixed;

}

header .navbar-nav {
    display: flex;
    align-items: center;
}

header .navbar .navbar-brand {
    max-width: 180px;
    
}

header .navbar-collapse {
    flex-grow: unset;
}

.navbar-light .navbar-brand .logo {
    width: 100%;
    filter: brightness(0) grayscale(0) invert(1);
}

header .navbar-nav .nav-item {
    margin: 0 5px;
    line-height: 35px;
}

header .navbar-nav .nav-item .nav-link {
    /* padding-left: 0;
    padding-right: 0; */
    color: white;
    position: relative;
    transition: 0.3s ease;
    will-change: transform;
}

header .navbar-light .navbar-nav .nav-link:focus,
header .navbar-light .navbar-nav .nav-link:hover {
    color: rgb(84 196 220);
}

header .navbar-nav .nav-item .nav-link:before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(84 196 220);
    opacity: 0;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

header .navbar-nav .nav-item:hover .nav-link:before{
    opacity: 1;
}

header .dropdown-menu {
    position: absolute;
    width: max-content;
    top: 100%;
    left: -15px;
    transform: scale(1, 0) translateX(-50%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 200ms ease-in-out 0s;
    -moz-transition: all 200ms ease-in-out 0s;
    -o-transition: all 200ms ease-in-out 0s;
    transition: all 200ms ease-in-out 0s;
    display: block;
    /* overflow: hidden; */
    padding: 0;
    border: none;
    box-shadow: 0 1px 10px rgb(0 0 0 / 14%);
    left: 50%;
    min-width: 190px;
    /*border-top: 2px solid #45b1fc;*/
}

header .dropdown:hover .dropdown-menu {
    -webkit-transform: scale(1, 1) translateX(-50%);
    -ms-transform: scale(1, 1) translateX(-50%);
    transform: scale(1, 1) translateX(-50%);
}

/* header .dropdown:hover svg {
    opacity: 0;  
} */

header .dropdown:hover .dropdown_icon{
    stroke: rgb(84 196 220);
}

header .dropdown:hover .dropdown-toggle {
    color: rgb(84 196 220);
}

header .dropdown-menu::after {
    position: absolute;
    content: '';
    top: -20px;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    border-left: 10px solid transparent;
    left: 50%;
    transform: translateX(-50%);
}
.multis , .multis p, .full-content-1 p  {
        font-family: "Gilroy", Arial, sans-serif !important
        ;
}
header .dropdown-menu .dropdown-item {
    padding: 12px 15px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .dropdown-item:focus,
header .dropdown-item:hover {
    color: rgb(84 196 220);
    background-color: transparent;
    transform: translateX(8px);
}

header .dropdown svg {
    width: 10px;
    height: 7px;
    margin-left: 2px;
    opacity: 1;
}

header .dropdown-toggle::after {
    content: none;
}

header .dropdown .dropdown_icon {
    fill: none;
    stroke: white;
    stroke-width: 1.5px;
    fill-rule: evenodd;
    transition: 0.3s ease;
}

header .order_btn {
    margin-left: 10px;
}

header .order_btn a {
    background: transparent;
    border: 2px solid #54c4dc;
    display: block;
    color: #54c4dc;
    padding: 12px 40px;
    /*padding: 13px 44px;*/
    border-radius: 35px;
    font-weight: 700;
}

header .order_btn a:hover{
    background-color: #54c4dc;
    color: white;
}

header .navbar-light .navbar-nav .nav-link.active,
header .navbar-light .navbar-nav .show>.nav-link {
    color: rgb(84 196 220);
}

header .language{
    margin-left: 30px;
    text-transform: uppercase;
    cursor: pointer;
}


header .language .dropdown_text{
    color: white;
    line-height: 35px;
    padding: 8px;
    transition: 0.3s ease;
}

header .language .dropdown-menu{
    display: flex;
    min-width: auto;
}

header .language .dropdown-menu .dropdown-item{
    padding: 12px;
}

header .language .dropdown-item:focus, 
header .language .dropdown-item:hover{
    transform: translateX(0);
}

/* ===============================Main========================= */

main {
    position: relative;
}

main .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.9);
    /* animation: zoom 5s; */
}

/* @keyframes zoom{
    0% {
        transform: scale(1, 1);
    }
    
    100% {
        transform: scale(1.26, 1.26);
    }
} */

main .carousel-item {
    position: relative;
    height: 100vh;
}

main .carousel-item::after {
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.45) 30%, rgb(98 203 221 / 70%));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
}

main video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: bottom;
    opacity: 1 !important;
}

main .carousel-item .container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* z-index: 99; */
}

main .carousel-caption {
    left: 15px;
    width: 600px;
    bottom: 20%;
    padding-left: 70px;
    text-align: left;
    line-height: 1.4;
    z-index: 99;
}

main .carousel-caption h1 {
    font-size: 52px;
    line-height: 1.23;
    font-weight: bold;
}

main .carousel-caption p {
    margin-bottom: 0;
    margin-top: 35px;
    font-weight: 300;
    font-size: 20px;
}

main .carousel-inner button >span:before {
    content: none;
}

main .carousel-inner button span {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

main .carousel-control-prev span.carousel-control-prev-icon {
    background-image: url(../img/next.svg) !important;
}

main .carousel-control-next span.carousel-control-next-icon {
    background-image: url(../img/back.svg) !important;
}

main .control_container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
}

main .carousel-control-prev,
main .carousel-control-next{
    top: auto;
    width: 25px;
    height: 25px;
    margin-top: 0;
    color: #ffffff;
    z-index: 100;
    -webkit-perspective: 20em;
    perspective: 20em;
    opacity: 0.9;
    position: relative;
    
}

main button span{
    display: block;
    height: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 0.17em 0 0 0.17em;
    border-radius: 0.17em 0 0 0.17em;
}

main .carousel-control-next {
    left: 14px;
    margin-top: 8px;
}

main .carousel-control-prev {
    left: 0;
    transform: rotate(-180deg);
}

main .carousel-control-next:hover > span {
    color: #252525;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

main .carousel-control-prev:hover > span {
    color: #252525;
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}


/* =============================== Advantage ========================= */

.section_padding{
    padding: 4rem 0;
}

.advantages{
    padding: 7rem 0 4rem;
}

.advantages .item{
    padding: 0 24px;
}

.advantages .row>div:nth-child(odd) .item{
    margin-top: 45px;
}


.advantages .item .top {
    position: relative;
}

.advantages .item .top p {
    margin: 0;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 700;
}

.advantages .item p.caption {
    color: #a7a7a7;
    margin: 0;
    padding: 0 25px;
    margin-top: 45px;
}

.advantages .item .top:before, 
.advantages .item .top:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 164px;
    top: -30px;
}

.advantages .item .top:after {
    background: url(../img/leafborder-right.svg);
    right: -5px;
}
.advantages .item .top:before {
    background: url(../img/leafborder-left.svg);
    left: -5px;
}

.advantages .item .top img {
    margin-bottom: 20px;
}

/* =============================== Services ========================= */
.services {
    background-color: #f2f2f2;
}

.services .service_box {
    margin-bottom: 30px;
    position: relative;
}

.services .img_wrap {
    position: relative;
}

.services .img_wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.3;
    transition: 0.5s all ease;
}

.services .img_wrap img {
    height: 330px;
    width: 100%;
    object-fit: cover;
}

.services .service_text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px 40px;
    z-index: 2;
}

.services .service_text p {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.1;
    color: white;
    margin: 0;
}

.services .service_more {
    padding: 11px 43px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: block;
    z-index: 3;
    transition: 0.5s all ease;
}

.services .service_box:hover .img_wrap:before {
    opacity: 0.6;
}

.services .service_box:hover .service_more {
    border-color: rgba(255,255,255,1);
    color: white;
}


/* =============================== References ========================= */
  .title span {
        border-bottom: 2px solid #54c4dc;
    padding-bottom: 5px;
  }


.references .container {
    max-width: 900px;
}

.section_title {
    font-weight: 700;
    font-size: 35px;
}

.section_head {
    text-align: center;
    margin-bottom: 50px;
}

.references .logo_wrap{
    width: 20%;
    padding: 0 10px;
    /* margin: 18px 0; */
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.references .row{
    margin-left: -10px;
    margin-right: -10px;
}


.references .logo_wrap a{
    transition: all 0.1s ease;
    height: 100%;
}

/*.references .logo_wrap a:hover{*/
/*    opacity: 0.4;*/
/*}*/

.references .logo_wrap img{
    width: 100%;
    padding: 5px 15px;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
}

.references .logo_wrap:hover img{
    filter: none;
}

/* =============================== References ========================= */


.video_container {
    position: relative;
}

.video_container #myVideo {
  object-fit: cover;
  width: 100%;
  height: 597px;
}

.video_container .container-fluid {
    padding: 0;
}

.video_container .container{
    display: flex;
    align-items: center;
}

.video_container .video_content_wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.video_container h2 {
    color: #fff;
    font-size: 52px;
}

.video_container p {
    font-size: 14px;
    line-height: 1.5;
    color: #b2b2b2;
}

.video_container .video_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 50px;
    border: 0 none;
    font-size: 16px;
    margin-top: 30px;
    padding-left: 60px;
    padding-right: 60px;
    color: #fff;
    width: 250px;
    font-weight: 700;
     background-color: #54c4dc;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border: 1px solid transparent;
}

.video_container .video_btn:hover {
    background: transparent;
    color:#54c4dc;
    border:2px solid #54c4dc;
    
}

.video_container .video_overlay {
    background-image: linear-gradient(to right, #000000d9, transparent);
    width: 100%;
    height: 99%;
    position: absolute;
    top: 0;
}

/* =============================== Gallery ========================= */
/*obdovanie start */
/* body {
    font-family: "Gilroy", Arial, sans-serif;
}
.container {
    width: 85%;
    margin: 0 auto;
} */
#product h1 {
    text-align: center;
    margin: 50px 0 ;
    font-size: 30px;
    font-weight: 700;
}
.all-product {
    flex-wrap:wrap;
    display: flex;
    justify-content: center !important;
    align-items: center;
gap:20px

}
.product {
    position: relative;
    border-radius: 5px;
    padding: 30px 20px;
    height: 400px;
    width:300px;
}
.product-position {
    text-align: center;
    position: absolute;
    bottom: 0;
    background-color: rgb(46, 46, 46);
    padding: 15px 50px;
    width: 100%;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    opacity: 0;
    left: 0;
    transition: .3s;
}
.product:hover .product-position{
    opacity: 1;
}
.product:hover {
    background-color: rgb(230, 230, 230);
}
.product-title {
    padding-bottom: 20px;
}
.product-title h3 {
    font-size: 19px;
    margin-bottom: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: black;
    width:230px;
}
.product-title p {
    font-size: 15px;
    color: black;
    margin-bottom:0 !important;
}
.product-img img {
    width: 260px;
    height: 220px;
    object-fit: contain;
    mix-blend-mode:darken !important;
}
.products {
    background: linear-gradient(to top , rgba(35, 34, 34),rgba(1, 1, 1, 0.414) , rgba(0, 0, 0, 0.392) ) ,url("/img/1687451283_project_20190808123222309.png")center/cover no-repeat ;
    position: relative;
    height: 395.3px;
    width:300px;
}
.circle-a {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 30px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;

}
.products h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: white;
    width: 100%;
}
.products p {
    font-size: 18px;
    margin-bottom: 30px;
    color: white;
    line-height: 23px;
}
.products-text {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #fff;
}
.products-text a {
        width: 100%;
        font-size: 16px;
        border: 1px solid #484851;
        color: #fff;
        border-radius: 8px;
        padding: 16px 0;
        display: block;
        text-align: center;
        -webkit-transition: all 200ms ease-in-out 0s;
        transition: all 200ms ease-in-out 0s;
    background-color: transparent;
cursor: pointer;
    
}
.products-text a:hover {
    background-color: white;
    color: black;
}
/*obdovanie end */
.quote .fr-dib {
    width:55%;
    height:60%;
    object-fit:contain;
    margin: 20px auto !important;
}
.company {
    display:inherit;
}
.gallery .quote,
.main_gallery .quote {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    margin-right: 10px;
    height:320px;
    border-radius: 6px;
    position: relative;
    box-shadow: -5px 5px 15px transparent;
    -webkit-box-shadow: -5px 5px 15px transparent;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    overflow: hidden;
    width: calc(50% - 24px);
    margin: 12px;
    padding: 0;
}

.gallery .quote img,
.main_gallery .quote img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.gallery .quote a::before,
.main_gallery .quote a::before {
    background-image: linear-gradient(to top, #000000bf, transparent);
    opacity: 0;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity 0.2s linear;
    border-radius: 6px;
    z-index: 9;
}

.gallery .quote a,
.main_gallery .quote a{
    display: block;
    position: relative;
    height: 100%;
}

.gallery .quote a::after,
.main_gallery .quote a::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(49 49 49 / 56%);
    border-radius: 6px;
    -webkit-transition: all .2s ease;
    transition: all .2s linear;
}

.gallery .quote h4,
.main_gallery .quote h4 {
    position: absolute;
    bottom: 8px;
    left: 20px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    pointer-events: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    z-index: 9;
}

.gallery .quote:hover a::before,
.main_gallery .quote:hover a::before {
    opacity: 1;
}

.gallery .quote:hover,
.main_gallery .quote:hover {
    -webkit-box-shadow: 0 3px 14px 0 rgb(0 0 0 / 55%);
    box-shadow: 0 3px 14px 0 rgb(0 0 0 / 55%);
}

.gallery .quote:hover a::after,
.main_gallery .quote:hover a::after {
    opacity: 0;
}

/* =============================== Call to action ========================= */

.call-to-action {
  padding: 50px 0;
     background-color: #54c4dc;
}

.call-to-action .call-left-text h4 {
  font-size: 23px;
  color: white;
}

.call-to-action .call-left-text h3 {
  font-size: 34px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 0;
  color: white;
}

.call-to-action .call-btn {
    text-align:center;
  cursor: pointer;
  padding: 15px 45px;
  font-weight: 700;
  border-radius: 100px;
  -webkit-transition-property: 0.4s all ease-in;
  transition-property: 0.4s all ease-in;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  background: #ffffff;
  font-size: 16px;
  border: 2px solid transparent;
  display: inline-block;
  color: #333;
  -webkit-animation: play 4s ease infinite;
  animation: play 4s ease infinite;
}
.call-to-action .call-btn:hover {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.call-to-action .text-lg-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* =============================== Footer ========================= */

footer .footer_top{
    background: #1e1e1e;
}

footer .footer_navbar ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}

footer .footer_navbar{
    margin-bottom: 80px;
}

footer .footer_navbar li a {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

footer .footer_navbar li{
    position: relative;
}

footer .footer_navbar li::before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
      background: #54c4dc;
    transition: width 0.3s ease;
}

footer .footer_navbar li:hover::before{
    width: 100%;
}

footer .footer_navbar li:hover a{
    color: #54c4dc;
}

footer .footer_center{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

footer .footer_logo a{
    display: block;
    max-width: 160px;
}

footer .footer_logo a img{
    width: 100%;
    filter: brightness(0) grayscale(0) invert(1);
}

footer .social_icons ul{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

footer .social_icons li{
    margin-left: 30px;

}

footer .social_icons a{
    color: #7d7f7d;
    font-size: 24px;
}

footer .social_icons a:hover{
       color: #54c4dc;
}

footer .footer_bottom{
    background: #161616;
    padding: 20px 0;
    color: rgb(255 255 255 / 30%);
    font-size: 14px;
}

/*================================Modal=========================*/
.modal{
    z-index: 99999;
}

.modal-content {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding-top: 40px;
    position: relative;
}

.modal-header {
    padding: 0 60px 20px 60px;
    border: none;
}

.modal-body {
    padding: 0 60px 60px;
}

 .modal-content .close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 40px;
    top: 38px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
    border: none;
    background: transparent;
}

.modal-content .close::before, .modal-content .close::after {
    content: '';
    position: absolute;
    background: #282828;
    width: 100%;
    height: 2px;
    left: 0;
}

.modal-content .close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal-content .close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



/* =============================== Inside Pages ========================= */


.inside_page {
    background-image: url(/img/deep-ocean-1.jpg);
    background-size: cover;
    background-position: center;
    min-height: 390px;
    position: relative;
    display: flex;
    /*flex-direction: column;*/
    /*justify-content: flex-end;*/
    color: white;
}

.inside_page .container{
    z-index: 2;
}

.inside_page::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(155 233 249 / 65%);
    z-index: 1;
    /*background-image: linear-gradient(to bottom, #328fd1 20%, transparent);*/
    background-image: linear-gradient(to bottom, #1d72af 20%, transparent);
}



.inside_header .navbar-light .navbar-nav .nav-link:focus, 
.inside_header .navbar-light .navbar-nav .nav-link:hover,
.inside_header .dropdown:hover .dropdown-toggle{
    color: white;
}

.inside_header .dropdown:hover .dropdown_icon{
    stroke: #fff;
}

.inside_header.fixed .dropdown:hover .dropdown_icon{
    stroke: rgb(84 196 220);
}

.inside_header .navbar .navbar-brand{
    max-width: 140px;
 
}

.inside_page_content{
    border-top: 1px solid rgba(255, 255, 255, .2);
    /*position: relative;*/
    z-index: 2;
    padding-top: 16px;
    margin-top: 125px;
}

.inside_header{
    position: absolute;
}

.inside_header.fixed .navbar-light .navbar-nav .nav-link:focus, 
.inside_header.fixed .navbar-light .navbar-nav .nav-link:hover, 
.inside_header.fixed .dropdown:hover .dropdown-toggle{
    color: rgb(84 196 220);
}

.breadcrumb .breadcrumb-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
}

.breadcrumb .breadcrumb-list a{
    color: white;
}

.breadcrumb .breadcrumb-list li.active{
    color: white;
    opacity: 0.7;
}

.breadcrumb .breadcrumb-list i{
    margin: 0 15px;
    font-size: 12px;
    opacity: 0.7;
}

.inside_page .title_wrap{
    margin-bottom: 50px;
}

.inside_header.fixed{
    position: fixed;
}

.page_content{
    padding: 50px 0;
    background-color: #f4f4f4;
}

.content_all{
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
  
}

.contact .content_all{
    padding: 0;
}
.justify-content-center {
    justify-content:center !important ;
}
.content_info .row {
    row-gap:20px;
}
.inside-call-to-action{
    background-color: #fff;
}

.page_content .content_all .title{
    border-bottom: 1px solid #f4f4f4;
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    padding-bottom: 15px;
    cursor:pointer;
}
.full-content-1 {
    padding-left:50px !important;
    padding-bottom:20px !important;
}
.full-content-1 p {
    background-color:transparent !important;
  
     font-size:14px !important;
         margin-bottom: 8pt !important;
    margin-left: 0.25in !important;
        color: #4F4F4F !important;
}
.full-content-1 p:first-child  span:not(.full-content-1 table p:first-child  span)  {
    font-size: 23px !important;
    font-weight: 600;
}
.full-content-1 table p:first-child  span{
    font-size:18px;
}
.full-content-1 p:first-child   {
        font-size: 23px !important;
    font-weight: 600;
      
}
.full-content-1 p b span ,  .full-content-1 p b {
    font-size:21px !important;
}

.page_content .content_all .title span:before {
   display:none;
}
}
.page_content .content_all .title span{
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*max-width: 350px;*/
    padding:0 0 15px;
}
.full-content-my *{
    line-height:1.4 !important;
}
.page_content .content_all .title span:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #45b1fc;
    bottom: 0;
    left: 0;
}

.contact_form{
    margin-bottom: 40px;
}

.contact_form,
.contact_info{
    padding: 40px;
}

.contact_wrap .contact_list li{
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.contact_wrap .contact_list li span:first-child{
    margin-right: 20px;
}

.contact_wrap .contact_list span a{
    display: block;
}

.contact_wrap .contact_list span a:hover:before{
    width: 100%;
}

.contact_wrap .contact_list span a:hover{
    color: black;
    text-decoration: underline;
}

.contact_wrap .contact_list li img{
    width: 25px;
}

.contact_wrap .contact_list li.address span{
    margin-right: 12px;
}

.contact_info{
    background-color: #f9f9f9;
    height: 100%;
}
    
#map{
    height: 420px;
}

.contact_info_wrap{
    box-shadow: 0px 10px 12px #eae9e9;
}


[class*="ymaps-2"][class*="-ground-pane"] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  /* Firefox 3.5+ */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */
}

.ymaps-2-1-79-copyrights-pane {
    display: none;
}

.ymaps-2-1-79-image {
    background-size: contain;
}


.content_info{
    padding-top: 35px;
}

.static_content .about .quote{
    width: 100%;
    /*height: 300px;*/
    margin: 0;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page_content img{
  
    width:100%;
    object-position: center;
    mix-blend-mode: darken;
}
.cate img:not(:first-child){
    width: 300px;
    /*height: 350px;*/
    object-fit:contain;
}
.cate img:first-child{
    width:100%;
}

.fullstory a{
    display: block;
    width: 45%;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    background: #fff;
}
.fullstory a.highslide{
    /*width: 100%;*/
}
.static_content .gallery a:hover::before,
.fullstory a:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.static_content .gallery a:before,
.fullstory a:before{
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

.fullstory.services_content .quote{
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    background: #fff;
    height: 400px;
}

/*=========================== Gallery ==========================*/

.static_content .gallery .row{
    margin-right: -5px;
    margin-left: -5px;
}
.row {
    justify-content:space-between;
}

.static_content .gallery .quote{
    width: calc(33.33% - 10px);
    margin: 5px;
    padding: 0;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.static_content .gallery .quote img{
    width: 80%;
    margin: 0;
    height: 100%;
    object-fit: cover;
}
.
.campaigns .card{
    border: none;
    box-shadow: rgb(17 17 26 / 10%) 0px 0px 16px;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s ease;
}

.campaigns .card a{
    color: black;
}

.campaigns .card img{
    transition: 0.3s ease;
    will-change: transform;
}

.campaigns .card:hover img{
    transform: scale(1.05);
}

.campaigns .card .img_wrap{
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.campaigns .card-body {
    padding: 25px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.campaigns .card p{
    margin: 0;
    font-weight: 500;
    font-size: 20px;
}

.campaigns_content .quote{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.campaigns_content .quote a{
    margin: 4px;
    width: calc(50% - 8px);
}

.campaigns_content .quote img{
    max-width: max-content;
    transition: 0.3s ease;

}

@media only screen and (min-width: 1200px) and (max-width: 1399px){
    
    header .navbar-nav .nav-item {
        margin: 0 2px;
    }
    
    header .language{
        margin-left: 22px;
    }
    
    header .order_btn a{
        padding: 10px 35px;
    }
.all-product{
    gap:50px
}
}


@media only screen and (min-width: 1399.99px){
    
    header .language{
        margin-left: 50px;
    }
    
    header .order_btn {
        margin-left: 20px;
    }
}

@media only screen and (min-width: 991.95px) and (max-width: 1199.95px){
    header .navbar .navbar-brand{
        max-width: 134px;
      
    }
    
    header .navbar-nav .nav-item {
        margin: 0;
        line-height: 35px;
        font-size: 15px;
    }
    
    header .language{
        margin-left: 20px;
    }
    
    header .order_btn{
        margin-left: 15px;
    }
    
    header .order_btn a{
        padding: 10px 24px;
    }
    .all-product{
    gap:100px
}
}


@media only screen and (max-width: 991.95px){

    
    .advantages{
        padding: 4rem 0 1rem;
    }
    
    .advantages .item{
        margin: 50px 0 !important;
    }
    
    .static_content .gallery .quote{
        width: calc(50% - 10px);
    }
    
    .fullstory a{
        width: 60%;
    }
    
    header .navbar-collapse{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100vh;
        /*display: none;*/
    }
    
    header .navbar-collapse .menu_wrapper{
        position: fixed;
        top: 0;
        bottom: 0;
        width: 90%;
        right: -100%;
        background: #001746;
        padding: 78px 50px;
        height: 100vh;
    }
    
    header .close {
        color: white;
        width: max-content;
        position: relative;
        margin-left: auto;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    
    header .close img{
        width: 100%;
    }
    
    header .resp_nav .dropdown .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        /*transition: auto;*/
        color: white;
        display: none;
    }
    
    .resp_dropdown{
        display: block !important;
    }
    
    header .language .dropdown_text{
        padding: 8px 0;
    }
    
    header .dropdown .dropdown-menu .dropdown-item{
        color: white;
        opacity: 0.6;
    }
        
    
    header .language{
        margin-left: 0;
    }
    
    header .navbar-nav{
        padding-top: 50px;
        align-items: baseline;
    }
    
    header .navbar-nav .nav-item .nav-link:before,
    header .dropdown-menu::after{
        content: none;
    }
    
    header .language .dropdown-menu li{
        display: inline-block;
    }
    
    header .order_btn{
        margin-left: 0;
        margin-top: 40px;
    }
    
    header .language,
    header .navbar-nav .nav-item{
        border-bottom: 1px solid #ffffff38;
        width: 100%;
        margin: 0;
    }
    
    header .navbar-light .navbar-toggler{
        border-color: rgb(255 255 255 / 41%);
        outline: none;
        box-shadow: none;
    }
    
    header .navbar-light .navbar-toggler-icon{
        background-image: url(../img/hamburger.png);
    }
    
    .bg_color{
        background: rgba(0, 0, 0, 0.6);
    }
    
    header.fixed .navbar-toggler-icon{
        filter: invert(1);
    }
    
    header.fixed .navbar-toggler{
        border-color: rgba(0,0,0,.1);
    }
    
    header.fixed .language .dropdown_text,
    header .resp_nav .navbar-nav .nav-item .nav-link{
        color: white;
    }
    
    header .language:hover .dropdown_text, 
    header .navbar-nav .nav-item:hover .nav-link{
        color: rgb(84 195 220);
    }
}

@media only screen and (max-width: 767.95px){
    
    main .carousel-caption{
        width: 100%;
        padding-left: 0;
    }
    
    #wowslider-container1{
        height: 500px;
    }
    
    #wowslider-container1 .ws_images{
        max-height: 500px;
    }
    
    .references .logo_wrap{
        width: 25%;
    }
    
    .gallery .quote, 
    .main_gallery .quote{
        width: calc(100% - 24px);
    }
    
    .call-to-action{
        height: auto;
    }
    
    .call-to-action .content_wrap{
        text-align: center;
    }
    
    .call-to-action a{
        margin: 20px auto;
    }
    
    .call-to-action p{
        max-width: unset;
    }
    
    footer .footer_bottom .left_content{
        margin-bottom: 20px;
    }
     footer .footer_navbar {
         margin-bottom:40px;
     }
    footer .footer_navbar ul{
        justify-content: center;
    }
    
    footer .footer_navbar li{
        margin-right: 15px;
        margin-bottom: 12px;
    }
    
    footer .footer_navbar li a{
        font-size: 18px;
    }
    
    footer .footer_center{
        flex-direction: column;
    }
    
    footer .footer_center .social_icons{
        margin: 10px auto 0;
    }footer .footer_center .social_icons ul {
        display:inherit;
    }
    footer .footer_center .social_icons ul li:not(:first-child) {
        display:inline;
      
        margin-left:0;
        margin-right:17px
    }
   
    
    footer .social_icons li:first-child{
        margin-left: 0;
        margin-bottom:15px;
    }
    
    .static_content .gallery .quote{
        width: calc(100% - 10px);
    }
    
    .fullstory a{
        width: 100%;
    }
    main .carousel-caption h1 {
        font-size:35px;
    }
    main .carousel-caption p{
        font-size:20px
    }
    .carousel_text {
        padding-right:30px;
    }
    .services .service_text p {
        font-size:20px;
    }
    .call-to-action .call-left-text h3  {
        font-size:20px;
    }
    .video_container h2 {
        font-size:40px;
    }
    header .navbar .navbar-brand {
        padding-top:0;
    }
}
@media(max-width:580px) {
    .navbar>.container {
    padding: 20px 30px ;
}
}

@media only screen and (max-width: 576.95px){
    .references .logo_wrap{
        width: 30%;
    }
    
    
}

@media only screen and (max-width: 476.95px){
    .references .logo_wrap{
        width: 35%;
    }
    
    .modal-body {
        padding: 0 30px 30px;
    }
}

@media only screen and (max-width: 367.95px){
    .references .logo_wrap{
        width: 45%;
    }
    
    .call-to-action a{
        width: 100%;
    }
}


