m/*--------------------------------------------------------------
# Quadro_code
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #618ac8;
  text-decoration: none;
}

a:hover {
  color: #6aa3d5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #618ac8;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #618ac8;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  width: 100vw;
  z-index: 997;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
     background: rgba(32, 39, 46);
}

#header .sitename {
  font-size: 25px;
  margin: 0 20px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo {
  max-height: 50px;
}


@media (max-width: 992px) {
  #header {
    border: 0;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }

  #header .container,
  #header .row,
  #header .col {
    max-width: 90%;
    overflow-x: hidden;
  }

  #header [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
  text-transform: uppercase;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  text-transform: uppercase;
}

.navbar li {
  position: relative;
  text-transform: uppercase;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #5697d0;
}
.navbar .dropdown {
	background-color: #21272e;
  text-transform: uppercase;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: -14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  text-transform: uppercase;
  visibility: hidden;
  background: #21272e;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
  text-transform: uppercase;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #193c5a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #618ac8;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 39, 43, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #21272e;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #618ac8;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #21272e;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #618ac8;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background:#618ac8;
}
#hero .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

#hero .slide-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}


#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0px;
  left: 50px;
  right: 50px;
  z-index: 3;
}

#hero .container {
  text-align: left;
  padding-left: 0;
  padding-right: 50%
}

#hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
}

#hero h1 {
  color:#004DB7;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero h1 span {
  color:#004DB7;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #5193ED;
  text-align: left;
}
#hero .carousel-item {
    background-position: 90% center !important;
  }
/* Планшеты */
@media (max-width: 1024px) {
  #hero h1 {
    font-size: 36px;
  }

  #hero p {
    width: 90%;
  }

}

@media (max-width: 768px) {
  #hero {
    padding-top: 70px;
    height: auto;
    min-height: 100vh;
  }

  #hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #618ac8;
  animation-delay: 0.8s;
  background:#fff;
}

#hero .slide-blur-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}
  #hero .carousel-container {
    min-height: calc(100vh - 70px);
    padding: 0;
    left: 0;
    right: 0;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
  }

  #hero .slide-image,
  #hero .slide-blur-overlay {
    background-position: 90% center;
  }

  #hero .container {
    padding: 0 25px;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
  }

  #hero .carousel-item {
    background-position: 90% center !important;
  }

  #hero .slide-blur-overlay {
    -webkit-mask: linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.6) 60%,
      rgba(0,0,0,0.7) 100%
    );
    mask: linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.6) 60%,
      rgba(0,0,0,0.7) 100%

    );
    filter: blur(2px);
  }

  #hero .slide-blur-overlay::after {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.6) 60%,
      rgba(0,0,0,0.7) 100%
    );
  }

  #hero h1 {
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 350px;
    text-align: left;
    color: #ffffff !important;
  }

  #hero h1 span {
    color: #ffffff !important;
    display: block;
  }

  #hero p {
    width: auto;
    padding: 0;
    margin: 0 auto 20px auto;
    text-align: justify;
    font-size: 13px;
    color: #ffffff !important;
    line-height: 1.2;
  }




}


@media (max-width: 360px) {
  #hero h1 {
    font-size: 24px;
  }
  #hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #618ac8;
  animation-delay: 0.8s;
  background:#fff;
}
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
 #hero .carousel-item {
    background-position: 90% center !important;
  }

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #618ac8;
}



#hero .btn-get-started:hover {
  background: #5697d0;
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  background-color: #fafafb;
}

.section-title {
  text-align: center;
/*   padding-bottom: 50px; */
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #f5f9fc;
  color: #618ac8;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h1 {
  margin: 15px 0 0 0;
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
}

.section-title h1 span {
  color: #618ac8;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 500;
  color: #919191;
}


}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #394047;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #b9d4ec;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #618ac8;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #618ac8;
  border-color: #618ac8;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #618ac8;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#618ac8 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #618ac8;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #618ac8;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills {
  padding-top: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #394047;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e3e6e9;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #618ac8;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
  background-color: #fafafb;
}

.services .icon-box {
  margin-bottom: 60px;
}

.services .icon {
  float: left;
}

.services .icon i {
  color: #618ac8;
  font-size: 36px;
  line-height: 1;
}

.services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
  transition: 0.3s;
}

.services .icon-box:hover .title a {
  color: #618ac8;
}

.services .description {
  margin-left: 60px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 20px;
  background: #618ac8;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #5697d0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #618ac8;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(57, 64, 71, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(57, 64, 71, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #6aa3d5;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #618ac8;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #618ac8;
}
.dropdown-menu {
    text-transform: uppercase;
    background-color: #343a40 !important;
    border: 1px solid #686868;
}

