/* mixin */
/* base colors */
/* animate classes */
        .ref-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.row{row-gap:20px}
.delay-s {
  animation-delay: 0.7s;
}

.delay-sl {
  animation-delay: 0.8s;
}




img.logo {
    max-width: 86px;
}
header:not(.scrolled) .logo{filter:brightness(10000);}



/* general style */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #111;
  background-color: #fff;
  font: 15px/20px 'Exo 2', 'PT Sans', sans-serif;
  overflow-x: hidden;
}

button, *[type="button"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button:focus, input:focus, textarea:focus, .btn:focus, .navbar-toggler:focus {
  outline: 0;
  -o-box-shadow: none;
  box-shadow: none;
}

ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  color: #111;
}

.owl-nav.disabled, .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-stage-outer {
  margin-bottom: 0;
}

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

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

.title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.title-row .see-more a {
  color: #fff;
  font-size: 14px;
  position: relative;
}

.title-row .see-more a::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #fff;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transform-origin: 0 50%;
  transition-property: all;
  transition-duration: 0.5s;
}

.title-row .see-more a:hover:after {
  width: 0;
}

.title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.title-row .title {
  margin: 0;
}

.desc {
  color: #6d7c90;
  font-size: 17px;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.article-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 2.5%;
}



/* header */
header {
  padding: 13px 0;
  transition:.5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  border-bottom:1px solid rgba(255, 255, 255, 0.5);
}
header.scrolled{
    box-shadow: 0px 8px 16px 6px rgba(18, 25, 38, 0.1);
    background:#fff;
}

header #myMenu .navbar-nav .nav-item {
  margin: 0 20px;
}

header #myMenu .navbar-nav .nav-item .nav-link {
  color: white;
  padding: 0;
  font-size: 15px;
  line-height: 49.19px;
  position: relative;
  transition: 300ms all ease;
}
header.scrolled .nav-link,header.scrolled .change-lang i{color:black !important;}
header #myMenu .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #324973;
  width: 0;
  height: 2px;
  transition: 300ms all ease;
}

header #myMenu .navbar-nav .nav-item .nav-link:hover::after, header #myMenu .navbar-nav .nav-item .nav-link.active::after {
  width: 100%;
}

header .change-lang-wrap {
  position: relative;
  margin-left: 20px;
  font-size: 15px;
  cursor: pointer;
}

header .change-lang-wrap img {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  object-fit: cover;
}

header .change-lang-wrap .change-lang i {
  transition: 300ms all ease;
  font-size: 8px;
  color:white;
}

header .change-lang-wrap .lang-list {
  position: absolute;
  top: 59px;
  right: -20px;
  width: 180px;
  background-color: white;
  opacity: 0;
  visibility: hidden;
  transition: 300ms all ease;
  z-index: 1;
}

header .change-lang-wrap .lang-list a {
  display: block;
  padding: 12px 20px;
  transition: 300ms all ease;
}

header .change-lang-wrap .lang-list a:hover {
  background-color: #fafafa;
}

header .change-lang-wrap.active .change-lang i {
  transform: rotate(180deg);
}

header .change-lang-wrap.active .lang-list {
  opacity: 1;
  visibility: visible;
}

header .navbar-toggler {
  margin-left: 20px;
}

header .navbar-toggler .menu-wrapper {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 330ms ease-out;
}

header .navbar-toggler .menu-wrapper .line-menu {
  background-color: #324973;
  border-radius: 5px;
  width: 100%;
  height: 3px;
}

header .navbar-toggler .menu-wrapper .line-menu.half {
  width: 50%;
  margin: auto;
}

header .navbar-toggler .menu-wrapper .line-menu.start {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}

header .navbar-toggler .menu-wrapper .line-menu.end {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}

.order-btn {
  display: inline-block;
  border-radius: 5px;
  padding: 14px 30px;
  background-color: #268268;
  color: #fff;
  transition: 300ms all ease;
}

