:root{
    --main-color:#ff7c00;
    --black:#000000;
    --light-color:#777;
    --bg:#fceae9;
    --border:.1rem solid rgba(0,0,0,.1);
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
	
}

body{
    margin:0;
    padding:0;
    font-family:Arial, Helvetica, sans-serif;
}
/*
.header{
    position: fixed;
    top:0; left:0; right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: var(--box-shadow);
    display: flex;
    text-align: center;
    justify-content: space-between;
    padding:.1rem 5%;
}

.header .navbar {
    margin-top: 15px;
}

.header .navbar a{
    font-size: 17px;
    color: black;
    margin-left: 2rem;
   
}

.header .navbar a:hover{
    color:red;
    text-decoration: none;
}
.menu-line{
  height:3px;
  width:20px;
  background-color: tomato;
  margin-bottom: 3px;
}
.menu{
  cursor:pointer;
  display:none;
}*/



@media all and (max-width:640px){
    
    .menu{
        display:block;
        position: absolute;
        right:20px;
        top:10px;
  
    }
    .showmenu{
        display:block;
  
    }
    .header .navbar{
        position: absolute;
        top:115%; right: 2rem;
        background:#fff;
        box-shadow: var(--box-shadow);
        border:var(--border);
        border-radius: .5rem;
        width: 30rem;
        transform: scale(0);
        transform-origin: top right;
        opacity: 0;
    }

    .header .navbar.active{        
        transform: scale(1);
        opacity: 1;
    }

    .header .navbar a{
        font-size: 2rem;
        display: block;
        padding:1rem;
        margin: 1rem;
        border-radius: .5rem;
    }

    .header .navbar a:hover{
        background: var(--bg);
    }

    .home .content{
        text-align: center;
    }
  }
  



/* Slider */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.slowFade {
    display: flex;
    align-items: flex-start;
    background: #fff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.slowFade .slide img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    background: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    opacity: 0;
    transform: scale(1.5) rotate(15deg);
    -webkit-animation: slowFade 65s infinite;
            animation: slowFade 65s infinite;
}
.slowFade .slide:nth-child(1) img {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
}
.slowFade .slide:nth-child(2) img {
    -webkit-animation-delay: 20s;
            animation-delay: 20s;
}
.slowFade .slide:nth-child(3) img {
    -webkit-animation-delay: 30s;
            animation-delay: 30s;
}
.slowFade .slide:nth-child(4) img {
    -webkit-animation-delay: 40s;
            animation-delay: 40s;
}
.slowFade .slide:nth-child(5) img {
    -webkit-animation-delay: 50s;
            animation-delay: 50s;
}
.slowFade .slide:nth-child(6) img {
    -webkit-animation-delay: 60s;
            animation-delay: 60s;
}
.slowFade .slide:nth-child(7) img {
    -webkit-animation-delay: 70s;
            animation-delay: 70s;
}


@keyframes slowFade {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
    40% {
        opacity: 0;
    }
}

@-webkit-keyframes slowFade {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
    40% {
        opacity: 0;
    }
}


/* Slider Ends*/




#head {
    position: relative;
    text-align: center;
    color:white;
  }
  /*.linear_gradient{
    background: linear-gradient(to right,black,red);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;

  }*/
.info{
    position: absolute;
    margin:0;
    padding:0;
    top:30%;
    bottom:0%;
    right:0%;
    left:0;
    text-align: center;
    line-height: 2.5rem;
    word-spacing:2px;
    font-size:20px;
  }
  .aboutt h4{
    line-height:30px;
  }
  img{
    border-radius: 8px;
  }
  .offer{
  border:2px solid rgba(153, 151, 151, 0.288);
  width:25em;
  height:30em;
  padding:2em;
  margin:20px;
  }

  /*Our clients*/

  .grid-container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 10px;
    padding: 10px;
  }
  
  .grid-container > div {
    padding: 10px 0;
  }


  /* Testimonials*/

  *,
*:after,
*:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

