* {
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
list-style: none;
text-decoration: none;
}

html {
font-size: 62.5%;
}

/* — menubar spinner progress bar — */

.spinner-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: #262626;
display: flex;
justify-content: center;
align-items: center;
transition: all 1s;
z-index: 300;
}

.display .spinner-container {
opacity: 0;
visibility: hidden;
}

.circles {
width: 8rem;
height: 8rem;
position: relative;
opacity: 0;
visibility: hidden;
animation: displayCircles 4s;
}

@keyframes displayCircles {
0% {
opacity: 0;
visibility: hidden;
}
25% {
opacity: 1;
visibility: visible;
}
90% {
opacity: 1;
visibility: visible;
}
100% {
opacity: 0;
visibility: hidden;
}
}

.circles div {
animation: circles 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
transform-origin: 4rem 4rem;
}

.circles div::after {
content: “”;
position: absolute;
width: 0.7rem;
height: 0.7rem;
border-radius: 50%;
background-color: #c29525;
margin: -0.4rem 0 0 -0.4rem;
}

.circles div:nth-child(1) {
animation-delay: -0.036s;
}

.circles div:nth-child(1)::after {
top: 6.3rem;
left: 6.3rem;
}

.circles div:nth-child(2) {
animation-delay: -0.072s;
}

.circles div:nth-child(2)::after {
top: 6.8rem;
left: 5.6rem;
}

.circles div:nth-child(3) {
animation-delay: -0.108s;
}

.circles div:nth-child(3)::after {
top: 7.1rem;
left: 4.8rem;
}

.circles div:nth-child(4) {
animation-delay: -0.144s;
}

.circles div:nth-child(4)::after {
top: 7.2rem;
left: 4rem;
}

.circles div:nth-child(5) {
animation-delay: -0.18s;
}

.circles div:nth-child(5)::after {
top: 7.1rem;
left: 3.2rem;
}

.circles div:nth-child(6) {
animation-delay: -0.216s;
}

.circles div:nth-child(6)::after {
top: 6.8rem;
left: 2.4rem;
}

.circles div:nth-child(7) {
animation-delay: -0.252s;
}

.circles div:nth-child(7)::after {
top: 6.3rem;
left: 1.7rem;
}

.circles div:nth-child(8) {
animation-delay: -0.288s;
}

.circles div:nth-child(8)::after {
top: 5.6rem;
left: 1.2rem;
}

@keyframes circles {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}

/* — menu bar spinner ends — */

/* — home starts — */

.container {
display: none;
}

.display .container {
display: block;
}

.hamburger-menu {
width: 3rem;
height: 3rem;
position: fixed;
top: 5rem;
right: 5rem;
z-index: 200;
display: flex;
flex-direction: column;
justify-content: space-evenly;
cursor: pointer;
transition: right 0.7s;
}

.change .hamburger-menu {
right: 15rem;
}

.line {
width: 100%;
height: 0.2rem;
background-color: #e2b646;
box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
}

.change .line {
background-color: rgba(0, 0, 0, 0.8);
}

.change .line-1 {
transform: rotate(45deg) translate(0.3rem, 0.8rem);
}

.change .line-2 {
opacity: 0;
visibility: hidden;
}

.change .line-3 {
transform: rotate(-45deg) translate(0.3rem, -0.8rem);
}

.hamburger-menu span {
position: absolute;
left: 3rem;
width: 10rem;
height: 4rem;
background-color: #e2b646;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-family: “Baloo Da 2”, serif;
font-size: 1.6rem;
letter-spacing: 0.1rem;
opacity: 0;
visibility: hidden;
transition: all 0.2s;
}

.change .hamburger-menu:hover span {
opacity: 1;
visibility: visible;
}

.hamburger-menu span::before {
content: “”;
position: absolute;
border-left: 1rem solid transparent;
border-right: 1rem solid #e2b646;
border-bottom: 1rem solid transparent;
border-top: 1rem solid transparent;
top: 50%;
left: -2rem;
transform: translateY(-50%);
}

.header {
width: 100%;
height: 100vh;
position: relative;
perspective: 100rem;
overflow: hidden;
}

