/* Main Style Sheet for the outer looks of the website without login  */
/* //////////////////////////////////////////////////////////////////////////////////////////// */
body {
    width:100%;
    margin:0px;
    font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
    overflow-x: hidden;
    height:100%;
    padding-bottom:0px;
    margin-bottom:0px;
}
section {
  width:100%;
  margin:0px;
  padding:0px;
}
/* /////////////////Header//////////////////////////////// */
header {
    display:flex;
    flex-direction:column;
    width:100%;
    margin:0px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* top header layout */
.topheader {
    display:flex;
    flex-direction:inline-block;
    height:60px;
    position: relative;
    background-color:white;
    margin-bottom:0px;
}
/* Logo */
.websitelogo {
    background-image: url("img/logo.png"); 
    display: inline-block;
    background-size: 200px;
    background-repeat: no-repeat;
    text-indent: -9999999999999999999999999999px;
    width: 200px;
    position: relative;
    margin:0;
    margin-left:5%;
    height: 60px;
}
/* Language change buttons */
.languageswitchbuttons {
    display:flex;
    flex-direction:inline-block;
    
}
.languageswitchbuttons button {
    background-color:transparent;
    margin:0px;
    border:none;
    cursor: pointer;
    padding:0;
    /* font-weight:bold; */
    font-size:101%;
    color: rgb(50,0,100);
}

.languageswitchbuttons button:hover {
    color:rgb(98, 25, 172);
}
.language-bar {
    margin:20px 2px;
}

/* Login Buttons */
.loginbutton {
    background-color:transparent;
    border-radius:15px;
    border: 2px solid rgb(50,0,100);
    position:fixed;
    right:2%;
    cursor: pointer;
    top:15px;
    padding: 5px 10px;
    color: rgb(50,0,100);
}

.loginbutton:hover {
    opacity:0.8;
}
/* /////Bottom Header///// */
.bottomheader {
    margin-top:0;
    background-color:rgb(50,0,100);
    margin:0px;
    width:100%;
    display:flex;
}
nav, ul, li{
    margin:0px;
    display:flex;
    justify-content: space-between;
    width:100%
}
ul{
    padding: 0;
    list-style-type: none;
    padding-left:5%;
    padding-right:5%;
    justify-content: space-between;
}
li {
    display: inline-block;
    margin: 0;
    padding: 20px;
    text-align: center;
    font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
    font-weight:bold;
    color:white;
    font-size: 15px;
    text-decoration: none;
    justify-content: space-between;
    
}
a:active {
    text-decoration:underline;
}
a:link {text-decoration: none;
    color:white;
}
a:visited {
    text-decoration: none;
    color:white;
}

ul li a:hover{
    text-decoration: underline;
}

.dropdown{
    padding-right: 40px;
    display:flex;
    flex-direction:column;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    font-size:15px;
    padding-top:10px;
    background-color:rgb(50,0,100);
    top:115px;
  }
  .dropdown-content a {
    color: white;
    padding: 12px;
    text-decoration: none;
    display:flex;
  }
    
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown-content a:hover {
    text-decoration:underline;
  }

  /* ///////////////////////////////////FOOTER//////////////////////////// */
    /* Footer */
    footer {
        background-color:rgb(50,0,100);
        color:WHITE;
        padding:10px;
        padding-top:50px;
        margin-top:15px;
        font-size:80%;
        text-align:center;
        width:100%;
        margin-bottom: 0px;
        margin-left:0px;
        margin-right:0px;
    }
    
    .footercontent {
      width:100%;
      display:flex;
      flex-direction:inline-block;
    }
    
    .subscribe {
      width:50%;
      padding:5%;
      padding-left:10%;
      margin-right:0px;
      padding-right:0%;
    }
    
    .social-media {
      margin-top:0px;
      padding-top:0px;
    }
    .subscribe form {
      margin-bottom:0px;
      padding-bottom:0px;
    }
    .iconbutton {
      background-color:transparent;
      cursor:pointer;
      border: none;
      width:5px;
      padding:0px;
      margin:0px;
    }
    .iconbutton:hover {
      background-color: transparent;
      opacity:0.8;
    }
    .subscribe input {
      border: none;
      border-bottom: 1px solid white;
      outline: none; 
    }
    .subscribe button i {
      color:white;
      font-size: 150%;
    }
    .social-media ul li {
      display: inline-block;
      margin-right: 10px;
      margin-top:10px;
      padding-top:0px;
    }
    .social-media ul li a {
      color: white;
      font-size: 20px;
      margin-top:0px;
      padding-top:0px;
    }
    .additional-info {
      width:40%;
      padding:5%;
      display:flex;
      flex-direction: inline-block;
      padding-left:10%;
    }
    .additional-info li {
      display:flex;
      flex-direction:column;
      font-size: 110%;
      color:white;
      margin: 2px;
      padding: 2px;
      text-align:left;
    }
    .additional-info li a{
      color:white;
      font-weight:lighter;
    }
    .additional-info li a:hover{
      opacity:0.7;
    }
    .addinfofoot {
      text-align: left;
      padding-right:10%;
      margin-right:10%;
      width:30%;
      font-size:115%;
    }
    .footerhead {
      color:white;
      font-weight: bold;
    }
    
    @media  screen and (max-width:913px) {
      .footercontent{
        flex-direction:column;
      }
      .subscribe {
        width:100%;
      }
      .additional-info {
        width:100%;
      }
    }
    
    /* Newsletter */
    .subscribed {
      color:white;
    }
    
    .try {
      font-size:105%;
      width:50%;
      padding:2%;
      border-radius:10px;
      background-color:rgb(157, 122, 193);
      border:none;
      color:white;
      text-align:center;
      margin:5px;
      cursor:pointer;
    }
      .try:hover {background-color: rgb(100, 61, 142)}
    
    .emailnewsheader {
      color:white;
    }
    .emailnews {
      width:80%;
      padding:10%;
      text-align:center;
      font-size:110%;
    }

  
    /* ///////////////////////////////MOBILE HEADER///////////////////// */
    .mobileheader,.bottommobileheader, .bottommobileheader a {
      color:rgb(50,0,100);
      background-color:white;
      display:none;
    }
    .topmobileheader {
      display:flex;
      flex-direction:inline-block;
      position:relative;
      background-color:white;
      height:45px;
      display:none;
      width:98%;
    }
    .bottommobileheader ul, .bottommobileheader ul li a {
      display:flex;
      flex-direction:column;
      text-align:left;
      width:90%;
      background-color:rgb(50,0,100);
      color:white;
    }
    .bottommobileheader {
      display:none;
    }

    .languageswitchbuttonsmobile {
      font-size:80%;
    }
    .languageswitchbuttonsmobile .language-bar {
      margin-top:15px;
    }
    .mobileheader .websitelogo {
      padding-left:0%;
      margin-left:1%;
      background-size: 150px;
      width:150px;
      height:45px;
    }
    
    .mobileheader .websitelogo::before {
          content: "Zenar International Education Logo";
          position: absolute;
          left: -99px;
        }
    .toprightmobileheader {
      position:relative;
    }
     i {
      color: rgb(50,0,100);
    }
    .fa-user {
      margin-right:10px;
      font-size:90%;
      position:absolute;
      top:16px;
      right:25px;
    }
    .fa-bars {
      position:absolute;
      top:10px;
      right:2px;
      font-size:150%;
      margin-top:0px;
    }

    .dropdown-content-mobile {
      display:flex;
      flex-direction:column;
      padding-left:8%;
      text-align:left;
      font-weight:bold;
      display:none;
    }
    .dropdown-content-mobile a {
      margin-top:5px;
      color: white;
      background-color: rgb(50,0,100);
      padding-bottom:2px;
    }
    .dropdown-content-mobile a:hover {
      text-decoration: underline;
    }
  .dropbtnmobile {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .fa-chevron-down {
      margin-left: 5px; /* Adjust spacing as needed */
      cursor:pointer;
      color:white;
      margin-right:20px;
  }


  @media screen and (max-width:770px){
    .mobileheader,.bottommobileheader, .bottommobileheader a {
      display:flex;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
   
    .topmobileheader {
      display:flex; }
    
    .bottommobileheader {
      display:none;
    }

    .header, header,.topheader, .bottomheader {
      position:relative;
      z-index:0;
      display:none;
    }
    
  }

@media screen and (max-width: 1010px) and (min-width: 771px) {
  .bottomheader {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 10px; /* Optional: reduce font size */
    width:100%;
    color:green;
  }
  .bottomheader a{
      font-size:10px;
  }
  .topheader {
      width:100%;
      margin:0%;
  }
  .loginbutton {
      position:absolute;
      right:2%;
  }

}

  /* ////////////////////////////// Fixed Contact //////////////////////// */
  
  .fixedcontactcontent {
    border-radius: 10px;
    border: rgb(50, 0, 100) solid 5px;
    background-color: white;
    width:420px;
    padding:1%;
    position:fixed;
    top:45%;
    right:0;
    z-index:2000;
    display:none;
  }
  .fixedcontactlist li{
    color:rgb(50, 0, 100);
    background-color: white;
    font-size:95%;
    font-weight: lighter;
    padding:5px;
    text-align:left;
    width:380px;
  }
  .fixedcontactlist {
    display:flex;
    flex-direction:column;
    width:100%;
  }

  .fixedoutercontact{
    position:fixed;
    top:55%;
    right:0;
    background-color:rgb(50,0,100);
    color:white;
    padding:20px;
    cursor:pointer;
    border-radius: 5px 0 0 5px;
    transform: translateY(-50%);
    z-index:1000;
    display:flex;
    flex-direction:column;
    text-align:center;
    font-weight:bold;
    font-size:100%；
    }
    .fixedoutercontact i {
      font-size:180%;
      color:white;
    }

    .fixedoutercontact:hover + .fixedcontactcontent {
      display: block;
    }

    /* Mobile Contact Icons */
    .fixedcontactmobile {
      width:35px;
      position:fixed;
      bottom:20px;
      right: 0px;
      display:flex;
      flex-direction:column;
      align-items: center;
      display:none;
    }
    
    .mobilecontactbuttons {
      display:flex;
      align-items:center;
      justify-content: center;;
      border-radius:50%;
      width:30px;
      height:30px;
      border:none;
      cursor:pointer;
      margin-bottom:5px;
      display:none;
      z-index: 2500;
    }

    /* Secondary Mobile Header */
    .secondarymobileheader {
      width:90%;
      margin:0px;
      display:none;
    }
    .secondarymobilenav {
      margin:0px;
      padding-top:0px;
      width:100%;
      display:none;
    }
    .secondarymobilenavpage, .secondarymobilenavpage a {
      display:flex;
      flex-direction:column;
    }
  
    .secondarymobilenav a{
      color:black;
      font-size:8px;
    }
    .secondarymobilenav i{
        font-size: 20px;
        color:white;
        margin-bottom:2px;
    }
    .secondarymobilenav a:hover{
      text-decoration: none;
    }

    .secondarymobilenavpage .fa-solid.fa-book-atlas {
      color: rgb(244, 116, 137);
    }
    .secondarymobilenavpage .fa-solid.fa-graduation-cap{
      color: rgb(16, 120, 89);
    }
    .secondarymobilenavpage .fa-solid.fa-earth-oceania{
      color: rgb(31, 124, 183);
    }

    .secondarymobilenavpage .fa-solid.fa-pen-to-square{
      color: rgb(90, 39, 161);
    }
    @media screen and (min-width:501px) and (max-width:770px){
      .secondarymobilenav {
        display:flex;
      }
      .secondarymobilenav i {
        font-size: 125%;
      }
      .secondarymobilenav a {
        font-size:100%;
      }
    }
    
    @media screen and (max-width:500px){
      .fixedcontactmobile,.mobilecontactbuttons {
        display:flex;
      }
      .fixedoutercontact{
        display:none;
      }

      .secondarymobilenav {
        display:flex;
      }
    }

    
    /* ////////////////Introductory Video ////////*/
    .intropromo {
      background-color:rgb(224, 203, 235);
      display:flex;
      flex-direction:row;
      padding:1%;
    }
    .intropagediv{
      width:48%;
      padding:0% 1%;
      margin:0;
      text-align:center;
    }
    
    .introtext {
      color: rgb(50, 0, 100); /* Light grey text for better contrast */
      font-family: 'Roboto', sans-serif; /* Clean, professional font */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      height: 100%;
      padding: 0% 2%;
    }
    .introtext h2 {
      margin: 0 0 10px 0;
      font-size: 2.5rem; /* Bold and clear for main heading */
      font-weight:normal;
  }
  .introtext h1 {
    margin: 0 0 20px 0;
    font-size: 3rem; /* "Zenar International Education" larger size */
    font-weight: bold; /* Bold to emphasize brand name */
    font-family: 'Montserrat', sans-serif; /* Bold, clean, professional font */
  }
  
  .introtext h3 {
      margin: 0 0 20px 0;
      font-size: 1 rem; /* Slightly smaller than h2 */
      font-weight: normal; /* Semi-bold for readability */
      font-style: italic;
  }
  
    #intro-video-container, #intro-video-container-english{
      padding:0% 10%;
      background-color:rgb(224, 203, 235);
      justify-content: center;
      align-items: center;
      text-align: center;
    }
  
    #intro-video, #intro-video-english{
        width: 85%;
        border:0px;
    }
    
    @media screen and (max-width:770px){
      .intropromo {
        flex-direction: column;
      }
      .intropagediv{
        width:98%;
      }
      
      .introtext {
          padding-top: 20px;
      }
      
      #intro-video-english {
          margin-top:15px;
      }

    }
    
    @media screen and (max-width:455px) {
        .chinese .introtext h3{
            font-size:90%;
        }
    }
    
        @media screen and (max-width:394px) {
        .chinese .introtext h1{
            font-size:2.0rem;
        }
        .chinese .introtext h2 {
            font-size:1.2rem;
        }
    }

    /* /////////////////HOME PAGE SERVICES DISPLAY /////////////////////////*/
    .ourservices {
      padding: 1% 5%;
    }
    .ourservicesintro {
      padding: 0% 5%;
      text-align:center;
      font-size:130%;
    }
    .ourservicesintro h1 {
      font-size:200%;
      color:#2b0356;
      font-weight: bold;
    }
    .ourservicescontainer {
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap: 20px;
    }

    .ouservicesitem {
      width: 350px; /* Fixed width */
      height: 600px; /* Fixed height */
      background-color: #ffffff;
      border: 1px solid #ddd;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .ouservicesitem:hover {
      transform: translateY(-2px) scale(1.01); /* Slightly expand on hover */
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
    }
    .ourservicesitemtext {
      padding: 0% 10%;
      text-align:center;
    }
    .ouservicesitem img {
      width:350px;
      height:250px;
    }

    .ourservicesitemtext h3 {
      color:#2b0356;
    }
    .ourservicesitemtext a {
      font-size: 14px;
      color: #6200ee; /* Accent color */
      text-decoration: none;
      font-weight: bold;
      transition: color 0.2s ease;
    }
    
    .ourservicesitemtext a:hover {
      color: #4500a8; /* Darker shade on hover */
    }

    .promotionalcontentheading {
      font-size:250%;
      color:#2b0356;
      font-weight: bold;
      text-align: center;
      /* background-color: rgb(224, 203, 235); */
      margin-top: 5px;
      margin-bottom:0px;
      padding: 2%;
      border-top: 1px solid #ddd;
    }

    /* ///////////////COMING SOON////////////////////////// */
    .comingsoon {
      text-align:center;
      /* background-color:#f4f4f4; */
      width:70%;
      position:fixed;
      top:0;
      bottom:0;
      right:15%;
      padding-top:15%;
      font-size:150%;
      background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));

    }
    .comingsoon p {
      color:#666;
    }
    
    @media screen and (max-width:770px) {
        .ourservicesintro p {
            font-size:90%;
            font-weight:normal;
        }
        
        .oursevicesintro h1 {
            font-size:150%;
        }
    }
    
      @media screen and (max-width:500px) {
        .ourservicesintro p {
            font-size:70%;
            font-weight:normal;
            }
        
        .oursevicesintro h1 {
            font-size:120%;
        }
    }
    

    /*////////////////////// Footer //////////////////////////*/
    .additional-info {
      padding-right:1%;
      padding-left:1%;
      width:50%;
      margin:0px;
    }
    .addinfofoot {
      padding:0px;
      margin:0px;
      margin-right:5px;
      width:40%;
    }
    .subscribe {
      width:35%;
      padding-left:1%;
      margin:0px;
      font-size:110%;
    }
    .subscribe h3 {
      font-size:150%;
    }
    .addinfofoot ul {
      display:flex;
      flex-direction:column;
      padding-left:0px;
    }
    
    .social-media i {
      color:white;
      font-size:115%;
    }

    .xhslogo {
      width:30px;
      cursor: pointer;
    }

    .contactQRcodes {
      display:flex;
      flex-direction:row;
    }

    .contactQRcodes img {
      width:120px;
      margin:10px;
      margin-left:0px;
    }
    .social-media {
      margin:0px;
      padding:0px;
      padding-top:40px;
    }

    .footerdiv{
      width:94%;
      display:flex;
      flex-direction: inline-block;
      padding-right:2%;
      padding-left:2%;
    }

    .addinfofoot i {
      color:white;
      padding:0px;
      width:20px;
      margin:0px;
    }
    .addinfofoot ul li {
      display:flex;
      flex-direction:row;
      justify-content: left;
    }

    footer {
      padding-top:0px;
      width:98%;
      margin:0px;
      padding-left:1%;
      padding-right:1%;
      overflow-x: hidden;
    }
    .contactfooter {
      width:50%;
    }

    .wechatchannelqr, .wechatchannelqrc {
      position:fixed;
      top:20%;
      width:30%;
      left:35%;
      display:none;
    }

    @media screen and (max-width:870px) {
      .informationfooter {
        display:none;
      }
      .contactfooter {
        width:90%;
      }
      .additional-info {
        width:55%;
      }
      .subscribe {
        width:40%;
      }
      .social-media i {
        width:100%;
      }
      .social-media li {
        width:80%;
        padding: 0px;
      }
      .xhslogo {
        width:25px;
      }
    }
  

    @media screen and (max-width:500px){
      .additional-info {
        display:none;
      }
      .subscribe {
        width:100%;
        margin-left:0px;
        padding-left:0px;
      }
      .footerdiv, footer {
        padding-left:0px;
        width:98%;
      }
      .social-media {
        margin-top:0px;
        padding-top:0px;
      }
      .social-media ul{
        width:85%;
      }
      .xhslogo {
        width:20px;
      }
      .social-media i {
        font-size:105%;
      }
    }
  
    @media screen and (max-width:350px){
      .social-media ul {
        width:100%;
      }
      .social-media i {
        font-size:100%;
      }
    }

