/*For Overall or General*/

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.25s;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--secondarybg-color);
}

:root {
    --mobile-txt: 0.75em;
    --normal-txt: 1em;
    --big-normal-txt: 1.25em;
    --medium-txt: 1.5em;
    --big-medium-txt: 1.75em;
    --header-txt: 2.5em;
    --large-txt: 4em;
    --xlarge-txt: 5em;
    --normal-weight: 300;
    --regular-weight: 400;
    --medium-weight: 500;
    --semibold-weight: 600;
    --white-color: white;
    --black-color: black;
    --mild-black: rgb(82, 82, 82);
    --mainbg-color: rgb(42, 58, 197);
    --secondarybg-color: rgb(243, 243, 243);
}

#active-link::after {
    width: 100%;
    height: 3px;
    background: var(--mainbg-color);
    display: block;
}

/*For Navigation*/

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    padding:  40px 20px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.left-side {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: row;
}

.change-body {
    background: rgb(134,143,144);
    background: linear-gradient(311deg, rgba(134,143,144,1) 79%, rgba(245,243,255,1) 94%);
}

.change-text-color {
    color: var(--white-color);
}

.left-side img {
    width: 100%;
    cursor: pointer;
}

.logo-header {
    position: relative;
}
  
.logo-header h2 {
    color: #fff;
    font-size: var(--header-txt);
    position: absolute;
    transform: translate(-50%, -50%);
    margin-left: 60px;
}
  
.logo-header h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 1px var(--mainbg-color);
}
  
.logo-header h2:nth-child(2) {
    color: var(--mainbg-color);
    animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
  0%,
  100% {
    clip-path: polygon(
      0% 45%,
      16% 44%,
      33% 50%,
      54% 60%,
      70% 61%,
      84% 59%,
      100% 52%,
      100% 100%,
      0% 100%
    );
  }

  50% {
    clip-path: polygon(
      0% 60%,
      15% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
  }
}

.left-side:hover {
    transform: scale(1.1);
}

.right-side {
    display: flex;
    flex-direction: row;
    position: relative;
}

.right-side a {
    text-decoration: none;
    color: var(--black-color);
    font-size: var(--normal-txt);
    /*text-transform: uppercase;*/
}

.right-side .link {
    padding: 6px;
    margin: 0 10px;
    background: transparent;
}

.fa-caret-down {
    margin-left: 5px;
    color: var(--mainbg-color);
}

.right-side .link::after,
.passers-link::after {
    content: "";
    width: 0%;
    height: 3px;
    background: var(--mainbg-color);
    display: block;
    margin: auto;
    transition: all 0.25s;
}

.right-side .link:hover::after {
    width: 100%;
}

.passers {
    position: relative;
    display: inline-block;
}

.passers-container {
    position: absolute;
    top: 40px;
    left: -175px;
    display: none;
    z-index: 1001;
    padding: 10px;
    background: var(--white-color);
}

.passers-container .passers-link{
    color: var(--black-color);
    font-size: var(--normal-txt);
    padding: 10px;
    display: grid;
    place-items: left;
    white-space: nowrap;
}

.passers:hover .passers-container{
    display: block;
}

.passers-container .passers-link:hover::after {
    width: 100%;
}

#open,
#close {
    display: none;
    cursor: pointer;
    font-size: 25px;
    color: var(--mainbg-color);
}

#close {
    position: fixed;
    margin-left: -10px;
}


/*For Home-Section*/

section {
    width: 80%;
    margin: auto;
}

.home-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/forhomepage1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.home-txt {
    margin-top: 50px;
}

.first-animation {
    margin-top: 100px;
}

.animation-container {
    margin-top: 100px;
}

.second-animation {
    margin-top: 50px;
    opacity: 0;
}

.second-animation1 {
    margin-top: 50px;
    opacity: 0;
}

.second-animation-activated {
    opacity: 1;
    position: relative;
    animation: animated 2s;
}

.second-animation1-activated {
    opacity: 1;
    position: relative;
    animation: animated1 2s;
}

@keyframes animated {
    0% {left: -50%; transform: scale(0.1); opacity: 0;}
    100% {left: 0; transform: scale(1); opacity: 1;}
}