.order-btn:hover {
  color: #fff;
  background-color: #2d9e7e;
}

/* main */
main {
  height: 120vh;
  position: relative;
}

main #mainCarousel,
main .carousel-inner,
main .carousel-item {
  height: 100%;
}

main #mainCarousel .carousel-indicators {
  margin-bottom: 30px;
}

main #mainCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 7px;
  background-color: #fff;
  transition: 300ms all ease;
}

main #mainCarousel .carousel-indicators button:hover, main #mainCarousel .carousel-indicators button.active {
  background-color: #324973;
}

main #mainCarousel .custom-carousel-control {
  width: auto;
  padding: 0 20px;
}

main #mainCarousel .carousel-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.58);
  background-blend-mode: color;
  transition: all .2s ease;
  background-position: center center;
}

main #mainCarousel .carousel-item .custom-carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap h4 {
  font-size: 65px;
  font-weight: 900;
  margin-bottom: 50px;
}

main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap p {
  max-width: 100%;
}

main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap .more {
  color: #fff;
  font-weight: 700;
  border:2px solid #fff;
  padding:13px 35px;
  border-radius:7px;
  transition:.3s;
}

main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap .more i {
  color: #fff;
  transform: translateY(1px);
  transition: all .2s ease;
}
main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap .more:hover{color:black;background:white;}
main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap .more:hover i {
  transform: translate(6px, 1px);
  color:black;
}

main #mainCarousel .carousel-item:hover {
  /*background-color: rgba(0, 0, 0, 0.3);*/
}

/* advantages */
#advantages{position:relative;    margin-bottom:-80px;
}
#advantages .container{
    transform:translateY(-140px);
    position:relative;
    padding:50px;
    background:white;
    z-index:3;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    max-width:1100px;
    margin:auto;
}
#advantages h1{
    font-weight:700;
    font-size:42px;
}
#advantages a{text-decoration:underline;}
#advantages h5{font-size:40px;font-weight:600;color:#164893;}
/* services */



#services .services-card{position:relative;display:block;}
#services .services-card img{width:100%;}
#services .services-content{padding:20px;width:60%;min-width:270px;min-height:180px;right:0;bottom:0;background:white;z-index:2;position:absolute;height:60%;}
#services .services-icon{width:55px;}
#services h4{margin:15px 0;}
#services .services-icon img{width:100%;}
/* projects */
#projects {
  background-color: #f8f9fa;
  padding: 50px 0 65px;
}

#projects h3 {
  color: #333;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
}

#projects p {
  margin-top: 20px;
  font-size: 14px;
}

#projects .see-all {
  color: #777982;
  border-bottom: 1px solid #777982;
  transition: all .3s ease;
  font-size: 12px;
}

#projects .see-all:hover {
  border-color: transparent;
  color: #333;
}

.projects-carousel {
  margin-top: 40px;
}

.projects-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: white;
  font-size: 70px;
  z-index: 1;
  height: 100%;
}

.projects-carousel .owl-nav button i {
  padding: 0 20px;
  transition: all .2s ease;
  opacity: 0.4;
  font-size: 30px;
}

.projects-carousel .owl-nav button::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: opacity .1s linear;
  opacity: 0;
}

.projects-carousel .owl-nav button:first-child {
  left: 0;
}

