* {
  margin: 0;
  padding: 0;
}

:root {
  --brand-color: #ff1e1e;
}

.topscroll {
  position: fixed;
  top: 0 !important;
  z-index: 1111;
  width: 100%;
  background: transparent;
}

.topscroll-fill {
  width: 100%;
  height: 5px;
  z-index: 1111;
  background: #ffffff;
}

/*  star header */


nav {
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  height: 60px;
  width: 100%;
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}

nav .logo {
  font-family: 'Sirin Stencil', cursive;
  font-size: 35px;
  font-weight: 600;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 15px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
}

.line a:before,
.line a:after {
  position: absolute;
  transition: all 0.35s ease;
}

.line a:before {
  bottom: 0px;
  display: inline-block;
  height: 2px;
  width: 0%;
  content: "";
  background-color: #ff1e1e;
}

.line a:hover:before,
.line .current a:before {
  opacity: 1;
  width: 80%;
}

.line a:hover:after,
.line .current a:after {
  max-width: 80%;
}

nav .menu-btn i {
  color: #ff1e1e;
  font-size: 16px;
  cursor: pointer;
  display: none;
}

input[type="checkbox"] {
  display: none;
}
.main {
  height: 100vh;
}

.main .main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  position: relative;
}
.main .main-container .left {
  width: 25%;
  padding: 10px;
}

.main .main-container .left .content-slider .item .slider-container h3 {
  font-size: 13px;
  color: var(--brand-color);
}

.main .main-container .left .content-slider .item .slider-container h2 {

  font-size: 28px;
  color: #000000;
}

.main .main-container .left .content-slider .item .slider-container p {

  font-size: 14px;
  color: #000000;
  margin-bottom: 0.5rem;
}
.main .main-container .left .content-slider .item .slider-container .link a {

  font-weight: 400;
  text-decoration: none;
  color: var(--brand-color);
  font-size: 14px;
  position: relative;
  padding: 4px 0;
}

.main .main-container .left .content-slider .item .slider-container .link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #000000;
  transform: scaleX(1);
  transform-origin: left;
  opacity: .6;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}


.main .main-container .left .content-slider .item .slider-container .link a:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.main .main-container .right {
  width: 75%;
  height: 100vh;
}

.main .main-container .right .content-slider-right .item {
  overflow: hidden;
}

.main .main-container .right .content-slider-right .item img {
  height: 100vh;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}

.main .main-container .right .content-slider-right .item img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.About {
  margin: 8rem 0;
}

.About .desc-content {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.About .desc-content .Title {
  position: relative;
}

.About .desc-content .Title::after {
  content: '';
  position: absolute;
  display: block;
  width: 100px;
  height: 2px;
  background: #c7c7c7;
  bottom: -12px;
  left: calc(50% - 50px);
}

.About .desc-content .Title::before {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  background: red;
  bottom: -13px;
  z-index: 1;
  left: calc(50% - 20px);
}

.About .desc-content .Title h2 {
  text-align: center;

  font-size: 35px;
  color: #000000;
}

.About .desc-content p {
  margin-top: 3rem;
  padding: 0 5rem;

  font-size: 16px;
  color: #000000;
  text-align: center;
}

.services {
  padding: 8rem 0;
  background: #faf3f3;
}


.services .desc-content {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.services .desc-content .Title {
  position: relative;
}

.services .desc-content .Title::after {
  content: '';
  position: absolute;
  display: block;
  width: 100px;
  height: 2px;
  background: #c7c7c7;
  bottom: -12px;
  left: calc(50% - 50px);
}

.services .desc-content .Title::before {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  background: red;
  bottom: -13px;
  z-index: 1;
  left: calc(50% - 20px);
}

.services .desc-content .Title h2 {
  text-align: center;

  font-size: 35px;
  color: #000000;
}



.services .desc-content p {
  margin-top: 3rem;
  padding: 0 5rem;

  font-size: 16px;
  color: #000000;
  text-align: center;
}


.services .services-gallary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.services .services-gallary .left img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.services .services-gallary .right {
  width: 50%;
}


.services .services-gallary .right .desc-content-inner {
  padding: 2rem;
}


.services .services-gallary .right .desc-content-inner .Title {
  position: relative;
}

.services .services-gallary .right .desc-content-inner .Title h2 {
  text-align: left;

  font-size: 35px;
  color: #000000;
}

@media screen and (max-width: 992px) {
  .services .services-gallary .right .desc-content-inner .Title h2 {
    font-size: 28px;
  }
}

.services .services-gallary .right .desc-content-inner p {
  margin-top: 1rem;

  font-size: 16px;
  color: #000000;
  text-align: left;
}

@media screen and (max-width: 992px) {
  .services .services-gallary .right .desc-content-inner p {
    font-size: 14px;
  }
}

.services .services-gallary .right .desc-content-inner p button {
  border: none;
  background: none;
  font-weight: 400;
  text-decoration: none;
  color: var(--brand-color);
  font-size: 14px;
  position: relative;
  padding: 2px 0;
}

.services .services-gallary .right .desc-content-inner p button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #000000;
  transform: scaleX(1);
  transform-origin: left;
  opacity: .6;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  
}

.services .services-gallary .right .desc-content-inner p button:hover::after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.services .services-gallary .right .desc-content-inner ul {
  padding-left: 20px;

  font-size: 14px;
  color: #000000;
  text-align: left;
}

.services .services-gallary .right .desc-content-inner button {

  font-weight: 400;
  text-decoration: none;
  color: var(--brand-color);
  font-size: 14px;
  position: relative;
  padding: 5px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--brand-color);
}