@keyframes animated1 {
    0% {right: -50%; transform: scale(0.1); opacity: 0;}
    100% {right: 0; transform: scale(1); opacity: 1;}
}

.third-animation {
    margin-top: 50px;
    opacity: 0;
}

.third-animation1 {
    margin-top: 50px;
    opacity: 0;
}

.third-animation-activated {
    opacity: 1;
    position: relative;
    animation: animated 2s;
}

.third-animation1-activated {
    opacity: 1;
    position: relative;
    animation: animated1 2s;
}

.fourth-animation {
    margin-top: 50px;
    opacity: 0;
}

.fourth-animation-activated {
    margin-top: 50px;
    opacity: 1;
    position: relative;
    animation: animated 2s;
}

.main-txt {
    text-align: left;
    font-size: var(--header-txt);
    color: var(--mainbg-color);
    font-weight: var(--medium-weight);
    text-shadow: 0 8px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.header-txt {
    text-align: center;
    color: var(--white-color);
    font-weight: var(--medium-weight);
    text-shadow: 0 10px 5px var(--mainbg-color);
    margin-bottom: 0 auto 20px;
    letter-spacing: 5px;
    font-size: var(--large-txt);
}

.sub-txt {
    font-size: var(--big-normal-txt);
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3), 4px 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    letter-spacing: 1px;
}

.sub-txt span {
    font-weight: var(--medium-weight);
}

.column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.img-container-home img{
    height: 300px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

details summary,
.primary-txt {
    font-weight: var(--medium-weight);
    font-size: var(--medium-txt);
    color: var(--mainbg-color);
    cursor: pointer;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.primary-txt {
    text-align: center;
}
.override-one {
    margin-top: 100px;
}

details {
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
    margin-top: 100px;
}

details p {
    font-size: var(--big-normal-txt);
    margin-bottom: 10px;
    text-align: justify;
    letter-spacing: 1px;
}

.spacing {
    display: block;
    margin-top: 10px;
}

.btn-container {
    margin-top: 50px;
    position: relative;
    animation: try 1.5s;
}

@keyframes try {
    0% {left: -50%; transform: scale(0.1); opacity: 0;}
    100% {left: 0; transform: scale(1); opacity: 1;}
}

.btn-container button {
    padding: 6px 16px;
    font-size: var(--big-normal-txt);
    color: var(--mainbg-color);
    background: var(--white-color);
    border: 1px solid var(--mainbg-color);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.4), 5px 0 8px rgba(0, 0, 0, 0.4);
}

.btn-container button:hover {
    color: var(--white-color);
    background: var(--mainbg-color);
}

.btn-container button:active {
    transform: scale(0.9);
}

.no-link {
    text-decoration: none;
}


/*Service Section*/

.service-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/forhomepage.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.service-txt {
    margin-top: 50px;
}

.flex-layout {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 25px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 4px 0 8px rgba(0, 0, 0, 0.3);
}

.flex-layout1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    padding: 25px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 4px 0 8px rgba(0, 0, 0, 0.3);
}

.left-flex-layout,
.right-flex-layout {
    flex: 1;
    text-align: center;
}

.middle-flex-layout1 {
    flex: 2;
    text-align: left;
}

.left-flex-layout1,
.right-flex-layout1 {
    flex: 1;
    text-align: left;
}

.first-override {
    box-shadow: none;
    text-align: left;
    border-left: 5px solid var(--mainbg-color);
}

.override1 {
    box-shadow: none;
    text-align: center;
    margin-bottom: -15px;
}

.left {
    text-align: left;
}

.override2 {
    box-shadow: none;
    margin-bottom: -15px;
}

.language-container {
    margin-top: 100px;
    padding: 25px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 4px 0 8px rgba(0, 0, 0, 0.3);
}


/*About Section*/

.about-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/about7.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.about-txt {
    margin-top: 100px;
}

.flex-box {
    display: flex;
    flex-direction: row;
    column-gap: 40px;
    margin-top: 100px;
}

.flex-box1 {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.flex-box details {
    flex: 1;
}

.content-sub-txt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
}

.override {
    box-shadow: none;
    text-align: center;
}

.img-container-about img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

ul {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 15px 0 15px 25px;
}