.testim {
		width: 100%;
		position: absolute;
		-webkit-transform: translatey(-50%);
		-moz-transform: translatey(-50%);
		-ms-transform: translatey(-50%);
		-o-transform: translatey(-50%);
		transform: translatey(-50%);
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #333;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
		cursor: pointer;
}

.testim .arrow:hover {
    color: red;
}
    

.testim .arrow.left {
    left: 70px;
}

.testim .arrow.right {
    right: 70px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
		height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid green;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
		position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: green;
    border-color: green;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
		overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: red;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #333;
    width: 70%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
	body {
		font-size: 14px;
	}
}

@media all and (max-width: 500px) {
	.testim .arrow {
		font-size: 1.5em;
	}
	
	.testim .cont div p {
		line-height: 25px;
	}

}
  
/* whatsapp and phone */



.customSwalBtn{
  background-color: rgb(115, 181, 30);
border-left-color: rgba(214,130,47,1.00);
border-right-color: rgba(214,130,47,1.00);
border: 0;
border-radius: 3px;
box-shadow: none;
color: #fff;
cursor: pointer;
font-size: 17px;
font-weight: 500;
margin: 10px 5px 0px 5px;
padding: 10px 32px;
}
.customSwalBtn1{
  background-color: rgb(115, 181, 30);
border-left-color: rgba(214,130,47,1.00);
border-right-color: rgba(214,130,47,1.00);
border: 0;
border-radius: 3px;
box-shadow: none;
color: #fff;
cursor: pointer;
font-size: 17px;
font-weight: 500;
margin: 5px 5px 0px 5px;
padding: 10px 32px;
}
.swal2-image {
max-width: 100%;
margin: 0.25em auto !important;
}
.close {
position: absolute;
left: 96%;
top: 13px;
margin: -10px 0 0 -10px;
width: 20px;
height: 20px;
color: #000000;
font-size: 25px;
font-weight: 500;
text-align: center;
border-radius: 50%;
/* background-color: #5c5c5c; */
cursor: pointer;
text-decoration: none;
}
input.fip {
  margin:auto;
width: 80%;
background: #f5f5f5;
border: 0;
padding: 20px;
border-radius: 8px;
margin-bottom: 10px;
border: 1px solid #eee;
}
.form-control {
display: block;
width: 100%;
padding: .5rem .75rem;
font-size: 1rem;
line-height: 1.25;
color: #55595c;
background-color: #f9f9f9;
background-image: none;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid rgba(0,0,0,.15);
border-radius: .25rem;
}
.margin-below{
margin-bottom: 1.2rem;
}
.form-control:focus {
border-color: #7743ff;
box-shadow: inset 0 1px 1px rgba(45, 45, 45, 0.07), 0 0 8px rgba(129, 129, 129, 0.6);
}
.btn2 {
cursor:pointer;
width: 80%;
padding: 12px;
border: 0;
background: #3e7fb9;
font-size: 1.1em;
color: #fff;
text-shadow: 1px 1px 0px rgba(0, 0, 0, .4);
box-shadow: 0px 3px 0px #3e7fb9;
margin-top: 1.2rem;
border-radius: .25rem;
}
.btn2:hover {
color: #fff;
background: #3e7fb9;
border-color: #3e7fb9;
}
.swal2-title {

color: #3e7fb9 !important;
}
#pop-msg{
font-size: 14px;
color: red;
font-weight: 700;
}
.swal2-container{
  z-index:999999999 !important;
}
@media(min-width: 325px) and (max-width: 767px) {

.swal2-title {

font-size: 25px !important;
}
input.fip {
  margin:auto;
width: 100%;
}
.btn2{
  width:100%;
}
}

