* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 16px;
}

@font-face {
  font-family: ArialReg;
  src: url(fonts/arial.ttf);
}
@font-face {
  font-family: ArialBold;
  src: url(fonts/arialbd.ttf);
}
.nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 73px;
}
.nav-wrapper nav {
  width: 1000px;
}
.nav-wrapper nav .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: ArialReg;
  font-size: 16px;
}
.nav-wrapper nav .links a {
  text-decoration: none;
  color: #00879E;
}
.nav-wrapper nav .links a.active {
  color: #FC5000;
  font-weight: bold;
}

.nav-line {
  width: 1000px;
  height: 3px;
  background-color: #FC5000;
  margin: 43px auto 0;
}

@media (max-width: 1040px) {
  .nav-wrapper nav {
    max-width: 840px;
    margin: 0 auto;
  }
  .nav-line {
    width: 840px;
    margin: 0 auto;
  }
}
@media (max-width: 840px) {
  .nav-wrapper nav .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav-wrapper nav .links a {
    display: block;
  }
  .nav-line {
    display: none;
  }
}
.hero {
  max-width: 100%;
  height: 668px;
  margin: 94px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 131, 13, 0.4)), to(rgba(233, 131, 13, 0.4))), url(../images/abstracthero.jpg);
  background: linear-gradient(rgba(233, 131, 13, 0.4), rgba(233, 131, 13, 0.4)), url(../images/abstracthero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero h1 {
  font-size: 32px;
  font-family: ArialReg;
  color: #fff;
  text-align: center;
}

.featured {
  max-width: 1280px;
  margin: 95px auto 0;
  padding: 0 20px;
  text-align: center;
}
.featured h2 {
  font-size: 32px;
  margin-bottom: 144px;
  font-family: ArialReg;
}
.featured p {
  font-size: 16px;
  margin-bottom: 180px;
  font-family: ArialReg;
}
.featured .artwork-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  padding-bottom: 200px;
}
.featured .artwork-row .artwork {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 370px;
  width: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.featured .artwork-row .art1 {
  background-image: url(../images/featured_one.jpg);
}
.featured .artwork-row .art2 {
  background-image: url(../images/featured_two.jpg);
}
.featured .artwork-row .art3 {
  background-image: url(../images/featured_three.jpg);
}

@media (max-width: 1100px) {
  .artwork-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding-bottom: 100px;
  }
  .artwork-row .artwork {
    width: 100%;
    height: auto;
    min-height: 370px;
  }
}
.footer {
  height: 556px;
  max-width: 100%;
  margin: 0px auto 0;
  padding: 100px 20px 0;
  text-align: center;
  font-family: ArialReg;
  background-color: #00879E;
}
.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 44px;
}
.footer .contact-info p {
  margin: 8px 0;
  font-size: 16px;
  color: #fff;
}
.footer .subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .subscribe input {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  width: 500px;
  height: 30px;
  background-color: #32bad2;
}
.footer .subscribe button {
  padding: 0px 30px;
  font-size: 16px;
  background-color: #fff;
  color: black;
  border: none;
  height: 30px;
  font-family: ArialReg;
}
.footer .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 68px;
}
.footer .social-icons a {
  display: block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer .social-icons a.facebook {
  background-image: url(../images/facebook_w.png);
}
.footer .social-icons a.instagram {
  background-image: url(../images/instagram_w.png);
}
.footer .social-icons a.twitter {
  background-image: url(../images/twitter_w.png);
}

.about {
  max-width: 980px;
  margin: 139px auto 0;
  padding: 0 20px;
}
.about h2 {
  font-size: 28px;
  text-align: left;
  margin-bottom: 0;
  font-family: ArialReg;
}
.about .title-line {
  width: 200px;
  height: 3px;
  background-color: black;
  margin-bottom: 63px;
}
.about .about-image {
  width: 100%;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 131, 13, 0.4)), to(rgba(233, 131, 13, 0.4))), url(../images/abouthero.jpg);
  background: linear-gradient(rgba(233, 131, 13, 0.4), rgba(233, 131, 13, 0.4)), url(../images/abouthero.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 162px;
}
.about p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 137px;
  font-family: ArialReg;
}

