@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-ExtraLight.woff2") format("woff2"), url("../fonts/Archivo-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Light.woff2") format("woff2"), url("../fonts/Archivo-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Regular.woff2") format("woff2"), url("../fonts/Archivo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Bold.woff2") format("woff2"), url("../fonts/Archivo-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-SemiBold.woff2") format("woff2"), url("../fonts/Archivo-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-ExtraBold.woff2") format("woff2"), url("../fonts/Archivo-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Medium.woff2") format("woff2"), url("../fonts/Archivo-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUI.woff2") format("woff2"), url("../fonts/SegoeUI.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUI-Bold.woff2") format("woff2"), url("../fonts/SegoeUI-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Archivo";
  overflow-x: hidden;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  padding: 0;
  color: black;
  position: relative;
}

.page-width {
  max-width: 1500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
@media only screen and (max-width: 1600px) {
  .page-width {
    max-width: 85%;
  }
}
@media only screen and (max-width: 900px) {
  .page-width {
    max-width: 90%;
  }
}

a {
  text-decoration: none;
}

svg, button {
  cursor: pointer;
}

ul {
  list-style: none;
}


.d-block {
  display: block !important;
}

.mt {
  margin-top: 150px;
}
@media screen and (max-width: 1199px) {
  .mt {
    margin-top: 70px;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.23;
  z-index: 1;
}

.padd-tb {
  padding: 60px 0;
}
@media screen and (max-width: 1399px) {
  .padd-tb {
    padding: 50px 0;
  }
}

.page-flex > * {
  margin-bottom: 60px;
}
@media screen and (max-width: 1399px) {
  .page-flex > * {
    margin-bottom: 50px;
  }
}

.page-flex > *:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 40px;
  font-weight: 800;
  color: #004566;
  text-align: center;
}

p {
  font-size: 20px;
  color: #707070;
  line-height: 27px;
}
@media screen and (max-width: 1399px) {
  p {
    line-height: 20px;
    font-size: 16px;
  }
}

.text p {
  margin-top: 20px;
}
.text p:first-child {
  margin-top: 0;
}

.dark-text p {
  color: #303030;
}

.center-text p {
  text-align: center;
}

.blue-news .image img,
.short-news .image img,
.sos-img img,
.membership .image img,
.founder-img img,
.news-main-img img,
.law-support .image img,
.template-grid .img img,
.album-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.background2 {
  height: 30vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  .background2 {
    height: 23vh;
  }
}

.grey-bg {
  background-color: #F5F5F5;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  height: 150px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

header .page-width {
  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;
  position: relative;
}
@media screen and (max-width: 1199px) {
  header .page-width {
    position: relative;
    z-index: 10;
  }
}
@media screen and (max-width: 1199px) {
  header {
    height: 70px;
    border-bottom: 3px solid #5C96B2;
  }
}

.header-logo h1 {
  font-size: 27px;
  color: #004566;
  text-align: start;
}
.header-logo h1 span {
  color: #5C96B2;
}
@media screen and (max-width: 1399px) {
  .header-logo h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .header-logo h1 {
    font-size: 15px;
  }
}

.head {
  height: 100%;
  background-color: #fff;
}
.head ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 50%;
}
.head ul.head-contact > * {
  margin-left: 30px;
}
@media screen and (max-width: 1199px) {
  .head ul.head-contact > * {
    margin-left: 0;
  }
}
.head ul.head-contact {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 15px;
}
.head ul.head-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #2F88B2;
}
@media (max-width: 5760px) {
  .head ul.head-contact a {
    font-size: 15px;
  }
}
.head ul.head-contact img {
  width: 20px;
  margin-right: 10px;
}
.head ul.nav > * {
  margin-left: 20px;
}
@media only screen and (max-width: 1600px) {
  .head ul.nav > * {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .head ul.nav > * {
    margin-left: 0;
  }
}
.head ul.nav {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1199px) {
  .head {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100vw;
    height: 100vh;
    margin-top: 70px;
    padding-bottom: 70px;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.language a {
  color: #2F88B2;
  margin-left: 5px;
}
.language a.active-lang {
  color: #004566;
}

ul.nav li {
  height: 100%;
  padding: 5px 10px;
}
ul.nav a {
  font-size: 25px;
  font-weight: 700;
  color: #004566;
  text-align: center;
  display: inline-block;
  height: 100%;
}
@media only screen and (max-width: 1600px) {
  ul.nav a {
    font-size: 23px;
  }
}
@media screen and (max-width: 1399px) {
  ul.nav a {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  ul.nav a {
    font-size: 26px;
  }
}
ul.nav li.active, ul.nav li:hover {
  background-color: #2F88B2;
}
ul.nav li.active a, ul.nav li:hover a {
  color: #fff;
}

@media screen and (max-width: 1199px) {
  ul.nav, ul.head-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
  }
}

@media screen and (max-width: 1199px) {
  ul.nav > *, ul.head-contact > * {
    margin-bottom: 10px;
  }
}

.search {
  cursor: pointer;
  position: relative;
  height: 100%;
  width: 100%;
  width: 25px;
  height: 35px;
  background:transparent url('../images/search.png') no-repeat;
  background-size: contain;
  cursor: pointer;
background-position-y: 7px;
}

.search img {
  width: 24px;
}
@media screen and (max-width: 1199px) {
  .search img {
    display: none;
  }
}

.search .search-bar {
  position: absolute;
  z-index: 13;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  height: 50px;
  width: 300px;
  display: none;
}
@media screen and (max-width: 1199px) {
  .search .search-bar {
    position: static;
    width: 100%;
    display: block;
  }
}
.search form input {
  display: none;
}
.search.search-bar-open form input {
  height: 40px;
  width: 100%;
  outline: none;
  border: 2px solid #2F88B2;
  border-radius: 15px;
  background-color: #fff;
  padding: 0 40px;
  color: #004566;
  display: block;
  background: transparent url('../images/search.png') no-repeat;
  background-position: 10px;
  background-size: 20px;
}
.search form input::-moz-placeholder {
  font-size: 20px;
}
.search form input::-webkit-input-placeholder {
  font-size: 20px;
}
.search form input:-ms-input-placeholder {
  font-size: 20px;
}
.search form input::-ms-input-placeholder {
  font-size: 20px;
}
.search form input, .search form input::placeholder {
  font-size: 20px;
}
.search form input::-moz-placeholder {
  color: #5C96B2;
}
.search form input::-webkit-input-placeholder {
  color: #5C96B2;
}
.search form input:-ms-input-placeholder {
  color: #5C96B2;
}
.search form input::-ms-input-placeholder {
  color: #5C96B2;
}
.search form input::placeholder {
  color: #5C96B2;
}

/* @media screen and (min-width: 1200px) {
  .search:hover .search-icon img:first-child {
    display: none;
  }
  .search:hover .search-icon img:nth-child(2) {
    display: inline;
  }
}  */

.small-header {
  height: 100px;
}
@media screen and (max-width: 1199px) {
  .small-header {
    height: 70px;
  }
}

.hamburger {
  padding: 15px 15px;
  padding-right: 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #004566;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #004566;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.foot2 {
  padding: 10px 0;
}
.foot2 p {
  text-align: center;
}
.foot2 p, .foot2 a {
  font-size: 18px;
  color: #004566;
}
@media screen and (max-width: 1399px) {
  .foot2 p, .foot2 a {
    font-size: 16px;
  }
}

.foot1 {
  background-color: #004566;
  padding: 50px 0;
}
.foot1 h1, .foot1 h5, .foot1 a, .foot1 p {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .foot1 h1, .foot1 h5, .foot1 a, .foot1 p {
    text-align: center !important;
  }
}
.foot1 h1 {
  font-size: 40px;
  text-align: left;
}
.foot1 h1 span {
  color: #5C96B2;
}
@media screen and (max-width: 1399px) {
  .foot1 h1 {
    font-size: 30px;
  }
}
.foot1 h5 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 1399px) {
  .foot1 h5 {
    font-size: 20px;
  }
}
.foot1 a, .foot1 p {
  font-size: 22px;
}
@media screen and (max-width: 1399px) {
  .foot1 a, .foot1 p {
    font-size: 18px;
  }
}
.foot1 .page-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .foot1 .page-width {
    -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;
    gap: 50px;
  }
}
.foot1 .page-width .footer-contact a {
  position: relative;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1199px) {
  .foot1 .page-width .footer-contact a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
    margin: 10px 0;
    padding-left: 0;
  }
}
.foot1 .page-width .footer-contact a img {
  width: 17px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1199px) {
  .foot1 .page-width .footer-contact a img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 575px) {
  .foot1 .page-width .footer-contact a img {
    display: none;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.social a {
  margin-right: 10px;
}
.social a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.social svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1199px) {
  .social svg {
    width: 30px;
    height: 30px;
  }
}
.social svg:hover {
  fill: #5C96B2;
}

.headSwiper {
  position: relative;
  height: 70vh;
}
.headSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 991px) {
  .headSwiper {
    height: 50vh;
  }
}
@media screen and (max-width: 575px) {
  .headSwiper {
    height: 40vh;
  }
}

