@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap");

:root {
  --blue: #3f7ec2;
  --dark: #3d393d;
  --exDark: #2b2b2b;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu-Candent", sans-serif;
}
header {
  position: relative;
  width: 100%;
}
.container-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20rem 1rem;
}
.logo h2 a {
  color: #666 solid (0.2);
  font-weight: 500;
  cursor: pointer;
}
.logo h2 a {
  text-decoration: none;
  color: #8a8a8a;
}
.title p {
  color: red;
  font-size: 1.5rem;
  font-weight: 700;
}
.icons a i {
  padding: 1rem 1rem;
  color: var(--blue);
  font-size: 2rem;
}
.container-2 {
  position: relative;
  width: 100%;
}

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 27rem 0rem 19rem;
  background: var(--blue);
}
.menu-bar li {
  list-style: none;
  margin-left: 1rem;
}

.menu-bar li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-bar li {
  float: left;
  overflow: hidden;
}

.menu-bar .dropdown {
  font-size: 1rem;
  border: none;
  outline: none;
  color: white;
  padding: 10px 12px;
  background-color: inherit;
  font-family: inherit;
  margin: 5px;
}
.menu-bar .dropdown .flyout-right {
  display: none;
  position: absolute;
  background-color: #ddd;
  width: 550px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  height: 12rem;
  z-index: 1;
}
.menu-bar .dropdown .flyout-right-1 {
  display: none;
  position: absolute;
  background-color: #ddd;
  width: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  height: 6rem;
  z-index: 1;
}
.menu-bar .dropdown .flyout-right-2 {
  display: none;
  position: absolute;
  background-color: #ddd;
  width: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  height: 8.9rem;
  z-index: 1;
}

.dropdown .flyout-right a {
  font: none;
  color: #000;
  padding: 8px 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: block;
  border-bottom: 1px #333 dotted;
  text-align: justify;
  font-family: "Roboto-Regular";
}
.sub-menu {
  display: none;
}
.hover-me:hover .sub-menu {
  position: absolute;
  display: block;
  margin-top: -34px;
  margin-left: 191px;
  background: #ddd;
  cursor: pointer;
}
.hover-me a {
  color: #111;
  padding: 8px 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: block;
  text-align: justify;
  border-bottom: 1px #333 dotted;
  font-family: "Roboto-Regular";
}
.sub-menu a {
  color: #111;
  padding: 8px 8px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  display: block;
  text-align: justify;
  border-bottom: 1px #333 dotted;
  font-family: "Roboto-Regular";
}
.hover-me:hover {
  background-color: #fff;
}
.sub-menu a:hover {
  background-color: #fff;
}

.dropdown .flyout-right-2 .bar a {
  font: none;
  color: #111;
  padding: 8px 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: block;
  text-align: justify;
  border-bottom: 1px #333 dotted;
  font-family: "Roboto-Regular";
}

.dropdown .flyout-right-1 a {
  font: none;
  color: #111;
  padding: 8px 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: block;
  text-align: left;
  border-bottom: 1px #333 dotted;
  font-family: "Roboto-Regular";
}
.dropdown .flyout-right a:hover {
  background-color: #fff;
}
.dropdown .flyout-right-2 .bar:hover {
  background-color: #fff;
  width: 100%;
}
.dropdown .flyout-right-1 a:hover {
  background-color: #fff;
}
.dropdown:hover .flyout-right {
  display: block;
}
.dropdown:hover .flyout-right-1 {
  display: block;
}
.dropdown:hover .flyout-right-2 {
  display: block;
}

.mySlides {
  display: none;
}

img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transition: 0.2 ease-in-out;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: var(--blue);
}