@media (max-width: 1040px) {
  .about p {
    font-size: 12px;
    padding-bottom: 80px;
  }
}
@media (max-width: 700px) {
  .about p {
    font-size: 10px;
    padding-bottom: 80px;
  }
}
.gallery {
  max-width: 980px;
  margin: 139px auto 0;
  padding: 0 20px;
}
.gallery h2 {
  font-size: 28px;
  text-align: left;
  margin-bottom: 0;
  font-family: ArialReg;
}
.gallery .title-line {
  width: 200px;
  height: 3px;
  background-color: black;
  margin-bottom: 63px;
}
.gallery .gallery-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery .gallery-grid .left, .gallery .gallery-grid .right {
  width: 350px;
  height: 544px;
  background-size: cover;
  background-position: center;
}
.gallery .gallery-grid .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
  width: 380px;
}
.gallery .gallery-grid .middle .top, .gallery .gallery-grid .middle .bottom {
  width: 350px;
  height: 250px;
  background-size: cover;
  background-position: center;
}
.gallery .gallery-grid .middle .bottom {
  width: 340px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.gallery .gallery-grid .side-image.left {
  background-position: -30px center;
}
.gallery .left {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 131, 13, 0.4)), to(rgba(233, 131, 13, 0.4))), url(../images/gallery_two.jpg);
  background: linear-gradient(rgba(233, 131, 13, 0.4), rgba(233, 131, 13, 0.4)), url(../images/gallery_two.jpg);
}
.gallery .right {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 135, 158, 0.35)), to(rgba(0, 135, 158, 0.35))), url(../images/gallery_four.jpg);
  background: linear-gradient(rgba(0, 135, 158, 0.35), rgba(0, 135, 158, 0.35)), url(../images/gallery_four.jpg);
}
.gallery .middle .top {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 131, 13, 0.4)), to(rgba(233, 131, 13, 0.4))), url(../images/gallery_one.jpg);
  background: linear-gradient(rgba(233, 131, 13, 0.4), rgba(233, 131, 13, 0.4)), url(../images/gallery_one.jpg);
}
.gallery .middle .bottom {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 135, 158, 0.35)), to(rgba(0, 135, 158, 0.35))), url(../images/gallery_three.jpg);
  background: linear-gradient(rgba(0, 135, 158, 0.35), rgba(0, 135, 158, 0.35)), url(../images/gallery_three.jpg);
}

.gallery {
  padding-bottom: 450px;
}

.gallery-page1 {
  max-width: 950px;
  margin: 73px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
.gallery-page1 .image {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 131, 13, 0.4)), to(rgba(233, 131, 13, 0.4))), url(../images/gallery_two.jpg);
  background: linear-gradient(rgba(233, 131, 13, 0.4), rgba(233, 131, 13, 0.4)), url(../images/gallery_two.jpg);
  width: 361px;
  margin-top: 150px;
  height: 550px;
  background-size: cover;
  background-position: center;
}
.gallery-page1 .content {
  width: 600px;
  margin-top: 100px;
  padding-bottom: 534px;
}
.gallery-page1 .content h2 {
  font-size: 32px;
  font-family: ArialReg;
  margin-bottom: 65px;
  text-align: center;
}
.gallery-page1 .content p {
  font-size: 14.2px;
  font-family: ArialReg;
}

.gallery-page2 {
  max-width: 950px;
  margin: 73px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
.gallery-page2 .image {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 131, 13, 0.4)), to(rgba(233, 131, 13, 0.4))), url(../images/gallery_one.jpg);
  background: linear-gradient(rgba(233, 131, 13, 0.4), rgba(233, 131, 13, 0.4)), url(../images/gallery_one.jpg);
  width: 370px;
  margin-top: 150px;
  height: 230px;
  background-size: cover;
  background-position: center;
  margin-left: -50px;
}
.gallery-page2 .content {
  width: 600px;
  margin-top: 100px;
  padding-bottom: 500px;
}
.gallery-page2 .content h2 {
  font-size: 32px;
  font-family: ArialReg;
  margin-bottom: 65px;
  text-align: center;
}
.gallery-page2 .content p {
  font-size: 14.2px;
  font-family: ArialReg;
}

.gallery-page3 {
  max-width: 950px;
  margin: 73px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
.gallery-page3 .image {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 135, 158, 0.35)), to(rgba(0, 135, 158, 0.35))), url(../images/gallery_three.jpg);
  background: linear-gradient(rgba(0, 135, 158, 0.35), rgba(0, 135, 158, 0.35)), url(../images/gallery_three.jpg);
  width: 440px;
  margin-top: 120px;
  height: 270px;
  background-size: cover;
  background-position: center;
  margin-left: -50px;
}
.gallery-page3 .content {
  width: 600px;
  margin-top: 100px;
  padding-bottom: 500px;
}
.gallery-page3 .content h2 {
  font-size: 32px;
  font-family: ArialReg;
  margin-bottom: 65px;
  text-align: center;
}
.gallery-page3 .content p {
  font-size: 14.2px;
  font-family: ArialReg;
}