.fixedoffer {
position: fixed;
width: 200px;
height: 30px;
margin: 0;
padding: 0;
top: 18%;
right: -135px;
z-index: 999;
border-radius: 10px 0 0 10px;
overflow: hidden;
background: #fff;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.fixedoffer .phonenumber {
display: block;
font-size: 14px;
line-height: 16px;
text-align: left;
font-weight: 600;
letter-spacing: .6px;
text-decoration: none;
color: #fff;
margin: 0;
padding: 0;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.fixedoffer .phonenumber span{
width: 65px;
height: 35px;
float: left;
background: #3e7fb9;
font-size: 18px;
margin: 0 15px 0 0;
text-align: center;
line-height: 30px;
color: #fff;
}
.fixedoffer .phonenumber p{
margin: 0;
padding: 7px;
color: #3e7fb9;
}
.phn{

color: #3e7fb9;
font-size: 14px;
line-height: 16px;
text-align: left;
font-weight: 600;
letter-spacing: .6px;
text-decoration: none;
}
.fixedoffer .phonenumber span i {
color: #fff;
-webkit-animation: flipInY 1.25s infinite;
-moz-animation: flipInY 1.25s infinite;
-ms-animation: flipInY 1.25s infinite;
animation: flipInY 1.25s infinite;
}
/*******/
.fixedcall1 {
position: fixed;
width: 180px;
height: 45px;
margin: 0;
padding: 0;
top: 28%;
right: -135px;
z-index: 999;
border-radius: 10px 0 0 10px;
overflow: hidden;
background: #fff;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.fixedcall1 .phonenumber {
display: block;
font-size: 14px;
line-height: 16px;
text-align: left;
font-weight: 600;
letter-spacing: .6px;
text-decoration: none;
color: #fff;
margin: 0;
padding: 0;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.fixedcall1 .phonenumber span{
width: 45px;
height: 45px;
float: left;
background: #3e7fb9;
font-size: 25px;
margin: 0 15px 0 0;
text-align: center;
line-height: 45px;
color: #fff;
}
.fixedcall1 .phonenumber p{
margin: 0;
padding: 7px;
color: #3e7fb9;
}
.phn{

color: #3e7fb9;
font-size: 14px;
line-height: 16px;
text-align: left;
font-weight: 600;
letter-spacing: .6px;
text-decoration: none;
}
.fixedcall1 .phonenumber span i {
color: #fff;
-webkit-animation: flipInY 1.25s infinite;
-moz-animation: flipInY 1.25s infinite;
-ms-animation: flipInY 1.25s infinite;
animation: flipInY 1.25s infinite;
}

.fixedcall {
position: fixed;
width: 180px;
height: 45px;
margin: 0;
padding: 0;
top: 48%;
right: -135px;
z-index: 999;
border-radius: 10px 0 0 10px;
overflow: hidden;
background: #fff;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.fixedcall a {
display: block;
font-size: 14px;
line-height: 16px;
text-align: left;
font-weight: 600;
letter-spacing: .6px;
text-decoration: none;
color: #fff;
margin: 0;
padding: 0;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.fixedcall a span{
width: 45px;
height: 45px;
float: left;
background: #3e7fb9;
font-size: 25px;
margin: 0 15px 0 0;
text-align: center;
line-height: 45px;
color: #fff;
}
.fixedcall a p{
margin: 0;
padding: 7px;
color: #3e7fb9;
}
.fixedcall a svg {
color: #fff;
-webkit-animation: tada 1.25s infinite;
-moz-animation: tada 1.25s infinite;
-ms-animation: tada 1.25s infinite;
animation: tada 1.25s infinite;
}
.fixedwhatapp {
position: fixed;
width: 180px;
height: 45px;
margin: 0;
padding: 0;
top: 57%;
right: -135px;
z-index: 999;
border-radius: 10px 0 0 10px;
overflow: hidden;
background: #fff;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.fixedwhatapp a {
display: block;
font-size: 14px;
line-height: 16px;
text-align: left;
font-weight: 600;
letter-spacing: .6px;
text-decoration: none;
color: #fff;
margin: 0;
padding: 0;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.fixedwhatapp a span{
width: 45px;
height: 45px;
float: left;
background: #3e7fb9;
font-size: 25px;
margin: 0 15px 0 0;
text-align: center;
line-height: 45px;
color: #fff;
}
.fixedwhatapp a p{
margin: 0;
padding: 7px;
color: #3e7fb9;
}
.fixedwhatapp a svg {
color: #fff;
-webkit-animation: flipInY 1.25s infinite;
-moz-animation: flipInY 1.25s infinite;
-ms-animation: flipInY 1.25s infinite;
animation: flipInY 1.25s infinite;
}
.fixedwhatapp:hover {
right: 0;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
-ms-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
-ms-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
-ms-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
}
.fixedcall:hover {
right: 0;
}
.fixedcall1:hover {
right: 0;
}

@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}

40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}

60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}

80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}