/* Caption text */
/*.text {
  color: #f9f9f9;
  font-size: 25px;
  font-weight: 600;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  top: 60%;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 200px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
.leftcolumn {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-bottom: 30px;
  max-width: 1400px;
  margin: 0 auto;
}
h3 {
  font-size: 23px;
  font-weight: 800;
  color: #8a8a8a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin: 30px;
}
.card {
  float: left;
  width: 26%;
  padding: 0 16px;
  margin-bottom: 30px;
}

.images {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.title_text {
  padding: 20px 20px;
}

.card .images img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.title_text a {
  text-transform: uppercase;
  text-decoration: none;
  color: #313131;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
}
.title_text a:hover {
  color: #3f7ec2;
}
.title_text h5 {
  margin: 0 auto;
  padding: 20px 0;
  font-size: 15px;
  color: #8a8a8a;
  font-family: "Roboto-Regular";
}
.title_text::after,
.leftcolumn::after {
  content: "";
  clear: both;
  display: table;
}
.video_block {
  margin-bottom: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.video_block .video_list li {
  float: left;
  width: 24.3%;
  margin: 0 10px 10px 0;
}
.video_list li a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}
.video_list li:first-child {
  width: 47.3%;
  margin: 0 10px 0 0;
}
.video_list li:nth-child(4),
.video_list li:nth-child(5) {
  margin: 4px;
}
.video_list li:first-child a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
}
.video_list li a span:after {
  content: " ";
  background-color: rgba(8, 65, 179, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;

  transition: all 0.3s ease-in-out;
}
.video_list li a span img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}
.video_text {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(8, 65, 179, 0.85);
  width: 100%;
  height: 100%;
  padding: 20px 20px;
  font-size: 14px;

  transition: all 0.3s ease-in-out;
}
.video_list li:first-child .video_text span {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video_text span {
  display: -webkit-box !important;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video_box > img {
  position: absolute;
  bottom: 50px;
  right: 100px;

  transition: all 0.3s ease-in-out;
}
.video_box:hover span:after {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.video_box:hover > img {
  opacity: 0;
}
.video_box:hover .video_text {
  opacity: 1;
}
.video_list li:first-child a span:after {
  content: " ";
  background: url("") no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
.video_list li:first-child .video_text {
  display: block;
  align-items: normal;
  background-color: transparent;
  opacity: 1;
  height: auto;
  top: auto;
  bottom: 0;
  font-size: 18px;
  line-height: 1.3;
  padding: 10px 100px 30px 30px;
}
.video_list li:first-child .video_box > img {
  opacity: 0;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.video_list li:first-child a:hover span:after {
  background-color: rgba(8, 65, 179, 0.7);
  transition: all 0.3s ease-in-out;
}
.video_list li:first-child .video_box:hover > img {
  opacity: 1;
}
.modal audio,
canvas,
progress,
video {
  width: 100%;
}

.container-home {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-home h1 {
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8a8a8a;
  font-family: "Roboto-Regular";
  cursor: pointer;
}
.counters .container-content {
  background: url(../images/uzbekistan-slide42.jpg);
  background-repeat: no-repeat;
  object-fit: cover;
}
.counters {
  max-width: 1260px;
  margin: 0 auto;
  padding: 10px 100px 10px 80px;
  overflow: hidden;
}
.counters .container-content {
  height: 20vh;
  position: relative;
}
.counters .container-content {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.counters .container-content i {
  margin-top: 10px;
  font-size: 26px;
  color: #3f7ec2;
}
.counters .container-content h3 {
  color: #666;
  font-size: 16px;
  font-weight: 800;
  padding: 10px 20px 0 40px;
  text-transform: uppercase;
  align-items: center;
}
.counters .container-content span {
  color: #3f7ec2;
  font-family: "Arbutus Slab";
}
.counters .container-content span:hover {
  transition: 0.2s;
}
.counters .counter {
  font-size: 25px;
  margin: 6px;
  color: coral;
  font-weight: 800;
}
@media (max-width: 768px) {
  .counters .container-content {
    grid-template-columns: repeat(1, 3fr);
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 1049px) {
  .counters .container-content {
    grid-template-columns: repeat(1, 3fr);
    height: 100%;
  }
}

.responsive {
  position: relative;
  margin-bottom: 60px;
}
.responsive .title-text {
  position: relative;
  width: 100%;
}
.responsive .title-text h1 {
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8a8a8a;
  font-family: "Roboto-Regular";
  cursor: pointer;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-bottom: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.container .row {
  /*box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);*/
  width: 20%;
  height: 25%;
  margin: 0 10px;
  margin-top: 10px;
}
.container .row:hover {
  background-color: #7a7a7a7a;
}
.container .row img {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 20px;
  width: 50%;
  height: 40%;
  cursor: pointer;
}

.row .author {
  padding: 10px;
  text-decoration: none;
  text-align: center;
}
.author h6 {
  text-decoration: none;
  margin: 10px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--blue);
}

.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: rgba(53, 61, 66, 1);
  padding: 10px;
  width: 100%;
}
.footer .box-container .box {
  margin: 2rem;
}