.dropdown-item {
    color: white !important;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.dropdown-item:hover {
  text-transform: uppercase;
    color: #618ac8 !important;
    background-color: rgba(255, 255, 255, 0.1);
}
.portfolio-details .nav-link {
  color: #618ac8;
}


.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(57, 64, 71, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-top: 20px;
  text-align: center;
  text-transform: uppercase;

}
.portfolio-details .portfolio-info h4 {
   font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}


.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.portfolio-details .portfolio-info .disk ul {
  list-style: circle;
  padding: 0;
  font-size: 14px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-info p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 2rem;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h3 {
 /* font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px; */
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  margin-top: 20px;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #394047;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b9d4ec;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #618ac8;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 40px 40px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  text-align: center;
}

.contact .info i {
  font-size: 48px;
  color: #92bce0;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  font-size: 15px;
}

.contact .php-email-form {
  width: 100%;
  padding: 0 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
  color: #777777;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #618ac8;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #fff;
  border: 2px solid #618ac8;
  padding: 12px 35px;
  transition: 0.4s;
  background: #618ac8;
  color: #fff;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5697d0;
}

@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f7f8f8;
  min-height: 40px;
  margin-top: 45px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 20px 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #505a63;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2e3339;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #2e3339;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -3px;
  right: -4px;
  bottom: -3px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 0 20px;
  margin: 3px;
  background: #618ac8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #3071a9;
}

#footer .footer-top {
  background: #272c30;
  border-top: 1px solid #394047;
  border-bottom: 1px solid #394047;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #394047;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #618ac8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #5697d0;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #5697d0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}


/* СТИЛИ ИЗ STYLE2 */




.btn-primary-1{
    position: fixed;
    top: 90px;
    left: 10px;
    z-index:1000;
    background-color: #618ac8;
    border: 0;
    color: #ffffff;
}

.section-title-general {
  text-align: center;
  padding-bottom: 50px;
}
.section-title-general h2 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 0px;
  margin: 0;
  color: #000000;

  border-radius: 50px;

}
.my-button:hover {
  background-color: transparent;
  color: #618ac8;

}
    .btn-primary:hover {
  background-color: transparent;
  color: #618ac8;

}
    .btn-primary{
        border: 20;
          border-color: #618ac8;
        background-color: #618ac8;
    }

.btn-primary:active {
  background-color: gray;
  color: black;
  border-color: darkred;
}
.general{
    font-size: 1.5em; vertical-align: middle; color: #618ac8;
}
.btn-custom-1{
    width: 40%;
    background-color: #618ac8;;
    border: 0;
    color:#ffffff;
}
#content-section .btn-custom-1:hover {
  background: #5697d0;
}
.portfolio-description p {
    text-align: justify;
}
.portfolio-video p{
    padding-bottom:1rem;
    padding-left: 30px;
    font-size: 2rem;
    color:#618ac8;
}
.portfolio-icon p{
    padding-bottom:1rem;
    padding-left: 10px;
   font-size: 1.5rem;
   color:#618ac8;

}
.bi-file-pdf-fill{
    font-size: 2rem;
    color:#618ac8;
}
.bi-file-arrow-down-fill{
    font-size: 2rem;
    color:#618ac8;
}
.bi-file-play-fill{
    font-size: 2rem;
    color:#618ac8
}
.img-fluid1{
    height: 400px; object-fit: cover;
}
.portfolio-info p{
    text-align: justify;
}
p{
    text-align: justify;
}
.btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #618ac8;


  text-align: center;
 width: 70%;



}


.btn-get-started:hover {
  background: #5697d0;
  color: #fff;
}
.btn-get-started-1 {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #618ac8;
  text-align: center;


    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index:1000;
    background-color: #618ac8;
    border: 0;
    color: #ffffff;

}
.btn-get-started-1:hover {
  background: #5697d0;
  color: #fff;
}
.mx-auto {
  width: 100%;
  display: flex;
  justify-content: center;
}


         .min-width-150 {
        min-width: 150px;
    }
    .nowrap {
        white-space: nowrap;
    }
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table {
        width: 100%;
        margin-bottom: 0;
    }
     .table td {
        word-wrap: break-word;
        white-space: normal;
    }

    /* Стили для важных уведомлений */
.important-notice {
  background-color: #fff8e6;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notice-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #d39e00;
}

.notice-header i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.notice-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.notice-content p {
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #495057;
}

.notice-content ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
  color: #6c757d;
}

.notice-content li {
  margin-bottom: 0.5rem;
}


.important-notice {
  animation: pulse 5s infinite;
}

  .btn-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 100px;
  }

  @media (max-width: 768px) {
    .btn-group .btn {
      width: 100%;
      margin: 0.25rem 0;
    }
  }

.card-header {
    font-weight: 500;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0rem;
}


@media (max-width: 768px) {
    .card-body .col-md-6,
    .card-body .col-md-4,
    .card-body .col-md-3 {
        margin-bottom: 1rem;
    }
}





.news-header {
    font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0rem;

}



.darkblue{
  color:#618ac8;
}


 .publication-block img {
                float: left;
                margin-right: 20px;
                margin-bottom: 10px;
            }
            .publication-text {
                overflow: hidden;
            }
            @media(max-width: 768px) {
                .publication-block img {
                    float: none;
                    display: block;
                    margin: 0 auto 20px;
                    max-width: 100%;
                }
            }
            .news-item {
                margin-bottom: 30px;
                padding-bottom: 20px;
                border-bottom: 1px solid #eee;
            }



