*,
*::before,
*::after {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  scroll-behavior: smooth;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*** 
====================================================================
    Global Settings
====================================================================
***/
body {
  font-family: "Times New Roman";
  font-size: 14px;
  color: #000;
  line-height: 1.7em;
  font-weight: 400;
  background: #74b3e8;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

body.active {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.6em;
}

/* Typography */
h1 {
  font-size: 4em;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  position: relative;
  line-height: 1.8em;
}

.auto_container {
  position: relative;
  max-width: 1600px;
  padding: 0px 60px;
  margin: 0 auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #DFDFDF;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #DFDFDF;
}

.header {
  position: relative;
  overflow: hidden;
}
.header_bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.header_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header_icon {
  width: 100px;
  
}
.header_icon svg,
.header_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}
.header_title {
  font-family: "Times New Roman";
  text-align: center;
  font-size: 46px;
  line-height: 1.3;
  color: #0267AE;
  margin-left: 20px;
  margin-right: 20px;
}

.nav {
  margin-top: 30px;
}
.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  background: #64abe6;
  padding: 20px;
  -webkit-box-shadow: 0px 7px 2px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 7px 2px rgba(0, 0, 0, 0.7);
}
.nav ul.submenu {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.nav ul.submenu a:hover {
  color: #fff;
}
.nav li {
  margin-right: 14px;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}
.nav li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: #fff;
}
.nav li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.nav li:last-child::after {
  content: none;
}
.nav a {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  display: block;
  font-family: "Times New Roman";
  font-size: 16px;
  line-height: 1.3;
  font-weight: normal;
  border-radius: 3px;
  padding: 5px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.nav a:hover {
  color: #fff;
  background: #0267AE;
  cursor: pointer;
}
.nav a.active {
  color: #fff;
  background: #0267AE;
}

.footer {
  position: relative;
  padding: 70px 0 40px 0;
  margin-top: -100px;
  z-index: 0;
}
.footer_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.footer_wrap {
  position: relative;
  z-index: 5;
}
.footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 30px;
}
.footer .logo {
  width: 100px;
}
.footer .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}
.footer_title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  background: #0267AE;
  padding: 20px;
  font-family: "Times New Roman";
}
.footer_title span {
  font-size: 40px;
}
.footer_block {
  font-family: "Times New Roman";
}
.footer_block-title {
  color: #0267AE;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}
.footer_block p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #0267AE;
}
.footer_block p svg,
.footer_block p img {
  width: 24px;
  display: block;
  margin-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer_block a {
  font-family: "Times New Roman";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #0267AE;
}
.footer_block a svg,
.footer_block a img {
  width: 24px;
  display: block;
  margin-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .copyright {
  font-family: "Times New Roman";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 25px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #0267AE;
}

.marq {
  margin-top: 20px;
}
.marq_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.marq marquee {
  background: #fff;
  padding: 7px 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 10px;
  width: calc(100% - 315px);
}
.marq .search {
  position: relative;
}
.marq .search .input {
  min-width: 300px;
  margin-left: 15px;
  position: relative;
}
.marq .search .input input {
  width: calc(100% - 70px);
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px 60px 10px 10px;
  border-radius: 10px;
  color: #000;
}
.marq .search button {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
  background-color: transparent;
}

.white-txt {
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mb {
  margin-bottom: 100px;
}

.bg-white {
  background: #fff;
}

.slider {
  width:100%;
}
.slider img {

   width: 100%;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.hr {
  background: rgb(16, 16, 85);
}

.submenu li {
  margin-right: 0 !important;
}

.hero {
  margin-top: 30px;
}
.hero_photo {
  width: 100%;
  height: 100%;
  display: block;

}
.hero_photo img,
.hero_photo svg {
   width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}

.article {
  margin-top: 30px;
}
.article_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.article_photo {
  width: 400px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.article_photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}
.article_info {
  padding: 14px;
  background: #fff;
  color: #208B54;
  width: calc(100% - 428px);
}
.article_info h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}
.article_info p {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}

.news {
  padding: 40px 0;
  position: relative;
}
.news_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.news_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.news .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
}
.news_wrap {
  position: relative;
  z-index: 5;
}
.news_title {
  background: #fff;
  padding: 10px 50px;
  border-radius: 7px;
  font-family: "Times New Roman";
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  -webkit-box-shadow: 0px 7px 2px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 7px 2px rgba(0, 0, 0, 0.7);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  color: #0267AE;
}
.news_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}
.news_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news.big {
  margin-bottom: 10px;
  margin-top: 0;
  padding: 0;
}
.news.big .news_photo {
  width: 100%;
  height: 400px;
}
.news.big .news_photo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  -o-object-fit: fill;
}
.news.mini {
  width: calc(50% - 5px);
  margin-top: 0;
  padding: 0;
}
.news.mini .news_photo {
  width: 100%;
  height: 350px;
}
.news.mini .news_photo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  -o-object-fit: fill;
}
.news_block {
  min-width: calc(50% - 20px);
  max-width: 1000px;
}
.news .magazine {
  width: 300px;
}
.news .magazine img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}

