@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
  max-width: 100%;
  width: auto;
}

body {
  padding: 0 !important;
  font-family: "DM Sans", sans-serif;
}

h1{
  font-size: 38px;
  font-weight: 600;
  margin-top: 10px;
}
body a,
body button {
  color: #000;
  outline: none !important;
  text-decoration: none !important;
  transition: all ease 0.5s;
}

* {
  padding: 0;
  margin: 0;
}

h2 {
  font-size: 38px;
  margin: 10px 0px;
  font-weight: 600;
}

.m-100 {
  margin-bottom: 80px;
}

.what {
  position: fixed;
  bottom: 30px;
  left: 20px;
  display: flex;
  z-index: 0;
  align-items: center;
  justify-content: space-between;
  width: 97%;
  flex-direction: row-reverse;
}

.what a {
color: #fff;
font-size: 30px;
border-radius: 100%;
height: 60px;
width: 60px;
position: relative;
z-index: 999;
margin-top: 10px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 5px 10px 0px #00000052;
background: #08e255;
}

.what a:last-child {
font-size: 20px;
background-color:#f68b21;
}

.sec-btn {
  display: inline-block;
  padding: 13px 25px;
  background-color: #f68b21;
  color: #fff;
  transition: .5s;
  text-transform: capitalize;
  font-size: 18px;
}

.sec-btn:hover {
  background-color: #1037b6;
  color: #fff;
  border-radius: 30px;
}
.p-100{
  padding: 80px 0px;
}
.under {
  background-color: #1037b6;
  padding: 10px 20px;
  color: #fff;
  border-left: 8px solid #f68b21;
  font-size: 18px;
  font-weight: 600;
  font-variant: small-caps;
}
/* -------main-style-start-------- */
header {
  position: absolute;
  top: 0;
  z-index: 999;
  left: 0;
  width: 100%;
}

.top-bar {
  padding: 5px 0px;
  background-color: #f68b21;
}

.top-left ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: flex-end;
}

.top-left ul li {
  margin: 0px 5px;
}

.top-left ul li a {
  height: 40px;
  width: 40px;
  display: flex;
  transition: .5s;
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

.top-left ul li a {
  background-color: #1037b6;
}

.top-left ul li a:hover {
  color: #1037b6;
  background-color: #fff;
  border-radius: 20%;
}

.top-right {
  display: flex;
  color: #fff;
  margin-left: 35px;
  align-items: center;
}

.top-right .phone {
  margin-right: 20px;
}

.top-right a {
  color: #fff;
}

header .book {
  position: absolute;
  top: 0;
  left: 0;
  width: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 100%;
}

header .book a img{
  width: 230px;
}

/*---thank-Section-Start----*/


.thank{
    text-align:center;
    height: 100vh;
    width: 100%;
    margin-top:100px;
}
.thank ul{
    padding:0;
    list-style:none;
    display:flex;
    align-items:center;
}
.thank ul li a{
    height:40px;
    width:40px;
    background:#1037b6;
    color:#fff;
    display:flex;
    align-items:center;
    margin:5px;
    border-radius:5px;
    justify-content:center;
}
/*---thank-Section-end----*/

/* ------menu-------- */
.menu {
  position: relative;
  overflow-x: clip;
}
.menu .navbar-brand{
  display: none;
}
.dropdown:hover .dropdown-menu {
  display: block;
  width: 250px;
}

.dropdown-menu {
  padding: 0;
  background-color: #f68b21;
}

.dropdown-menu a {
  color: #fff;
}

.menu::before {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(24, 22, 24, 0.279);
  z-index: -1;
  height: 100%;
  content: '';
  right: 0px;
}

.menu img {
  width:220px;
}

.menu .navbar-nav {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 30px;
}

.menu .navbar {
  padding: 5px 0px;
}

.menu .navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    padding: 13px 20px;
    font-size: 16px;
    text-transform: uppercase;
    transition: .5s;
    color: #fff;
}

.menu .navbar-expand-lg .navbar-nav .nav-link:hover,
.menu .navbar-expand-lg .navbar-nav .nav-link.active {
  color: #f68b21;
}

.menu .navbar-expand-lg .navbar-nav .nav-link::before {
  left: 5px;
  top: 44%;
  content: "";
  transition: .5s;
  height: 7px;
  width: 7px;
  display: none;
  position: absolute;
  transform: translate(-50%,-50%);
  background-color: #f68b21;
}

.menu .navbar-expand-lg .navbar-nav .nav-link:hover:before {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: round 1.4s linear infinite alternate;
}

