@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@700&display=swap');

.main-container {
    float: left;
    width: 100%;
}

.best-ser {
    float: left;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
}

.bets-header {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 25px;
    color: #054002;
    font-family: 'Montserrat Alternates', sans-serif;
    padding-bottom: 10px;
}

.lines {
    display: flex;
    align-items: center;
    float: left;
    width: 100%;
    text-align: center;
    padding: 0px 300px;
}

.bets-sub {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #000;
    font-family: 'Mukta', sans-serif;
    padding: 10px 100px;
    line-height: 30px;
  
}

.line-left {
    float: left;
    width: 60%;
    height: 1px;
    background: #054002;
    position: relative;
}

.line-left::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #054002 50%, transparent 50%), linear-gradient(90deg, #054002 50%, transparent 50%),
        linear-gradient(0deg, #054002 50%, transparent 50%), linear-gradient(0deg, #054002 50%, transparent 50%);
    background-size: 8px 1px, 0px 1px, 0px 1px, 0px 1px;
    background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0px;
    animation: dash 50s linear infinite;
}

@keyframes dash {
    100% {
        background-position: 100% 0%, 0% 100%, 0% 0%, 100% 100%;
    }
}

.line-right {
    float: left;
    width: 60%;
    height: 1px;
    background: #054002;
    position: relative;
}

.line-right::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #054002 50%, transparent 50%), linear-gradient(90deg, #054002 50%, transparent 50%),
        linear-gradient(0deg, #054002 50%, transparent 50%), linear-gradient(0deg, #054002 50%, transparent 50%);
    background-size: 8px 1px, 0px 1px, 0px 1px, 0px 1px;
    background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0px;
    animation: dash 50s linear infinite;
}

.line-logo {
    text-align: center;
    background: transparent;
}

.line-logo i {
    display: table;
    margin: 0 auto;
    float: none;
    font-size: 30px;
    padding: 0px 10px;
    color: #054002;
}

.best-border {
  float: left;
  width: 100%;
  margin-top: 40px;
  background-color: #fff;
  padding: 25px;
  border: 2px solid #ddd;
}

.best-header {
  float: left;
  width: 100%;
  padding-bottom: 30px;
  font-size: 22px;
  text-align: center;
  color: #f80606;
  font-family: 'Mukta', sans-serif;
  font-weight: bold;
}

.best-img {
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}
.best-img img {
  float: left;
  width: 100%;
}

.best-border:hover .best-img img {
    animation: shadow-pulse .75s infinite linear;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(2, 112, 11, 0.2);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(2, 75, 41, 0);
    }
}

.best-img::before {
    content: "";
    position: absolute;
    top: -30px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background: url(../images/frame.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    transition: all 0.3s ease;
    animation: rotate 10s linear infinite;
    animation-play-state: paused;
    width: 130px;
}

.best-border:hover .best-img::before {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

.best-desc {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    font-family: 'Mukta', sans-serif;
    padding-top: 10px;
}

.best-line {
    float: left;
    width: 100%;
    height: 1px;
    background: #054002;
    position: relative;
}

.best-line::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #054002 50%, transparent 50%), linear-gradient(90deg, #054002 50%, transparent 50%),
        linear-gradient(0deg, #054002 50%, transparent 50%), linear-gradient(0deg, #054002 50%, transparent 50%);
    background-size: 8px 1px, 0px 1px, 0px 1px, 0px 1px;
    background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0px;
    animation: dash 50s linear infinite;
}

.best-cal {
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 15px;
    font-size: 16px;
    font-family: 'Mukta', sans-serif;
}

.best-cal a {
    background: #f80606;
    padding: 5px 15px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

#best-border2 .best-header {
    color: #f0bd26;
}

#best-border2 .best-cal a {
    background: #f0bd26;
    color: #000;
}

#best-border2 .best-img img {
    border: 5px solid #f0bd26;
}