.headline {
  position: absolute;
  z-index: 2;
  top: 68%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 100%;
}
.headline .page-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.headline h1, .headline h2 {
  color: #fff;
  text-align: end;
  width: 35%;
}
@media screen and (max-width: 1399px) {
  .headline h1, .headline h2 {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .headline h1, .headline h2 {
    width: 100%;
  }
}
.headline h1 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 575px) {
  .headline h1 {
    font-size: 30px;
  }
}
.headline h2 {
  font-size: 40px;
  font-weight: 200;
}
@media screen and (max-width: 575px) {
  .headline h2 {
    font-size: 20px;
  }
}

.see-more {
  color: #004566;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  cursor: pointer;
}



.share {
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid #004566;
  width: 100%;
}
.share img {
  width: 30px;
  margin-left: 10px;
}

.home-news a:first-child, .home-news a:nth-child(2) {
  grid-row: span 3;
}

.contact-us {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px;
  padding-top: 70px;
}
.contact-us .overlay {
  opacity: 0.09;
}
@media screen and (max-width: 767px) {
  .contact-us {
    padding: 50px;
  }
}
@media screen and (max-width: 400px) {
  .contact-us {
    padding: 50px 20px;
  }
}
.contact-us p, .contact-us a {
  position: relative;
  z-index: 2;
  line-height: normal;
}
.contact-us p {
  font-size: 42px;
  font-weight: 300;
  color: #004566;
  width: 45%;
  margin-bottom: 50px;
}
@media screen and (max-width: 1399px) {
  .contact-us p {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .contact-us p {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .contact-us p {
    font-size: 35px;
  }
}
.contact-us a {
  font-size: 26px;
  font-weight: bold;
  color: #004566;
  background-color: #fff;
  padding: 20px;
  border-radius: 30px;
}
@media screen and (max-width: 330px) {
  .contact-us a {
    font-size: 20px;
    padding: 15px;
  }
}

.goals {
  background-color: #5C96B2;
  padding: 50px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .goals {
    grid-template-columns: 1fr;
    padding: 50px;
  }
}
@media screen and (max-width: 400px) {
  .goals {
    padding: 50px 20px;
  }
}
.goals div:first-child {
  padding-right: 40px;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .goals div:first-child {
    padding-right: 0;
    padding-bottom: 40px;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}
.goals h4 {
  font-size: 24px;
  color: #004566;
}
.goals p {
  color: #fff;
  margin-top: 20px;
}

.sos {
  position: relative;
  background-color: #004566;
  padding: 50px 0;
}
.sos .page-width {
  padding-left: 35%;
}
@media screen and (max-width: 767px) {
  .sos .page-width {
    padding-left: 0;
  }
}
.sos p, .sos h4, .sos a {
  text-align: center;
}
.sos p {
  color: #fff;
}
.sos h4 {
  font-size: 33px;
  color: #5C96B2;
  margin-top: 20px;
  margin-bottom: 5px;
}
.sos a {
  font-size: 43px;
  font-weight: bold;
  color: #fff;
  display: block;
}

.sos-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45%;
}
.sos-img img {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 80% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 80% 0);
}
@media screen and (max-width: 767px) {
  .sos-img {
    display: none;
  }
}

.membership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .membership {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.membership .info {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .membership .info {
    padding: 0;
  }
}
.membership h1 {
  text-align: left;
}
.membership h2 {
  font-size: 34px;
  color: #004566;
}
.membership p {
  font-size: 20px;
  color: #303030;
  margin: 30px 0;
}
@media screen and (max-width: 1399px) {
  .membership p {
    font-size: 16px;
  }
}

.btn {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  background-color: #004566;
  padding: 10px 20px;
  border-radius: 35px;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.founder {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 50px;
}


@media screen and (max-width: 991px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}



.video-grid {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .video-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
.video-grid .video-container iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .video-grid .video-container iframe {
    height: 50vh;
  }
}
.video-grid .video-container:first-child {
  grid-row: span 2;
}
.video-grid .video-container:first-child iframe {
  min-height: 50vh;
}
@media screen and (max-width: 767px) {
  .video-grid .video-container:nth-child(2), .video-grid .video-container:nth-child(3) {
    display: none;
  }
}

.partners {
  background-color: #EBEBEB;
  padding-top: 10vh;
  margin-top: -10vh;
}

.partnerSwiper {
  margin-top: 50px;

 
}

.partnerSwiper img{
    object-fit: contain;
    object-position: center;
  }

  .partnerSwiper .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* .partnerSwiper .swiper-wrapper {
  margin-left: auto;
  margin-right: auto;
} */
/* .partnerSwiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
} */

.law table {
  width: 100%;
}
.law tr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 991px) {
  .law tr {
    grid-template-columns: 1fr;
  }
}
.law td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 991px) {
  .law td {
    width: 100%;
  }
  .law td img {
    width: 90%;
    max-width: 400px;
  }
}
.law h2, .law p, .law a {
  text-align: center;
  width: 100%;
  max-width: 630px;
}
@media screen and (max-width: 991px) {
  .law h2, .law p, .law a {
    max-width: unset;
  }
}
.law h2 {
  font-size: 26px;
  color: #004566;
}
.law h2 a {
  display: inline;
  font-size: 26px;
  color: #004566;
}
.law p {
  color: #313131;
  margin: 30px 0;
}
.law a {
  display: block;
  color: #5C96B2;
  font-size: 20px;
}

.founder-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}
.founder-text h1, .founder-text p {
  text-align: end;
}
@media screen and (max-width: 767px) {
  .founder-text h1, .founder-text p {
    text-align: start;
  }
}
@media screen and (max-width: 767px) {
  .founder-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .founder-img {
    max-width: 400px;
    margin: 0 auto;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.blue-news {
  height: 100%;
  background-color: #5C96B2;
}
.blue-news .image {
  height: 30vh;
}
.blue-news .blue-news-info {
  background-color: #5C96B2;
  padding: 0 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 15px;
}
@media screen and (max-width: 575px) {
  .blue-news .blue-news-info {
    padding: 0 15px 30px;
  }
}
.blue-news .blue-news-info h3, .blue-news .blue-news-info p {
  color: #fff;
  text-align: center;
}
.blue-news .blue-news-info h3 {
  font-size: 26px;
  font-weight: 800;
}
.blue-news .blue-news-info span {
  color: #5C96B2;
  background-color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}

.short-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
  height: 150px;
}
@media screen and (max-width: 575px) {
  .short-news {
    gap: 15px;
  }
}
.short-news .image {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.short-news .short-info {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.short-news .short-info h3, .short-news .short-info p {
  text-align: end;
}
.short-news .short-info h3 {
  color: #004566;
  font-size: 25px;
}
@media screen and (max-width: 400px) {
  .short-news .short-info h3 {
    font-size: 20px;
  }
}
.short-news .short-info p {
  color: #5C96B2;
  font-weight: bold;
}

.news-main-img {
  height: 45vh;
}
@media screen and (max-width: 991px) {
  .news-main-img {
    height: 30vh;
  }
}
@media screen and (max-width: 575px) {
  .news-main-img {
    height: 20vh;
  }
}

.other-news {
  background-color: #F5F5F5;
  padding: 50px 0;
}

.announcements {
  position: relative;
}

.secondSwiper {
  width: 100%;
  position: relative;
}
.secondSwiper .short-news {
  gap: 15px;
  padding: 20px;
  height: 190px;
}
@media screen and (max-width: 1399px) {
  .secondSwiper .short-news {
    padding: 10px;
    height: 170px;
  }
}
.secondSwiper .short-news .short-info {
  padding: 10px 0;
}
.secondSwiper .swiper-slide-active .short-news {
  background-color: #EBEBEB;
}

.secondSwiper.ann2 .swiper-slide-active .short-news {
  background-color: #004566;
}
.secondSwiper.ann2 .swiper-slide-active .short-news h3, .secondSwiper.ann2 .swiper-slide-active .short-news p {
  color: #fff;
}

.swiper2-next, .swiper2-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.swiper2-next img, .swiper2-prev img {
  width: 25px;
}
@media screen and (max-width: 575px) {
  .swiper2-next, .swiper2-prev {
    display: none;
  }
}

.swiper2-next {
  right: -45px;
}
@media screen and (max-width: 991px) {
  .swiper2-next {
    right: -30px;
  }
}

.swiper2-prev {
  left: -45px;
}
@media screen and (max-width: 991px) {
  .swiper2-prev {
    left: -30px;
  }
}
.swiper2-prev img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.new-announcements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 991px) {
  .new-announcements {
    grid-template-columns: 1fr;
  }
}

.announcement {
  position: relative;
  height: 27vh;
  padding: 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 575px) {
  .announcement {
    padding: 15px;
  }
}
.announcement .dark-gradient {
  opacity: 0.68;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.16) 3.68%, rgba(0, 0, 0, 0.62) 36.15%, rgba(0, 0, 0, 0.79) 65.59%, #000000 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.11)), color-stop(3.68%, rgba(0, 0, 0, 0.16)), color-stop(36.15%, rgba(0, 0, 0, 0.62)), color-stop(65.59%, rgba(0, 0, 0, 0.79)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.16) 3.68%, rgba(0, 0, 0, 0.62) 36.15%, rgba(0, 0, 0, 0.79) 65.59%, #000000 100%);
}

.ann-title {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.ann-title span, .ann-title h1 {
  color: #fff;
}
.ann-title span {
  margin-top: auto;
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 300;
}
@media screen and (max-width: 1399px) {
  .ann-title span {
    font-size: 20px;
  }
}
@media screen and (max-width: 300px) {
  .ann-title span {
    font-size: 15px;
  }
}
.ann-title h1 {
  text-align: start;
  font-weight: 500;
  padding-right: 60px;
}
@media screen and (max-width: 1399px) {
  .ann-title h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 300px) {
  .ann-title h1 {
    font-size: 20px;
  }
}
.ann-title img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
}

.ann-bg {
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.16) 3.68%, rgba(0, 0, 0, 0.62) 36.15%, rgba(0, 0, 0, 0.79) 65.59%, #000000 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.11)), color-stop(3.68%, rgba(0, 0, 0, 0.16)), color-stop(36.15%, rgba(0, 0, 0, 0.62)), color-stop(65.59%, rgba(0, 0, 0, 0.79)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.16) 3.68%, rgba(0, 0, 0, 0.62) 36.15%, rgba(0, 0, 0, 0.79) 65.59%, #000000 100%);
  opacity: 0.68;
}