.services .services-gallary .right .desc-content-inner button:hover {
  color: white;
  background: var(--brand-color);
}

@media screen and (max-width: 768px) {
  .services .services-gallary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.services .services-gallary-right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 567px) {
  .services .services-gallary-right {
    margin-top: 2rem;
  }
}

.services .services-gallary-right .left {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .services .services-gallary-right .left {
    width: 100%;
    padding: 0 1rem;
  }

  .services .services-gallary-right .left img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
  }
}

.services .services-gallary-right .left img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.services .services-gallary-right .right {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .services .services-gallary-right .right {
    width: 100%;
    padding: 0 1rem;
  }
}

.services .services-gallary-right .right .desc-content-inner {
  padding: 2rem;
}

@media screen and (max-width: 768px) {
  .services .services-gallary-right .right .desc-content-inner {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 567px) {
  .services .services-gallary-right .right .desc-content-inner {
    padding: 0;
  }
}

.services .services-gallary-right .right .desc-content-inner .Title {
  position: relative;
}

.services .services-gallary-right .right .desc-content-inner .Title h2 {
  text-align: left;

  font-size: 35px;
  color: #000000;
}

@media screen and (max-width: 992px) {
  .services .services-gallary-right .right .desc-content-inner .Title h2 {
    font-size: 28px;
  }
}

.services .services-gallary-right .right .desc-content-inner p {
  margin-top: 1rem;

  font-size: 16px;
  color: #000000;
  text-align: left;
}

@media screen and (max-width: 992px) {
  .services .services-gallary-right .right .desc-content-inner p {
    font-size: 14px;
  }
}

.services .services-gallary-right .right .desc-content-inner p button {
  border: none;
  background: none;

  font-weight: 400;
  text-decoration: none;
  color: var(--brand-color);
  font-size: 14px;
  position: relative;
  padding: 2px 0;
}

.services .services-gallary-right .right .desc-content-inner p button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #000000;
  transform: scaleX(1);
  transform-origin: left;
  opacity: .6;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  
}

.services .services-gallary-right .right .desc-content-inner p button:hover::after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.services .services-gallary-right .right .desc-content-inner ul {
  padding-left: 20px;

  font-size: 14px;
  color: #000000;
  text-align: left;
}

.services .services-gallary-right .right .desc-content-inner button {

  font-weight: 400;
  text-decoration: none;
  color: var(--brand-color);
  font-size: 14px;
  position: relative;
  padding: 5px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--brand-color);
}

.services .services-gallary-right .right .desc-content-inner button:hover {
  color: white;
  background: var(--brand-color);
}