.img-wrapper {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
overflow: hidden;
}

.img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.5;
animation: scale 25s;
}

@keyframes scale {
0% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}

.banner {
position: absolute;
top: 30%;
left: 15%;
}

.banner h1 {
font-family: “Baloo Da 2”, serif;
font-size: 8rem;
font-weight: 300;
color: #fff;
width: 50%;
line-height: 9rem;
letter-spacing: 0.2rem;
text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
opacity: 0;
animation: moveBanner 1s 0.5s forwards;
}

.banner p {
font-family: “Josefin Slab”, serif;
font-size: 4rem;
color: #fff;
width: 70%;
letter-spacing: 0.1rem;
margin-bottom: 3rem;
text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
opacity: 0;
animation: moveBanner 1s 0.7s forwards;
}

.banner button {
width: 25rem;
height: 7rem;
background-color: #c29525;
border: none;
font-family: “Muli”, serif;
font-size: 2rem;
text-transform: uppercase;
color: #fff;
text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
cursor: pointer;
opacity: 0;
animation: moveBanner 1s 0.9s forwards;
}

@keyframes moveBanner {
0% {
transform: translateY(40rem) rotateY(-20deg);
}
100% {
transform: translateY(0) rotateY(0);
opacity: 1;
}
}

.sidebar {
width: 20rem;
height: 100vh;
position: fixed;
top: 0;
right: -40rem;
background-color: #fff;
transition: right 0.5s;
z-index: 100;
}

.change .sidebar {
right: 0;
}

.menu {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}

.menu-item {
text-align: center;
}

.menu-link {
font-family: “Baloo Da 2”, serif;
font-size: 4rem;
color: #555;
position: relative;
}

.menu-link::before {
content: attr(data-content);
position: absolute;
top: 0;
left: 0;
color: #c29525;
width: 0;
overflow: hidden;
white-space: nowrap;
transition: width 0.3s ease-in-out;
}

.menu-link:hover::before {
width: 100%;
}

.social-media {
position: absolute;
bottom: 3rem;
width: 100%;
display: flex;
justify-content: center;
}

.social-media i {
font-size: 2.2rem;
margin: 3rem;
width: 4.5rem;
height: 4.5rem;
background-color: #777;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
transition: background-color 0.3s;
}

.social-media i:hover {
background-color: #c29525;
}

/* — home section — */

/*about us section start*/

:root {
–main-color: #c29525;
–border-radius: 95% 4% 97% 5%/4% 94% 3% 95%;
–border-radius-hover: 4% 95% 6% 95%/95% 4% 92% 5%;
–border: .2rem solid var(–main-color);
–border-hover: .2rem dashed var(–main-color);
}

.btn {
display: inline-block;
padding: .9rem 1.5rem;
border-radius: var(–border-radius);
color: var(–main-color);
background: none;
border: var(–border);
cursor: pointer;
margin-top: 1rem;
font-size: 1.7rem;
}

.btn:hover {
border-radius: var(–border-radius-hover);
border: var(–border-hover);
}

.heading {
font-size: 9rem;
text-transform: uppercase;
color: transparent;
-webkit-text-stroke: .05rem var(–main-color);
letter-spacing: .2rem;
text-align: center;
pointer-events: none;
position: relative;
}

.heading span {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
color: var(–main-color);
font-size: 3rem;
}

.heading {
font-size: 6rem;
text-transform: uppercase;
color: transparent;
-webkit-text-stroke: .05rem var;
letter-spacing: .2rem;
text-align: center;
pointer-events: none;
position: relative;
}

.heading span {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
color: var(–main-color);
font-size: 4rem;
}

.about {
width: 100%;
background-color: #f5f5f5;
padding-bottom: 15rem;
padding-top: 3rem;
}

.about .row {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
}

.about .row .image {
flex: 1 1 42rem;
}

.about .row .image img {
width: 100%;
animation: aboutImage 4s linear infinite;
}

@keyframes aboutImage {
0%,
100% {
transform: scale(.9);
border-radius: var(–border-radius-hover);
}
50% {
transform: scale(.8);
border-radius: var(–border-radius);
}
}