ul li {
    font-size: var(--big-normal-txt);
    font-weight: var(--regular-weight);
    text-align: left;
    letter-spacing: 1px;
    list-style-type: none;
}

ul li span {
    font-weight: var(--medium-weight);
}

.container-content {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: -10px;
}
.content-box {
    font-size: var(--big-normal-txt);
}

.mission,
.vision {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    flex: 1;
}

.title-txt {
    font-weight: var(--medium-weight);
    font-size: var(--medium-txt);
    color: var(--mainbg-color);
    cursor: pointer;
    letter-spacing: 1px;
}

.mission:hover,
.vision:hover {
    transform: scale(1.1);
}

.content-txt {
    font-size: var(--big-normal-txt);
    margin-bottom: 30px;
    text-align: left;
    border-radius: 8px;
    padding: 15px;
    letter-spacing: 1px;
}


/*Contact Section*/

.contact-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/contact3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.contact-txt {
    margin-top: 50px;
}

.map-container {
    width: 100%;
}

.map-container iframe{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-top: 100px;
}

.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.contact-container-icon {
    width: 40px; 
}

@keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
    40% {transform: translateY(-30px);} 
    60% {transform: translateY(-15px);} 
}

.contact-container-icon a {
    font-size: var(--medium-txt);
    color: var(--mainbg-color);
}

.contact-container-icon:hover {
    position: relative;
    animation: bounce 1.5s;
}

.contact-container-content {
    flex: 1;
    font-size: var(--big-normal-txt);
    font-weight: var(--medium-weight);
}

.form-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;  
}

.form-container form{
    padding: 8% 10%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: white;
    overflow-y: scroll;
    overflow-x: hidden;
}

#closeForm {
    cursor: pointer;
    font-size: 25px;
    color: var(--mainbg-color);
    /* margin: 2% -10% 15px auto; */
    position: fixed;
    display: flex;
    right: 10%;
    top: 10%;
    z-index: 1000;
}

label {
    color: var(--mainbg-color);
    font-size: var(--big-normal-txt);
}

.form-container input, select{
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--mainbg-color);
    padding: 10px 15px;
    font-size: var(--normal-txt);
}

.form-container input[type=month],
input[type=date] {
    padding: 15px;
    cursor: pointer;
}

.educEl {
    margin-top: 30px;
    text-align: center;
}

.form-container .adjust {
    width: 60%;
}

#checkbox-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 50px;
}

.checkbox-container label {
    flex: 1;
    margin-left: 50px;
    margin-top: -40px;
    vertical-align: middle;
}

.checkbox-container input {
    width: 30px;
    margin-right: 20px;
    margin-top: 20px;
    vertical-align: middle;
}

#button {
    padding: 6px 16px;
    font-size: var(--big-normal-txt);
    color: var(--mainbg-color);
    background: var(--white-color);
    border: 1px solid var(--mainbg-color);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.4), 5px 0 8px rgba(0, 0, 0, 0.4);
    margin: 50px 0;
}

#button1 {
    padding: 6px 16px;
    font-size: var(--big-normal-txt);
    color: var(--white-color);
    background: var(--mainbg-color);
    border: 1px solid var(--mainbg-color);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.4), 5px 0 8px rgba(0, 0, 0, 0.4);
    margin: 50px 0;
    display: none;
}

#button:hover {
    color: var(--white-color);
    background: var(--mainbg-color);
}


/*Branch Section*/

.branch-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/branch6.avif");
    object-fit: cover;
    object-position: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.main-branch-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.branch-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px;
    gap: 50px;
    border-radius: 40px;
    border: 1px solid rgb(212, 211, 211);
}

.branch-container:hover {
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3), 4px 0 5px rgba(0, 0, 0, 0.3);
}

.right-branch-container button {
    padding: 6px 16px;
    font-size: var(--big-normal-txt);
    color: var(--mainbg-color);
    background: var(--white-color);
    border: 1px solid var(--mainbg-color);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.4), 5px 0 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.right-branch-container button:hover {
    color: var(--white-color);
    background: var(--mainbg-color);
}

.right-branch-container button:active {
    transform: scale(0.9);
}

.override3 {
    box-shadow: none;
    text-align: left;
    margin-bottom: -25px;
}


.modal-container-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