.projects-carousel .owl-nav button:first-child::before {
  background-image: linear-gradient(to right, #00000067, transparent);
}

.projects-carousel .owl-nav button:last-child {
  right: 0;
}

.projects-carousel .owl-nav button:last-child::before {
  background-image: linear-gradient(to left, #00000067, transparent);
}

.projects-carousel .owl-nav button:hover::before {
  opacity: 1;
}

.projects-carousel .owl-dots {
  position: absolute;
  width: 100%;
  padding-top: 12px;
  display: flex;
  justify-content: center;
}

.projects-carousel .owl-dots button {
  margin: 7px;
  border: none;
  background: transparent;
  padding: 0;
}

.projects-carousel .owl-dots button span {
  width: 10px;
  height: 10px;
  background-color: #bbc6cc;
  display: inline-block;
  border-radius: 50%;
  transition: 300ms all ease;
}

.projects-carousel .owl-dots button.active span, .projects-carousel .owl-dots button:hover span {
  background-color: #324973;
}

.project-box a {
  position: relative;
}

.project-box a::after {
  content: '';
  width: 100%;
  height: 110px;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 5px;
  text-align: center;
  background: linear-gradient(360deg, black, transparent);
  color: #fff;
}

.project-box a img {
  object-fit: cover;
  width: 100%;
  height: 600px;
  margin: 0;
}

.project-box a h5 {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  color: #fff;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cat-content .project-box a img {
    height: 250px;
}

/* about */
#about {
  margin-top: 80px;
  margin-bottom: 80px;
  background: linear-gradient(to right, #324973 0%, #324973 calc(66.66667% - 6rem), transparent calc(66.66667% - 6rem));
  position: relative;
  padding: 60px 0;
  color: #fff;
}

#about h2 {
  font-size: 50px;
  font-weight: normal;
}

#about p {
  max-width: 90%;
  line-height: 28px;
  margin-top: 22px;
  font-size: 16px;
  text-align: justify;
}

#about .img-wrapper {
  position: absolute;
  right: 0;
}

#about .img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-link {
  margin-top: 40px;
  display: block;
  font-size: 20px;
  color: #fff;
  line-height: 24px;
  border-bottom: 2px solid #fff;
  width: max-content;
  transition: 300ms all ease;
  position: relative;
}

.about-link::after {
  content: ">";
  color: #272727;
  background: #fff;
  position: absolute;
  bottom: -2px;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  font-size: 10px;
  line-height: 0.8;
  text-align: center;
  border-radius: 50%;
  padding: 5px;
}

.about-link:hover {
  border-bottom-color: transparent;
}

#about .about-link:hover {
   color: #fff; 
}
/*blog*/
.blog{margin-bottom:60px;}
.blog .blog_card {
  text-decoration: none;
  color: black;
}
.blog h4 {
  transition: 0.4s;
  cursor: pointer;
}
.blog h4:hover {
  color: #164893;
}
.blog .blog_desc {
  text-align: center;
  margin-block: 25px;
  border-radius: 5px;
  width: 80px;
  padding: 5px;
  border: 1px solid #164893;
  color: #164893;
  font-weight: 600;
}
.blog .blog_img_wrap {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.blog .blog_img_wrap .img_polygon {
  overflow: hidden;
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 0, 100% 70%, 80% 100%, 30% 100%, 0 100%, 0 0);
          clip-path: polygon(30% 0%, 70% 0%, 100% 0, 100% 70%, 80% 100%, 30% 100%, 0 100%, 0 0);
  width: 100%;
}
.blog .blog_img_wrap img {
  width: 100%;
  transition: 0.8s;
  border-radius: 10px;
}
.blog .blog_img_wrap img:hover {
  transform: scale(1.11);
}
.blog .blog_img_wrap .ok_btn {
  background-color: white;
  box-shadow: 0 0 5px rgba(128, 128, 128, 0.11);
  transition: 0.5s;
  position: absolute;
  bottom: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.blog .blog_img_wrap .ok_btn i {
  color: #164893;
}
.blog_card:hover .ok_btn {
  background-color: #164893;
}
.blog_card:hover .ok_btn i {
  color: white;
}
.blog .blog_bottom_card {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog .blog_bottom_card i {
  color: #164893;
}
.blog .blog_bottom_text {
  color: gray;
}
/*blog end*/
/* references */
#partners {
  background-color: #f8f9fa;
  padding: 80px 0 65px;
  padding-bottom:170px;
}

#partners .partner-box {
  padding: 15px;
  margin: 15px 0;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  height: 150px;
  border-radius: 4px;
  cursor: pointer;
}