.footer .box-container .box p {
  font-size: 1.2rem;
  padding: 0.8rem 0;
  color: #fff;
  cursor: pointer;
  transition: all 0.3 ease-in-out;
}
.footer .box-container .box p:hover {
  color: var(--blue);
}
.footer .box-container .box-icons h1 {
  font-size: 1.2rem;
  padding: 2.6rem 0;
  color: #fff;
  cursor: pointer;
  transition: all 0.3 ease-in-out;
}
.footer .box-container .box-icons h1:hover {
  color: var(--blue);
}
.footer .box-container .box:nth-child(2) a {
  display: block;
  font-size: 1.2rem;
  padding: 0.4rem 0;
  color: #fff;
}
.footer .box-container .box-icons a i {
  padding: 1rem 1rem 1rem;
  color: #f9f9f9;
  font-size: 2rem;
}
.footer .box-container .box-icons a i:hover {
  color: var(--blue);
}
@media only screen and (max-width: 768px) {
  .container-1 {
    display: block;
    grid-column: wrap;
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 1049px) {
  .container-1 {
    padding: 0 80px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1440px) {
  .container-1 {
    padding: 0 120px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1049px) {
  .container-1 .logo h2 {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0;
  }

  .title p {
    font-size: 18px;
    margin-top: 10px;
    padding: 0;
  }
  .icons {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .container-2 {
    min-height: 58px;
    background-color: #23364b;
    width: 100%;
  }

  .menu-bar {
    display: none;
    width: 100%;
  }
  .container-2 .menu-bar.active {
    z-index: 888;
    position: fixed;
    background: #ddd;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: justify;
    flex-direction: column;
    box-shadow: 0 5px 25px rgba(1 1 1 /15%);
    margin: 0;
    padding: 0;
    transition: 0.3s ease;
  }
  .menu-bar .dropdown {
    margin: 0;
    padding: 14px;
    text-align: justify;
    width: 80%;
  }

  .sub-menu {
    display: none;
  }

  .dropdown:hover .flyout-right {
    display: block;
  }
  .dropdown:hover .flyout-right-1 {
    display: block;
  }
  .dropdown:hover .flyout-right-2 {
    display: block;
  }

  .container-2 .menu-bar .dropdown a {
    color: #000;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  .container-2 .menu-bar .dropdown .flyout-right {
    height: 21.4vh;
  }
  .container-2 .menu-bar .dropdown .flyout-right a {
    font-size: 14px;
    padding: 8px 10px;
  }
  .container-2 .menu-bar .dropdown .flyout-right-1 {
    height: 10.6vh;
  }
  .container-2 .menu-bar .dropdown .flyout-right-1 a {
    font-size: 14px;
    padding: 8px 10px;
  }
  .container-2 .menu-bar .dropdown .flyout-right-2 {
    height: 16vh;
  }
  .container-2 .menu-bar .dropdown .flyout-right-2 a {
    font-size: 12px;
    padding: 8px 8px;
  }

  .container-2 .menu-bar a:hover {
    background: #fff;
    color: #333;
  }

  .menu-btn {
    position: absolute;
    background: url(../images/menu.png) no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    right: 0;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.4s ease;
  }
  .menu-btn.active {
    z-index: 999;
    background: url(../images/close.png) no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
    filter: invert(1);
  }
}

/*Container-1024*/
@media only screen and (max-width: 1049px) {
  .container-2 {
    width: 100%;
  }
  .container-2 .menu-bar {
    width: 100%;
    padding: 0 100px;
    margin: 0;
  }
  .container-2 .menu-bar .dropdown a {
    font-size: 10px;
  }
  .container-2 .menu-bar .dropdown i {
    font-size: 10px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 1049px) {
  .leftcolumn {
    flex-direction: column;
  }
  .leftcolumn .card {
    width: 100%;
    padding: 10px 80px;
  }

  .leftcolumn .card .images img {
    width: 100%;
    min-height: 80vh;
  }
  .title_text p a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1049px) {
  section .container {
    height: 100%;
    width: 100%;
  }
  section .container .row {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    height: 100%;
    width: 100%;
  }
  .row img {
    width: 10%;
  }
  .author {
    display: block;
  }
  .box-container {
    flex-direction: column;
  }
  .box {
    width: 100%;
    padding: 10px 60px 0 160px;
  }
  .box-icons h1 {
    text-align: center;
  }

  .box-icons a {
    width: 100%;
    padding: 10px 20px 0 120px;
  }
}

@media only screen and (max-width: 1049px) {
  .container {
    height: 100%;
    width: 100%;
  }
  .row img {
    width: 10%;
  }
  .author {
    display: block;
  }
  .box-container {
    flex-direction: column;
  }
  .box {
    width: 100%;
    padding: 10px 60px 0 300px;
  }
  .box-icons h1 {
    text-align: center;
  }

  .box-icons a {
    width: 100%;
    padding: 10px 20px 0 200px;
  }
}

.about .content {
  position: relative;
  max-width: 1200px;
}
.content .card-top-6 {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
.content .card-top-6 .card-item {
  background: #fff;
  width: 800px;
  margin-bottom: 50px;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(1 1 1 /15%);
  display: flex;
  justify-content: center;
  margin: 10px 500px;
}
.card-top-6 .card-item .img-card {
  position: relative;
  width: 50%;
  margin: 20px;
}
.card-top-6 .card-item .column .col-right {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1049px) {
  .about .content .card-top-6 .card-item {
    width: 100%;
    margin: 0 20px;
    margin-bottom: 20px;
  }
}