.menu .navbar-expand-lg .navbar-nav .nav-link.active::before {
  animation: round 1.4s linear infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}


@keyframes round {
  0% {
    transform: rotate(0deg) scale(0) ;
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}
.menu .container-fluid{
  padding: 0px;
}

/* ----header-section-end---- */

/* ----hero-section-start---- */

.hero-section{
  padding-top: 240px;
  padding-bottom: 120px;
  background-image: linear-gradient(#000000a9,#000000a9),url(../images/hero.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.hero-text h1 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
  line-height: 70px;
}
.hero-item {
  position: absolute;
  right: -70px;
  background-blend-mode: overlay;
  bottom: 32%;
  transform: rotate(-90deg);
}
.hero-item h2 {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff7b;
  text-shadow: none;
  font-size: 90px;
  letter-spacing: 6px;
  font-weight: 900;
}
.hero-text ul{
  display: flex;
  align-items: center;
  list-style: none;
  padding:0;
  margin: 0;
}
.hero-text .video{
  display: flex;
  align-items: center;
  margin-left: 40px;
  color: #fff;
}
.hero-text .video i{
  height: 45px;
  width: 45px;
  background-color: #f68b21;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 100%;
  outline: 1px solid #fff;
  outline-offset: 3px;
}
.hero-text p{
  margin-bottom: 30px;
}
/* ----hero-section-end---- */

/* ---quote-section-start---- */

.quote-section .quote{
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  z-index: 3;
  border: 1px solid #eee;
  box-shadow: 0px 10px 20px 0px #00000029;
}
.quote-section .quote h2{
  margin: 0;
}
.quote-section .quote .quote-form{
  padding:30px 50px;
  padding-right: 10px;
}
.quote .quote-form input{
  width: 100%;
  padding: 15px 20px;
  background-color: transparent;
  border: 1px solid #bebaba;
  border-radius: 5px;
  outline: none;
}
.quote .quote-form label {
  margin-top: 14px;
  margin-bottom: 4px;
}
.quote-section .quote .quote-img img{
  width: 100%;
}
.quote .quote-form .sec-btn{
  border: none;
  margin-top: 30px;
  width: 100%;
}
.quote-section .cs-box{
  padding: 20px;
}
.quote-section .cs-box h3{
  font-weight: 600;
  margin-bottom: 0;
}
/* ---quote-section-end---- */

/* ---choose-section-start---- */

.choose-section{
  padding-bottom: 80px;
  margin-top: -200px;
  padding-top: 200px;
  text-align: center;
  background-image:linear-gradient(#0000005d,#0000005d),url(../images/banner.webp);
  background-size: cover;
  background-position: center;
}
.ch-head{
  margin-bottom: 20px;
  color: #fff;
}
.ch-box{
  padding: 20px;
  background: #eee;
  border-radius: 5px;
  transition: .5s;
  height: 100%;
}
.ch-box:hover{
  background-color: #f68b21;
  color: #fff;
}
.ch-box .ch-icon{
  height: 120px;
  width: 120px;
  background-color: #f68b21;
  margin: -70px auto 15px;
  display: flex;
  box-shadow: 0px 10px 20px 0px #1037b62b;
  align-items: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  justify-content: center;
}
.ch-box:hover .ch-icon{
  background: #fff;
}
.ch-box .ch-icon img{
  filter: brightness(44);
}
.ch-box:hover .ch-icon img{
  filter: brightness(1);
  animation: zoom .5s linear alternate;
}
.ch-box h4{
  font-weight: 600;
  font-size: 22px;
}
.ch-box p{
  margin-bottom: 0;
}

@keyframes zoom{
  0%{
    transform: scale(0) ;
  }
  100%{
    transform: scale(1);
  }
}
/* ---choose-section-end---- */

/* ----video-section-start---- */

.video-section{
  background-color: #00000089;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 99999;
}
.video-section .video-box{
  height: 60vh;
  width: 100%;
}
 .video-section .video-icon{
  color: #fff;
  font-size: 35px;
  text-align: right;
  cursor: pointer;
 }
/* ----video-section-end---- */

/* ---aboout-section-start---- */

.as-item{
  position: relative;
  text-align: center;
}
.as-item .as-img1{
  position: absolute;
  top: -30px;
  box-shadow: 0px 10px 20px 0px #00000037;
  left: 0px;
  border: 6px solid #fff;
}
.as-item .as-img1 img{
  width: 240px;
  height: 240px;
  object-fit: cover;
}
.as-item .as-img2{
  position: absolute;
  bottom: 0;
  width: 45%;
  right: 0px;
  box-shadow: 0px 10px 20px 0px #00000037;
  border: 6px solid #fff;
}
.as-content{
  padding-left: 30px;
}

.as-content > h2{
  margin-top: 20px;
}
.as-content .cont-box{
  padding: 10px;
  text-align: center;
  background-color: #1037b6;
  color: #fff;
  transition: .5s;
  border-radius: 4px;
}

.as-content .cont-box:hover{
  background-color: #f68b21;
}
.as-content .cont-box h2::after{
  content: "+";
  font-size: 45px;
}
.as-content .cont-box p{
  margin-bottom: 0;
  font-weight: 500;
}
.as-content .cont-box h2{
  margin-bottom: 0;
}
/* ---aboout-section-end---- */

/* ---Cta-Section-Start--- */

.cta-section .cta{
  padding: 50px 30px;
  background-color: #f68b21;
  color: #fff;
}
.cta-section .cta-text{
  display: flex;
  align-items: center;
}
.cta-section .cta-text h2{
  margin-left: 20px;
  text-transform: capitalize;
}
.cta-section .cta-link{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cta-link .sec-btn{
  background-color: #1037b6;
}
/* ---service-section-start---- */

.service-section .ser-head{
  text-align: center;
}
.service-section .ser-box{
  padding: 20px;
  transition: .5s;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px #b9babd4f;
  margin:20px 10px;
}

.ser-box .ser-img{
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.ser-box .ser-icon{
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 80px;
  width: 80px;
  background-color: #f68b21;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.ser-box .ser-img > img{
  width: 100%;
  height: 260px;
  transition: .5s;
  border-radius: 10px;
  object-fit: cover;
}
.ser-box .ser-icon img{
  width: 55px;
  border-radius: 10px;
}
.ser-box:hover .ser-icon img{
  animation: zoom .4s linear alternate;
}
.ser-box:hover .ser-img > img{
  transform: scale(1.1);
}
.ser-box h4{
  font-size: 24px;
  font-weight: 600;
  margin: 15px 0px;
}

/* ----service-section-end---- */

/* ----testimonial-section-start--- */

.testimonial-section .tes-box{
  padding: 30px;
  margin: 20px 13px;
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px #1037b638;
}
.testimonial-section h2{
  margin-top: 20px;
}
.tes-box .tes-item{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.tes-box .tes-item img{
  border-radius: 100%;
  width: 70px;
}
.tes-box .tes-item .text{
  margin-left: 20px;
}
.tes-box .tes-item h5{
  font-weight: 600;
  margin-bottom: 0;
  font-size: 16px;
}
.tes-box > p{
  text-align: justify;
}
.tes-box .tes-ratting{
  padding: 10px;
  margin-top: 10px;
  border-radius: 3px;
  background-color: #1037b6;
  color: #fff;
}
.tes-box .tes-ratting p{
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: space-between;
  margin-bottom: 0;
}
.tes-box .tes-ratting i{
  color: #f68b21;
  font-size: 14px;
  padding: 0px 1px;
}

.tes-slider .slick-arrow, .ser-slider .slick-arrow{
  position: absolute;
  top: -80px;
  right: 100px;
  display: flex;
  align-items: center;
  border: none;
  font-size: 0;
  background-color: #f68b21;
  color: #fff;
  justify-content: center;
  height: 50px;
  border-radius: 100%;
  width: 50px;
}
.tes-slider .slick-next, .ser-slider .slick-next{
  right: 20px;
}
.tes-slider .slick-next::after, .ser-slider .slick-next::after{
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 30px;
}
.tes-slider .slick-prev::after, .ser-slider .slick-prev::after{
  content: "\f060";
  font-family: "FontAwesome";
  font-size: 30px;
}
/* ----testimonial-section-end--- */

/* ------footer-section-start------- */

.footer-section {
  padding-top: 50px;
  background-color:#03113d;
  background-position: center;
  color: #fff;
}
.footer-logo{
  margin-bottom: 20px;
}
.footer-logo img {
  width: 200px;
}

.footer-box .social {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}

.footer-box .social li {
  margin: 0px 5px;
}

.footer-box .social li a {
  height: 45px;
  width: 45px;
  display: flex;
  border-radius: 4px;
  transition: .5s;
  font-size: 18px;
  background-color: #f68b21;
  color: #1037b6;
  align-items: center;
  justify-content: center;
}

.footer-box .social li a:hover {
  color: #f68b21;
  background-color: #fff;
  border-radius: 20%;
}

.footer-box .footer-title h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f68b21;
  position: relative;
}

.footer-box .footer-title h4::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #1037b6;
  width: 50px;
  border-radius: 10px;
  height: 3px;
  content: '';
}

.footer-link ul li a:hover {
  color: #f68b21;
}

.footer-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-box ul li {
  margin: 5px 0px;
}
.footer-box ul li a{
  color: #fff;
}
.footer-link2 ul li {
  display: flex;
  align-items: center;
  margin: 15px 0px;
}
.footer-link2 ul li p{
  margin-bottom: 0;
}

.footer-link2 ul li a:hover {
  color: #f68b21;
}

.footer-link2 ul li i {
  margin-right: 10px;
  color: #1037b6;
  height: 45px;
  transition: .5s;
  width: 45px;
  border-radius: 4px;
  background-color: #f68b21;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.footer-link2 ul li i:hover{
  background-color: #fff;
  color: #f68b21;
  border-radius: 20%;
}
.footer-link2 ul li span,
.footer-link2 ul li a {
  flex: 1;
}

.footer-section .copy-right {
  text-align: center;
  padding: 10px;
  background-color: #f68b21;
  color: #fff;
  margin-top: 30px;
}

.footer-section .copy-right p {
  margin-bottom: 0;
}
.footer-section .map{
  height: 100%;
}
/* ------footer-section-end-------- */

/* ---Banner-Section--- */

.banner-section{
  padding: 200px 0px 80px;
  background-image: linear-gradient(#000000b9,#000000b9),url(../images/banner.webp);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-title ul{
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.banner-section .banner-title ul li{
  margin: 0px 10px;
  font-size: 20px;
}
.banner-section .banner-title ul li a{
  color: #f68b21;
}
/* ---Banner-Section--- */

/* ---Mission-Section--- */

.mission-section .ms-box{
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  background-color: #eee;
}
.mission-section .ms-box h4{
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}
/* ---Mission-Section--- */

/* -----Gallery-Page-start----- */

.gallery-section .gallery-box {
  position: relative;
  margin-top: 30px;
}

.gallery-box a {
  position: relative;
  border-radius: 10px;
}

.gallery-box a img {
  width: 100%;
  transition: .5s;
  height: 328px;
  object-fit: cover;
}
.gallery-box a:hover img{
  transform: scale(.95);
}
/* ------gallery-Page-end------- */

/* ---Map-Section--- */

.map-section .map{
  height: 400px;
}
.quote-section .cont-box {
  display: flex;
  position: relative;
  padding: 20px;
  z-index: 2;
  align-items: center;
  border-radius: 5px;
  border: 3px double #03113d;
  background-color: #fff;
  outline-offset: 3px;
}
.quote-section .cont-box .icon {
  height: 70px;
  width: 90px;
  border-radius: 5px;
  background-color: #f68b21;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-section .cont-box img {
  width: 50px;
  filter: brightness(44);
}
.quote-section .cont-box .text {
  margin-left: 10px;
  flex: 1;
}

.quote-section .cont-box h4{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}
.quote-section .cont-box address{
  margin-bottom: 0;
}
/* ---Map-Section--- */

@media screen and (max-width:1024px) {
  header .book a img {
    width: 190px;
}
.hero-text h1 {
  font-size: 45px;
  margin-top: 20px;
  line-height: 60px;
}
.under{
  font-size: 16px;
  font-weight: 500;
}
h2 {
  font-size: 30px;
}
.ch-box{
  padding: 20px 10px;
}
.as-content .cont-box p {
  font-size: 14px;
}
.as-content .cont-box h2{
  margin-top: 0;
}
.ch-box h4{
  font-size: 17px;
}
.ch-box .ch-icon{
  height: 100px;
  width: 100px;
}
.ch-box .ch-icon img{
  width: 50px;
}
.as-content{
  padding: 0;
}
.cta-section .cta{
  padding: 35px 20px;
}
.p-100{
  padding: 60px 0px;
}
.m-100{
  margin-bottom: 60px;
}
}

@media screen and (max-width:992px) {
  .top-left,header .book{
    display: none;
  }
  .navbar{
      padding:0px;
  }
  .top-bar{
    padding: 10px 0px;
  }
  .top-right{
    margin: 0;
  }
  .menu .navbar-brand{
    display: block;
    padding:0px;
  }
  .menu .navbar-brand img {
    width: 170px;
}
.menu .navbar-toggler{
  border: 2px solid #1037b6;
}
.menu .navbar-toggler-icon{
  display: flex;
  align-items: center;
  color: #f68b21;
  justify-content: center;
}
.choose-section{
  background-attachment: fixed;
}
.menu::before{
  background-color: #fff;
}
.menu .navbar-toggler:focus{
  box-shadow: none;
}
.menu .navbar-nav{
  display: block;
  margin-left: 0;
}
.menu .navbar-nav .nav-item:last-child{
  margin-bottom: 20px;
}
.menu .navbar-expand-lg .navbar-nav .nav-link{
  padding: 3px 0px;
  font-weight: 600;
  color: #1037b6;
}
.menu .navbar-expand-lg .navbar-nav .nav-link::before{
  left: -9px;
}
.hero-slide{
  padding: 50px 0px;
}
header{
  position: static;
}
}


@media screen and (max-width:768px) {
  .hero-section{
    padding: 80px 0px;
  }
  .hero-item h2 {
    font-size: 80px;
}
.hero-item{
  bottom: 40%;
}
.quote .quote-form input {
  padding: 8px 20px;
}
.quote .quote-form label {
  margin-top: 10px;
  margin-bottom: 0px;
}
.what{
  width: 95%;
}
.quote-section .quote .quote-img img{
  display: none;
}
.p-100{
  padding: 40px 0px;
}
.quote-section .quote .quote-form{
  padding: 20px;
}
.ch-box .ch-icon{
  margin-top: -45px;
}
.choose-section{
  padding-bottom: 40px;
}
.as-content{
  margin-top: 30px;
}
.tes-box .tes-ratting p{
  font-size: 12px;
}
.m-100{
  margin-bottom: 35px;
}
.footer-box{
  margin-bottom: 20px;
}
.banner-section{
  padding: 80px 0px 60px;
}
.banner-section .banner-title ul li {
  font-size: 18px;
}
.map-section .map {
  height: 300px;
}
}

@media screen and (max-width:580px) {
  .under {
    font-size: 14px;
    font-weight: 500;
}
.banner-section .banner-title h2{
  margin-bottom: 0;
}
.hero-text h1 {
  font-size: 25px;
  line-height: 30px;
}
.hero-text .video{
  display: none;
}
h2 {
  font-size: 24px;
}
.as-content .cont-box{
  margin-top: 20px;
}
.cta-section{
  text-align: center;
}
.what{
  width: 92%;
}
.cta-section .cta-link{
  justify-content: center;
}
.cta-section .cta-text{
  flex-direction: column;
}
.cta-section .cta-text h2{
  margin-left: 0px;
}
.cta-section .cta{
  padding: 20px;
}
.cta-section .cta-text img,.as-item .as-img1, .as-item > img{
  display: none;
}
.as-content .cont-box h2{
  font-size: 45px;
}
.ser-slider .slick-arrow {
  height: 40px;
  width: 40px;
}
.tes-slider .slick-arrow{
  top: -110px;
}
.ser-slider .slick-prev {
  right: 70px;
}
.as-item .as-img2{
  position: relative;
  width: 100%;
}
.tes-slider .slick-prev::after, .ser-slider .slick-prev::after,.tes-slider .slick-next::after, .ser-slider .slick-next::after{
  font-size: 20px;
}
.top-right a {
  color: #fff;
  font-size: 15px;
}
.hero-item{
  right: -100px;
}
.hero-item h2 {
  font-size: 35px;
}
.hero-section{
  padding: 60px 0px;
}
.top-right .phone {
  margin-right: 8px;
}
.hero-item {
  right: -83px;
}
.hero-text h1 {
  line-height: 40px;
}
}


/*---thank-Section-Start----*/

.thank{
  text-align:center;
  height: 100vh;
  width: 100%;
  margin-top:0px;
}
.thank img{
    width:60%;
}
.thank ul{
  padding:0;
  list-style:none;
  display:flex;
  align-items:center;
}
.thank ul li a{
  height:45px;
  width:45px;
  background:#f68b21;
  color:#fff;
  font-size:20px;
  display:flex;
  align-items:center;
  margin:5px;
  border-radius:5px;
  justify-content:center;
}

@media screen and (max-width:1024px) {
.thank{
  margin-top:80px;
}
}

@media screen and (max-width:768px) {
  .thank{
  margin:50px 0px;
  height:auto;
}
}

@media screen and (max-width:580px) {
.thank{
  margin:20px 0px;
}
.thank img{
    width:70%;
}
}

/*---thank-Section-end----*/