.banner {
  position: relative;
}
.banner_photo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner_photo img,
.banner_photo video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}
.banner #playPauseBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  cursor: pointer;
  width: 100px;
  height: 100px;
}

.inst {
  position: relative;
  padding: 60px 0 150px;
}
.inst_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.inst_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.inst_wrap {
  position: relative;
  z-index: 5;
}
.inst_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  padding: 10px !important;
  gap: 10px;
}
.inst_box .swiper-slide {
  height: auto !important;
}
.inst_item {
  height: 100%;
  position: relative;
}
.inst_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.inst_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.inst_item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 5;
  width: calc(100% - 20px);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.inst_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.inst_title {
  background: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px 20px;
  border-radius: 7px;
  color: #0267AE;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Times New Roman";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.player {
  padding: 40px 0 100px;
}
.player_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.player_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.player_row:last-child {
  margin-bottom: 0;
}
.player_icon {
  margin-right: 14px;
}
.player_item {
  width: calc(50% - 30px);
  margin-bottom: 30px;
  background: #F8F8FF;
  padding: 10px;
  border-radius: 10px;
}
.player_item audio {
  width: calc(100% - 100px);
  margin-right: 20px;
}

@media (max-width: 1400px) {
  .inst_item {
    width: calc(33.33% - 7px);
  }
  .inst_item-title {
    font-size: 20px;
  }
  .inst_title {
    font-size: 16px;
  }
  .footer_title {
    font-size: 22px;
  }
  .footer_title span {
    font-size: 30px;
  }
  .footer_row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer_block {
    width: 100%;
    margin-top: 15px;
  }
  .footer .copyright {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 1300px) {
  .auto_container {
    padding: 0 35px;
  }
  .header_title {
    font-size: 36px;
    
  }
  .marq_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .marq marquee {
    width: calc(100% - 20px);
    margin-bottom: 15px;
  }
  .marq .search {
    width: 100%;
  }
  .marq .search .input {
    margin-left: 0;
  }
  .article_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .article_info {
    width: calc(100% - 28px);
  }
  .article_info h2 {
    text-align: center;
    font-size: 26px;
  }
  .article_info p {
    text-align: justify;
    font-size: 18px;
  }
  .inst_row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .inst_title {
    width: calc(50% - 60px);
    margin: 10px;
    padding: 20px;
  }
  .news_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news_block {
    max-width: 100%;
  }
  .news .magazine {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
@media (max-width: 1000px) {
  .header_title {
    font-size: 26px;
  }
  .header_icon {
    width: 80px;
  }
}
@media (max-width: 800px) {
  .inst_item {
    width: calc(50% - 7px);
  }
}
@media (max-width: 400px) {
  .auto_container {
    padding: 0 20px;
  }
}