.modal-container {
    padding: 25px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 4px 0 8px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 10%;
    right: 10%;
    bottom: 10%;
    left: 10%;
    overflow: hidden;
}

#closeMap {
    cursor: pointer;
    font-size: 25px;
    color: var(--mainbg-color);
    display: flex;
    justify-content: end;
    margin: 5px;
}

.view-map {
    height: 100%;
    width: 100%;
    margin: 25px auto;
}

.view-map iframe {
    width: 100%;
}

#firstMap,
#secondMap,
#thirdMap,
#fourthMap,
#fifthMap,
#sixthMap,
#seventhMap,
#eightMap {
    display: none;
}


/*Eps-Section*/

.eps-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/exam.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.eps-text {
    margin-top: 100px;
}

.eps-override {
    margin-top: 0;
}

.eps-override1 {
    box-shadow: none;
    text-align: left;
}

.eps-override2 {
    box-shadow: none;
    text-align: left;
    margin: -15px 0;
}


/*PASSERS*/

.passer-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/passers.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.passer1-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/passer4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.passer2-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/passer6.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.passer3-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/passer8.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.passer4-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/passer10.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.passer5-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(42, 58, 197, 0.5), rgba(0, 0, 0, 0.8)), url("../img/passer5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.space {
    margin-top: 100px;
}

.row-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.main-col-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    text-align: center;
    font-size: var(--bg-normal-txt);
}

.main-col-container1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    text-align: center;
    font-size: var(--bg-normal-txt);
}

.main-col-container:nth-child(odd) {
    background:rgb(165, 165, 165);
}

.main-col-container1:nth-child(odd) {
    background:rgb(165, 165, 165);
}

.wave {
    margin-top: 100px;
    position: relative;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
    font-size: var(--header-txt);
    display: flex;
    flex-wrap: nowrap;
}
.wave span {
    position: relative;
    display: inline-block;
    color: var(--mainbg-color);
    text-transform: uppercase;
    animation: wave 1.5s infinite;
    animation-delay: calc(.1s * var(--i));   
}

@keyframes wave {
    0%,40%,100% {
      transform: translateY(0)
    }
    20% {
      transform: translateY(-20px)
    }
}


/*For Footer*/

footer {
    width: 90%;
    margin: 150px auto 0;
    text-align: center;
}

.main-footer-txt {
    font-size: var(--big-normal-txt);
    font-weight: var(--medium-weight);
    color: var(--mainbg-color);
    margin-bottom: 20px;
}

.sub-footer-txt {
    font-size: var(--normal-txt);
    margin-bottom: 20px;
}

.created {
    font-size: var(--normal-txt);
    font-weight: var(--regular-weight);
    color: var(--mainbg-color);
    margin-bottom: 20px;
}

.created a {
    text-decoration: none;
    color: var(--mainbg-color);
}


/*Responsive at big phone and Tablet either portrait or landscape */

