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

body {
  background-color: #f5f1ea;
}

.icon {
  text-align: center;
  color: #0076a8;
  margin-right: 5px;
  margin-left: 20px;
}

/* .auto_pagesize {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2.5px 15px;
} */

.logo {
  background: url("../img/logo1.svg");
  width: 535px;
  height: 37px;
  margin: 25px 0px 0px 25px;
  background-repeat: no-repeat;
  background-position: left;
}

.container_logo {
  width: 93%;
}

.container_logo_animation {
  display: flex;
}

.orbiit-spinner {
  width: 60px;
  height: 50px;
}

.orbiit-spinner .orbit {
  /* position: absolute; */
  width: 60px;
  height: 60px;
  /* box-sizing: border-box; */
  border: 2px solid #0076a8;
  border-radius: 50%;
}

.orbiit-spinner .orbit:nth-child(1) {
  border-bottom-width: 0px;
  animation: orbit-anim-1 10s linear infinite;
}

@keyframes orbit-anim-1 {
  0% {
    transform: rotateX(55deg) rotateY(-15deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(55deg) rotateY(-15deg) rotateZ(360deg);
  }
}

.container_clock {
  display: flex;
  align-items: right;
  justify-content: right;
}

.menu {
  background-color: #0076a8;
  height: 25px;
}

.nav {
  display: flex;
  list-style-type: none;
  padding-left: 0;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  height: 100%;
  align-items: center;
}

.nav > li {
  padding-inline: 0px;
  margin-inline: 40px;
  padding-top: 0px;
  margin-top: 0px;
}

.nav > li > a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.nav > li > a:hover {
  color: orange;
}

.banner_home {
  background: url("../img/home.jpg");
  height: 160px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner_services {
  height: 160px;
}

/*.slide-1,
.slide-2,
.slide-3,
.slide-4,
.slide-5,
.slide-6 {
  display: block;
  position: absolute;
  width: 100%;
  height: 300px;
}

.slide-1 {
  animation: fadel1 10s infinite;
}

.slide-2 {
  animation: fadel2 10s infinite;
}

.slide-3 {
  animation: fadel3 10s infinite;
}

.slide-4 {
  animation: fadel4 10s infinite;
}

.slide-5 {
  animation: fadel5 10s infinite;
}

.slide-6 {
  animation: fadel6 10s infinite;
}*/

/*.banner_services {
  width: 85vmin;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  overflow: hidden;
  border: 20px solid #ffffff;
  border-radius: 8px;
  box-shadow: 10px 25px 30px rgba(30, 30, 200, 0.3);
}*/
.wrapper {
  width: 100%;
  height: 160px;
  display: flex;
  position: absolute;
 /* animation: slide 10s infinite;*/
}
img {
  width: 100%;
}
/*@keyframes slide {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-100%);
  }
  35% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(-200%);
  }
  55% {
    transform: translateX(-200%);
  }
  60% {
    transform: translateX(-300%);
  }
  75% {
    transform: translateX(-300%);
  }
  80% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(-400%);
  }
}


/*@keyframes fadel1 {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadel2 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadel3 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadel4 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
 
@keyframes fadel5 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadel6 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}*/

.banner_article {
  background: url("../img/article.jpg");
  height: 160px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.banner_contact {
  background: url("../img/contact.jpg");
  height: 160px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.submenu {
  background-color: #0c93cd;
  height: 100%;
  align-items: center;
  margin-top: 0px;
}

.submenu_font {
  color: white;
  letter-spacing: 10px;
  font-size: 16px;
  font-family: Areal;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0px;
}

.introduction_home {
  margin: 20px;
  font-size: 22px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

.introduction1_home,
.introduction2_home,
.introduction3_home {
  width: 33.33%;
  margin: 0 10px 10px 10px;
  padding: 10px;
  font-size: 19px;
  border: 1px solid #0076a8;
  border: none;
  border-radius: 10px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-color: #0c93cd;
}

.container_introductions_home {
  display: flex;
  margin: 10px;
  text-align: center;
  color: white;
}

.introduction1_services,
.introduction2_services,
.introduction3_services {
  width: 33.33%;
  margin: 0 10px 10px 10px;
  padding: 10px;
  font-size: 19px;
  border: 1px solid #0076a8;
  border: none;
  border-radius: 10px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-color: #0c93cd;
}

.container_introductions_services {
  display: flex;
  margin: 20px;
  text-align: center;
  color: white;
}

.introduction_services {
  margin: 40px;
  font-size: 19px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

.chapter {
  text-align: left;
  margin: 30px;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

h1 {
  font-size: 18px;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #0076a8;
  text-transform: uppercase;
  margin-left: 20px;
  margin-bottom: 0px;
  letter-spacing: 3px;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #1c9888;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 5px;
}

h3 {
  font-size: 22px;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #0076a8;
  text-transform: uppercase;
  margin-left: 20px;
  margin-bottom: 20px;
  margin-top: 40px;
  letter-spacing: 2px;
}

h4 {
  font-size: 20px;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #1c9888;
  text-transform: none;
  text-align: center;
  margin-bottom: 0px;
  line-height: 2.5;
}

.item {
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: Lucida Sans Unicode;
}

@keyframes buttons {
  0% {
    transform: scale(0.1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

.box {
  width: 100%;
  height: auto;
  flex-direction: column;
}

.contact_info {
  width: 100%;
  height: auto;
  flex-direction: column;
  margin-left: 0px;
}

.name {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.name input {
  width: 100%;
  padding: 5px 30px;
  border: none;
  font-size: 18px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #0076a8;
}

.name input::placeholder {
  color: #bbb;
  font-weight: 500;
}

.email {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.email input {
  width: 100%;
  padding: 5px 30px;
  border: none;
  font-size: 18px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #0076a8;
}

.email input::placeholder {
  color: #bbb;
  font-weight: 500;
}

.subject {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.subject input {
  width: 100%;
  padding: 5px 30px;
  border: none;
  font-size: 18px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #0076a8;
}

.subject input::placeholder {
  color: #bbb;
  font-weight: 500;
}

.message_box {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.message_box textarea {
  width: 100%;
  padding: 10px 30px;
  border: none;
  font-size: 18px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #0076a8;
}

.message_box textarea::placeholder {
  color: #bbb;
  font-weight: 500;
}

.button {
  width: 100%;
  cursor: pointer;
  margin-bottom: 5px;
}

.button button {
  width: 100%;
  padding: 5px;
  font-size: 18px;
  color: #fff;
  background-color: #5297ff;
  border: none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #0076a8;
}

.button button:hover {
  background-color: #c0d9ff;
  color: #0076a8;
  transition: 0.3s linear;
}

.wrapper_contact {
  width: 100%;
  height: 550px;
  display: flex;
}

.map {
  padding: 3px;
}

.container_map {
  width: 460px;
  margin-top: 10px;
  margin-left: 20px;
  height: 248px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #0076a8;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 10%;
}

.back {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

span {
  font-weight: 500;
  font-style: normal;
  color: #0076a8;
}

a {
  text-decoration: none;
  color: #0076a8;
}

a {
  color: #4f27e0;
}

a:hover {
  color: #1eb620;
}

.flag_counter {
  margin-left: 30px;
  display: none;
}

.footer_bottom {
  display: flex;
  background-color: #0076a8;
  padding: 4px;
  color: white;
  margin-top: auto;
  font-family: Roboto Condensed, sans-serif;
}

.footer_container_content_name {
  text-align: center;
  width: 88%;
  font-size: 15px;
  font-family: Roboto Condensed, sans-serif;
}

.footer_container_count_contents {
  display: flex;
  width: 12%;
  color: #bfb09e;
}

.count_content_digit {
  text-align: left;
  font-size: 12px;
  margin-top: auto;
  width: 24px;
  font-family: Roboto Condensed, sans-serif;
}

.count_content_text {
  text-align: right;
  margin-top: auto;
  font-size: 14px;
  width: 86px;
  font-family: Roboto Condensed, sans-serif;
}