.about .row .content {
flex: 1 1 42rem;
}

.about .row .content .title {
color: #c29525;
font-size: 2.5rem;
line-height: 1.8;
align-items: center;
}

.about .row .content p {
font-size: 2rem;
line-height: 1.8;
padding: 1rem 0;
}

.section-header {
display: flex;
flex-direction: column;
align-items: center;
padding: 7rem 0 10rem 0;
}

.section-heading {
font-family: “Muli”, serif;
font-size: 5rem;
font-weight: 300;
margin-bottom: 6rem;
}

/*about us section end*/

/*committees section start*/

.underline {
width: 12rem;
height: 0.3rem;
background-color: #c29525;
}

.committee {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-bottom: 6rem;
}

.grid {
display: grid;
width: 80rem;
grid-gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
align-items: start;
}

.grid-item {
background-color: #c29525;
border-radius: 0.2rem;
overflow: hidden;
box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: 0.2s;
}

.grid-item:hover {
transform: translateY(-0.5%);
box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.5);
}

.card-img {
display: block;
width: 115%;
height: 13rem;
object-fit: cover;
text-align: center;
}

.card-content {
padding: 4rem;
}

.card-header {
font-size: 3rem;
font-weight: 500;
color: #fff;
margin-bottom: 1.5rem;
text-align: center;
}

.card-text {
font-size: 1.6rem;
text-align: center;
line-height: 1.7;
color: #3d3d3d;
margin-bottom: 2.5rem;
}

.card-btn {
display: block;
width: 100%;
padding: 1.5rem;
font-size: 2rem;
color: black;
background-color: #fff;
border: none;
border-radius: 0.4rem;
transition: 0.2s;
cursor: pointer;
letter-spacing: 0.2rem;
text-align: center;
}

.card-btn span {
margin-left: 1rem;
transition: 0.2s;
}

.card-btn:hover,
.card-btn:active {
background-color: #c29525;
;
}

.card-btn:hover span,
.card-btn:active span {
margin-left: 1.5rem;
}

@media only screen and (max-width: 60em) {
body {
padding: 3rem;
}
.grid {
grid-gap: 3rem;
}
}

/*committees section end*/

/*branches section start*/

.location {
width: 100%;
background-color: #f5f5f5;
padding-bottom: 83rem;
padding-top: 3rem;
}

.container2 {
position: relative;
justify-content: center;
margin-top: 50px;
margin-bottom: 30px;
border-radius: 20px;
filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.accordion {
position: relative;
width: 350px;
margin-left: 40px;
}

.content-accordion {
margin-top: 35px;
margin-right: 50px;
}

.question-answer {
width: 100%;
border-bottom: 1px solid #f5f5f5;
}

.question {
display: flex;
justify-content: space-between;
margin-left: 15rem;
margin-right: -15rem;
}

.accordion-img {
position: relative;
width: 350px;
margin-top: 7rem;
margin-left: 8rem;
}

.title-question {
margin: 1.4rem 0rem;
font-size: 2rem;
font-weight: 500;
color: #000;
}

.question-btn {
font-size: 1.5rem;
background: transparent;
border-color: transparent;
cursor: pointer;
}

.up-icon {
display: none;
}

.answer {
font-size: 1.2rem;
line-height: 1.8;
display: none;
margin-left: 15rem;
margin-right: -15rem;
}

.answer ul li a {
color: black;
text-decoration: none;
font-size: 18px;
display: flex;
}

.answer ul li a:hover,
.answer ul li label:hover {
color: #c29525;
}

.answer ul ul {
position: static;
}

.answer ul ul li {
line-height: 30px;
padding-right: 30px;
border-bottom: none;
}

.answer ul ul li a {
color: #e6e6e6;
font-size: 17px;
}

.answer ul li span {
font-size: 20px;
float: right;
margin-top: 10px;
padding: 0 10px;
transition: 0.5s;
}

.answer ul li span.rotate {
transform: rotate(-180deg);
}

.show-text .answer {
display: block;
}

.show-text .up-icon {
display: inline;
}

.show-text .down-icon {
display: none;
}

@media screen and (min-width: 992px) {
.accordion {
width: 920px;
height: 0;
display: flex;
}
.accordion-img {
position: relative;
width: 420px;
top: 88px;
}
.question-answer {
width: 380px;
}
.content-accordion {
margin-top: 85px;
}
.title {
margin-top: 50px;
font-size: 3rem;
}
}

/*Branches section end*/

/* — Start events section — */

.process-wrapper {
margin: auto;
max-width: 1080px;
}

#progress-bar-container {
position: relative;
width: 90%;
margin: auto;
height: 100px;
margin-top: 65px;
}

