:root {
   --primaryColor: #00295f;
  --primaryHoverColor: #0d4388;
  --secondaryColor: #f4751b;
  --secondaryColorHover: #f69a58;
  --primaryColorLight: rgba(0, 41, 95, 0.4);
  --primaryColorLight2: rgba(38, 106, 122);
  --whiteColor: #fff;
  --blackColor: #000;
  --grayColor: #aaa;  
 
}

/* ///////////////////////Global reset////////////////// */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: bpgmrgvlovani;
  src: url(/wp-content/themes/template001/fonts/fonts/bpg_mrgvlovani_2009.ttf);
  font-weight: normal;
}


/* Main Styles */

body {
  background-color: var(--primaryColoLight);
  font-family: "bpgmrgvlovani";
}

.site-area {
  width: 100%;
  max-width: 1360px;
}

.page-area {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-content {
  display: flex;
  justify-content: center;
  flex-direction:column;
  width: 100%;
}

.content-area {
  width: 100%;
  margin-bottom: 0px;
  /*padding: 2rem 1rem 1rem 1rem;*/
  min-height: calc(100vh - 21rem)
}

@media screen and (max-width: 768px) {
  .content-area {
    min-height: calc(100vh - 32.72rem);
  }

}

/* Header */
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 1000;
}

.top-header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--whiteColor);
      padding: 15px 50px;
}

.logo a {
    display:flex;
    align-items:center;
    gap: 10px;
  color: var(--primaryColor);
  font-size: 1.5rem;
  font-weight:600;
  font-style: italic;
  transition: all 0.3s ease;
}

.logo a:hover {
  color: var(--secondaryColor);
}

.logo img {
    width:60px;
    height:60px;
    border-radius:50%;
}

.main-navigation {
    display: flex;
    justify-content: left;
    align-items: center;
    width:100%;
    background-color: var(--primaryColor);
    justify-content: left;
}

.main-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:70px;
  gap: 20px;
  padding-left: 40px;
}

.main-navigation ul li {
  border-radius: 0.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.main-navigation ul li a {
  font-size: 0.9rem;
  font-weight:500;
  color: var(--whiteColor);
  padding: 1rem 0.5rem;
  transition: all 0.3s ease;
}

.main-navigation ul li a:hover {
  background-color: var(--secondaryColor);
  border-radius: 5px;
}


/* flags */

.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.flags img {
  width: 1.7rem;
  height: 1.7rem;
  margin: 0 0.3rem;
}

.language-change .flags {
  flex-direction: column;
}

@media screen and (max-width: 1080px) {
  .flags {
    justify-content: flex-start;
    margin: 0 1.4rem;
  }

  .main-navigation {
    flex-direction: column;
    align-items: flex-end;
    padding: 0.5rem;
  }

  .main-navigation .flags {
    border-radius: 0.3rem;
    padding-top: 1rem;
    margin: 0;
    z-index: 1005;
  }
}

/*  */


.menu-checkbox {
  display: none;
}

.hamburger-menu {
  display: none;
}

@media screen and (max-width: 1430px) {
  .main-navigation ul li a {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1080px) {
  .hamburger-menu {
    display: block;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.9rem 0.5rem;
    z-index: 100;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--secondaryColor);
    transition: all 0.5s ease-out;
  }

  .hamburger-menu:hover {
    background-color: var(--primaryColorHover);
  }

  .hamburger-menu span {
    display: block;
    width: 2rem;
    height: 0.2rem;
    margin-bottom: 0.3rem;
    background: var(--whiteColor);
    border-radius: 0.2rem;
    transition: transform 0.3s ease;
  }

  #menu-toggle:checked ~ .hamburger-menu span:nth-child(1) {
    transform: translatey(8px) rotate(45deg);
  }

  #menu-toggle:checked ~ .hamburger-menu span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .hamburger-menu span:nth-child(3) {
    transform: translatey(-8px) rotate(-45deg);
  }

  #menu-toggle:checked ~ .menu-menu-1-container .right,
  #menu-toggle:checked~.menu-menu-en-container .right,
  #menu-toggle:checked~.menu-menu-ru-container .right {
    display: block;
  }
  
  .right {
      padding-right: 2rem;
  }

  

  .main-navigation ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 9.1rem;
    right: 0;
    width: 300px;
    height: 50vh;
    padding-top: 1rem;
    background-color: var(--primaryColor);
    z-index: 1000;
    transition: transform 0.9s ease;
    animation: slideInMenu 0.5s forwards;
  }

  @keyframes slideInMenu {
    0% {
      transform: translateX(300px);
    }
    100% {
      transform: translateX(0px);
    }
  }

  @keyframes slideOutMenu {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(300px);
    }
  }

  .main-navigation ul li {
    width: 100%;
    margin: 0 auto;
  }

  .main-navigation ul li:hover {
    background-color: var(--primaryColorHover);
  }

  .main-navigation ul li a {
    color: var(--whiteColor);
    text-align: left;
    display: block;
    font-size: 1rem;
    line-height: 1rem;
    padding-left: 1rem;
  }
}

