@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amarante&amp;display=swap');
body{
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  /*background: #ec3d42;*/
}
.main{
  width: 95%;
  padding: 0;
  margin: 0 auto;
  border:0px solid;
}
a{
    color: #000;
    text-decoration: none;
}
a:focus, a:hover {
    color: #000;
    text-decoration: none;
}

img{
  max-width: 100%;
}

h1,h2,h3,h4,h5,h6{
    margin:0;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
p{
    margin:0;
}

/* top header section start */
.top-head-sec{
  padding: 0 0 0 27px;
}
.top-head-sec-1{
  padding:0;
  background: #ec3d42;
  border-radius: 50px 0 0 50px;
}
.top-head-sec-2{
  padding: 0;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-head-left{
  padding: 0;
}
.top-head-left-1{
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-head-left-1 i{
    font-size: 20px;
    color: #ffe706;
    padding: 0 13px;
    font-weight: 400
}
.tophead-left1{
    padding: 10px 0 10px 20px;
    border-radius: 50px 0px 0  50px;
    background: #ffe706;
    box-shadow: -4px -1px 0 #ec3d42;
}
.tophead-left2{
    padding: 0;
}
.tophead-left2 p{
    color: #580000;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}



.top-head-right{
  padding: 0 20px 0 0;
}
.top-head-right-1{
  padding: 0;
}
.top-head-right-1 p{
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
}
.top-head-right-1 p span{
  font-size: 30px;
  animation: blk 0.3s infinite;
  font-weight: 600;
}
@keyframes blk{
  0%{color:#fff;}
  50%{color:#fec005;}
  100%{color:#fff;}
}

/* top header section end*/



/* header section start */
.header-logo{
    padding: 0;
    z-index: 99999;
}
.header-logo-1{
    padding:0;
    display: flex;
    align-items: center;
}
.header-logo-left{
    padding: 0;
}
.header-logo-left-1{
    padding:15px 0;
    text-align: center;
}
.header-logo-center{
  padding: 0;
}
.header-logo-center-1{
  padding: 0;
  text-align: center;
}
.header-logo-center-1 img{
 
  height: 100px;
}
.header-logo-right{
    padding: 0;
}
.header-logo-right-1{
  padding:15px 0;
}
.top-head-icon{
  padding: 0;
  text-align: center;
}

.top-head-icon span i{
  padding: 0 0 0 4px;
}
.top-head-icon ul{
  display: inline-block;
}
.top-head-icon ul li{
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  padding: 0 10px;
}
.top-head-icon ul li span{
    padding: 10px;
    display: flex;
    position: relative;
}
.top-head-icon ul li span:before{
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    top: 18%;
    right: -3px;
    bottom: inherit;
    left: 0px;
    margin: 0 auto;
    background: #ffe706;
    transform: rotate(45deg);
    z-index: 2;
    animation:rotate 2s linear infinite;
}
@keyframes rotate{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
.top-head-icon ul li span i{
    font-size:20px;
    color: #940100;
    z-index: 3;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
}

.top-head-ad1{
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  padding: 9px 0px;
  display: block;
  animation: bllk 0.3s infinite;
}
@keyframes bllk{
  0%{color:#ec3d42;}
  50%{color:#fec005;}
  100%{color:#ec3d42;}
}

.top-head-srv{
  background: #ec3d42;
  font-size: 19px;
  font-weight: 300;
  padding: 9px 37px;
  text-transform: capitalize;
}
.top-head-srv p{
  color:#fff;
}
.top-head-srv p span{
    color: #ffe706;
    position: absolute;
    opacity: 0;
    overflow: hidden;
    animation: animateWord 18s linear infinite 0s;
    padding: 0 16px 0 5px;
    display: inline-block;
}

.header-logo-right-1 p span:nth-child(2) {
    animation-delay: 3s;
}

.header-logo-right-1 p span:nth-child(3) {
    animation-delay: 6s;
}

.header-logo-right-1 p span:nth-child(4) {
    animation-delay: 9s;
}
.header-logo-right-1 p span:nth-child(5) {
    animation-delay: 12s;
}
@keyframes animateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    transform: translateY(-20px);
  }
  5% {
    opacity: 1;
   transform: translateY(0px);
  }
  17% {
    opacity: 1;
    transform: translateY(0px);
  }
  20% {
    opacity: 0;
    transform: translateY(20px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/* header section logo */


/* top ad section start */
.headr-ad{
    padding:0;
    /* z-index: -9; */
}
.headr-ad-1{
    padding: 0;
    text-align: center;
    background:#ec3d42;
}
.headr-contact{
    padding: 0;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 99% 100%, 2% 100%);
    margin: -27px 0 0;
}
.headr-contact a{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    background:#ec3d42;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    padding: 10px 67px 1px;
    display: inline-block;
    text-shadow: 0px 0px 8px #eebd01;
}
.headr-ad1{
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  padding: 18px 3px 15px;
  text-transform: capitalize;
  background:#ec3d42;
  text-align: center;
  line-height: 37px;
  margin: -1px 0 0;
}
/* top ad section end */


/* navigation section start */
.navigation-sec{
  padding: 0;
  background: #ec3d42;
  text-align: center;
  margin: -1px 0 0;
}
.navigation-sec-1{
  padding: 0;
}
.navbar{
    margin: 0;
    border:0;
    min-height: 0
}

.item-active:active {
    color: #ffe706;
}
.head-nav1{
    padding: 0;
    margin: 0;
}
.head-nav1 li{
    display: inline-block;
    margin: 0 4px;
    padding: 15px 10px;   
}
.head-nav1 li a{
    font-size: 17px;
    font-weight: 400;
    padding: 10px 10px 0;
    display:
    block;
    text-transform: uppercase;
    transition: 0.3s;
    color: #ffffff;
}

.head-nav1 .active a{
    color: #ffe706;
}

.head-nav1 li:hover a{
    color: #ffe706;
}
.navbar-toggler{
    display: none;
    color: #fff;
    font-size: 30px;
    background-color: transparent;
    width: 47px;
    padding: 0 12px;
    color: #000000;
    z-index: 9;
    position: absolute;
    border: 0px !important;
    float: right;
    top: 7px;
    border: 0;
    right: 3px;
}
.navbar-collapse {
    padding: 0;
}
.navbar-collapse.in{
    border: 0 !important;
    box-shadow:none;
}
/* navigation section end*/



/* slider bg-img section start */
 .slider-bg-img{
    padding: 0;
}
.item img{
    width: 100%;
}
.carousel-control .right{
  background-image:linear-gradient(to right,rgb(0 0 0 / 0%) 0,rgb(0 0 0 / 0%) 100%)
}

.carousel-control{
    color: #ffffff;
    opacity: 100%;
}

.carousel-control:focus, .carousel-control:hover {
    color: #ffffff;
    opacity:100%;
}
.overlap{
    background: #000000ab;
    position:absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
}
.background-content{
    padding: 0px 97px;
    position: absolute;
    top: 34%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
.background-content h2 span{
    color:#ff5722;
}
.background-content h2{
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    padding: 0 0 10px 0;
    letter-spacing: 2px;
}
.background-content p{
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    padding: 16px 0 50px 0;
    line-height: 34px;
}
.background-content a{
    background: #da3805;
    color: #faf9f9;
    padding: 16px 33px;
    margin: 0;
    display: inline-block;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 400;
    transition: 0.5s;
}

.glyphicon{
    top:46%;
    font-size: 35px;
    font-weight: 500;
}
.glyphicon:hover{
    color:#ec3d42;
}

/* slider bg-img section end */


/* about us section start */
.about-sec{
  padding:0;
}
.about-sec-1{
  padding:40px 15px;
}
.about-us-title{
  padding: 0;
  text-align: center;
}
.about-us-title strong{
  font-size: 44px;
  font-weight: 500;
  color:#ec3d42;
  display: block;
  font-family: 'Amarante', cursive;
  text-transform: capitalize;
}
.about-us-title span{
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 25px;
  text-transform: capitalize
}
.about-us-content{
  padding:15px 0 0;
}
.about-us-content p{
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 29px;
  padding-bottom: 6px;
}
.about-us-content strong{
  font-weight: 600;
  color: #ec3d42;
}
.about-us-content span{
  color:#ec3d42;
  display: inline-block;
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  padding:3px 0 10px;
  text-transform: capitalize;
  font-family: 'Amarante', cursive;
}
.about-us-content ul{
  padding: 0 0 4px;
}
.about-us-content ul li{
  padding: 3px 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
}

.about-us-content ul li:before{
  font-family: "Font Awesome 6 Brands";
  font-weight: 600;
  content: "\f380";
  color: #ec3d42;
  font-size: 14px;
  padding-right: 9px
}

.ad1-text{
    padding:15px 0 0;
}
.ad1-text-1{
  padding: 15px 0 30px;
  background:#860606;
  text-align: center;
  text-transform: capitalize;
}
.ad1-text-1 p{
    color:#fff;
    font-size: 41px;
    font-weight: 500;
}
.ad1-text-1 span a{
    color:#ffe706;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    animation: mover 0.5s infinite alternate;
}
@keyframes mover{
    0%{
        transform: scale(1.1);
    }
    50%{
        transform: scale(1);
    }
}
/* about us section end */



/* our service section start */
.our-srv-sec{
  padding:0;
}
.our-srv-sec-1{
  padding:0px;
}
.our-srv-title{
  padding: 0;
  text-align: center;
}
.our-srv-title strong{
  font-size: 44px;
  font-weight: 500;
  color:#ec3d42;
  display: block;
  font-family: 'Amarante', cursive;
  text-transform: capitalize;
}
.our-srv-title span{
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 25px;
  text-transform: capitalize
}
.our-srv-content{
  padding:15px 0 0;
}
.our-srv{
  padding: 10px;
}
.our-srv-1{
  padding: 0;
}
.our-srv-img{
  padding: 0;
  position: relative;
  overflow: hidden;
}
.our-srv-img img{
  width: 100%;
  border-radius: 216px 216px 0 0;
}
.our-srv-text{
  padding: 0 20px 10px;
  text-align:
  center;
  background:#860606;
  margin: -16px 0 0;
}
.our-srv-text p{
  font-size: 21px;
  font-weight: 500;
  color: #ffe706;
  display: block;
  font-family: 'Amarante', cursive;
  text-transform: capitalize;
  padding-bottom: 6px;
}
.our-srv-text span{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}

/* our service section end */



/* why Choose us section start */
.choose-sec{
  padding: 50px 15px;
  background:linear-gradient(0deg, #860606 74%, transparent 50%);
}
.choose-sec-1{
  padding: 50px 0 0;
  display: flex;
  align-items: center;
}
.counter-sec{
  padding: 0;
  background: #fff;
}
.case-1{
    padding: 0;
}
.case-2{
    padding:15px 15px;
}
.inner{
    position: relative;
    max-width:230px;
    margin: 0 auto;
    text-align: center;
    border-radius: 0px;
    padding: 24px 15px 24px;
}

.icon-box i{
    font-size: 42px;
    color:#ec3d42;
}
.count{
    position: relative;
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    text-transform: capitalize;
}
.counter-title{
    font-size: 20px;
    font-weight: 600;
    color:#ec3d42;
}
.choose-sec-left{
  padding: 0;
}
.choose-sec-left-1{
  padding: 0;
}
.choose-title{
  padding: 0;
}
.choose-title strong{
    font-size: 36px;
    font-weight: 300;
    color: #ffe706;
    display: block;
    line-height: 49px;
    text-transform: capitalize;
    padding: 10px 0 16px;
}
.choose-title span{
    font-size: 24px;
    color: #fff;
    line-height: 25px;
    font-family: 'Amarante', cursive;
    text-transform: capitalize;
}
.choose-title p{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  padding-bottom: 6px
}
.choose-sec-right{
  padding: 0;
}
.choose-sec-right-1{
  padding: 0;
  text-align: center;
}


/* why Choose us section end*/


/* start contact section */
.contact{
  padding:15px 0 80px;
}
.contact-1{
  padding: 0
}

.contact-form-sec{
    padding:30px 20px 58px;
}
.contact-form{
    padding: 25px 0px 0;
}
.form-group .place::-webkit-input-placeholder{
    color: #000;
}
input:focus::-webkit-input-placeholder { opacity: 0; }
textarea:focus::-webkit-input-placeholder { opacity: 0; }
.form-group{
    text-align: center;
    padding: 0 5px 0;
}
.btn-group{
    margin: 7px 0 0;
}
.form-control:focus{
    box-shadow: none;
    border:1px solid #000;
}
.form-control {
    color: #000;
    background-color: #ffffff;
    border: 1px solid #8e8e8e!important;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 600;
    height: 36px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    transition: all .5s ease-in-out;
    width: 100%;
    padding: 0 0 0 17px;
}

textarea.form-control {
    padding: 15px;
    resize:none;
    height:100px;
    scroll-behavior: none;
}
.submit{
    background:#ec3d42;
    color:#fff;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 0;
    font-weight: 400;
    transition: 0.4s all ease-in-out;
    padding: 7px 30px;
    border: 3px solid #fff;
}
.btn:hover {
    color:#ffe706;
    background:#390104;
    border: 3px solid #ffe706;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.submit:focus {
    background:#390104;
    color: #ffffff;
    border: 3px solid white;
}
 .btn-group, .btn-group-vertical{
    display: block;
}
.btn-group-vertical>.btn, .btn-group>.btn{
    float: none;
}
.choose1-sec{
  padding: 0;
  background:#ec3d42;
}
.choose1-1{
    padding: 0;
}
.choose1-2{
    padding:15px 15px;
}
.choose-inner{
    position: relative;
    max-width:230px;
    margin: 0 auto;
    text-align: center;
    border-radius: 0px;
    padding: 24px 15px 24px;
}

.choose1-box i{
    font-size: 42px;
    color:#fff;
}
.choose1-inner{
    text-align: center;
    padding: 24px 15px 24px
}
.choose1-content span{
    font-size: 30px;
    color:#ffe706;
    display: inline-block;
    padding:11px 0 8px;
}
.choose1-content p{
    font-size: 15px;
    font-weight: 400;
    color:#fff;
}
/* end contact section*/

/*start testimonial section */

.testi-sec{
  padding: 0;
}
.testi-sec-1{
  padding: 30px 0 15px;
}
.testi-title{
  padding: 0;
  text-align: center;
}
.testi-title strong{
    font-size: 44px;
    font-weight: 500;
    color: #ec3d42;
    display: block;
    font-family: 'Amarante', cursive;
    text-transform: capitalize;
}
.testi-title span {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 25px;
    text-transform: capitalize;
}

.testi-content{
  padding: 20px 0 0;
}
.testii-1{
  padding: 0 ;
}
.testi-1{
  padding: 40px 10px;
}
.testi-2{
  border-radius:45px;
  background: linear-gradient(180deg, #ffffff 32%, transparent 31%);
  padding:39px 23px 20px 23px;
  text-align: center;
  box-shadow: 0 0 6px 3px #c9c9c975;
  border: 1px solid #c9c9c9;
}
.testi-img{
  padding: 0;
}
.testi-img img{
  border-radius: 16%;
  width: 33%;
}
.testi-text{
  padding: 10px 0;
}
.testi-text p{
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 30px;
}
.testi-info{
    padding: 10px 0 0;
}
.testi-info strong{
    font-size: 19px;
    font-weight: 500;
    color: #ec3d42;
    padding:12px 0 0 0;
    text-transform: capitalize;
}
.testi-info strong span{
    font-size: 17px;
    font-weight: 700;
    color: #000;   
}
/* end testimonial section */

/* footer section start */
.footer-sec{
    padding: 0;
    background:#860606;
}
.footer-sec-1{
    padding:60px 8px 15px;
}
.footer-design{
    padding: 0;
    text-align: center;
}
.footer-design p{
    color: #fff;
    font-size: 27px;
    text-transform: capitalize;
    padding: 0 0 10px;
    font-weight: 400;
    animation:
    mover 0.9s infinite alternate;
}
@keyframes mover{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(10px);
    }
}
.footer-design span{
  color: #ffe706;
  display: block;font-size:30px;
  padding: 13px 0 10px;margin:0;
  border-top: 1px solid #ffca00;
  border-bottom: 1px solid #ffffff;font-weight:600;
  text-transform:
  capitalize;
}
.footer-box{
    padding: 30px 0 0;
}
.footer-1{
    padding: 0;
}
.footer-2{
    padding: 0 0 20px;
}
.footer-title{
    padding: 0;
}
.footer-title strong{
    color:#ffe706;
    font-size:30px;
    font-weight: 100;
    text-transform: capitalize;
    font-family:'Amarante', cursive;
}
.footer-list{
    padding:10px 0 0;
}
.footer-list p{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 29px;
    padding-bottom: 6px;
}
.footer-list ul li{
    color: #ffffff;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 300;
    padding: 7px 0;
}
.footer-list ul li a{
  color:#fff;
}
.footer-list ul li i{
    color:#ffe706;
    font-size: 17px;
    padding-right: 11px;
}
/* footer section end */


/* footer copyright section start */
.footer-copyryt{
    background:#111110;
    padding: 0;
}
.footer-copyryt-1{
    padding:20px 0 6px;
    text-align: center;
    border-top: 2px solid #eebd01;
}
.disclaimer{
    padding: 0;
    font-size: 12px;
    font-weight: 300;
    color:#fff;
    line-height: 25px;
}
.copyryt{
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    color:#eebd01;
    padding-bottom: 5px
}


/* footer copyright section end */
  #callbook {
    background:
    green;
    bottom: 0;
    height:50px;
    left: 0;
    position: fixed;
    display: none;
    right: 0;
    z-index: 99999;
}
#callbook ul{
  padding: 0px;
}
#callbook ul li {
    border-bottom:1px solid #fff; 
    background:red;
    position: relative;
    padding: 21px;
    width:50%;
    list-style:none;
    float:left; text-align: center;
}
  #callbook ul li a span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    top: -4px;
}
#callbook ul li a i{
  color: #fff;
  position: relative;
  top: -4px;
  /* font-weight: 600; */
  font-size: 20px;
}  

  
@media (max-width: 767px){
.top-head-sec-1{padding: 00 10px 0;}
.top-head-sec-2{display: block;text-align: center;}
.top-head-left-1 ul li{padding:0 3px;}
.header-logo-1{display: block;}
.navbar-toggler {display: block;color: #000;padding: 0;top: -47px;}
.ad1-text-1 p{font-size:37px;}
.ad1-text-1 span a{font-size: 32px;}
.our-srv{width: 50%;}
.case-1{width: 50%}
.choose-sec-1{display: block;}
.navbar-toggler {display: block;}
  .head-nav1 li{display:block;padding: 3px 10px;}
  .our-srv-text span {font-size: 14px;}
  .our-srv-text {padding: 0 10px 10px;}
  .our-srv-text p {font-size: 18px;}
  #callbook ul li {padding: 20px 0px;}
#callbook {display:block;}
  .footer-copyryt{padding:0 0 0px 0;}
  .contact-form-sec {padding: 30px 10px 58px;}
  .choose1-2 {padding: 0px 15px;}
    .footer-sec-1 {padding: 30px 8px 15px;}
  .navbar{padding-bottom:30px;}
  .testi-2 {padding: 39px 10px 20px 10px;}
  .footer-1{width:33.333%;}
  .footer-title strong{font-size:20px;}
  .footer-1:nth-child(1){width:100%;}
  .tophead-left2 p{font-size: 26px;text-align: center;}
  .top-head-right-1 p span{font-size: 25px;}
  .top-head-srv{display:none;}
   .footer-design span{font-size: 18px;}

}


@media only screen and (min-width: 767px) and (max-width:991px){
  .top-head-left-1 ul li{padding:0 12px;}
  .header-logo-center{display: none;}
  .header-logo-right-1{padding: 15px 0;}
  .top-head-right-1 p{font-size:17px;}
  .top-head-ad1{font-size: 18px;}
  .top-head-srv{font-size: 17px;padding: 9px 8px;}
  .head-nav1 li{padding:15px 0;}
  .our-srv{padding:10px 5px;}
  .our-srv-text p{/* font-size: 19px; */}
  .choose-sec-1{display: block;}
  .our-srv-text span {font-size: 14px;}
  .our-srv-text {padding: 0 10px 10px;}
  .tophead-left2 p{font-size: 16px;}
  .top-head-right-1 p span{font-size: 25px;}
   .footer-design span{font-size: 23px;}
  .testi-2 {padding: 39px 15px 20px 15px;}

}


@media only screen and (min-width: 991px) and (max-width:1200px){
  .header-logo-right-1 ul li{padding:4px 6px}
  .top-head-ad1{font-size: 22px;}
  .top-head-srv{font-size: 16px;padding: 9px 11px;}
  .our-srv{padding:16px;width: 33.33333333%;}
  .our-srv-text{height:250px;}
  .tophead-left2 p{font-size: 16px;}
  .top-head-right-1 p span{font-size: 25px;}
   .footer-design span{font-size: 25px;}
}

@media only screen and (min-width: 1200px) and (max-width:1280px){
  .our-srv-text{height:250px;}
}
@media (min-width:0) and (max-width:600px){
.our-srv{padding:10px 5px;width: 100%;}
.our-srv-text p{font-size: 29px;}
.case-1{width: 100%}
.choose-sec{padding: 50px 5px;}
.ad1-text-1 p{font-size: 23px;padding: 0 0  20px;}
.ad1-text-1 span a{font-size: 25px;}
  .footer-1{width:100%;}




}

@media (min-width: 290px) and (max-width:480px){
.top-head-left-1 ul li{padding:0 1px;}
.header-logo-right-1{padding:15px 0px;}
.top-head-ad1{font-size: 15px;}
.top-head-srv{font-size: 14px;padding:9px 4px;}
.headr-contact a{font-size: 20px;}
.top-head-icon ul li{padding:0 6px;}
.headr-ad1{font-size: 14px;line-height: 25px;padding: 12px 3px 10px;}
.about-sec-1{padding:40px 6px;}
.about-us-title strong{font-size: 37px;}
.about-us-title span{font-size: 16px;}
.about-sec-1{padding:40px 6px;}
.ad1-text-1 p{font-size: 17px;}
.ad1-text-1 span a{font-size: 17px;}
.our-srv-title strong{font-size: 37px;}
.our-srv-title span{font-size: 16px;}
.our-srv{width: 100%;padding: 10px 0;}
.choose-title span{font-size: 21px;}
.choose-title strong{font-size: 24px;line-height: 41px;}
  .footer-design p {font-size: 15px;}
  .tophead-left2 p{font-size: 18px;text-align: center;}
  .footer-sec-1 {padding: 30px 8px 15px;}
  .footer-design span{font-size: 18px;}
}