#best-border3 .best-header {
    color: #054002;
}

#best-border3 .best-img img {
    border: 5px solid #054002;
}

#best-border3 .best-cal a {
    background: #054002;
    color: #fff;
}

#best-border4 .best-header {
    color: #078b9c;
}

#best-border4 .best-img img {
    border: 5px solid #078b9c;
}

#best-border4 .best-cal a {
    background: #078b9c;
    color: #fff;
}

.about-us {
    float: left;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(../images/abt.jpg);
    background-size: cover;
    background-position: center;
}

.abt-left {
    float: left;
    width: 100%;
    text-align: left;
}

.abt-left .lines {
    padding: 0;
    text-align: left;
}

.abt-left .bets-header {
    text-align: left;
}

.abt-left .line-left {
    width: 15%;
}

.abt-left .line-right {
    width: 15%;
}

.abt-sub {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 18px;
    color: #f80606;
    font-family: 'Mukta', sans-serif;
    line-height: 30px;
}

.abt-desc {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #666;
    font-family: 'Mukta', sans-serif;
    line-height: 30px;
    padding: 20px 0px;
}

.abt-list {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-family: 'Mukta', sans-serif;
    line-height: 30px;
    padding-right: 150px;
}

.abt-list ul li {
    list-style: none;
    border-bottom: 1px dashed #f0bd26;
    margin-bottom: 10px;
}

.abt-list ul li i {
    color: #f80606;
    padding-right: 10px;
}

.abt-call {
    float: left;
    width: 100%;
    text-align: left;
    padding-top: 25px;
    font-size: 16px;
    font-family: 'Mukta', sans-serif;
    display: flex;
}

.abt-call a {
    background: green;
    padding: 5px 15px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

#abt-c {
    background: #f0bd26;
    color: #000;
    margin-left: 20px;
}

.other-border {
    float: left;
    width: 100%;
    position: relative;
    margin-top: 40px;
    background: #66666615;
}

.other-img {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.other-img img {
    max-width: 100%;
    overflow: hidden;
    transition: all 400ms linear;
}

.other-img:after {
    background: #0000001c;
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    transition: all 400ms linear;
}

.other-border:hover .other-img:after {
    left: 0;
    right: 0;
    opacity: 1;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.other-cont {
    float: left;
    width: 100%;
    padding: 0px 15px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.other-cont1 {
    float: left;
    width: 100%;
    padding-top: 15px;
}

.other-cont1 strong {
    float: left;
    width: 100%;
    font-size: 22px;
    color: #054002;
    font-family: 'Montserrat Alternates', sans-serif;
}

.other-cont1 p {
    float: left;
    width: 100%;
    font-size: 16px;
    color: #000;
    padding: 10px 20px;
    line-height: 35px;
    font-family: 'Mukta', sans-serif;
}

a.clik {
    position: absolute;
    left: 5%;
    top: 50%;
    background: #f0bd26;
    color: #000;
    z-index: 1;
    height: 36px;
    width: 132px;
    font-weight: 600;
    line-height: 20px;
    padding: 8px 10px 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Mukta', sans-serif;
    z-index: 5;
}

.other-border:hover .other-img img {
    transform: scale(1.2);
}

.other-border::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    right: 15px;
    border: 1px solid #f0bd26;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 3;
}

.other-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f0bd26;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1;
    bottom: unset;
    height: 0;
    z-index: 1;
    width: 100%;
    height: 0%;
    opacity: 1;
}

.other-border:hover::before {
    height: 100%;
    opacity: 1;
}

.other-border:hover::after {
    border: 2px solid #fff;
}


.testi {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../images/test.png);
    background-position: center;
    background-size: contain;
}

.test1 {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 20px;
    color: #054002;
    margin-top: -15px;
    font-family: 'Mukta', sans-serif;
}

.test-left {
    float: left;
    width: 100%;
}