@media screen and (max-width: 768px) {
  .services .services-gallary-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.contact-us {
  margin: 8rem 0;
}

@media screen and (max-width: 992px) {
  .contact-us {
    margin: 6rem 0;
  }
}

@media screen and (max-width: 768px) {
  .contact-us {
    margin: 4rem 0;
  }
}

@media screen and (max-width: 768px) {
  .contact-us {
    margin: 4rem 0;
    padding: 0 10px;
  }
}

.contact-us .desc-content {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-us .desc-content .Title {
  position: relative;
}

.contact-us .desc-content .Title::after {
  content: '';
  position: absolute;
  display: block;
  width: 100px;
  height: 2px;
  background: #c7c7c7;
  bottom: -12px;
  left: calc(50% - 50px);
}

.contact-us .desc-content .Title::before {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  background: red;
  bottom: -13px;
  z-index: 1;
  left: calc(50% - 20px);
}

.contact-us .desc-content .Title h2 {
  text-align: center;

  font-size: 35px;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .contact-us .desc-content .Title h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 567px) {
  .contact-us .desc-content .Title h2 {
    font-size: 28px;
  }
}

.contact-us .desc-content p {
  margin-top: 3rem;
  padding: 0 5rem;

  font-size: 16px;
  color: #000000;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .contact-us .desc-content p {
    padding: 0 3rem;
    font-size: 14px;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-us .desc-content p {
    padding: 0 2rem;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 567px) {
  .contact-us .desc-content p {
    padding: 0 10px;
  }
}

.contact-us .contact-form {
  padding: 40px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 992px) {
  .contact-us .contact-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .contact-us .contact-form {
    padding: 20px;
  }
}

@media screen and (max-width: 567px) {
  .contact-us .contact-form {
    padding: 10px;
  }
}

.contact-us .contact-form .container-start {
  width: 40%;
  height: 700px;
  max-height: 100%;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media screen and (max-width: 992px) {
  .contact-us .contact-form .container-start {

    display: flex;
    width: 100%;
    height: 100%;
    padding: 20px;
    flex-direction: row;
  }

  .contact-us .contact-form .container-start .address-box {
    width: 50%;
  }

  .contact-us .contact-form .container-start .map {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .contact-us .contact-form .container-start {
    flex-direction: column;
    padding: 10px;
  }

  .contact-us .contact-form .container-start .address-box {
    width: 100%;
  }

  .contact-us .contact-form .container-start .map {
    width: 100%;
  }
}

.contact-us .contact-form .container-start .box {
  display: flex;
  margin-top: 20px;
}

.contact-us .contact-form .container-start .box .left p {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  background: var(--brand-color);
  padding: 10px;
}

.contact-us .contact-form .container-start .box .left p:hover {
  transform: scale(1.5);
  background: rgba(255, 255, 255, 0);
  color: var(--brand-color);
  transition: all linear .2s;
}

.contact-us .contact-form .container-start .box .right {
  margin-left: 1rem;
}

.contact-us .contact-form .container-start .box .right h4 {

  font-size: 24px;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .contact-us .contact-form .container-start .box .right h4 {
    font-size: 18px;
  }
}

.contact-us .contact-form .container-start .box .right a {

  font-size: 16px;
  color: #000000;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .contact-us .contact-form .container-start .box .right a {
    font-size: 14px;
  }
}

.contact-us .contact-form .container-start .box .right p {

  font-size: 16px;
  color: #000000;
}



.contact-us .contact-form .container-end {
  width: 55%;
  height: 700px;
  max-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
  .contact-us .contact-form .container-end {
    display: flex;
    width: 100%;
    height: 100%;
    margin-top: 2rem;
    padding: 20px;
    flex-direction: row;
  }

  .contact-us .contact-form .container-end .address-box {
    width: 50%;
  }

  .contact-us .contact-form .container-end .map {
    width: 50%;
  }
}

.contact-us .contact-form .container-end form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 992px) {
  .contact-us .contact-form .container-end form {
    width: 100%;
  }
}

.contact-us .contact-form .container-end form .first {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 567px) {
  .contact-us .contact-form .container-end form .first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.contact-us .contact-form .container-end form input {
  width: 100%;
  margin-right: 5px;
  padding: 10px;
  border: none;
  border-bottom: 2px solid var(--brand-color);

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form input:focus {
  outline: none;
}

.contact-us .contact-form .container-end form input::-webkit-input-placeholder {

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form input:-ms-input-placeholder {

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form input::-ms-input-placeholder {

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form input::placeholder {

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form textarea {
  width: 100%;
  margin-right: 5px;
  padding: 10px;
  border: none;
  border-bottom: 2px solid var(--brand-color);

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form textarea:focus {
  outline: none;
}

.contact-us .contact-form .container-end form textarea::-webkit-input-placeholder {

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form textarea:-ms-input-placeholder {

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form textarea::-ms-input-placeholder {

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form textarea::placeholder {

  font-size: 16px;
  color: #000000;
}

.contact-us .contact-form .container-end form .submit-btn {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-us .contact-form .container-end form .submit-btn button {

  font-weight: 400;
  text-decoration: none;
  color: var(--brand-color);
  font-size: 14px;
  background: #fff;
  position: relative;
  padding: 10px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--brand-color);
}

.contact-us .contact-form .container-end form .submit-btn button:hover {
  color: white;
  background: var(--brand-color);
}
/*  */

footer {
  margin-top: 6rem;
}

footer h6,
footer i {
  color: var(--brand-color);
}

footer a {
  text-decoration: none;
}

footer p {
  line-height: 1;

}

.progress-bar {
  height: 5px;
  background-color: var(--brand-color);
  width: 0%;
}