.gallery-page4 {
  max-width: 950px;
  margin: 73px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
.gallery-page4 .image {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 135, 158, 0.35)), to(rgba(0, 135, 158, 0.35))), url(../images/gallery_four.jpg);
  background: linear-gradient(rgba(0, 135, 158, 0.35), rgba(0, 135, 158, 0.35)), url(../images/gallery_four.jpg);
  width: 361px;
  margin-top: 135px;
  height: 550px;
  background-size: cover;
  background-position: center;
  margin-left: -50px;
}
.gallery-page4 .content {
  width: 600px;
  margin-top: 100px;
  padding-bottom: 534px;
}
.gallery-page4 .content h2 {
  font-size: 32px;
  font-family: ArialReg;
  margin-bottom: 65px;
  text-align: center;
}
.gallery-page4 .content p {
  font-size: 14.2px;
  font-family: ArialReg;
}

@media (max-width: 1040px) {
  .gallery-page1 .image, .gallery-page2 .image, .gallery-page3 .image, .gallery-page4 .image {
    display: none;
  }
  .gallery-page1 .content, .gallery-page2 .content, .gallery-page3 .content, .gallery-page4 .content {
    width: 100%;
    padding-bottom: 300px;
  }
}
@media (max-width: 840px) {
  .gallery-page1 .content h2, .gallery-page2 .content h2, .gallery-page3 .content h2, .gallery-page4 .content h2 {
    font-size: 24px;
  }
  .gallery-page1 .content p, .gallery-page2 .content p, .gallery-page3 .content p, .gallery-page4 .content p {
    font-size: 13px;
  }
}
.events {
  max-width: 980px;
  margin: 139px auto 0;
  padding: 0 20px;
}
.events h2 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 0px;
  font-family: ArialReg;
}
.events .title-line {
  width: 200px;
  height: 3px;
  background-color: black;
  margin-bottom: 63px;
  font-family: Arial, Helvetica, sans-serif;
}
.events .event-image {
  width: 100%;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 135, 158, 0.35)), to(rgba(0, 135, 158, 0.35))), url("../images/bloghero.jpg");
  background: linear-gradient(rgba(0, 135, 158, 0.35), rgba(0, 135, 158, 0.35)), url("../images/bloghero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.events .event-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
.events .event-list .left, .events .event-list .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
.events .event-list .left {
  width: 48%;
}
.events .event-list .right {
  width: 48%;
}
.events .event-list .event-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.events .event-list .event-item .date-box {
  width: 100px;
  height: 100px;
  background-color: #FC5000;
  color: black;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  text-align: center;
  border: 1px solid gray;
  font-family: ArialReg;
}
.events .event-list .event-item .event-content a {
  text-decoration: none;
  color: #000;
}
.events .event-list .event-item .event-content a h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: ArialReg;
}
.events .event-list .event-item .event-content a p {
  font-size: 15px;
  width: 250px;
  font-family: ArialReg;
}

.events {
  padding-bottom: 60px;
}

@media (max-width: 1040px) {
  .events .event-image {
    height: 250px;
  }
  .events .event-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .events .event-list .left, .events .event-list .right {
    width: 100%;
    gap: 40px;
  }
  .events .event-list .event-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  .events .event-list .event-item .event-content a p {
    width: 100%;
  }
}
.event-page1 {
  max-width: 1000px;
  margin: 139px auto 100px;
  padding: 0 20px;
  padding-bottom: 110px;
}
.event-page1 h2 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 0;
}
.event-page1 .title-line {
  width: 300px;
  height: 3px;
  background-color: black;
  margin-bottom: 63px;
  font-family: ArialReg;
}
.event-page1 .event-image {
  width: 100%;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(223, 131, 13, 0.4)), to(rgba(223, 131, 13, 0.4))), url(../images/age_of_art_event.jpg);
  background: linear-gradient(rgba(223, 131, 13, 0.4), rgba(223, 131, 13, 0.4)), url(../images/age_of_art_event.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 121px;
}
.event-page1 .event-title-centered {
  text-align: center;
  font-size: 24px;
  margin-bottom: 71px;
  font-family: ArialReg;
}
.event-page1 .event-description {
  font-size: 14px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: ArialReg;
}