.test2 {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 30px;
    font-family: 'Montserrat Alternates', sans-serif;
    color: #054002;
    padding-top: 15px;
}

.test3 {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 17px;
    padding-top: 20px;
    padding-bottom: 30px;
    color: #000;
    line-height: 30px;
    font-family: 'Mukta', sans-serif;
}

.test-left a {
    font-family: 'Mukta', sans-serif;
    background: #f0bd26;
    padding: 5px 15px;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
}

.testi a.left.carousel-control {
    position: absolute;
    background: none;
    padding-right: 70%;
    margin-top: -40%;
}

.testi span.glyphicon.glyphicon-chevron-left {
    background: #f0bd26;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #000;
    font-size: 15px;
    z-index: 2;
}

.testi a.right.carousel-control {
    position: absolute;
    background: none;
    padding-right: 100%;
    margin-top: -40%;
}

.testi span.glyphicon.glyphicon-chevron-right {
    background: #f0bd26;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #000;
    font-size: 15px;
    z-index: 2;
}

.test-right {
    float: left;
    width: 100%;
    text-align: left;
}

.tt-bb {
    float: left;
    width: 100%;
    position: relative;
}

.tt-bb img {
    float: left;
    width: 100px;
    height: auto;
    text-align: center;
    position: relative;
    border-radius: 10%;
    border: 5px solid #f0bd26;
}

.tt-bb i {
    float: left;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 25px;
    color: #054002;
}

.tt-bb p {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 17px;
    color: #000;
    line-height: 30px;
    font-family: 'Mukta', sans-serif;
}

.tt-bb strong {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 22px;
    color: #054002;
    font-family: 'Mukta', sans-serif;
}

.tt-bb span {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-family: 'Mukta', sans-serif;
}