#partners .partner-box img {
  width: 100%;
  height: 100%;
  padding: 21px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: 300ms all ease;
}

#partners .partner-box:hover img {
  filter: none;
  opacity: 1;
}

/* call to action */

.call_to_action {
  padding: 48px 30px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
    position:absolute;
  background:white;
  left:50%;
  top:-70%;
  transform:translate(-50%,50%);
}
.call_to_action h3 {
  font-size: 40px;
}
.call_to_action .inp-box {
  display: block;
  border: 1px solid gray;
  padding: 22px 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
}
.call_to_action .inp-box input {
  width: 95%;
  height: 100%;
  border: none;
  outline: none;
}
.call_to_action button {
  background-color: #ffeb69;
  padding: 22px 28px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border-color: transparent;
}
.call_to_action button i {
  margin-top: 4px;
}
/* footer */
footer {
  position:relative;
  padding:150px 0 32px 0;
  border-top: 1px solid #e3e4e6;
  background-color: #f8f9fa;
  color: #18191a;
}

footer h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

footer .about-link {
  color: #324973;
  border-bottom: 1px solid #324973;
  font-size: 16px;
  line-height: inherit;
}

footer .about-link::after {
  color: #fff;
  background: #324973;
}

footer .footer-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer .footer-list li {
  margin-right: 14px;
  font-size: 14px;
}

footer .footer-list li a {
  display: block;
  transition: 300ms all ease;
}

footer .footer-list li a:hover {
  color: #324973;
}

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

footer .footer-contact .social-media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer .footer-contact .social-media li {
  margin-right: 10px;
  font-size: 20px;
}

footer .footer-contact .social-media li a {
  display: block;
  transition: 300ms all ease;
}

footer .footer-contact .social-media li a:hover {
  color: #324973;
}

footer .footer-contact p {
  font-size: 14px;
}

footer .footer-contact p a {
  color: rgba(0, 0, 0, 0.5);
  transition: 300ms all ease;
}

footer .footer-contact p a:hover {
  color: #2b237e;
}


/* form style */
.input-box {
    position: relative;
    margin-top: 30px;
}

input.text, textarea {
    width: 100%;
    border: 2px solid #eaeaea;
    padding: 12px;
    border-radius: 3px;
    font-size: 14px;
    position: relative;
    transition: all .3s ease;
}

input.text {
    height: 50px;
}

input.text::placeholder, 
textarea::placeholder,
input.text:-ms-input-placeholder, 
textarea:-ms-input-placeholder,
input.text::-ms-input-placeholder, 
textarea::-ms-input-placeholder, 
label {
    color: #ccc; 
}

input.text:focus, 
textarea:focus {
    border-color: #eaeaea;
    border-bottom: 2px solid #324973;
    box-shadow: none;
    background: #fdfff1;
}

.input-box label {
    position: absolute;
    top: 15px;
    left: 14px;
    width: 100%;
    transition: all .3s ease;
    z-index: -1;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.text ~ .focus-bg::before, 
.text ~ .focus-bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background-color: #fffcef;
    transition: 0.3s;
    z-index: -1;
}

.text ~ .focus-bg:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.text:focus ~ .focus-bg:before, 
.has-content.text:focus ~ .focus-bg:before {
    transition: 0.3s; 
    width: 50%; 
    height: 100%;
}
        
.text ~ .focus-bg:after {
    left: auto; 
    right: 0; 
    top: auto; 
    bottom: 0;
}
        
.text:focus ~ .focus-bg:after, 
.has-content.text:focus ~ .focus-bg:after {
    transition: 0.3s; 
    width: 50%; 
    height: 100%;
}
        