#progress-bar-container ul {
padding: 0;
margin: 0;
padding-top: 15px;
z-index: 9999;
position: absolute;
width: 100%;
margin-top: -40px
}

#progress-bar-container li:before {
content: ” “;
display: block;
margin: auto;
width: 30px;
height: 30px;
border-radius: 50%;
border: solid 2px #aaa;
transition: all ease 0.3s;
}

#progress-bar-container li.active:before,
#progress-bar-container li:hover:before {
border: solid 2px #fff;
background: linear-gradient(to right, #e2b646 0%, #fff 100%);
}

#progress-bar-container li {
list-style: none;
float: left;
width: 20%;
text-align: center;
color: #aaa;
text-transform: uppercase;
font-size: 11px;
cursor: pointer;
font-weight: 700;
transition: all ease 0.2s;
vertical-align: bottom;
height: 60px;
position: relative;
}

#progress-bar-container li .step-inner {
position: absolute;
width: 100%;
bottom: 0;
font-size: 14px;
}

#progress-bar-container li.active,
#progress-bar-container li:hover {
color: #444;
}

#progress-bar-container li:after {
content: ” “;
display: block;
width: 6px;
height: 6px;
background: #777;
margin: auto;
border: solid 7px #fff;
border-radius: 50%;
margin-top: 40px;
box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.3);
transition: all ease 0.2s;
}

#progress-bar-container li:hover:after {
background: #555;
}

#progress-bar-container li.active:after {
background: #e2b646;
}

#progress-bar-container #line {
width: 80%;
margin: auto;
background: #eee;
height: 6px;
position: absolute;
left: 10%;
top: 57px;
z-index: 1;
border-radius: 50px;
transition: all ease 0.9s;
}

#progress-bar-container #line-progress {
content: ” “;
width: 3%;
height: 100%;
background: #e2b646;
background: linear-gradient(to right, #e2b646 0%, #e2b646 100%);
position: absolute;
z-index: 2;
border-radius: 50px;
transition: all ease 0.9s;
}

.responsive {
width: 100%;
height: auto;
}

#progress-content-section {
width: 90%;
margin: auto;
background: #f3f3f3;
border-radius: 4px;
margin-bottom: 6rem;
}

#progress-content-section .section-content {
padding: 30px 40px;
text-align: center;
}

#progress-content-section .section-content h2 {
font-size: 17px;
text-transform: uppercase;
color: #333;
letter-spacing: 1px;
}

#progress-content-section .section-content p {
font-size: 16px;
line-height: 1.8em;
color: #777;
}

#progress-content-section .section-content {
display: none;
animation: FadeInUp 700ms ease 1;
animation-fill-mode: forwards;
transform: translateY(15px);
opacity: 0;
}

#progress-content-section .section-content.active {
display: block;
}

@keyframes FadeInUp {
0% {
transform: translateY(15px);
opacity: 0;
}
100% {
transform: translateY(0px);
opacity: 1;
}
}

/*end events section*/

/*start gallery section */

.gallery {
width: 100%;
background-color: #f5f5f5;
padding-bottom: 15rem;
padding-top: 3rem;
}

.cards-wrapper {
display: flex;
justify-content: space-evenly;
margin-top: 8rem;
width: 100%;
}

.card {
width: 37rem;
height: 45rem;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
border-radius: 0.5rem;
position: relative;
margin-bottom: 6rem;
}

.card-img-wrapper {
width: 100%;
height: 100%;
background-color: #262626;
border-radius: 0.5rem;
}