.banners {
    float: left;
    width: 100%;
    background: url(../images/banner1.jpg);
    background-size: contcain;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.banner1 {
    float: left;
    width: 50%;
    padding-top: 40px;
}

.banner2 {
    float: left;
    width: 50%;
}

.banner2 img {
    float: left;
    width: 100%;
    border-radius: 50%;
    padding: 20px;
    border: 5px dashed #fff;
}

.banner-title {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 38px;
    color: #fff;
    font-family: 'Montserrat Alternates', sans-serif;
}

.banner-title span {
    color: #f0bd26;
}

.banner-name {
    float: left;
    width: 100%;
    font-size: 35px;
    text-align: left;
    padding: 15px 0px;
    font-family: 'Mukta', sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
}

.banner-name a {
    background: #fff;
    padding: 10px 25px;
    color: #054002;
    text-shadow: 2px 3px 0px #f0bd26;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat Alternates', sans-serif;
}

.banner-desc {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 35px;
    color: #fff;
    font-family: 'Mukta', sans-serif;
    line-height: 50px;
}

.banner-call {
    float: left;
    width: 100%;
    font-size: 25px;
    padding-top: 35px;
    text-decoration: none;
    font-family: 'Mukta', sans-serif;
}

.banner-call a {
    background: #f0bd26;
    padding: 9px 25px;
    border: none;
    border-radius: 30px;
    transition: .3s;
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #000;
    text-decoration: none;
}

.banner-call:hover a {
    background: none;
    color: #054002;
}

.banner-call:hover a:before {
    width: 100%;
    opacity: 1;
}

.banner-call a:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 30px;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.banner-call a i {
    height: 43px;
    width: 43px;
    line-height: 43px;
    background: #fff;
    text-align: center;
    border-radius: 100%;
    color: #054002;
    left: 13px;
    position: relative;
    display: inline-block;
    transition: .5s;
}

.banner-call:hover a i {
    background: #054002;
    color: #fff;
}

.why-us {
    float: left;
    width: 100%;
    padding: 50px 0px;
}

.why-border {
    float: left;
    width: 100%;
    padding: 10px;
}

.why-img {
    float: left;
    width: 30%;
}

.why-img img {
    float: none;
    display: table;
    margin: 0 auto;
}

.why-title {
    width: 100%;
    float: left;
    color: #000;
    font-size: 20px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.why-desc {
    width: 100%;
    float: left;
    font-size: 17px;
    padding-top: 15px;
    line-height: 30px;
    color: #666;
    font-family: 'Mukta', sans-serif;
}

.why-border2 {
    float: left;
    width: 100%;
    padding: 10px;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
}

.why-us .line-left {
    width: 100%;
    margin-top: 10px;
}

.why-rigt {
    float: left;
    width: 70%;
}

.best-ser2 {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.best-header2 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: #000;
    font-family: 'Montserrat Alternates', sans-serif;
}

.best-sub22 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #666;
    padding: 5px 0px;
    font-family: 'Mukta', sans-serif;
}

.best-line2 {
    float: left;
    width: 100%;
    text-align: center;
}

.best-border2 {
    float: left;
    width: 100%;
    position: relative;
    margin-top: 40px;
}

.best-border2 img {
    width: 100%;
}

.hover-content2 {
    background-color: rgba(0, 0, 0, 0.83);
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 50px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 999;
}

.hover-content2 h4 {
    color: #f0bd26;
    font-size: 24px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.hover-content2 p {
    color: #fff;
    font-size: 16px;
    font-family: 'Mukta', sans-serif;
    padding: 15px 0px;
    font-weight: 400;
}

.hover-content2 a {
    background: green;
    font-size: 18px;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
}

.best-border2:hover .hover-content2 {
    opacity: 1;
}

.daa {
    float: left;
    width: 100%;
    position: relative;
    
    position: relative;
}

.ttt1 {
    float: left;
    width: 100%;
    background: #054002;
    border-top: 5px solid #054002;
}

.tophead-left2 {
    padding: 0;
    text-align: center;
    float: left;
    width: 50%;
    background: #fff;
}

.tophead-left2 a {
    text-decoration: none;
    color: #054002;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 35px;
    padding: 5px 0px 0;
    border-radius: 5px;
    display: inline-block;
    animation: blink .4s infinite;
    font-family: 'Mukta', sans-serif;
}

.ttt {
    float: left;
    width: 50%;
    background: #054002;
    text-align: center;
    font-size: 20px;
    padding: 10px 0px;
    color: #fff;
    font-family: 'Mukta', sans-serif;
}

@keyframes blink {
    0% {
        color: #f0bd26;
    }

    100% {
        color: #054002;
    }
}

.top-hd {
    float: left;
    width: 100%;
   
}

.top-hd-img {
    float: left;
    width: 100%;
    text-align: center;
}

.top-hd-img img {
    max-width: 100%;
}

.footer {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../images/ft.png);
    background-size: cover;
}

.footer1 {
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #eee;
    padding: 20px 10px;
}

.footer-boreder {
    float: left;
    width: 100%;
}

.footer-title {
    float: left;
    width: 100%;
    background: #f0bd26;
    text-align: center;
    padding: 8px;
    font-size: 18px;
    color: #fff;
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 15px;
}

.footer-boreder ul li {
    font-family: 'Mukta', sans-serif;
    list-style: none;
    line-height: 32px;
    font-size: 17px;
    background-position: 0px 12px !important;
    border-bottom: solid 1px #eee;
    color: #000;

}

.footer-boreder ul li i {
    color: #f80606;
    padding-right: 10px;

}

.top-hd.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.1);
    box-shadow: 0 3px 5px rgba(0,0,0,.1);
    animation-name: fadeInDown;
    animation-duration: 1s;
    background-color: #f0bd26;
    animation-fill-mode: both;
    padding-top: 10px;
    padding-bottom: 10px;
}
@keyframes fadeInDown
{0% {
    opacity: 0;
    transform: translate3d(0,-100%,0);
}
100% {
    opacity: 1;
    transform: none;
}}