.ann-title.details {
  padding: 50px 0;
}
.ann-title.details h1 {
  font-size: 49px;
  font-weight: 600;
  width: 50%;
  padding-right: 0;
}
@media screen and (max-width: 1399px) {
  .ann-title.details h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .ann-title.details h1 {
    width: 100%;
    font-size: 30px;
  }
}
.ann-title.details span {
  font-size: 39px;
}
@media screen and (max-width: 1399px) {
  .ann-title.details span {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .ann-title.details span {
    font-size: 20px;
  }
}

.download-ann {
  color: #004566;
  font-size: 20px;
  font-weight: 700;
}
.download-ann img {
  width: 21px;
  margin-right: 20px;
}

.download-ann:hover {
  text-decoration: underline;
}



.publication-text p {
  font-weight: 600;
  margin-top: 20px;
}

.publication {
  padding: 50px 0;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 575px) {
  .publication {
    padding: 30px 0;
  }
}

.publication-title {
  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;
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .publication-title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.publication-title img {
  margin-right: 20px;
  width: 21px;
}
.publication-title p {
  color: #004566;
  font-size: 28px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .publication-title p {
    font-size: 22px;
  }
}

.publication-title:hover {
  scale: 1.1;
}

.publications a:last-child .publication {
  border-bottom: none;
}

.publication-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  row-gap: 30px;
  padding: 50px 0;
}
@media screen and (max-width: 991px) {
  .publication-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 575px) {
  .publication-grid {
    padding: 30px 0;
  }
}
.publication-grid .publication-title {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1399px) {
  .publication-grid .publication-title p {
    font-size: 22px;
  }
}

.privacy h3 {
  font-size: 28px;
  color: #004566;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 800;
}
.privacy p {
  font-family: "SegoeUI";
}

.search-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}
.search-results img {
  width: 35px;
  margin-right: 30px;
}
@media screen and (max-width: 575px) {
  .search-results img {
    width: 30px;
    margin-right: 20px;
  }
}
.search-results h1 {
  text-align: start;
}
.search-results h1 span {
  color: #BEBEBE;
}
@media screen and (max-width: 575px) {
  .search-results h1 {
    font-size: 25px;
  }
}
.search-results h5 {
  color: #BEBEBE;
  font-size: 28px;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  .search-results h5 {
    font-size: 20px;
  }
}