@media (max-width: 992px) {

    /*For Navigation*/

    #open,
    #close {
        display: block;
        font-size: 20px;
    }

    #close {
        margin-bottom: 20px;
        margin-top: -20px;
    }

    .right-side {
        flex-direction: column;
        padding: 50px 40px;
        position: fixed;
        background: white;
        top: 0;
        right: -350px;
        width: 350px;
        bottom: 0;
        overflow: scroll;
    }

    .right-side div {
        margin-bottom: 2px;
    }

    .passers-container {
        display: block;
        padding: 5px;
        left: -25px;
    }
    
    .passers-container .passers-link{
        font-size: var(--mobile-txt);
        padding: 5px;
        margin-left: 35px;
    }

    /*For Home-Section*/

    .main-txt {
        font-size: var(--big-medium-txt);
    }

    .header-txt {
        font-size: var(--header-txt);
    }

    details summary,
    .primary-txt {
        font-size: var(--big-normal-txt);
    }

    .column-layout {
        grid-template-columns: 1fr;
    }

    .sub-txt,
    details p {
        font-size: var(--normal-txt);
    }

    /*For Branch-Section*/

    .flex-layout1{
        flex-direction: column;
    }

    /*For About-Section*/

    .primary-txt {
        font-size: var(--big-normal-txt);
    }

    .content-sub-txt {
        grid-template-columns: 1fr;
    }

    .content-box {
        font-size: var(--normal-txt);
    }

    .flex-box {
        flex-direction: column;
        row-gap: 40px;
    }

    ul li {
        font-size: var(--normal-txt);
    }

    .title-txt {
        font-size: var(--big-normal-txt);
    }

    .content-txt {
        font-size: var(--normal-txt);
    }

    /*For Contact-Section*/

    .form-container form{
        padding: 13% 12%;
    }

    #closeForm {
        font-size: 23px;
    }

    .contact-container-icon a {
        font-size: var(--big-normal-txt);
    }

    .contact-container-content {
        font-size: var(--normal-txt);
    }

    .checkbox-container input {
        width: 20px;
    }

    .form-container .adjust {
            width: 65%;
    }

    label {
        font-size: var(--normal-txt);
    }

    /*For Branch-Section*/

    .main-branch-container {
        grid-template-columns: 1fr;
    }

    .branch-container {
        padding: 15px;
    }

    .modal-container {
        padding: 20px;
        top: 8%;
        left: 8%;
        right: 8%;
        bottom: 8%;
    }

    /*For Passer-Section*/

    .main-col-container {
        grid-template-columns: 1fr;
        font-size: var(--normal-txt);
    }

    .main-col-container1 {
        font-size: var(--normal-txt);
    }

    .wave {
        font-size: var(--big-medium-txt);
    }

}

/*Responsive at small Phone*/

@media (max-width: 620px) {

    /*For Navigation*/

    nav {
        height: 60px;
    }
    .left-side {
        height: 40px;
        width: 40px;
    }

    #open,
    #close {
        font-size: 15px;
    }

    #close {
        margin-bottom: 20px;
        margin-top: -20px;
    }

    .logo-header h2 {
        font-size: var(--big-medium-txt);
    }

    .right-side {
        width: 300px;
    }

    /*For Home-Section*/

    .main-txt {
        font-size: var(--medium-txt);
    }

    .header-txt {
        font-size: var(--big-medium-txt);
    }

    details summary,
    .primary-txt {
        font-size: var(--normal-txt);
    }

    .sub-txt,
    details p {
        font-size: var(--mobile-txt);
    }

    .btn-container button {
        font-size: var(--normal-txt);
    }

    /*For Service-Section*/

    .flex-layout{
        flex-direction: column;
    }

    /*For About-Section*/

    .primary-txt {
        font-size: var(--normal-txt);
    }

    .content-box {
        font-size: var(--mobile-txt);
    }

    .title-txt {
        font-size: var(--normal-txt);
    }

    ul li {
        font-size: var(--mobile-txt);
    }

    .content-txt {
        font-size: var(--mobile-txt);
    }

    /*For Contact-Section*/

    .form-container form{
        padding: 18% 14%;
    }

    #closeForm {
        font-size: 21px;
    }

    .contact-container-icon a {
        font-size: var(--normal-txt);
    }

    .contact-container-content {
        font-size: var(--mobile-txt);
    }

    .form-container .adjust {
        width: 70%;
    }

    .form-container input, select{
        font-size: var(--mobile-txt);
    }

    label {
        font-size: var(--mobile-txt);   
    }

    .checkbox-container input {
        width: 5px;
    }

    #button,
    #button1 {
        font-size: var(--normal-txt);
    }

    /*For Branch-Section*/

    .main-branch-container {
        grid-template-columns: 1fr;
    }

    .branch-container {
        padding: 5px;
    }

    .right-branch-container button {
        font-size: var(--normal-txt);
    }

    .modal-container {
        padding: 15px;
        top: 5%;
        left: 5%;
        right: 5%;
        bottom: 5%;
    }

    /*For Passer-Section*/

    .wave {
        font-size: var(--medium-txt);
    }

    .main-col-container {
        font-size: var(--mobile-txt);
    }

    .main-col-container1 {
        font-size: var(--mobile-txt);
    }

    /*For Footer-Section*/

    .main-footer-txt {
        font-size: var(--normal-txt);
    }
    
    .sub-footer-txt {
        font-size: var(--mobile-txt);
    }
    
    .created {
        font-size: var(--mobile-txt);
        margin-bottom: 20px;
    }
}