.new-ser {
    float: left;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(../images/abt.jpg);
    background-size: cover;
    background-position: center;
}
.new-ser .lines {
    padding: 0;
    text-align: left;
    margin-top: 10px;
}.new-ser .line-left {
    width: 20%;
}
.new-ser-header {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 20px;
    color: #054002;
    font-family: 'Montserrat Alternates', sans-serif;
    padding-bottom: 10px;
}
.new-ser-left {
    float: left;
    width: 100%;
    text-align: left;
}
.new-ser-right {
    float: left;
    width: 100%;
    margin-top: 40px;
}
.new-ser-right-sub {
    float: left;
    width: 100%;
    font-size: 18px;
    color: #054002;
    font-family: 'Montserrat Alternates', sans-serif;
}

.new-ser-cont {
    float: left;
    width: 100%;
    background: #ffffffad;
    border-radius: 10px;
    margin-top: 25px;
    padding: 20px;
}
.new-ser-cont1 {
    float: left;
    width: 30%;
}
.new-ser-cont1 img {
    max-width: 100%;
    background: #000;
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 5px;
    display: table;
    margin: 0 auto;
    float: none;
}
.new-ser-cont2 {
    float: left;
    width: 70%;
}
.new-ser-details {
    float: left;
    text-align: left;
}
.new-ser-details h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    color: #f80606;
    font-family: 'Montserrat Alternates', sans-serif;
}
.new-ser-details span {
    font-size: 18px;
    float: left;
    width: 100%;
    padding-left: 15px;
    padding-top: 20px;
    color: #000;
    font-family: 'Mukta', sans-serif;
}
.new-ser-desc {
    float: left;
    width: 100%;
    font-size: 16px;
    color: #000;
    padding-top: 15px;
    line-height: 30px;
    font-family: 'Mukta', sans-serif;
}
.newline {
    float: left;
    width: 100%;
    margin-top: -40px;
    position: relative;
}
.newline span {
    background-color: #f80606;
    display: inline-block;
    height: 1px;
    vertical-align: top;
    width: 60px;
}






.dadsa{
    position: relative;
float: left;
width: 100%;margin-top: 40px;
z-index: 2;
}
.dadsa img{
  max-width: 100%;
  position: relative;
  z-index: 2;

}
.dadsa::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #05400275;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 1;
}
.new-ser-left:hover .dadsa::after {
    border-color: #054002;
    transform: translate(10px, 10px);
}




#callbook {
    background: green;
    bottom: 0;
    height: 50px;
    left: 0;
    position: fixed;
    display: none;
    right: 0;
    z-index: 100;
}
#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: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  top: -15px;
  font-family: 'Besley', serif;
}
#callbook ul li a i {
    color: #fff;
    position: relative;
    top: -13px;
    padding: 0 5px 0 0;
    font-size: 20px;
}
#callbook ul li a i {
    animation: pulsate 0.5s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation: pulsate 0.5s ease-out;
    -webkit-animation-iteration-count: infinite;
}
#callbook ul li a {
  line-height: 42px;
}
@keyframes pulsate {
    0% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1.2, 1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }
}




@media(min-width:992px) and (max-width:1200px) {.daa {
    padding: 0px 0px;
    padding-top: 100px;
}.banners{padding: 0;}}

@media(min-width:768px) and (max-width:991px) {
    .test-left {
        padding-bottom: 30px;
      } .lines {
        padding: 0px;
    }.bets-sub {
        padding: 10px;
    }   .tophead-left2 {
        width: 100%;
    } .banner1 {
        width: 100%;
    }  .banner2 {
        width: 100%;
        padding: 20px 0px;
    } .ttt {
        display: none;
    }
    
    .tophead-left2 {
        width: 100%;
    }
    
    .daa {
        padding: 0px 0px;
    }.banner-name {
        font-size: 25px;
    }
    .why-us .col-sm-4{width: 50%;}
    .best-ser .col-sm-3{width: 50%;}
    .best-ser .col-sm-4{width: 50%;}
    .best-ser2 .col-sm-3{width: 50%;}
    .footer .col-sm-4{width: 50%;}
    .daa {
        padding: 0px 0px;
        padding-top: 100px;
    }.banners{padding: 0;}
    .new-ser .col-sm-6{width: 100%;}
}