/* content */

.content-area h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-area h3{
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-area p{
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-area a{
  color: var(--blackColor);
  transition: all 0.3s ease;
}

.content-area a:hover{
  color: var(--secondaryColor);
}

.content-area strong{
  font-weight: 700;
}

/*==========================================Category=========================*/

.breadcrumbs {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 40px;
  background-color: var(--primaryColorLight);
  height: 70px;
  font-size: 1rem;
  font-weight: 600;
}

.breadcrumbs a {
  text-transform: uppercase;
  padding: 10px;
  text-decoration: none;
  color: var(--balckColor);
}

.breadcrumbs span {
  margin-left: 20px;
}
.post-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 40px auto;
  padding: 20px;
  place-items: center;
  max-width: 1200px;
  gap: 100px;
}

.post-card {
  width: 400px;
  height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  display: inline-block;
  box-shadow: 1px 1px 1px var(--grayColor), -1px 1px 1px var(--grayColor);
  transition: all 0.3s ease;
}

.post-card:hover {
  box-shadow: 7px 7px 5px var(--grayColor), -3px 3px 5px var(--grayColor);
}

.post-card a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--blackColor);
}

.category-name a{
  text-align: center;
  position: absolute;
  top: 230px;
  left: 0;
  padding: 7px 20px;
  margin-left: 5px;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  text-decoration: none;
  border-radius: 5px;
  z-index: 2;
  transition: all 0.3s ease;
}

.post-card .category-name a{
  color: var(--whiteColor);
}

.post-card h3 {
  margin: 50px 0 10px 5px;
}

.post-card p {
  margin: 5px 0px 20px 5px;
}

.category-name a:hover {
  background-color: var(--secondaryColorHover);
  cursor: pointer;
}

.post-card img {
  width: 400px;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .post-card {
    width: 300px;
    height: auto;
  }

  .post-card img {
    width: 300px;
    height: 160px;
  }

  .post-card .category-name a{
    top: 175px;
  }
}

@media (max-width: 768px) {
  .post-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.nav-previous, .nav-next {
    text-align:center;
}

/* ========================join====================================== */

.breadcrumbs.wide {
  height: 300px;
}

.breadcrumbs.wide a {
  transform: translateY(-50px);
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1200px;
  padding: 40px 80px;
  margin: -200px auto 20px auto;
  gap: 50px;
  background-color: var(--whiteColor);
  box-shadow: 10px 8px 8px var(--grayColor), -1px 2px 3px var(--grayColor);
}

.form-container h3{
    text-align:center;
}

.join-us-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
}

.form-inputs {
  display: flex;
  justify-content: space-between;
  align-items: top;
  width: 100%;
  max-width: 1200px;
}

.form-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.form-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.join-us-form input,
.join-us-form textarea {
  width: 400px;
  height: 40px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid var(--blackColor);
  transition: all 0.3s ease;
}

.join-us-form textarea {
  height: 100px;
}

.join-us-form input:hover,
.join-us-form textarea:hover {
  background-color: var(--primaryColorLight);
}

.join-us-form input:focus,
.join-us-form textarea:focus {
  outline: none;
  background-color: var(--primaryColorLight);
}

.form-container #submitinput {
  display: block;
  border-radius: 5px;
  width: 300px;
  padding: 10px;
  margin-top: 40px;
  border: none;
  align-self: flex-start;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  transition: all 0.3s ease;
}

.form-container #submitinput:hover {
  cursor: pointer;
  background-color: var(--secondaryColor);
}

@media (max-width: 1200px) {
    .form-container{
        width:95%;
    }
    
}

@media (max-width: 1000px) {
    .form-container .form-left{
        margin-bottom:40px;
    }
    .form-container #fields{
    flex-direction:column;
    }
    
    .form-container #submitinput{
        align-self:center;
    }
}

@media (max-width: 450px) {
    .join-us-form input, .join-us-form textarea{
        padding: 1rem;
        width: 95%;
    }
    
    .form-container{
        padding: 1rem;
    }
}

.ok {
 background: #00B5B5;
 margin-bottom: 15px;
 padding: 10px;
 color: white;
 text-align: center;
}