.about-headline {
  position: relative;
}
.about-headline h1 {
  color: #fff;
  font-size: 49px;
  text-align: end;
  font-weight: 500;
  position: absolute;
  top: 70%;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .about-headline h1 {

    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-headline h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .about-headline h1 {
    font-size: 25px;
  }
}

.about-text p {
  font-family: "SegoeUI";
  margin-top: 10px;
}

.about-text table{
  margin-bottom: 30px;
}

.about-text table h2 {
  text-align: end;
}

.about-text h2 {
  font-size: 42px;
margin-bottom: 15px;
  color: #004566;
}
.about-text h2 span {
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .about-text h2 {
    text-align: start;
    font-size: 35px;
  }
}
@media screen and (max-width: 575px) {
  .about-text h2 {
    font-size: 30px;
  }
}


.about-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-images a {
display: block;
width: 100%;
height: 350px;
}

.about-images a img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1199px) {
  .about-images {
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
  }
}
@media screen and (max-width: 575px) {
  .about-images {
    grid-template-columns: 1fr;
  }
}

.law-support {
  position: relative;
  padding: 50px 0;
}
.law-support .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60%;
}
@media screen and (max-width: 991px) {
  .law-support .image {
    display: none;
  }
}
.law-support .page-width {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991px) {
  .law-support {
    padding: 0;
    background-color: #F5F5F5;
  }
}