to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}

@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}

40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}

60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}

80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}

to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}

.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}

/* QUICK LINKS*/

.links{
  line-height: 25px;
}
.links a,.services a,.social a{
  text-decoration: none;
  color:black;
}

.links p{
  transition: 0.3s;
}
.links p:hover{
    transform: translate(5px,-5px);
}
.services p{
    transition:0.3s;
}
.services p:hover{
    transform:translate(5px,-5px);
}
.social p{
    transition:0.3s;
}
.social p:hover{
    transform:translate(5px,-5px);
}
.fa-brands{

  font-size:20px;
  text-align: center;
  border:1px solid black;
  padding:5px;
  border-radius:5px;
  color:white;
  background-color: red;
}
.well{
    background-color: red; 
    background-image: linear-gradient(to bottom right, white, black);
}
.credit{
    color:white;
    line-height:30px;
}
#company{
  background-color:red;
  color:white;
  padding:5px;
  border-radius: 5px;
}


/* Apply job */

input[type=text],input[type=date], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

#form{
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
.input-group{
  width:100%;
}
.input-group, input[type=number],input[type=email]{
  width:100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.title{
  color:red;
  
}
.fa-solid{
  font-size:20px;
  text-align: center;
  border:1px solid black;
  padding:5px;
  border-radius:5px;
  color:white;
  background-color: red;

}
.contactt{
  
  border:2px solid rgba(153, 151, 151, 0.288);
  width:23em;
  height:13em;
  padding:1.4em;
  margin:15px;
  text-align: center;
}


nav{
    background-color:rgb(255, 255, 255);
    font-size: 17px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content: space-around;
    
}

nav li{
    display:inline-block;
    margin:0 8px;
}

nav a{
    text-decoration: none;
    color:rgb(23, 22, 22);
}

.logo{
    font-size:36px;
    font-weight: bolder;
}

nav a:hover{
    color:red;
    text-decoration: none;
}

.menu-line{
    height:3px;
    width:20px;
    background-color: rgb(10, 8, 18);
    margin-bottom: 3px;
}

.menu{
    cursor:pointer;
    display:none;   
}

@media all and (max-width:640px){
    nav{
        flex-direction: column;
    }

    nav li{
        display:block;
        padding:10px 0;
    }
    ul{
        text-align: center;
        padding:0;
        display:none;
    }

    .logo{
        align-self:flex-start;
        margin:10px 0px 0px 30px;
    }

    .menu{
        display:block;
        position:absolute;
        right:20px;
        top:25px;
    }

    .showmenu{
        display:block;
    }
    
}






#testim{
    margin-bottom: 10%;
}


.title{
    margin-bottom: 10px;

}

@media all and (max-width:640px){
    #Client{
         margin-bottom:80px;
         margin-top:100px;

    }
    #testim-content{
        margin-bottom:80px;

    }
    #contact .title{
        margin-top:100px;

    }

}

@media all and (max-width:640px){
    .testim .arrow {
        display: none;
        
}
}

/* BG Music - Menu Hover*/
.music-hover{
    position:relative;
}
music-hover::before{
    content:"";
    position: absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    background-color: transparent;
    transition: width 0.5s ease-in-out;
}
music-hover:hover::before{
    width:100%;
}




@media only screen and (max-width:768px){
    nav ul li a{
        data-music-src:url("waterdrop.mp3");
    }
}