/* СТИЛИ НОВОГО ВИДА НОВОСТЕЙ */

.news-header {
    text-align: left;
    margin-bottom: 40px;
}

.news-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.news-divider {
    height: 2px;
    background-color: #ddd;
    width: 100%;
}

.news-container {
    margin-top: 30px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.featured-card {
    margin-bottom: 40px;
}

.featured-img-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #ffffff;
}

.featured-card-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.featured-card-body {
    padding: 30px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.featured-card-text {
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-featured-card {
    margin-bottom: 30px;
    display: none;
}

.news-grid {
    margin: 0 -15px;
}

.news-grid-item {
    padding: 15px;
}

.regular-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .regular-card-img-wrapper {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
        width: 100%;
        position: relative;
        overflow: hidden;
        background-color: #ffffff;
        flex-shrink: 0;
    }

    .regular-card-img,
    .regular-card-img-fix {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transition: transform 0.3s ease;
    }

    .regular-card-img.vertical-crop,
    .regular-card-img-fix.vertical-crop {
        object-position: center top !important;
    }

    .regular-card-img.horizontal-crop,
    .regular-card-img-fix.horizontal-crop {
        object-position: center center !important;
    }

    .regular-card-img.wide-crop,
    .regular-card-img-fix.wide-crop {
        object-position: left center !important;
    }

    .regular-card-img.square-crop,
    .regular-card-img-fix.square-crop {
        object-position: center center !important;
    }
}

.regular-card-img-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    flex-shrink: 0;
    height: auto;
    min-height: auto;
    max-height: none;
}

.regular-card-img,
.regular-card-img-fix {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background-color: #f8f9fa;
    display: block;
  }

.regular-card:hover .regular-card-img,
.regular-card:hover .regular-card-img-fix {
    transform: scale(1.05);
}

.regular-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.regular-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.regular-card-text {
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.news-authors {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-style: italic;
}

@media (min-width: 768px) and (max-width: 992px) {
    .featured-img-wrapper {
        height: 250px;
    }

    .featured-card-body {
        height: 250px;
        padding: 20px;
    }

    .regular-card-img-wrapper {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
}

@media (max-width: 768px) {
    .news-title {
        font-size: 2rem;
        text-align: center;
    }

    .news-divider {
        width: 80%;
        margin: 0 auto;
    }

    .mobile-featured-card {
        display: block;
        margin-bottom: 25px;
    }

    .mobile-featured-card .regular-card-body {
        padding: 20px;
    }

    .regular-card-img-wrapper {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .regular-card-img,
    .regular-card-img-fix {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .mobile-featured-card .regular-card-img-wrapper {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .mobile-featured-card .regular-card-img {
        width: 100%;
        height: auto;
    }

    .news-grid-item {
        padding: 10px 15px;
        margin-bottom: 15px;
    }

    .regular-card-body {
        padding: 15px;
    }

    .regular-card-title {
        font-size: 1.05rem;
    }

    .regular-card-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .news-authors {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .news-title {
        font-size: 1.8rem;
    }

    .regular-card-body,
    .mobile-featured-card .regular-card-body {
        padding: 15px;
    }

    .regular-card-title,
    .mobile-featured-card .regular-card-title {
        font-size: 1.05rem;
    }

    .regular-card-text,
    .mobile-featured-card .regular-card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .news-title {
        font-size: 1.6rem;
    }

    .regular-card-body,
    .mobile-featured-card .regular-card-body {
        padding: 12px;
    }

    .regular-card-title,
    .mobile-featured-card .regular-card-title {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .regular-card-img-wrapper {
        height: 270px !important;
        min-height: 270px !important;
        max-height: 270px !important;
    }
}

@media (hover: none) and (pointer: coarse) {
    .news-card:hover {
        transform: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .regular-card:hover .regular-card-img,
    .regular-card:hover .regular-card-img-fix {
        transform: none;
    }
}




.logos-row {
  padding: 15px 0;
  margin: 15px 0;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
}

.logos-row .col-1 {
    padding: 0 !important;
    width: 0 !important;
    flex: 0 0 0 !important;
    max-width: 0 !important;
}

.logos-row > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
}

.logos-row .col-3 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.small-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: block;
  margin: 0 auto;
}

.small-logo:hover {
  opacity: 1;
}

@media (max-width: 992px) {
  .small-logo {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .logos-row {
    padding: 10px 0;
    margin: 10px 0;
  }

  .small-logo {
    height: 40px;
  }

  .logos-row .col-1 {
      display: none !important;
  }
}

@media (max-width: 576px) {
  .logos-row .col-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 5px !important;
  }

  .small-logo {
    height: 35px;
    max-width: 120px;
  }
}

@media (max-width: 420px) {
  .logos-row .col-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 8px 0 !important;
  }

  .small-logo {
    height: 30px;
    max-width: 100px;
  }
}