.law-support-text {
  padding: 50px;
  width: 60%;
  margin-left: auto;
}
.law-support-text h2, .law-support-text a {
  color: #004566;
  font-size: 33px;
  font-weight: 700;
}
@media screen and (max-width: 1399px) {
  .law-support-text h2, .law-support-text a {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .law-support-text {
    width: 80%;
  }
}
@media screen and (max-width: 991px) {
  .law-support-text {
    width: 100%;
    padding: 50px 0;
  }
}

@media screen and (max-width: 1100px) {
  .template .text h1, .template .text p {
    text-align: start;
  }
}
@media screen and (max-width: 1100px) {
  .template {
    grid-template-columns: 1fr;
  }
}

.template-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.template-grid .img {
  height: 24vh;
  position: relative;
}


.template-grid .img{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
    position: relative;
}
.template-grid .img{
  display: none;
}

.template-grid .img:nth-child(1){
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.template-grid .img:nth-child(2){
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.template-grid .img:nth-child(3){
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.more-photos{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: white;
  color: #004566;
  z-index: 2;
  padding: 5px 10px;
  font-size: 25px;
  font-weight: 500;
}

.template-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
  .template-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .template-grid {
    grid-template-columns: 1fr;
  }
}

.documents {
  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;
}
.documents a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #004566;
  font-size: 25px;
  font-weight: 600;
}
.documents a:hover {
  text-decoration: underline;
}
.documents img {
  width: 25px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .documents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .documents a {
    margin-bottom: 20px;
  }
  .documents a:last-child {
    margin-bottom: 0;
  }
}

.gallery-link {
  color: #004566;
  font-size: 28px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery-link img {
  width: 25px;
  margin-right: 20px;
}
@media screen and (max-width: 575px) {
  .gallery-link {
    font-size: 20px;
  }
  .gallery-link img {
    width: 20px;
    margin-right: 10px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1399px) {
  .gallery-grid {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery-grid {
    padding-bottom: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  height: 35vh;
}
.gallery-item .image {
  width: 100%;
  height: 100%;
}
.gallery-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-item .gallery-overlay {
  opacity: 0.47;
}
.gallery-item .album-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.gallery-item .album-title svg, .gallery-item .album-title h3 {
  position: absolute;
}
.gallery-item .album-title svg {
  width: 28px;
  height: 28px;
  right: 20px;
}
.gallery-item .album-title svg g {
  fill: #fff;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
.gallery-item .album-title svg:first-child {
  top: 20px;
}
.gallery-item .album-title svg:nth-child(3) {
  bottom: 20px;
}
.gallery-item .album-title h3 {
  font-size: 28px;
  color: #fff;
  padding-right: 50px;
  font-weight: 500;
  bottom: 20px;
  left: 20px;
}
@media screen and (max-width: 1399px) {
  .gallery-item .album-title h3 {
    font-size: 22px;
  }
}

.gallery-item:hover .gallery-overlay {
  opacity: 0.69;
  background: -o-linear-gradient(top, #fafafa 0%, #7d7d7d 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#7d7d7d));
  background: linear-gradient(180deg, #fafafa 0%, #7d7d7d 100%);
}
.gallery-item:hover .album-title svg g {
  fill: #004566;
}
.gallery-item:hover .album-title h3 {
  color: #004566;
}

.album-bg {
  background: -o-linear-gradient(bottom, #EBEBEB 90%, #fff 10%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(90%, #EBEBEB), color-stop(10%, #fff));
  background: linear-gradient(0deg, #EBEBEB 90%, #fff 10%);
  padding-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .album-bg {
    padding-bottom: 50px;
  }
}

.album-grid .grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.album-grid .grid img {
  height: 25vh;
}
@media screen and (max-width: 1399px) {
  .album-grid .grid {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.album-grid .grid:nth-child(2n+1) {
  grid-template-columns: 0.6fr 1fr 0.6fr;
}
.album-grid .grid:nth-child(2n) {
  grid-template-columns: 0.9fr 0.7fr 0.9fr;
}
@media screen and (max-width: 767px) {
  .album-grid .grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 5px;
  }
}
@media screen and (max-width: 575px) {
  .album-grid .grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
}

.contact-bg {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.contact-bg .overlay {
  opacity: 0.31;
}
@media screen and (max-width: 575px) {
  .contact-bg {
    height: 200px;
  }
}

.contact-container {
  -webkit-transform: translateY(-200px);
      -ms-transform: translateY(-200px);
          transform: translateY(-200px);
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
  padding: 50px;
  padding-left: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-container h1 {
  text-align: left;
}
.contact-container div:first-child {
  display: grid;
  gap: 25px;
  padding: 100px 0;
  overflow-x: hidden;
}
.contact-container a {
  font-size: 20px;
  color: #707070;
  display: block;
  padding-left: 30px;
  position: relative;
}
.contact-container a img {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
}
.contact-container .contact-social {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-container .contact-social a {
  margin-right: 15px;
  padding-left: 0;
  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;
}
.contact-container .contact-social a img {
  position: static;
  width: 23px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-container .contact-social a img:first-child{
  height: 25px;
}
.contact-container .contact-social a:hover {
  scale: 1.2;
}
.contact-container iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .contact-container {
    padding-left: 50px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-container div:first-child {
    padding: 0;
  }
  .contact-container iframe {
    height: 300px;
  }
}
@media screen and (max-width: 575px) {
  .contact-container {
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
    padding: 50px 20px;
  }
  .contact-container a {
    font-size: 18px;
    padding-left: 20px;
  }
  .contact-container a img {
    top: 2px;
  }
}

.registration-overlay {
  opacity: 0.53;
  z-index: 14;
  display: none;
}

.registration {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 15;
  background-color: #fff;
  width: 100%;
  max-width: 1000px;
  /* max-width: 100%; */
  display: none;
  grid-template-columns: 40% 60%;
  height: 80vh;
}
.registration .reg-form {
  padding: 70px;
  background-color: white;
}
.registration .reg-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.registration .reg-form h5 {
  font-size: 32px;
  color: #004566;
  text-align: center;
  margin-bottom: 70px;
}
.registration .reg-form input::-moz-placeholder {
  font-size: 20px;
  font-weight: 500;
  color: #BCBCBC;
}
.registration .reg-form input::-webkit-input-placeholder {
  font-size: 20px;
  font-weight: 500;
  color: #BCBCBC;
}
.registration .reg-form input:-ms-input-placeholder {
  font-size: 20px;
  font-weight: 500;
  color: #BCBCBC;
}
.registration .reg-form input::-ms-input-placeholder {
  font-size: 20px;
  font-weight: 500;
  color: #BCBCBC;
}
.registration .reg-form input, .registration .reg-form input::placeholder {
  font-size: 20px;
  font-weight: 500;
  color: #BCBCBC;
}
.registration .reg-form input {
  height: 40px;
  background-color: #F5F5F5;
  border: none;
  outline: #BCBCBC;
  padding: 10px;
  /* margin-bottom: 40px; */
  margin-bottom: 20px;
  width: 100%;
  color: #303030;
}
.registration .reg-form .btn {
  font-size: 22px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: max-content;
}
.registration .reg-form p {
  font-size: 18px;
  font-weight: 500;
  color: #004566;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 1399px) {
  .registration .reg-form {
    padding: 30px;
  }
  .registration .reg-form .btn {
    margin-top: 10px;
  }
  .registration .reg-form h5 {
    margin-bottom: 35px;
  }
  .registration .reg-form input {
    height: 30px;
    margin-bottom: 20px;
  }
  .registration .reg-form input::-moz-placeholder {
    font-size: 16px;
  }
  .registration .reg-form input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .registration .reg-form input:-ms-input-placeholder {
    font-size: 16px;
  }
  .registration .reg-form input::-ms-input-placeholder {
    font-size: 16px;
  }
  .registration .reg-form input, .registration .reg-form input::placeholder {
    font-size: 16px;
  }
}
.registration .reg-text {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.registration .reg-text .overlay {
  background-color: #fff;
  opacity: 0.86;
}
.registration .reg-text .text {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 30px;
  padding-right: 100px;
}
.registration .reg-text .text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

@media only screen and (max-width: 1600px){
    .registration{
    height: 100vh;
  }
}
@media screen and (max-width: 1399px) {


  .registration .reg-text .text p {
    font-size: 16px;
    line-height: 18px;
  }
}
.registration .close-registration {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 16;
  cursor: pointer;
}
.registration .close-registration img {
  width: 25px;
}
@media screen and (max-width: 1199px) {
  .registration {
    width: 100vw; /* viewport width */
    height: 100vh; /* viewport height */
    overflow-y: scroll;
    overflow-x: hidden;
    grid-template-columns: 1fr;
    top: 70px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 70px;
  }
  .registration input {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .registration .reg-text .text {
    padding: 50px;
  }
}
@media screen and (max-width: 350px) {
  .registration .reg-form, .registration .reg-text .text {
    padding: 50px 20px;
  }
  .registration .close-registration {
    top: 20px;
    right: 20px;
  }
}

.load-more{
  grid-column: span 3;
}

@media screen and (max-width: 1200px) {
  .load-more{
  grid-column: span 2;
  }
}

@media screen and (max-width: 767px) {
  .load-more{
  grid-column: span 1;
  }
}

.grid iframe{
  width: 100%;
  height: 250px;
}

.nav li a img{
  width: 35px;
  margin-top: -5px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: inline;
}
.nav li a img:nth-child(2){
  display: none;

}
.nav li:hover a img:nth-child(2){
  display: inline;

}

.nav li:hover a img:nth-child(1){
  display: none;
}

ul.nav li.search:hover{
  background-color: white;
}

.search .search-bar form{
  width: 100%;
  height: 100%;
}

.bottom-header{
      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;
    height: 50%;
}

@media only screen and (max-width: 1200px){
  .bottom-header {
    height: auto;
  }
}


.bottom-header ul{
  height: 100%;
}
.around-search-bar{
  height: 100%;
  width: 25px;
  margin-left: 15px;
}

.close-search{
  position: absolute;
    right: 20px;
    color: #004566;
    top: 64%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
    display: none;
}

.search-bar-open{
  position: absolute;
    width: 80%;
    background-color: white;
    max-width: 100%;
    right: 0;
    background-image: none;
    height: 50%;
}

.search-bar-open form{
  width: 40%;
  margin-left: auto;
}

.mobile-search{
  display: none;
}

@media only screen and (max-width: 1200px){
  .bottom-header{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .around-search-bar{
    display: none;
  }

  .mobile-search{
    margin-bottom: 30px;
    width: 100%;
    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;
  }

  .mobile-search form{
    width: 80%;
  }
  .mobile-search form input {
  height: 40px;
  width: 100%;
  outline: none;
  border: 2px solid #2F88B2;
  border-radius: 15px;
  background-color: #fff;
  padding: 0 20px;
  color: #004566;
  display: block;
  background:transparent url('../images/search.png') no-repeat;
 background-size: 20px;
  background-position: calc(100% - 10px);
  }
}

footer ul li{
  margin-bottom: 5px;
}

footer ul li:last-child{
  margin-bottom: 0;
}

table{
  width: 100%;
  border: none;
  border-collapse: collapse;
}

table tr td{
  border-collapse: collapse;
  border: none;

}

table tr td:first-child{
display: block;
margin-right: 50px;
}

@media only screen and (max-width:1200px){
table, tr, td, th{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

table tr td:first-child{
  margin-right: 0;
  margin-bottom: 40px;
}
}


@media only screen and (max-width: 576px){
  table tr td:first-child{
    margin-bottom: 30px;
  }
}

.back-home{
  display: flex;
  align-items: center;
  background: transparent url('../images/left-arrow.png') no-repeat;
  background-size: 20px;
  padding-left: 30px;
  color: #004566;
  font-size: 25px;
  font-weight: 500;
}

.success-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.success-cont h1{
  margin-bottom: 30px;
}

.success-wrapper{
  height: calc(100vh - 500px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lawyer-img{
  width: 100%;
  max-width: 520px;
  height: 300px;
}

.lawyer-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media only screen and (max-width: 576px){
  .lawyer-img img{
    object-fit: contain;
  }

  .lawyer-img{
    height: auto;
  }
}

.founder-text p:first-of-type{
  margin-top: 30px;
}

.founder-text p:last-of-type{
  margin-bottom: 30px;
}

.founder-text p{
  margin-top: 10px;
}

.social a img{
  width: 25px;
  height: 25px;
  object-fit: contain;
  object-position: center;
}