.card-img-wrapper img {
width: 100%;
height: 100%;
object-fit: fit;
opacity: 0.8;
border-radius: 0.5rem;
transition: opacity 0.3s;
}

.card:hover .card-img-wrapper img {
opacity: 0.5;
}

.card-info {
position: absolute;
bottom: 0;
padding: 2rem;
text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
opacity: 0;
visibility: hidden;
transition: all 0.3s;
}

.card:hover .card-info {
bottom: 2rem;
opacity: 1;
visibility: visible;
}

.card-info button {
width: 10rem;
height: 3rem;
background-color: #c29525;
border: none;
font-family: “Baloo Da 2”, serif;
font-size: 1.4rem;
line-height: 1.5rem;
color: #eee;
border-radius: 0.3rem;
box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.4);
margin-left: 9rem;
}

/*end gallerysection */

/*footer section start*/

.footer {
background: #111;
}

.footer .box-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
gap: 1.5rem;
}

.footer .box-container .box h3 {
font-size: 2.5rem;
padding: 1rem 0;
color: #fff;
}

.footer .box-container .box a {
display: block;
font-size: 1.5rem;
padding: 1rem 0;
color: #eee;
}

.footer .box-container .box a i {
padding-right: .5rem;
color: var(–main-color);
}

.footer .box-container .box a:hover i {
padding-right: 1.5rem;
color: #fff;
}

.footer .credit {
text-align: center;
border-top: .1rem solid #222;
color: #fff;
padding: 2rem;
padding-top: 2.5rem;
margin-top: 1rem;
font-size: 2rem;
}

.footer .credit span {
color: var(–main-color);
}

/*footer section end*/

/*scroll button section start*/

.scroll-btn {
position: fixed;
right: 5rem;
bottom: 5rem;
width: 4.5rem;
height: 4.5rem;
background-color: #e2b646;
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
color: #fff;
box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
}

/*scroll button section ends*/

/*media queries start*/

@media (max-width: 1500px) {
.about-us-img-wrapper {
grid-row: 3 / -1;
}
.card {
width: 34rem;
}
.contact-wrapper {
width: 80%;
height: 65rem;
}
}

@media (max-width: 1400px) {
.banner h1 {
font-size: 6rem;
line-height: 7rem;
}
.banner p {
font-size: 3rem;
}
.banner button {
width: 20rem;
height: 5rem;
font-size: 1.6rem;
}
.menu-link {
font-size: 3rem;
}
.service:nth-child(1) {
grid-column: 3 / 7;
}
.service:nth-child(2) {
grid-column: 2 / 6;
}
.service:nth-child(3) {
grid-column: 3 / 7;
}
.service:nth-child(4) {
grid-column: 11 / 15;
}
.service:nth-child(5) {
grid-column: 12 / 16;
}
.service:nth-child(6) {
grid-column: 11 / 15;
}
}

@media (max-width: 1300px) {
.team {
padding-bottom: 5rem;
}
.cards-wrapper {
flex-direction: column;
align-items: center;
margin-top: 4rem;
}
.card {
margin-bottom: 8rem;
}
.contact-wrapper {
width: 90%;
height: 55rem;
}
.contact-heading {
margin-bottom: 2rem;
}
.field {
margin: 2rem 0;
}
}

@media (max-width: 1000px) {
.banner h1 {
font-size: 5rem;
line-height: 6rem;
}
.banner p {
font-size: 2.5rem;
}
.banner button {
width: 18rem;
height: 4rem;
font-size: 1.5rem;
}
.services {
display: flex;
flex-direction: column;
align-items: center;
}
.service {
width: 40rem;
margin-bottom: 6rem;
}
.about-us-img-wrapper {
width: 40rem;
}
.about-us-img-wrapper img {
width: 100%;
}
.contact-left {
width: 0;
}
.contact-right {
width: 100%;
}
.field {
width: 55rem;
}
.input-group textarea {
max-width: 55rem;
}
.submit-btn {
width: 55rem;
}
.copyright {
order: 1;
margin-top: 3rem;
}
}