.text:focus ~ label, 
.has-content.text ~ label {
    top: -18px; 
    left: 0; 
    font-size: 14px; 
    color: #333; 
    transition: 0.3s;
    z-index: 1;
}

.submit-btn {
    border: none;
    background: #324973d1;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 53px -18px #324973d1;
    height: 56px;
    line-height: 56px;
    transition: 0.3s ease-in-out;
    padding: 0 26px;
    width: 200px;
    margin-top: 20px;
    float: right;
    font-size: 15px;
}

.submit-btn:focus, .submit-btn:hover {
    background: #324973;
    color: #fff;
    box-shadow: none;
    transition: 0.3s ease-in-out;
}

.contact-content .contact-btn {
    max-width: 200px;
    width: 100%;
}


/* modal */
.modal-open {
    overflow: hidden !important;
}

.modal {
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-dialog {
    width: 500px;
}

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

.modal-header {
    margin: 0 40px 10px 40px;
    padding-left: 0;
    border: none;
    border-bottom: 1px solid #7c4e56;
}

.modal-title {
   font-weight: 500;
   color: #000;
}

.modal-content .btn-close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 50px;
    top: 34px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
}

.modal-content .btn-close:focus {
    box-shadow: none;
}

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


/* breadcrumb */
.breadcrumb-list {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    padding: 0;
    font-size: 12px;
    color: #777982;
}

.breadcrumb-list a {
    color: #777982;
    border-bottom: 1px solid #777982;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.breadcrumb-list a:hover {
    border-color: transparent;
    color: #333;
}


/* inside pages */
#map {
    height: 400px;
}

.inside-pages {
    background: linear-gradient(0deg, #fff 0, #f6f6f6 270px, #f6f6f6);
}

.title-page-wrap {
    padding: 40px 0;
}

.title-page-wrap h3 {
    color: #333;
    font-size: 30px;
}

.inside-pages .content-wrap {
    font-size: 15px;
    padding: 50px;
    color: #212529;
}

.page-content {
    padding-bottom: 60px;
}

.contact-content .location {
    background-color: #fff;
    transition: all .3s ease;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.loc-border {
    border-bottom: 1px solid #d6d9db;
    transition: all .3s ease;
}

.contact-content .location:hover {
    background-color: transparent;
    border-bottom: 1px solid #324973;
}

.contact-content .location p {
    font-size: 16px;
}

.contact-content .location a {
    color: #343a40;
    transition: all .3s ease;
}

.contact-content .location a:hover {
    color: #121416;
}

.static-content img {
    border-radius: 10px;
    margin: 0 auto;
    max-width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.static-content ul {
    padding-left: 80px;
}

.static-content ul li {
    margin-bottom: 7px;
    position: relative;
}

.static-content ul li::after {
    content: '';
    width: 14px;
    position: absolute;
    height: 14px;
    background: transparent;
    left: -35px;
    border: 2px solid #324973;
    border-radius: 100%;
    top: 3px;
}

.full-content .pics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px -5px 0;
}

.static-content .highslide {
    display: inline-block;
}

.full-content .pics .highslide {
    margin: 5px;
    width: calc(50% - 10px);
    max-height: 300px;
}

.full-content .pics .highslide img {
    width: 100%;
    height: 100%;
}



/* media queries */
@media only screen and (min-width: 1400px) {
  .small-container {
    max-width: 1130px;
  }
}

@media screen and (min-width: 991.98px) and (max-width: 1200px) {
  #partners .partner-wrap {
    width: calc(20% - 30px);
    max-width: 100%;
    flex: none;
  }
}


@media only screen and (max-width: 1199.99px) {
    .service-box-wrap {
        width: calc(25% - 30px);
    }
    
    .service-box-wrap:first-child {
        width: calc(50% - 30px);
    }
}


@media only screen and (max-width: 991px) {
    header .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }

    header #myMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, .7);
        z-index: 9999;
        overflow-y: hidden;
    }
    
    header .navbar-nav {
        width: 90%;
        height: 100%;
        background-color: #324973;
        position: absolute;
        top: 0;
        right: -100%;
        overflow-y: scroll;
        justify-content: center;
    }
    
    header .nav-item {
        text-align: center;
    }
    
    header #myMenu .navbar-nav .nav-item .nav-link {
        text-align: center;
        font-size: 25px;
        padding: 20px 0;
        color: #fff;
    }
    
    header .order-btn {
        margin: 35px 0;
    }
 }