/* //////Promotions/////// */
.promote {
  width:90%;
  padding:5%;
  display:flex;
  flex-direction: inline-block;
  padding-bottom:3%;
  padding-top:3%;
}
.promotecontent {
  width:45%;
  padding:2%;
  padding-top:0.5%;
  font-size:130%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center the content */
  align-items: center; /* Horizontally center the content */
  text-align: center; /* Optional: Center align text */
}
.promotecontent h2{
  font-size:250%;
  margin-top:0px;
  margin-bottom:5px;
}

.promoteimage {
  width:45%;
  padding:2%;
  padding-top:0.5%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontally center the content */
  text-align: center; /* Optional: Center align text */
  vertical-align: middle;
  justify-content: center; /* Horizontal alignment */
}

.promoteimage img {
  width: 80%;
  padding-right:10%;
  padding-left:10%;
  justify-content: center;
}
.promoteimagemobile {
  display:none;
}
@media screen and (max-width:1000px) {
  .promotecontent h2{
    font-size:150%;
    margin-top:0px;
    margin-bottom:5px;
  }
}

@media screen and (min-width:1800px) {
  .promotecontent {
    font-size:200%;
  }
}
@media screen and (max-width:770px) {
.promotionalcontentheading {
    font-size:150%;
}
  .promote {
    width:90%;
    flex-direction:column;
    padding-left:5%;
    padding-right:5%;
    padding-top:8%;
    padding-bottom:8%;
  }
  .promotecontent h2 {
    font-size:120%;
    margin-bottom:0px;
  }
  .promotecontent p {
    font-size: 75%;
  }
  .promotecontent, .promoteimage {
    width:80%;
    padding-right:10%;
    padding-left:10%;
    margin:0px;
    margin-top:1%;
  }
  .promoteimage {
    margin-bottom:5%;
  }
  .promoteimagemobile {
    display:flex;
    height:100%;
  }
  
  .promoteimagemobile img {
      width:100%;
      height:100%;

  }
  .promoteimageweb {
    display:none;
  }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////IELTS PAGE //////////////// */
.pagetitle {
  text-align:center;
  background-image: url(img/IELTS/ieltsbkg.png);
  background-size:cover;
  background-position: center;
  background-repeat:non-repeat;
  color:white;
  margin:0px;
  padding-top:2%;
  padding-bottom:2%;
}
.pagetitle h1 {
  font-size:300%;
  font-weight:bold;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.ieltsinfodiv {
  padding:1% 8%;
  font-size:110%;
}
.ieltsinfodiv h2 {
  text-align:center;
  font-size:150%;
  color:rgb(50, 0, 100)
}

.ieltsbandscale img {
  width:80%;
  margin-bottom:0px;
}
.imagesourcecaption {
  margin-top:0px;
  font-style: italic;
}
.ieltsbandscale {
  text-align:center;
  display: none;
}
.ieltsbandbutton {
  cursor:pointer;
  text-decoration: underline;
}
.ieltsbandbutton:hover {
  color:rgb(79, 0, 128);
}

/* IELTS Format Info Layout */
.ieltsformatblock {
  display:flex;
  flex-direction:column;
  /* background-color: rgb(74, 11, 133); */
}
.ieltsformatblockrow {
  display:flex;
  flex-direction:inline-block;
  width:100%;
  margin-bottom:1%;
  margin-top:1%;
}
.ieltsformatblockelement {
  border-radius:10px;
  width:43%;
  margin-left:2%;
  padding:2%;
  padding-top:0%;
}
.ieltsformatblockelement li {
  color:black;
  font-weight:normal;
  list-style-type:disc;
  font-size:100%;
  width:100%;
  text-align:left;
  list-style:disc;
  display:list-item;
  padding:3px 0px;
}

.ieltsformatblockelementlistening {
  background-color:rgb(241, 132, 132);
}

.ieltsformatblockelementreading {
  /* background-color: rgb(252, 233, 110); */
  background-color: rgb(252, 205, 110);
}

.ieltsformatblockelementwriting {
  background-color: rgb(102, 162, 230);
  /* color:white; */
}

.ieltsformatblockelementspeaking {
  background-color: rgb(52, 219, 186);

}
.ieltsformatblockelement p {
  font-size:90%;
  margin:2px;
  font-style: italic;
}

.ieltsformatblockelement h5{
  margin-bottom:5px;
  font-size: 100%;
}
.ieltsformatblockelement ul {
    flex-direction:column;
    list-style: disc;
    width:90%;

}

@media screen and (max-width:800px){
  .ieltsformatblockrow {
    flex-direction: column;
    padding-left:4%;
    padding-right:2%;
    margin-bottom:0;
  }
  .ieltsformatblockelement {
    width:80%;
    padding-left:5%;
    padding-right:5%;
    margin-bottom:2%;
  }
  .ieltsformatblockelement ul {
    margin-left:2%;
  }

}
.ieltsacademic, .ieltsgeneral {
  display:none;
}
/* IELTS ACADEMIC VS GENERAL BUTTONS */
.ieltstesttypebuttons {
  padding-left:10%;
}
.ieltstestbutton {
  width:45%;
  padding:8% 5%;
  font-size:130%;
  font-weight:bold;
  text-align:center;
  cursor: pointer;
  background-color: rgb(238, 227, 255);
  border-radius:5px;
}

.ieltstestbutton:hover {
  background-color: rgb(221, 199, 255);
}

.ieltstestbuttonacademic {
  background-color: rgb(92, 14, 145);
  color:white;
}
.ieltstestbuttonacademic:hover {
  background-color: rgb(117, 62, 154);
}

@media screen and (max-width: 960px) {
  .ieltstestbutton {
    width:48%;
    padding:8% 2%;
    font-size:120%;
  }
}

@media screen and (max-width: 720px) {
  .ieltstypebuttons {
    display:flex;
    flex-direction:column;
  }
  .ieltstestbutton {
    width:80%;
    padding:8% 5%;
    margin-top: 2%;
    margin-bottom:2%;
  }
}

/* IELTS AT ZIE */
.ZIEIELTSTitle {
  padding-right:10%;
  padding-left:10%;
  width:80%;
}
@media screen and (max-width:550px) {
  .ZIEIELTSTitle h1{
    font-size: 200%;
  }
}

@media screen and (max-width:390px) {
  .ZIEIELTSTitle h1{
    font-size: 150%;
  }
}

@media screen and (max-width:300px) {
  .ZIEIELTSTitle h1{
    font-size: 100%;
  }
}

.ZIEIELTSIntro, .ZIEIELTSSpecifics{
  padding:1% 8%;
  font-size:110%;
}
.ZIEIELTSSpecifics h2 {
  font-size:150%;
  color:rgb(50, 0, 100);
  text-align:center;
}
.ZIEIELTSSpecifics{
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width:72%;
  margin-right:10%;
  margin-left:10%;
  margin-bottom:2%;
  padding:1% 4%;
}

.ZIEIELTSList {
  display:flex;
  flex-direction:column;
  padding-left:0%;
}
.ZIEIELTSList li {
  color:black;
  font-weight: normal;
  text-align:left;
  font-size:105%;
  width:95%;
  display:flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px;
  border-left: 5px solid #4CAF50;
  /* border-left: 5px solid #6d4caf; */
    /* - don't know whether I should make it purple or green  */
  background: #f9f9f9;
  border-radius: 5px;
}
.ZIEIELTSList li i {
  flex-shrink: 0;
}
.ZIEIELTSList li span {
  flex-grow: 1;
  margin-left:5px;
}

.ZIEIELTSList li:hover {
  /* background: #e8f5e9; */
  background: #f1e8f5;
  cursor:default;

}

.ZIEIELTSVideo {
  position: relative;
  padding-bottom: 40%; 
  height: 0;
  margin-bottom: 20px;
  border-radius: 10px;
  margin: 2% 10%;
}

.ZIEIELTSVideo video {
  width:100%;
  height:100%;
  border:none;
  border-radius: 10px; 
  position: absolute;
  top: 0;
  left: 0; 
}

/* IELTS BEGIN BUTTON  */
.IELTSBeginButtonDiv {
  display:flex;
  flex-direction:column;
  align-items: center; /* Center items horizontally */
  margin-top:2%;
  margin-bottom:1%;
}
.IELTSBeginButton {
  display: inline-block;
  background: #704caf;
  color: #fff;
  padding: 1em 2em;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  position: relative;
  width: auto;
  max-width: 90%;
  text-align:center;
  animation: pulse 2s infinite alternate; /* Apply the pulse animation */
}

.IELTSBeginButton i {
  margin-left: 10px;
  transition: margin-left 0.3s;
  color:white;
}

.IELTSBeginButton:hover i {
  margin-left: 15px;
}

.IELTSBeginButton:hover {
  background: #6045a0;
  transform: translateY(-2px);
}

.IELTSBeginButton:active {
  background: #563e8e;
  transform: translateY(1px);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


@keyframes beatFade {
  0%, 100% {
      opacity: 1;
      transform: scale(1);
  }
  50% {
      opacity: 0.5;
      transform: scale(1.1);
  }
}


.IELTSBeginButton:hover i {
  animation: beatFade 1s infinite;
}


@media (max-width: 768px) {
  .IELTSBeginButton {
      padding: 0.8em 1.5em;
      font-size: 1em;
  }

  .IELTSBeginButton i {
      margin-left: 8px;
  }

  .IELTSBeginButton:hover i {
      margin-left: 12px;
  }
}

@media (max-width: 480px) {

  .IELTSBeginButton {
      padding: 0.6em 1.2em;
      font-size: 0.9em;
  }

  .IELTSBeginButton i {
      margin-left: 6px;
  }

  .IELTSBeginButton:hover i {
      margin-left: 10px;
  }
}

/* IELTS Affiliation */
.ieltsaffiliatediv {
  padding:1% 8%;
  display:flex;
  flex-direction:inline-block;
}

.ieltsaffiliate{
  width:40%;
  display:flex;
  flex-direction:column;
  text-align:Center;
  margin: 4% 4%;
  font-size:130%;
  align-items: center;
  font-style: italic;
}

.ieltsaffiliate img {
  height:180px;
}
.ieltsofficialteacherimg {
  width:auto;
}

@media screen and (max-width:1050px) {
  .ieltsaffiliatediv {
    flex-direction: column;
    align-items:center;
  }
}

@media screen and (max-width: 620px){
  .ieltsaffiliate {
    width:80%;
  }
  .ieltsaffiliate img {
    width:100%;
    height:auto;
  }
  
}

/* ////////////////////////////////////////////////////////////////// */
/* ///////ENGLISH SERVICES WEBPAGE////// */
.englishservicesectiondiv, .englishservicesintro {
  padding:1% 8% 1% 8%;
  font-size:115%;
  width:84%;
  text-align:left;
}
.englishservicesintro  .englishservicediv {
  width:100%;
}
.englishservicediv {
  width:84%;
}
.englishservicebuttons {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  max-width:100%;
  padding: 4% 5%;
  padding-right:0%;
  background-color: #ffffff;
  border: 2px solid #4B0082; /* Dark Purple */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.englishservicebuttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color:black;
  width:25%;
  margin:5px;
  text-align:center;
  vertical-align:center;
  text-decoration:none;
  padding:10px 15px;
  border-radius: 15px;
  background-color: #4B0082; /* Dark Purple */
  color: #ffffff;
  border: 1px solid #4B0082;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.englishservicebuttons a:hover {
  background-color: #6A0DAD; /* Lighter shade of purple */
  color: #ffffff;
  border-color: #6A0DAD;
  cursor:pointer;
}

@media (max-width: 720px) {
  .englishservicebuttons a {
    width:40%;
  }
  .englishservicebuttons {
    padding: 4% 2%;
  }
}

@media (max-width: 580px) {
  .englishservicebuttons a {
    width:90%;
  }
  .englishservicebuttons {
    padding: 4% 2%;
  }
}

.englishservicecontactbutton .IELTSBeginButton {
  border:none;
  margin:5%;
  cursor:pointer;
}

.englishservicecontactbutton {
  width:98%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.englishservicescontactinfo {
  width:100%;
  display:flex;
  flex-direction:column;
}
.englishservicescontactinfodivcontainer { 
  display:flex;
  flex-direction:row;
}
.englishservicescontactinfodiv {
  display:flex;
  flex-direction:column;
  width:40%;
  margin:0.5% 5%;
  text-align:center;
}
.englishservicecontactemail {
  text-align:center;
}
.englishservicecontactitle {
  font-weight:bold;
  font-size:150%;
}

.englishservicecontactemail a {
  color:black;
  text-decoration: underline;
}

@media screen and (min-width:700px){
  .englishservicescontactinfodiv {
    width:150px;
  }
  .englishservicescontactinfodivcontainer { 
      display:flex;
      align-items: center;
      justify-content: center;
  }
  
  
}

@media  screen and (max-width:560px) {
  .englishservicecontactemail {
    font-size:14px;
  }
}

@media screen and (max-width:440px) {
  .englishservicecontactemail {
    font-size:12px;
  }
  .englishservicescontactinfodivcontainer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .englishservicescontactinfodiv {
    width:70%;
  }
}

@media screen and (max-width:700px) {
  .whatsappparagraph {
    display:flex;
    flex-direction:column;
  }
}

.englishservicescontactinfo {
  display:none;
}

/* English Serivce Section Titles */
.englishservicesectiontitle {
  background-color: #341b6f;
  width:100%;
  text-align:center;
  padding:2% 0%;
  font-size:150%;
  color:white;
}

.englishservicesectiondiv h2 {
  text-align:center;
  font-size:150%;
  color:rgb(50, 0, 100)
}

.englishservicesectiondiv h3 {
  font-size:105%;
  color:rgb(26, 1, 52)
}

.englishservicelistul {
  display:flex;
  flex-direction: column;
  width:84%;
}

.englishservicelistli {
  color:black;
  font-weight:normal;
  text-align: left;
  font-size:100%;
  margin:0%;
  padding:2px;
  list-style-type:disc;
  list-style:disc;
  display:list-item;
}

.englishservicelistli a {
  color:rgb(26, 1, 52)
  ;
}
.aienglishserviceul {
  padding-left:2%;
}
.aienglishserviceul li {
  list-style: none;
}
.aienglishserviceul li i {
  color:red;
}

.studyabroadenglishservicparagraphdisclaimer {
  font-size:90%;
  font-style: italic;
  color:#6A0DAD
}
.studyabroadenglishservicparagraphdisclaimer a{
  font-size:100%;
  font-style: italic;
  text-decoration: underline;
  color:#6A0DAD
}

.englishservicesectiondiv table {
  width:100%;
  border-collapse:collapse;
  margin-bottom:20px
}
tr {
  max-width:84%;
}
th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  width:8%;
}

th {
  background-color: #dbcff5;
  text-align: center;
}

tr:nth-child(even) {
  background-color: #f2edfc;
}


.englishservicelistultable {
  display: flex;
  flex-direction: column;
  width:90%;
  margin-left:5%;
}
.englishservicelistlitable {
  color:black;
  text-align:left;
  width:80%;
  font-weight: normal;
  padding:1%;
  list-style-type:disc;
  list-style:disc;
  display:list-item;
}

.englishservicesincluded, .englishservicesexcluded {
  list-style-type: none;
  width:95%;
  font-size:60%;
  display:flex;
  align-items: flex-start;
  text-align:left;
  align-items: left;
  flex:1;
}

.englishservicelistultabletick {
  padding:0px;
}

.englishservicesincluded {
  font-weight: bold;
}
.englishservicesincluded i {
  color:black;
  font-weight: bold;
}

.englishservicesexcluded, .englishservicesexcluded i {
  opacity:0.8;
  color:gray;
}

.englishservicelistlitable span {
  flex-grow: 1; /* Allow text to take up remaining space */
  margin-left:5px;
  display: inline-block; /* Ensure text spans next to the icon */
}


.englishserviceextras h3 {
  text-decoration: underline;
  color:#341b6f
}

.englishserviceextras p {
  font-size:90%;
}

.FAQquestion {
  background-color: #4B0082;
  color:white;
  text-align: center;
  border-radius: 15px;
  padding: 20px 5px;
  cursor:pointer;
  margin:0px;
  margin-bottom: 5px;
  font-size:110%;
}

.FAQquestion:hover {
  background-color: #dbcff5;
  color:#2b0356
}

.FAQAnswer{
  display:none;
  width:90%;
  padding-left:4%;
}

@media screen and (max-width:650px) {
  .FAQquestion {
    font-size:100%;
    padding: 20px 20px;
  }
}

/* //Proofreading Slideshow */
.englishserviceslideshowcontainer {
  position:relative;
  width:98%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
}
.englishserviceslides img, .englishserviceslides video {
  width:80%;
  border: 5px solid #444;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.englishserviceslides {
  display:none;
}

.cursor {
  cursor:pointer;
}
.prevenglishserviceslide, .nextenglishserviceslide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: black;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none; 
}
.nextenglishserviceslide {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prevenglishserviceslide {
  left:0;
}

.prevenglishserviceslide:hover, .nextenglishserviceslide:hover {
  background-color: rgba(202, 181, 206, 0.8);
}

/* English Services Pricing Table Tabs */
.englishservicespricingtabcontainer {
  width:99%;
  display: flex;
}

.englishservicepricingtabs {
    margin-bottom: 10px;
    width:100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.englishservicepricingtab {
  cursor: pointer;
  padding: 10px 20px;
  background-color: #dbcff5;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 5px;
  margin-top: 1%;
}

.englishservicepricingtab:hover {
  background-color: #44046e;
  color:white;
}
.englishservicepricingtab.active {
  background-color: #44046e;
  border-bottom: 1px solid #dbcff5;
  color:white;
}

.englishservicepricingtabcontent {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
}

.englishservicepricingtabcontent.active {
  display: block;
}

.englishservicepricingtabcontent table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.englishservicepricingtabcontent table th,.englishservicepricingtabcontent table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.englishservicepricingtabcontent table th {
  background-color: #dbcff5;
  text-align: center;
}

.englishservicepricingtabcontent tr:nth-child(even) {
  background-color: #f2edfc;
}
.englishservicespricingtabcontainer {
  display: none;
}

@media (max-width: 790px) {
  .englishservicesectiondivpricinglaptop {
    display:none;
  }
  .englishservicespricingtabcontainer {
    display: flex;
  }
}

.englishservicesintro {
width:84%;
}

/* AUS STUDY ABOARD */
.ausstudylist {
  display:flex;
  flex-direction:column;
  padding-left:0%;
}
.ausstudylist li {
  color:black;
  font-weight: normal;
  text-align:left;
  font-size:105%;
  width:95%;
  display:flex;
  align-items: flex-start;
  margin-bottom: 5px;
  padding: 10px;
  padding-bottom:5px;
  background: #f9f9f9;
  border-radius: 5px;
  list-style-type: disc;
  display:list-item;

}

/* /////////////////////////////////////////////////////// */
/* ////////////// ABOUT PAGE//////////////// */
p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.aboutsection {
  padding:1% 8% 1% 8%;
  font-size:120%;
  width:84%;
  text-align:left;
}

.aboutinfo h2 {
  text-align:center;
  font-size:150%;
  color:rgb(50, 0, 100)
}
.aboutinfointroimg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.aboutinfointroimg img {
  width:50%;
}

.ZIEaboutword {
  color: #44046e;
  font-weight: bold;
}

.ourmission  {
  border: 1px solid #ccc;
  padding: 20px 40px;
  margin: 30px 0;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 120%;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-align: center;
}

.aboutsectiontitle {
  background-color: #341b6f;
  width:100%;
  text-align:center;
  padding:2% 0%;
  font-size:150%;
  color:white;
}

.aboutsectionul {
  display: flex;
  flex-direction: column;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.aboutsectionul li {
  color:black;
  text-align:left;
  font-weight: normal;
  font-size: 100%;
  list-style: disc;
  display:list-item;
  padding:0px;

}

@media screen and (max-width:1100px) {
  .aboutinfointroimg img {
    width:500px;
  }
}

@media screen and (max-width:550px) {
  .aboutinfointroimg img {
    width:90%;
  }
}

.aboutinfo video {
    width:100%;
    border-radius: 10px;

}

.aboutteacher {
  display: flex;
  flex-direction: inline-block;
}

.aboutteacherdivs {
  width:45%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.aboutteacherdivs img {
  width:80%;
}

.aboutteacherdivs h4 {
  text-align: center;
}

.aboutteacherdivs ul {
  display: flex;
  flex-direction: column;

}
.aboutteacherdivs li {
  color:black;
  font-weight: normal;
  text-align: left;
  list-style: disc;
  display:list-item;
  padding:0px;
  line-height: 1.6;
}

.aboutteacherdivs h5 {
  margin-bottom:5px;
  color:rgb(50, 0, 100);
}

@media screen and (max-width:1200px) {
  .abouteacherdivimagediv{
    width:35%;
  }
  .aboutteacherdivsinfo {
    width:55%;
  }
  .aboutteacherdivs li {
    line-height: 1.4;
  }

  .aboutteacherdivs h5 {
    margin-top: 0px;
  }
}
@media screen and (max-width:1000px) {
  .aboutteacher {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .aboutteacherdivs {
    width:95%;
  }
  .aboutteacherdivs h5 {
    margin-top: 5px;
  }
  .aboutteacherdivs li {
    line-height: 1.6;
  }
  
}
.aboutinfoemail {
  text-align: center;
}
.aboutinfo a {
  color:black;
  width:100%;
  text-decoration: underline;
}

@media screen and (max-width:420px) {
  .aboutinfo a {
    font-size: 70%;
  }
}

.contactformcontainer {
  border-radius: 5px;
  background-color: #9279a5;
  padding: 20px;
}
.contactformcontainer form{
  display: flex;
  flex-direction: column;
}

input[type=text], select, textarea, input[type=password], input[type=email],input[type=tel],input[type=date] {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: rgb(32, 2, 47);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: rgb(86, 35, 123);
}

/* ///////////////////////////////////////////////////////////////////////////// */
/*////////////////////////////// LOGIN PAGE////////////////////////////////////// */
.fullpagelogin {
  margin: 0px;
  padding:0px;
  /* padding-top:10px; */
  width:100%;
  display:flex;
  flex-direction: row;
}

.loginsignuphalf {
  width:44%;
  padding:3%;
  display: flex;
  flex-direction: column;
  margin:0px;
}

.loginsignuphalf h2 {
  text-align: center;
  font-size: 250%;
  margin-bottom: 1%;
}

.loginsignuphalf h3 {
  text-align:center;
  font-size:150%;
  color:#e8f2ff;
  font-family:Helvetica, sans-serif;
}

.loginsignuphalf button {
  cursor: pointer;
}

.signupside {
  background-color:#7765a6;
  color:white;
}

.loginside {
  background-color:#f4ebff;
}

.loginside h3 {
  color:#2b0f4d;
}

.loginformcontainer {
  display: flex;
  flex-direction: column;
}

.loginformcontainer button {
  background-color: #592599;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  }

  .loginformcontainer button:hover{
    opacity: 0.8;
  }

  .psw a{
    color:rgb(50, 0, 100)
  }
  .psw a:hover {
    opacity: 0.8;
  }

  .signupchoicecontainer {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .whatsappparagraph {
    display: flex;
    flex-direction: column;
  }

  .logincontact a {
    color: white;
  }

  .signupchoicebutton {
    background-color: #e8f2ff;
    color: #7765a6;
    border: 2px solid #e8f2ff;
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    width: 80%;
    max-width: 400px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    font-size:110%;
  }

  .signupchoicebutton h4 {
    margin: 0;
    font-size: 1.2em;
  }
  
  .signupchoicebutton p {
    margin: 5px 0 0;
    font-size: 0.9em;
  }
  
  .signupchoicebutton:hover {
    background-color: #7765a6;
    color: #e8f2ff;
  }

  /* Styling for the OR text */
.ortext {
  margin: 10px 0;
  font-size: 1.2em;
  color: #e8f2ff;
}

/* Specific styling for the contact button */
.signupcontactbutton {
  background-color: #d1c4e9;
  color: #4e356b;
}

.signupcontactbutton:hover {
  background-color: #4e356b;
  color: #d1c4e9;
}


  @media screen and (max-width:690px) {
    .fullpagelogin {
      flex-direction: column-reverse;
    }
    .loginsignuphalf {
      width:92%;
      padding:4%;
    }
  }


  /* SIGNUP PAGE  */
  .hidden {
    display: none;
  }

  .signuppagesignupsection {
    padding:1% 8% 1% 8%;
    font-size:120%;
    width:84%;
  }

  .deadlinediv {
    display: flex;
    flex-direction: inline-block;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .deadlinediv input, .deadlinediv select {
    width:45%; 
    text-align: center;
    }
#durationValue {
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  margin-right: 2%;
  text-align: center;
}
#price {
  text-align: center;
  font-size:150%;
}

select {
  text-align: center;
  font-size: 100%;
}

.signuppagesignupsection h2 {
  text-align: center;
  font-size:200%;
  color:#563381;
  margin-bottom:1%;
}
.signuppagesignupsection p {
  text-align: center;
  color:#563e8e;
  font-style: italic;
  margin-top: 0%;
}

.signuppagesignupsection form {
  background-color: #563381;
  padding: 4% 7%;
  color:white;
  border-radius:15px;
}

.formpricingdiv {
  background-color: #cb92dc;
  display:flex;
  flex-direction: column;
  color:#2b0356;
  text-align: center;
  border-radius: 5px;
  margin-bottom:15px;
  font-size: 115%;
  vertical-align: center;
  padding: 15px 0;
  align-items: center;
  justify-content: center;
}

.totalpricediv {
  display: flex;
  flex-direction: row;
  vertical-align: center;
  align-items: center;
  justify-content: center;
  padding:0px;
}
.totalpricediv span {
  margin-right:2px;
}

#perPrice {
  margin-top:15px;
  font-size:90%;
  font-style: italic;
}

.signupformcontainer button {
  width:100%;
  background-color: #b8a1d2;
  padding: 25px 0px;
  border-radius:15px;
  cursor: pointer;
  font-size: 100%;
  color:white;
}

.signupformcontainer button:hover {
  background-color: #563e8e;
}


.errormessage {
  text-align:center;
  font-size: 115%;
  color:red;
  font-weight: bold;
}

/* /////////////////////////////////////English Tests PAGE/////////////////////////////// */
.englishtestbuttondiv {
  display:flex;
  padding:1%;
  justify-content: center;
  align-items:center;
  width:100%;
}

.englishtestbutton {
  background-color: #563e8e;
  width:30%;
  padding: 5%;
  text-align:center;
  margin:1%;
  border-radius: 15px;
  font-weight: bold;
  font-size: 200%;
}

.englishtestbutton:hover {
  background-color: #9279a5;
}

.englishtestheading {
  color: #2b0356;
  text-align: center;
  font-size: 150%;
}

.englishtestvideodiv {
  width: 70%;
  padding: 1% 15%;
}

.englishtestvideodiv video {
  width:100%;
  border-radius: 5px;
}
@media screen and (max-width:575px) {
  .englishtestbutton {
    font-size: 100%;
  }
  
}

/* International Exams Page */
.intlexambuttondiv {
  display:flex;
  padding:1%;
  justify-content: center;
  align-items:center;
  width:100%;
}

.intlexambutton {
  background-color: #563e8e;
  width:20%;
  padding: 5%;
  text-align:center;
  margin:1%;
  border-radius: 15px;
  font-weight: bold;
  font-size: 200%;
}

.intlexambutton:hover {
  background-color: #9279a5;
}

@media screen and (max-width:575px) {
  .intlexambutton {
    font-size: 100%;
  }
  
}

/* Financial Help Page */
.financialhelpimage {
  width:100%;
  display:flex;
  align-items:center;
  justify-content: center;
}

.financialhelpimage img {
  width:20%;
}
/* /////////////////////////////////////Univeristy Applications Page //////////////////////////////////////////// */
.uniappservicediv {
  text-align: center;
  font-size: 95%;
}

.collegeappbuttondiv {
  display: flex;
  flex-direction: column;
}
.collegeappbuttondivcontainer {
  display:flex;
  flex-direction: row;
}
.collegeappbutton {
  cursor: pointer;
  width: 20%;
  padding: 2%;
  background-color: #390650;
  border: 1px solid #ccc;
  margin-top: 5px;
  text-align: center;
  color:white;
}

.collegeappbutton:hover {
  background-color: #ae83b6;
}

.collegeappbuttoncontent {
  display: none; /* Hide all contents by default */
  padding: 15px 30px;
  border: 1px solid #ccc;
  background-color: #fff;
  width:100%;
}
.collegeappbuttoncontent ul, .collegeappbuttoncontent li {
  display:flex;
  width:95%;
  padding-right:0;
}

.active-content {
  display: block; /* Show the active content */
}

.active-button {
  background-color: #007bff;
  color: white;
}

.collegeappbuttoncontent ul, .collegeappbuttoncontentdiv ul {
  display:flex;
  flex-direction: column;
  color:black;
  list-style-type: disc; /* Forces dot points to appear */
}

.collegeappbuttoncontent li, .collegeappbuttoncontentdiv li {
  color:black;
  font-weight:normal;
  text-align: left;
  list-style: disc;
  display:list-item;
  padding:2px 0px;
  font-size:100%;
}


/* University Application Forms */
.uniappessayforms {
  padding:1% 2%;
  border-radius: 15px;
  margin-top: 1%;
  background-color: #390650;
}

.uniappessayforms h1 {
  text-align: center;
  color: white;
}

fieldset {
  background-color: #d9cbea;
  border-radius: 15px;
  margin-top: 10px;
}

.uniappessayforms h2 {
  text-align: left;
}

.uniappessayforms button {
  width:100%;
  background-color: #2b0356;
  color:white;
  padding: 1%;
  border-radius: 15px;
  font-size: 105%;
  cursor:pointer;
}

.uniappessayforms button:hover {
  opacity: 0.8;
}
/* /////////////////////////////////////////////////////////////Social MEDIA PAGE///////////////////////////////////// */
.socialmediadiv {
  padding: 1% 4%;
  width: 92%;
  text-align:center;
}

.socialmediaintro p {
  font-size: 130%;
  margin:0px;
}

.socialmediaintro h2 {
  font-size: 200%;
  margin:0px;
}

.social-media-buttons {
  display: flex;
  flex-direction: column;
}

.socialmediacountry {
  display:flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.socialmedialinkdiv {
  width:15%;
  display: flex;
  flex-direction: column;
  margin: 2%;
  cursor: pointer;
}

.socialmediaiconimageimage {
  width:100%;
}

.socialmediaicontext {
  color:black;
  font-weight: bold;
  width:100%;
}

@media screen and (max-width:580px) {
  .socialmediaicontext {
    font-size: 50%;
  }
}

/* Podcast  */
.podcastsection {
  display:flex;
  flex-direction: column;
  padding:2% 10%;
  justify-content: center;
  align-items:center;
  width:80%;
}
.podcastsectiondiv {
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items:center;
  text-align:center;
}
.podcastsectionlink {
  width:250px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items:center;
}
.podcastsectionlink img{
  width:80%;
  border-radius:15px;
}
.podcastsectionlink a {
  margin-top:5px;
  color: black;
  text-decoration: underline;
}
.podcastsectionlink a:hover {
  color: rgb(66, 3, 81);
}
.podcastsection h3 {
  margin-bottom:0px;
}

.error-field {
  border: 2px solid red;
  background-color: #fff0f0;
}

/*coupon*/
.priceSummary p {
    margin:0px;
}
.couponLine {
    margin:0px;
    font-size:90%;
    color:#808080;
}