@media(min-width:640px) and (max-width:767px) {  .test-left {
    padding-bottom: 30px;
  } .lines {
    padding: 0px;
}.bets-sub {
    padding: 10px;
}   .tophead-left2 {
    width: 100%;
} .banner1 {
    width: 100%;
}  .banner2 {
    width: 100%;
    padding: 20px 0px;
} .ttt {
    display: none;
}

.tophead-left2 {
    width: 100%;
}

.daa {
    padding: 0px 0px;
}.banner-name {
    font-size: 25px;
}.top-hd :nth-child(2){display: none;}
.top-hd :nth-child(3){display: none;}
.daa {
    padding: 0px 0px;
    padding-top: 100px;
}.banners{padding: 0;}
}

@media(min-width:480px) and (max-width:639px) {
    .test-left {
        padding-bottom: 30px;
      } .lines {
        padding: 0px;
    }.bets-sub {
        padding: 10px;
    }   .tophead-left2 {
        width: 100%;
    } .banner1 {
        width: 100%;
        padding-top: 75px;
    }  .banner2 {
        width: 100%;
        padding: 20px 0px;
    } .ttt {
        display: none;
    }

    .tophead-left2 {
        width: 100%;
    }

    .daa {
        padding: 0px 0px;
    }.banner-name {
        font-size: 25px;
    } .top-hd :nth-child(2){display: none;}
    .top-hd :nth-child(3){display: none;}
    .daa {
        padding: 0px 0px;
        padding-top: 100px;
    }.banners{padding: 0;}
          .why-us .container-fluid {
  padding: 0;
}
.why-border {
  padding: 0;
}
  #callbook {
    display: block;
  }
  .daa .container-fluid {
  padding: 0;
}
}

@media(min-width:320px) and (max-width:479px) {
    .new-ser-cont1 {
        width: 100%;
      }.new-ser-cont1 img {
        display: inline;
        margin-bottom: 10px;
      }.new-ser-cont2 {
        width: 100%;
      }
    .top-hd :nth-child(2){display: none;}
    .top-hd :nth-child(3){display: none;}
    .daa {
        padding: 0px 0px;
        padding-top: 70px;
    }
    .banners{padding: 0;}

    .ttt {
        display: none;
    }

    .tophead-left2 {
        width: 100%;
    }

   

    .banner1 {
        width: 100%;
        padding-top: 75px;
    }

    .banner-title {
        font-size: 24px;
        text-align: center;
        line-height: 35px;
    }

    .banner-name {
        font-size: 24px;
        text-align: center;
    }

    .banner-desc {
        font-size: 24px;
        text-align: center;
        line-height: 30px;
    }

    .banner-call {
        font-size: 22px;
        text-align: center;
    }

    .banner2 {
        width: 100%;
        padding: 20px 0px;
    }

    .bets-sub {
        padding: 10px;
    }

    .lines {
        padding: 0px;
    }

    .abt-list {
        padding: 20px 0px;
    }

    a.clik {
        top: 35%;
    }
    .test-left {
        padding-bottom: 30px;
      }.testi a.right.carousel-control {
        margin-top: -71%;
      }
      .testi a.left.carousel-control {
        margin-top: -71%;
      }
      
      .why-us .container-fluid {
  padding: 0;
}
.why-border {
  padding: 0;
}
  #callbook {
    display: block;
  }
  .daa .container-fluid {
  padding: 0;
}
}