@media only screen and (max-width: 990.99px) {
    .service-box-wrap {
        width: calc(33.33% - 30px);
    }
    
    .service-box-wrap:first-child {
        width: calc(66.66% - 30px);
    }
    
    header .change-lang-wrap {
        margin-left: auto;
    }
    
    main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap p {
        max-width: 80%;
    }
    
    .about-link {
        margin-top: 20px;
    }
}


@media only screen and (max-width: 767.99px) {
    .order-btn,.more{padding:12px !important}
    #advantages{margin-bottom:60px;}
    #advantages .container{transform:translate(0);}
    #advantages h1{font-size:28px;}
    .call_to_action h3{font-size:28px;}
    footer{padding-top:190px !important;}
    .static-content img,
    .full-content .pics .highslide {
        min-height: 200px;
    }
    
    #services .custom-container {
        padding: 0 30px;
    }
    
    .service-box-wrap,
    .service-box-wrap:first-child {
        width: calc(50% - 30px);
    }
    
    main,
    #projects .project-box a img {
        height: 500px;
    }
    
    main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap {
        padding: 40px;
        justify-content: center;
    }
    
    

    
    #about {
        background: linear-gradient(to right, #324973 0%, #324973 100%, transparent 100%);
        margin: 60px 0;
    }
    
    #about h2 {
        font-size: 38px;
    }
    
    #about p {
        max-width: 100%;
        font-size: 15px;
    }
    
    #about .img-wrapper {
        position: static;
        margin-top: 40px;
    }
    
    #about .img-wrapper img {
        height: 300px;
    }
    
    .about-link {
        font-size: 17px;
    }
    
    #partners {
        padding: 60px 0 195px;
    }
    
    #call-to-action .content-wrap {
        font-size: 16px;
    }
    
    footer .about-link {
        margin-bottom: 30px;
    }
    
    footer .footer-contact {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 575.99px) {
    .modal-dialog {
        width: 90%;
        margin: 0 auto;
    }

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

    .modal-title {
        font-size: 18px;
    }

    .modal-header {
        padding: 10px 40px;
        margin: 0 auto;
    }
    
    .inside-pages .content-wrap {
        padding: 30px;
    }
    
    .static-content ul {
        padding-left: 50px;
    }
    
    .full-content .pics .highslide {
        width: 100%;
        height: 200px;
    }
    
    header .navbar-brand img {
        height: 78px;
    }
    
    
    main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap p {
        max-width: 100%;
    }
    
    main #mainCarousel .carousel-item .custom-carousel-caption .caption-wrap h4 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    main #mainCarousel .custom-carousel-control,
    .projects-carousel .owl-nav button i {
        padding: 0;
    }
    
    #projects .project-box a img {
        height: 350px;
    }
    
    .title {
        font-size: 28px;
    }
}

@media screen and (max-width: 450px) {
    .modal-header {
        padding: 10px 20px;
        margin: 0;
    }
    
    .modal-content .btn-close {
        right: 30px;
        top: 17px;
    }
    
    .contact-content .contact-btn {
        max-width: none;
    }
    
    .service-box-wrap,
    .service-box-wrap:first-child {
        width: calc(100% - 30px);
    }
}

@media only screen and (max-width: 400px) {
  #partners .partner-box {
    height: 110px;
  }
  
  #partners .partner-box img {
      padding: 10px;
  }
}
/*# sourceMappingURL=style.css.map */