.join-us-form .input[type="file"].input {
  padding: 8px;
  border: 2px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.join-us-form .input[type="file"].input:hover {
  background-color: var(--primaryColorLight);
}

.join-us-form label{
    font-size:0.9rem;
    margin: 0 0 -20px 0;
}

/* =============================== reports ============================ */

.angarishebi-container{
    display:flex;
    justify-content: center;
    align-items:center;
    flex-direction:column;
    width:100%;
    max-width:1360px;
    margin:0 auto;
    padding:1rem;
}

.angarishebi-container h1{
    font-size: 1.5rem; 
    font-weight:700;
    text-align:center;
    margin: 20px;
}

.students-problems{
    display:flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction:column;
    width: 100%;
    margin: 2rem;
}

.students-problems button{
    margin-top:0;
}

.students-problems a{
    margin-top:10px;
}
/* =============================== contact ============================ */

.contact-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: top;
  padding: 40px 80px;
  margin-top:-200px;
  background-color: var(--whiteColor);
  box-shadow: 10px 8px 8px var(--grayColor), -1px 2px 3px var(--grayColor);
}

.contact-info {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.contact-info .info-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  font-weight: 500;
}

.contact-info .info-group img {
  width: 30px;
  margin-right: 5px;
}

.contact-info .info-group a {
  color: var(--secondary-color);

  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info .info-group a:hover {
  color: var(--primaryColor);
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 400px;
  height: 40px;
  padding: 10px;
  border: none;
 border-bottom: 1px solid var(--blackColor);
  transition: all 0.3s ease;
}

.contact-form textarea {
  height: 200px;
}

.contact-form input:hover,
.contact-form textarea:hover {
   background-color: var(--primaryColorLight);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background-color: var(--primaryColorLight);
}

.contact-form #submitinput {
  display: block;
  border-radius: 5px;
  width: 300px;
  padding: 10px;
  border: none;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  transition: all 0.3s ease;
}

.contact-form #submitinput:hover {
  cursor: pointer;
  background-color: var(--secondaryColor);
}

@media (max-width: 1200px) {
    .contact-container{
        width: 95%;
    }
}


@media (max-width: 992px) {
  .contact-container {
    padding: 40px;
  }
  .contact-form input,
  .contact-form textarea {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    margin-top: 40px;
  }
}

@media (max-width: 350px) {
  .contact-container {
    padding: 40px 10px;
  }
  .contact-info .info-group,
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 95%;
  }
}

/*=========================== single-post ============================*/

.single-post {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-top: 40px;
  padding: 0 20px;
}

.single-post .category-name a{
  top: 10px;
  left: 20px;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}

.single-post .category-name a:hover{
     background-color: var(--secondaryColorHover);
}

.single-post .post-content {
  margin: 60px 5px;
  line-height: 1.5rem;
}

.single-post .post-top-img img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 20px 0;
}

.gallery{
    display:grid;
    place-items:center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top:2rem;
}


.single-post img {
  width: 300px;
  height: 300px;
  object-fit:cover;
  margin: 0 2rem;
  border-radius: 5px;
  box-shadow: 7px 7px 5px var(--grayColor), -3px 3px 5px var(--grayColor);
  cursor: pointer;
  transition: all 0.3s ease;
}

.single-post img:hover {
  box-shadow: 10px 10px 8px var(--grayColor), -4px 4px 6px var(--grayColor);
}

@media (max-width: 1200px) {
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    
  .single-post img {
    height: 200px;
  }
  
  .single-post .post-top-img img{
  height: 300px;
}
}

/* ============================footer========================= */

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  font-size: 0.9rem;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  margin-top: 70px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  padding: 2rem;
}

.footer-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-navigation ul {
  margin-right: 2rem;
}

.footer-navigation ul li {
  line-height: 1.5rem;
  list-style-type: none;
  margin-right: 1rem;
  color: var(--whiteColor);
  transition: all 0.5s ease-out;
}

.footer-navigation ul li a {
  color: var(--whiteColor);
}

.footer-navigation ul li a::before{
    content: "\f105";
    font-family: FontAwesome;
    margin-right: 5px;
}

.footer-navigation ul li:hover {
  transform: translateX(0.3rem);
  color: var(--secondaryColor);
}

.footer-navigation ul li a:hover {
  color: var(--secondaryColor);
}

.footer-contact {
  width: 100%;
  max-width: 18rem;
}

.footer-contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.2rem;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  margin-right: 0.5rem;
}

.footer-contact-item a {
  color: var(--whiteColor);
  transition: all 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--secondaryColor);
}

footer hr {
  width: 90%;
  margin: 1rem;
}

.copyright {
  text-align: center;
  margin-bottom: 2rem; 
}

.copyright p{
  padding:  0.5rem;
  line-height: 1.5rem;
}