.event-page2 {
  max-width: 1000px;
  margin: 139px auto 100px;
  padding: 0 20px;
  padding-bottom: 110px;
}
.event-page2 h2 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 0;
  font-family: ArialReg;
}
.event-page2 .title-line {
  width: 300px;
  height: 3px;
  background-color: black;
  margin-bottom: 63px;
}
.event-page2 .event-image {
  width: 100%;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 135, 158, 0.35)), to(rgba(0, 135, 158, 0.35))), url(../images/artshow_event.jpg);
  background: linear-gradient(rgba(0, 135, 158, 0.35), rgba(0, 135, 158, 0.35)), url(../images/artshow_event.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 121px;
}
.event-page2 .event-title-centered {
  text-align: center;
  font-size: 24px;
  margin-bottom: 71px;
  font-family: ArialReg;
}
.event-page2 .event-description {
  font-size: 14px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: ArialReg;
}

.event-page3 {
  max-width: 1000px;
  margin: 139px auto 100px;
  padding: 0 20px;
  padding-bottom: 110px;
}
.event-page3 h2 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 0;
  font-family: ArialReg;
}
.event-page3 .title-line {
  width: 300px;
  height: 3px;
  background-color: black;
  margin-bottom: 63px;
}
.event-page3 .event-image {
  width: 100%;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 131, 13, 0.4)), to(rgba(233, 131, 13, 0.4))), url(../images/color_theory_event.jpg);
  background: linear-gradient(rgba(233, 131, 13, 0.4), rgba(233, 131, 13, 0.4)), url(../images/color_theory_event.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 121px;
}
.event-page3 .event-title-centered {
  text-align: center;
  font-size: 24px;
  margin-bottom: 71px;
  font-family: ArialReg;
}
.event-page3 .event-description {
  font-size: 14px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: ArialReg;
}

.event-page4 {
  max-width: 1000px;
  margin: 139px auto 100px;
  padding: 0 20px;
  padding-bottom: 110px;
}
.event-page4 h2 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 0px;
  font-family: ArialReg;
}
.event-page4 .title-line {
  width: 300px;
  height: 3px;
  background-color: black;
  margin-bottom: 63px;
}
.event-page4 .event-image {
  width: 100%;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 135, 158, 0.35)), to(rgba(0, 135, 158, 0.35))), url(../images/express_yourself_event.jpg);
  background: linear-gradient(rgba(0, 135, 158, 0.35), rgba(0, 135, 158, 0.35)), url(../images/express_yourself_event.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 121px;
}
.event-page4 .event-title-centered {
  text-align: center;
  font-size: 24px;
  margin-bottom: 71px;
  font-family: ArialReg;
}
.event-page4 .event-description {
  font-size: 14px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: ArialReg;
}

@media (max-width: 1040px) {
  .event-page1 .event-image, .event-page2 .event-image, .event-page3 .event-image, .event-page4 .event-image {
    height: 250px;
  }
  .event-page1 .event-title-centered, .event-page2 .event-title-centered, .event-page3 .event-title-centered, .event-page4 .event-title-centered {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .event-page1 .event-description, .event-page2 .event-description, .event-page3 .event-description, .event-page4 .event-description {
    font-size: 13px;
    padding: 0 10px;
  }
}
@media (max-width: 840px) {
  .event-page1 .event-title-centered, .event-page2 .event-title-centered, .event-page3 .event-title-centered, .event-page4 .event-title-centered {
    font-size: 18px;
  }
  .event-page1 .event-description, .event-page2 .event-description, .event-page3 .event-description, .event-page4 .event-description {
    font-size: 12px;
  }
}
.contact-page {
  max-width: 980px;
  margin: 100px auto 100px;
  padding: 0 20px;
  padding-bottom: 250px;
}
.contact-page h2 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 0px;
}
.contact-page .title-line {
  width: 200px;
  height: 3px;
  background-color: black;
  margin-bottom: 150px;
  font-family: ArialReg;
}
.contact-page .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
.contact-page .contact-content .contact-image {
  height: 400px;
  width: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(223, 131, 13, 0.4)), to(rgba(223, 131, 13, 0.4))), url(../images/contactimg.jpg);
  background: linear-gradient(rgba(223, 131, 13, 0.4), rgba(223, 131, 13, 0.4)), url(../images/contactimg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-page .contact-content .contact-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  height: 450px;
  width: 450px;
}
.contact-page .contact-content .contact-form input, .contact-page .contact-content .contact-form textarea {
  margin-top: 10px;
  padding: 1px;
  font-size: 16px;
  border: 1px solid #FC5000;
  width: 100%;
  font-family: ArialReg;
  background-color: #e3e3e3;
  padding-left: 20px;
}
.contact-page .contact-content .contact-form textarea {
  padding-top: 16px;
}
.contact-page .contact-content .contact-form button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  background-color: #00879E;
  color: #fff;
  border: none;
  font-family: ArialReg;
}

@media (max-width: 1040px) {
  .contact-image {
    display: none;
  }
}