@media (max-width: 700px) {
.banner h1 {
font-size: 4rem;
line-height: 5rem;
}
.banner p {
font-size: 2rem;
}
.field {
width: 35rem;
}
.input-group textarea {
max-width: 35rem;
}
.submit-btn {
width: 35rem;
}
}

@media (max-width: 500px) {
html {
font-size: 45%;
}
.sidebar {
width: 100%;
right: -100%;
}
.change .hamburger-menu {
right: 38rem;
}
.service {
width: 30rem;
}
}

.input-label {
bottom: 3rem;
}

.message {
bottom: 6rem;
}

.field:focus~label {
transform: translateY(-3rem);
font-size: 1.2rem;
}

.submit-btn {
width: 45rem;
height: 5rem;
background-color: #c29525;
color: #fff;
border: none;
margin-top: 2rem;
font-family: “Muli”, serif;
font-size: 2rem;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 0.2rem;
cursor: pointer;
text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
}

.copyright {
font-family: “Baloo Da 2”, serif;
font-size: 1.6rem;
color: #a7a7a7;
}

.social-list a {
margin: 0 2rem;
}

.social-list i {
font-size: 2rem;
color: #a7a7a7;
}

.scroll-btn {
position: fixed;
right: 5rem;
bottom: 5rem;
width: 4.5rem;
height: 4.5rem;
background-color: #e2b646;
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
color: #fff;
box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
}

@media (max-width: 1500px) {
.about-us-img-wrapper {
grid-row: 3 / -1;
}
.card {
width: 34rem;
}
.contact-wrapper {
width: 80%;
height: 65rem;
}
.footer-content {
width: 80%;
}
}

@media (max-width: 1400px) {
.banner h1 {
font-size: 6rem;
line-height: 7rem;
}
.banner p {
font-size: 3rem;
}
.banner button {
width: 20rem;
height: 5rem;
font-size: 1.6rem;
}
.menu-link {
font-size: 3rem;
}
.service:nth-child(1) {
grid-column: 3 / 7;
}
.service:nth-child(2) {
grid-column: 2 / 6;
}
.service:nth-child(3) {
grid-column: 3 / 7;
}
.service:nth-child(4) {
grid-column: 11 / 15;
}
.service:nth-child(5) {
grid-column: 12 / 16;
}
.service:nth-child(6) {
grid-column: 11 / 15;
}
}

@media (max-width: 1300px) {
.team {
padding-bottom: 5rem;
}
.cards-wrapper {
flex-direction: column;
align-items: center;
margin-top: 4rem;
}
.card {
margin-bottom: 8rem;
}
.contact-wrapper {
width: 90%;
height: 55rem;
}
.contact-heading {
margin-bottom: 2rem;
}
.field {
margin: 2rem 0;
}
}

@media (max-width: 1000px) {
.banner h1 {
font-size: 5rem;
line-height: 6rem;
}
.banner p {
font-size: 2.5rem;
}
.banner button {
width: 18rem;
height: 4rem;
font-size: 1.5rem;
}
.services {
display: flex;
flex-direction: column;
align-items: center;
}
.service {
width: 40rem;
margin-bottom: 6rem;
}
.about-us-img-wrapper {
width: 40rem;
}
.about-us-img-wrapper img {
width: 100%;
}
.contact-left {
width: 0;
}
.contact-right {
width: 100%;
}
.field {
width: 55rem;
}
.input-group textarea {
max-width: 55rem;
}
.submit-btn {
width: 55rem;
}
.footer-content {
flex-direction: column;
align-items: center;
text-align: center;
width: 50%;
}
.copyright {
order: 1;
margin-top: 3rem;
}
}

@media (max-width: 700px) {
.banner h1 {
font-size: 4rem;
line-height: 5rem;
}
.banner p {
font-size: 2rem;
}
.field {
width: 35rem;
}
.input-group textarea {
max-width: 35rem;
}
.submit-btn {
width: 35rem;
}
}

@media (max-width: 500px) {
html {
font-size: 45%;
}
.sidebar {
width: 100%;
right: -100%;
}
.change .hamburger-menu {
right: 38rem;
}
.service {
width: 30rem;
}
.footer {
height: 70rem;
}
}

/*media queries end*/