@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    place-items: left;
  }

  .footer-navigation {
    width: 19rem;
    justify-content: left;
    padding-left: 1rem;
    margin-bottom: 2rem;
  }

  .footer-navigation ul {
      margin-right: 0.1rem;
  }

  .footer-navigation ul li{
    margin-right: 0.1rem;
  }
}

/*---------------------------------------------------------------*/
/*about-us*/
/*---------------------------------------------------------------*/
.about-us {
    max-width: 1200px;
    padding: 1rem;
    margin: 0 auto;
}

.about-us-header {
  width: 100%;
  text-align: justify;
}

.about-us-header h3{
    text-align: center;
    font-size:1.3rem;
    margin: 1rem 0;
}
.about-us-header img {
  width: 75%;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.about-us-workers {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-items:center;
  margin-top: 20px;
}

.main-worker{
    grid-template-columns: 1fr;
}

.about-us-workers-card {
   width: 300px;
   height: 400px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  padding: 3rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: 0.3s;
  text-align: center;
  cursor: pointer;
}
.about-us-workers-card:hover {
  background-color: var(--secondaryColor);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.about-us-workers-card h3{
    font-size: 1.1rem;
    font-weight: 600;
}

.about-us-workers-card h4{
    margin: 1rem 0;
}

.about-us-workers-card img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  margin-bottom: 2rem;
  object-fit:cover;
  transition: 0.3s;
}

.about-us-workers-card img:hover{
    width: 200px;
  height: 200px;
}

@media (max-width: 1000px) {
    .about-us-workers {
        gap: 20px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
  .about-us-header {
    width: 100%;
  }
  .about-us-workers {
    flex-direction: column;
    width: 100%;
  }
  .about-us-workers-card {
    margin-bottom: 20px;
  }
 
}

/* ================================= home ============================= */

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  margin: 20px 0;
  width: 1200px;
  height: 600px;
  object-fit: cover;
}

.homepage-info {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 1rem;
}

.homepage-info img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 7px 7px 5px var(--grayColor), -3px 3px 5px var(--grayColor);
}

.homepage-info-text {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  font-weight: 600;
}

.homepage-info-text ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  margin: 2rem;
  gap: 15px;
}

.homepage-info-text ul li{
    list-style:disc;
}

.homepage-info-text h5 {
  color: var(--primaryColor);
  font-size: 1.1rem;
  font-weight: 600;
}

.homepage-info-imgs {
  position: relative;
  top: -100px;
  left: -200px;
  margin-left: 90px;
}

.homepage-btn {
  display: inline-block;
  border-radius: 3px;
  padding: 10px 20px;
  margin-top: 40px;
  border: none;
  align-self: flex-start;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  font-weight: 600;
  box-shadow: 3px 3px 2px var(--grayColor), -1px 1px 2px var(--grayColor);
  transition: all 0.3s ease;
}

.homepage-btn:hover {
  background-color: var(--secondaryColor);
  cursor: pointer;
}

.homepage-btns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.top-img {
  position: absolute;
  top: 150px;
  left: 150px;
}

@media (max-width: 1200px) {
  .hero img {
    margin: 0;
    height: auto;
    width:100%;
  }
}

@media (max-width: 1000px) {
  .homepage-info {
    flex-direction: column;
    gap: 20px;
  }

  .homepage-info-text {
    height: auto;
  }

  .homepage-info-imgs {
    position: initial;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .top-img {
    position: initial;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .homepage-info-imgs {
    flex-direction: column;
  }

  .homepage-info-text h5 {
    text-align: center;
  }
}

.homepage-follow {
  width: 100%;
  max-width: 1200px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  text-align: center;
  padding: 4rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin: 4rem auto;
}

.homepage-follow img {
  width: 30px;
  height: 30px;
}

.homepage-follow .info-group {
  display: flex;
  gap: 20px;
}

.homepage-follow .info-group a {
  color: var(--whiteColor);
  font-size: 1.2rem;
  text-decoration: none;
}

.homepage-follow .info-group a:hover {
  color: var(--secondary-color);
}

.homepage-join {
  width: 500px;
  border: 2px solid var(--primaryColorLight);
  padding: 20px;
  margin: 2rem auto;
  text-align: center;
  box-shadow: 3px 3px 2px var(--grayColor), -1px 1px 2px var(--grayColor);
}

@media (max-width: 768px) {
  .homepage-join {
    width: 90%;
  }
}

/* ============================ ad banner =============================== */

.ad-banner-box {
    width: 800px;
    max-width:90%;
    height:150px;
    margin: 1rem auto;
    object-fit:cover;
}


@media (max-width: 768px) {
    .ad-banner-box{
        width:90%;
        height:auto;
    }
}
