* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
/*common css*/
body {
    font-family: 'Roboto', sans-serif;
    font-family: 'Open Sans', sans-serif;
    color: #212529;
    background-color: #f8f9fa;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
a {
    text-decoration: none !important;
    outline: none !important;
}
section, header, footer {
    overflow: hidden;
}
.sec-padding {
    padding: 3em 0 2em 0;
}
i:before {
    margin-left: 0 !important;
}
input, textarea {
    outline: none !important;
    box-shadow: unset !important;
}
.defbutton {
    background-color: #033357;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    padding: 1em 2em;
    border-radius: 5px;
    margin-bottom: .5em;
    transition: .5s;
}
.defbutton:hover {
    background-color: #fdb414;
    color: #000 !important;
}
.slick-slide {
    outline: unset !important;
}
.heading {
    position: relative;
    margin-bottom: 3em;
    text-align: center;
    z-index: 0;
}
.shadowtext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    font-weight: 900;
    color: #f3f3f3;
    z-index: -1;
    text-transform: uppercase;
    line-height: 62px;
    width: 100%;
}
.heading h3 {
    color: #033357;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin: 0;
}
.batchh3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #033357;
}
.heading2 {
    margin-bottom: 3em;
    align-items: center;
}
.heading2 h3 {
    color: #033357;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin: 0;
}
.heading2left {
    position: relative;
    z-index: 0;
}
.heading2left:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 80px;
    top: 50%;
    right: -1px;
    transform: translate(0, -50%);
    background-color: #fdb414;
}
.heading2right h4 {
    margin: 0;
    padding-left: 1em;
    color: #032b69;
}
.heading2 .shadowtext {
    font-size: 4em;
    font-weight: 900;
    color: #f3f3f3;
    z-index: -1;
    text-transform: uppercase;
    line-height: 52px;
    width: 100%;
}
.heading-left {
    position: relative;
    margin-bottom: 2em;
    z-index: 0;
}
.heading-left .shadowtext {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-size: 5em;
    font-weight: 900;
    color: #f3f3f3;
    z-index: -1;
    text-transform: uppercase;
    line-height: 62px;
    width: 100%;
}
.heading-left h3 {
    color: #033357;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    position: relative;
    padding-left: 60px;
    display: inline-block;
    margin: 0;
}
.heading-left h3:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #033357;
    bottom: 5px;
    left: 0;
}
.socialmedia {
    display: flex;
    align-items: center;
}
.socialmedia li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
    color: #fff;
}
.socialmedia li:nth-child(1) a {
    background-color: #3b5999;
    box-shadow: 0 2px 5px #3b59999e;
}
.socialmedia li:nth-child(2) a {
    background-color: #55acee;
    box-shadow: 0 2px 5px #55acee9e;
}
.socialmedia li:nth-child(3) a {
    background-color: #e4405f;
    box-shadow: 0 2px 5px #e4405f9e;
}
.socialmedia li:nth-child(4) a {
    background-color: #0077B5;
    box-shadow: 0 2px 5px #0077B59e;
}
.socialmedia li:nth-child(5) a {
    background-color: #cd201f;
    box-shadow: 0 2px 5px #cd201f9e;
}
.socialmedia li a i:before {
    font-size: 16px;
}
button {
    background: none;
    border: none;
    outline: none !important;
}
.mainwrapper {
    padding: 6em 0 2em 0;
}
.mainwrapper .crt-widget-waterfall {
    z-index: 0;
}
/*end common css*/

/*loader*/
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: #fff;
    align-items: center;
    z-index: 9999;
}
.loader {
    width: 110px;
    height: 110px;
    background-color: #fff;
    box-shadow: 0 0 15px #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    border-radius: 50%;
    position: relative;
    z-index: 0;
}
.loader:before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border: 3px solid #033357;
    border-bottom: none;
    border-left: none;
    border-radius: 50%;
    z-index: -1;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
/*end loader*/

/*header*/
.mobilenav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffc7;
    z-index: 88888;
    display: none;
}
.mobilemenu {
    position: absolute;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background-color: #033357;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2em;
    overflow-x: hidden;
    transition: .5s;
}
.mobilemenu .navbar {
    flex-direction: column;
    margin: 1em 0;
}
.mobilemenu .logo {
    width: 90px;
}
.mobilemenu .navbar li a {
    padding: 14px 0;
}
.mobilemenu .navbar li a:before {
    display: none;
}
.mobilemenu .drophoverul {
    position: unset;
    width: unset;
    transform: unset;
    top: 0;
    opacity: 1;
    text-align: center;
}
.mobilemenu .drophoverul li a {
    background-color: #07357b;
}
.menuclose {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    transition: .3s;
}
.menuclose:hover {
    transform: rotate(90deg);
}
header {
    background-color: #fff;
    overflow: unset;
}
.topheader {
    padding: 5px 0;
}
.topheader .row {
    justify-content: space-between;
    align-items: center;
}
.topleft {
    font-size: 13px;
    font-weight: 600;
    padding: 5px 0;
}
.topleft span {
    background-color: #fdb414;
    padding: 1px 5px;
    border-radius: 4px;
}
.topright {
    padding: 0;
}
.topright .socialmedia {
    justify-content: flex-end;
}
.bottomheader .container {
    background-color: #ffffff;
    transition: .5s;
    padding: 0 2.5em;
    border-radius: 5px;
    margin-bottom: -40px;
    z-index: 1;
    position: relative;
}
.bottomheader .row {
    justify-content: space-between;
    align-items: center;
}
.logo img {
    width: 350px;
}
.navigation {
    display: flex;
    align-items: center;
}
.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}
.navbar li {
    margin: 0 12px;
}
.navbar li a {
    text-transform: uppercase;
    color: #000000 !important;
    font-weight: 600;
    font-size: 13px;
    padding: 2.2em 0;
    display: block;
    position: relative;
}
.navbar li a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #fdb414;
    transition: .5s;
}
.navbar li a:hover:before {
    width: 50px;
}
.store {
    margin-left: 1em;
}
.mybtn {
    background-color: #033357;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 2em;
    border-radius: 3px;
    transition: .5s;
}
.mybtn:hover {
    background-color: #fdb414;
    color: #000;
}
.mybtn2 {
    display: block;
    text-transform: uppercase;
    background-color: #fdb414;
    color: #000 !important;
    font-weight: bold;
    font-size: 14px;
    padding: 12px 3em;
    transition: .5s;
    border-radius: 5px;
}
.mybtn2:hover {
    color: #ffffff !important;
}
.drophoverli {
    position: relative;
}
.drophoverli a i:before {
    font-size: 6px;
}
.drophoverul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    height: 0;
    background-color: #033357;
    transform: translate(0, 20px);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.drophoverli:hover .drophoverul {
    height: auto;
    transform: translate(0, 0);
    overflow: hidden;
    opacity: 1;
}
.drophoverul li {
    margin: 0;
}
.drophoverul li a {
    margin: 0;
    padding: 10px 1em !important;
    border-top: 1px solid #032354;
    transition: .5s;
}
.drophoverul li a:hover {
    background-color: #022150 !important;
    color: #ffffff !important;
}
.drophoverul li a:before {
    display: none;
}
.fixedNavbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 9970;
}
.fixedNavbar.bottomheader .container {
    margin-bottom: 0 !important;
}
.fixedNavbar .drophoverul {
    background-color: #033357;
}
.bars {
    margin-top: 10px;
    display: none;
    cursor: pointer;
}
.bars i:before {
    font-size: 30px;
    color: #fdb414;
}
/*end header*/

/*banner*/
.videobanner {
    position: relative;
}
.videobanner video {
    width: 100%;
}
.playpausebtn {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 0);
}
.playpausebtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdb41482;
    z-index: -1;
    border-radius: 50%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
}
@-webkit-keyframes ripple {
    0% {-webkit-transform: scale(1); opacity: 0;}
    50% {-webkit-transform: scale(1.3); opacity: 1;}
    100% {-webkit-transform: scale(1.5); opacity: 0;}
}
@keyframes ripple {
    0% {transform: scale(1); opacity: 0;}
    50% {transform: scale(1.3); opacity: 1;}
    100% {transform: scale(1.5); opacity: 0;}
}
.playpausebtn i {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 50%;
    background-color: #fdb414;
    display: block;
}
.playpausebtn .flaticon-play{
    display: none;
}
.slider {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex !important;
    align-items: center;
}
.bg1 {
    background-image: url(../images/bg/bg1.html);
}
.bg2 {
    background-image: url(../images/bg/bg2.html);
}
.bg3 {
    background-image: url(../images/bg/bg3.html);
}
.slider.slick-active .banner h2 {
    animation: fadeInLeft 1s;
}
.slider.slick-active .banner .hashtags li:nth-child(1) {
    animation: fadeInLeft 1s both .8s;
}
.slider.slick-active .banner .hashtags li:nth-child(2) {
    animation: fadeInLeft 1s both .5s;
}
.slider.slick-active .banner .tested-icons li {
    animation: fadeInLeft 1s both 1.3s;
}
.bannerhead {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.3em;
}
.tested-icons {
    display: flex;
    align-items: center;
}
.tested-icons li a {
    display: block;
    width: 65px;
    height: 60px;
    text-align: center;
    margin: 0 1px;
    padding: 0;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tested-icons li a img {
    width: 50px;
    transition: .5s;
}
.tested-icons li a:hover img {
    animation: pulse .5s;
}
.tested-icons li a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%) skewX(-20deg);
    z-index: -1;
}
.hashtags {
    display: flex;
    align-items: center;
    margin: 2em 0;
}
.hashtags li a {
    display: block;
    padding: 6px 1em;
    position: relative;
    z-index: 0;
    margin: 0 1px;
    color: #fff;
    font-weight: 700;
    transition: .5s;
}
.hashtags li a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fdb414d4;
    z-index: -1;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) skewX(-20deg);
    transition: .5s;
}
.hashtags li a:hover {
    color: #000;
}
/*end banner*/

/*home about*/
.homeabout-section {
    padding: 4em 0 1em 0;
}
.homeabout-img img {
    border-radius: 50px;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px #ccc;
    margin-bottom: 5px;
}
.homeabout {
    padding: 1em 2em 0 2em;
    position: relative;
}
.homeabout h4 {
    background-color: #fff;
    box-shadow: 0 5px 25px #ececec;
    font-size: 18px;
    color: #033357;
    font-weight: 600;
    padding: 15px 1em;
    text-transform: uppercase;
    line-height: 25px;
    border-left: 4px solid #fdb414;
    margin: 1.3em 0;
}
.homeabout ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.homeabout ul li {
    width: 30%;
    background-color: #ffffff;
    /* background-image: linear-gradient(0deg, #b57c00 0%, #fdb414 100%); */
    box-shadow: 0 2px 18px #e4e4e4;
    margin: 10px 0;
    text-align: center;
    padding: 5px;
    color: #033357;
    border-radius: 10px;
}
.homeabout ul li i:before {
    font-size: 2.7em;
    line-height: 60px;
}
.homeabout ul li p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}
.homeabout .defbutton {
    display: inline-block;
}
/*end about*/

/*services*/
.services-section {

}
.services-section .row {
    align-items: center;
    padding-bottom: 1em;
}
.hashtaglink {
    display: inline-block;
    padding: 10px 1em;
    background-color: #fff;
    box-shadow: 0 2px 10px #ededed;
    border-left: 3px solid #fdb414;
    font-weight: 600;
    transition: .3s;
}
.hashtaglink:hover {
    color: #fdb414;
}
/*end of services*/

/*official partner*/
.logo-wrapper {
    justify-content: center;
}
.officialbox {
    background-color: #fff;
    padding: 8px 1em;
    box-shadow: 0 5px 20px #ececec;
    margin-bottom: 1.5em;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.officialbox:hover .officialoverlay {
    width: 100%;
}
.officialoverlay {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #033357d9;
    background-color: #fdb414eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: .5s;
}
.officialoverlay h5 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
    color: #000;
}
.officialoverlay i:before {
    font-size: 2em;
    color: #000;
}
/*end official partner*/

/*store*/
.storewrapper {
    background-color: #222;
}
.storeimg-wrapper {
    position: relative;
}
.storeimg {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
}
.storetext {
    padding: 3em 2em;
    color: #fff;
}
.storetext h2 {
    color: #fdb414;
    font-weight: 600;
    margin-bottom: 12px;
}
.storetext p {
    color: #fff;
}
.storetext a {
    display: inline-block;
    background-color: #fdb414;
    color: #222;
    font-weight: 700;
    padding: 10px 2em;
    border-radius: 3px;
    transition: .5s;
}
.storetext a:hover {
    background-color: #da9a0e;
}
/*end store*/

/*footer*/
footer {
    padding-top: 2em;
}
.footertop {
    background-color: #fff;
    box-shadow: 0 5px 10px #ececec;
    padding: 1em 0;
}
.footercontact {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerinfo {
    display: flex;
    align-items: center;
}
.footerinfo li a {
    display: flex;
    align-items: center;
    color: #033357;
    font-weight: 600;
    padding: 0 1.5em;
}
.footerinfo li:nth-child(1) a {
    border-right: 1px solid #032b69;
}
.footerinfo li a p {
    margin: 0;
}
.footerinfo li a i:before {
    margin-right: 10px;
    font-size: 16px;
    color: #fdb414;
}
.footercontact .socialmedia {
    padding: 0 1em;
}
.footercenter {
    padding: 2em 0 1em 0;
}
.footerdetail {
    margin-bottom: 2em;
}
.footerdetail p {
    font-size: 14px;
}
.footerdetail img {
    width: 90px;
    margin-bottom: 1em;
}
.testedimages ul {
    display: flex;
}
.testedimages ul li a img {
    width: 35px;
    margin-bottom: unset;
    margin: 0 5px;
}
.footerhead {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.footerdetail2 ul li a {
    font-size: 15px;
    color: #212529;
    margin: 10px 0;
    display: block;
    transition: .3s;
}
.footerdetail2 ul li a:hover {
    color: #fdb414;
}
.footerdetail2 ul li a i:before {
    font-size: 7px;
}
.footerdetail3 h4 {
    text-transform: uppercase;
}
.footerdetail3 ul li a {
    background-color: #fdb414;
    display: block;
    margin: 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    padding: 12px;
    border-radius: 3px;
    transition: .5s;
    box-shadow: 0 3px 12px #ececec;
}
.footerdetail3 ul li a:hover {
    background-color: #033357;
    color: #fff;
}
.footerbottom {
    background-color: #fff;
    padding: 1em;
}
.disclaimer {
    text-align: justify;
    text-align-last: center;
}
.disclaimer h6 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.disclaimer p {
    font-size: 10px;
}
.copyright {
    background-color: #f8f9fa;
    padding: 1em;
    text-align: center;
    box-shadow: 0 -4px 15px #e8e8e8ab;
    font-weight: 600;
    color: #033357;
}
/*end footer*/

/*about us*/
.abouttext {
    text-align: justify;
    text-align-last: center;
}
.abtheading {
    margin: 3em 0 !important;
}
.abtheading h3 {
    font-size: 25px;
}
.abtheading .shadowtext {
    font-size: 4em;
}
.abouttested {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}
.abouttested li a {
    width: 70px;
    height: 70px;
    padding: 10px;
    margin: 1em 5px;
    box-shadow: 0 5px 10px #dadada;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid #fdb414;
    transition: .5s;
}
.abouttested li a:hover {
    transform: scale(1.1);
}
/*end about*/

/*tetsted*/
.testedbox {
    padding: 4.5em 1em 1em 1em;
    box-shadow: 0 0px 20px #ececec;
    position: relative;
    background-color: #fff;
    margin: 2em 0;
}
.testedlogo {
    width: 100px;
    height: 100px;
    padding: 8px;
    position: absolute;
    bottom: 100%;
    left: 50px;
    transform: translate(0, 50%);
    background-color: #fff;
    border: 10px solid #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testedbox h4 {
    font-size: 20px;
    color: #033357;
    text-transform: uppercase;
    font-weight: 600;
}
.testedbox p {
    font-size: 14px;
}
.testedbox a {
    display: inline-block;
    border: 2px solid #fdb414;
    color: #fdb414;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 1em;
    position: relative;
    z-index: 0;
    transition: .5s;
}
.testedbox a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #fdb414;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .5s;
}
.testedbox a:hover {
    color: #000;
}
.testedbox a:hover:before {
    width: 100%;
}
.promobanner {
    margin-top: 2em;
}
.promobanner a {
    margin-top: 31px;
    display: block;
}
.promobanner a:nth-child(1) {
    margin-top: 0;
}
.promoslider {
    display: none;
}
.usefultestlogo {
    width: 170px;
}
.usefulpromo a {
    margin-top: 2em;
}
.testedtxtul {
    margin-bottom: 1em;
}
.testedtxtul li {
    font-size: 14px;
    font-weight: 600;
}
.usefulbtn {
    display: flex;
}
.usefulbtn li {
    margin-right: 1em;
}
/*end tested*/ 

/*usefulinfo*/
.usefultext {
    /* background-color: #fff; */
    padding: 1em;
    /* box-shadow: 0 0px 20px #ececec; */
}
.usefultext h3 {
    font-size: 30px;
    font-weight: 600;
    color: #033357;
}
.usefultext h4 {
    font-size: 20px;
    font-weight: 600;
    color: #033357;
}
.usefultext h5 {
    color: #033357;
    font-size: 17px;
    font-weight: 600;
}
.usefuldif img {
    float: left;
    width: 80px;
    margin: 0 10px 0 0;
}
.usefuldif h6 {
    color: #033357;
    font-weight: 700;
}
.usefuldif {
    padding-top: 1em;
}
/*end usefulinfo*/

/*products*/
.product-box {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}
.product-box:nth-child(3n) {
    border-right: unset;
}
.product-box:hover .producthover {
    left: 0;
    opacity: 1;
    z-index: 1;
}
.product-box .producthover {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 25px #e8e8e8;
    opacity: 0;
    transition: .4s;
    z-index: -1;
}
.product-box .producthover a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
/*end products*/

/*mysport*/
.mysport-wrapper {
    margin-top: 5em;
}
.mysportwrap ul {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mysportwrap ul li {
    margin-bottom: 0;
}
.mysportwrap ul li a {
    border: none !important;
    width: 78px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #fff;
    margin: 5px !important;
    border-radius: 50% !important;
    display: block;
    padding: 0;
    box-shadow: inset -2px -2px 5px #f3f3f3, 3px 3px 5px #ededed;
    color: #033357;
    position: relative;
    transition: .5s;
}
.mysportwrap ul li a.active,
.mysportwrap ul li a:hover {
    background-color: #fdb414 !important;
    color: #000 !important;
    box-shadow: inset -2px -2px 5px #ca8a00, 3px 3px 5px #ededed;
}
.mysportwrap ul li a:hover span {
    display: block;
}
.mysportwrap ul li a span {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    height: 23px;
    z-index: 5;
    line-height: 20px;
    font-size: 10px;
    background-color: black;
    padding: 1px 5px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    display: none;
}
.mysportwrap ul li a span:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 99%;
    left: 50%;
    transform: translate(-50%, 0);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #000;
}
.mysportwrap ul li a i:before {
    font-size: 35px;
}
.mysport-box {
    padding: 2em;
    text-align: center;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    transition: .5s;
}
.mysport-box:nth-child(3n) {
    border-right: unset;
}
.mysport-box:hover {
    box-shadow: 0 5px 20px #ececec;
    background-color: #fff;
}
.productlabel {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 35px;
    font-weight: 900;
    color: #efefef;
}
.mysportbox-detail a {
    font-size: 14px;
    font-weight: 700;
    padding: 9px 1.5em;
    background-color: #fdb414;
    color: #000;
    border-radius: 3px;
    box-shadow: inset -2px -2px 5px #d89c19, 0px 4px 10px #fdb41470;
    transition: .5s;
}
.mysportbox-detail a:hover {
    box-shadow: inset 2px 2px 5px #d89c19, 0px 4px 10px #fdb41470;
}
/*end mysport*/

/*media*/
.mediawrapper .container {
    padding: 2em 0;
}
div#curator-feed-default-layout {
    background-color: transparent;
}
.galcolumn .crt-post {
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px #d4d4d4;
}
.crt-post-footer {
    background-color: #fdb414;
}
.crt-load-more {
    background-color: #033357 !important;
    color: #fff !important;
    padding: 10px 2em !important;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    transition: .5s;
}
.crt-load-more:hover {
    background-color: #fdb414 !important;
    color: #000 !important;
}
.gallerybox {
    padding: 0 0 5px 5px;
    display: none;
}
.loadmore {
    text-align: center;
    margin: 1em auto;
}
.articlebox {
    display: none;
    padding: 5px;
}
.testimonial {
    
margin-bottom: 3em;
}
.testibox {
    background-color: #fff;
    padding: 4em 2em 1em  2em;
    border-radius: 10px;
    box-shadow: 0 5px 20px #ededed;
    border-bottom: 3px solid #fdb414;
    position: relative;
    margin: 3.5em 1em 1em 1em;
    z-index: 0;
    text-align: center;
}
.testiimg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fdb414;
}
.testibox i:before {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    z-index: -1;
    color: #f5f5f5;
}
.testibox h4 {
    color: #033357;
    font-weight: 600;
    font-size: 22px;
}
.testibox h4 span {
    font-size: 15px;
    color: #fdb414;
}
.testimonial .nextarrow {
    background-color: #033357;
    border: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    margin-left: 23px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    transition: .5s;
}
.testimonial .prevarrow {
    background-color: #fdb414;
    border: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    color: #000;
    font-weight: 600;
    margin-left: -23px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    transition: .5s;
}
.testimonial .nextarrow:hover {
    background-color: #fdb414;
    color: #000;
}
.testimonial .prevarrow:hover {
    background-color: #033357;
    color: #fff;
}
/*end media*/

/*news*/
.newswrapper {
    display: none;
}
.newsbox {
    padding: 0;
    background-color: #fff;
    border-bottom: 3px solid #fdb414;
    box-shadow: 0 5px 15px #d0d0d0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1.5em;
}
.newstext {
    padding: 1em;
}
.newstext h4 {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    padding: 10px 0;
    margin: 0;
}
.newstext p {
    font-size: 15px;
    color: #666;
}
.newsdate {
    margin: 0;
    color: #ababab !important;
    font-size: 15px !important;
}
.newssource {
    color: #ababab;
    font-size: 15px;
}
.newssource a {
    color: #fdb414;
    font-size: 14px;
    font-weight: 600;
    transition: .5s;
}
.newssource a:hover {
    color: #033357;
}
.newsbtn {
    display: block;
    margin-top: 1em;
    color: #033357;
    font-weight: 600;
    transition: .3s;
}
.newsbtn:hover {
    color: #fdb414;
}
.newsreadmore {
    text-align: center;
    padding-top: 1em;
}
.singlenews h4 {
    font-size: 20px;
}
.sidewidget {
    padding: 10px;
    background-color: #fff;
    border-bottom: 2px solid #fdb414;
    box-shadow: 0 2px 8px #d0d0d0;
    border-radius: 5px;
    margin-bottom: 8px;
}
.widgetlist {
    display: flex;
    align-items: flex-start;
}
.widgetlist img {
    width: 80px;
    margin-right: 10px;
}
.widgettext h4 {
    font-size: 14px;
    font-weight: 600;
}
.widgettext a {
    font-size: 14px;
    margin-top: 0;
}
/*end news*/

/*globaldro*/
.globaldro {
    text-align: center;
}
.globaldro img {
    width: 150px;
    margin-bottom: 1em;
}
.globaldro p span {
    padding: 1em 0;
    display: block;
    font-weight: 600;
    color: #033357;
    font-size: 18px;
}
.globaldro a {
    background-color: #033357;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 2em;
    margin-bottom: 1em;
    border-radius: 3px;
    transition: .5s;
}
.globaldro a:hover {
    background-color: #fdb414;
    color: #000;
}
/*end globaldro*/

/*contact*/
.contactinfo {
    background-color: #033357;
    padding: 2em;
    color: #fff;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 4px 10px #0333573d;
}
.contactinfo h5 i:before {
    font-size: 25px;
    color: #fdb414;
    margin-right: 5px;
}
.contactinfo h5 {
    color: #fdb414;
    font-weight: 600;
}
.contactinfo h5 span {
    font-size: 70%;
}
.contactinfo h6 {
    color: #fdb414;
    font-weight: 700;
}
.contactinfo p {
    margin: 0;
    color: #fdb414;
}
.contactul li a {
    background-color: #033357;
    display: block;
    padding: 15px 2em;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 4px 10px #0333573d;
    color: #fdb414;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.contactul li a i:before {
    font-size: 22px;
    color: #fdb414;
    font-weight: 100;
    margin-right: 10px;
}
.contactform {
    padding: 2em;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 10px #ececec;
}
.contactform img {
  max-width: 30%;
  height: auto;
  text-align: center;
}
.contactform form input, 
.contactform form textarea {
    border: none;
    border-bottom: 2px solid #fdb414;
}
.contactform form input:focus, 
.contactform form textarea:focus {
    border-color: #033357;
}
/*end contact*/

/*responsive*/
@media (max-width: 991px) {
    .navigation,
    .store,
    .topright {
        display: none;
    }
    .bars {
        display: block;
    }
    .bottomheader .container {
        padding: 8px 2.5em;
    }
    .mobilemenu .store {
        display: block;
    }
    .homeabout .heading-left {
        margin-top: 1em;
    }
    .heading2 .shadowtext {
        font-size: 3em;
    }
    .heading-left .shadowtext {
        font-size: 4em;
    }
    .storeimg {
        width: 125%;
    }
    .gmap_canvas iframe {
        height: 300px;
    }
    .topleft {
        text-align: center;
    }
    .promobanner {
        display: none;
    }
    .promoslider {
        display: block;
    }
    .promoslider a img {
        width: 50%;
        margin: 0 auto;
    }
    .product-box:nth-child(3n) {
        border-right: 1px solid #e8e8e8;
    }
    .product-box:nth-child(2n) {
        border-right: unset;
    }
    .mysport-box:nth-child(3n) {
        border-right: 1px solid #e8e8e8;
    }
    .mysport-box:nth-child(2n) {
        border-right: unset;
    }
    .footercontact {
        flex-direction: column;
    }
    .footercontact .socialmedia {
        display: flex;
        margin-top: 1em;
    }
    .abouttested li a {
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 767px) {
    .contactform {
        margin-top: 2em;
    }
    .logo {
        width: 70px;
    }
    .bottomheader .container {
        padding: 5px 2.5em;
    }
    .heading .shadowtext,
    .heading3 .shadowtext {
        font-size: 4em;
    }
    .serviceimg {
        text-align: center;
    }
    .services-section .row:nth-child(odd) {
        flex-direction: column-reverse;
    }
    .topleft {
        font-size: 10px;
    }
    .heading2 {
        text-align: center;
    }
    .heading2left {
        margin-bottom: 1em;
    }
    .heading2left:before {
        display: none;
    }
    .heading2right h4 {
        font-size: 18px;
    }
    .storeimg-wrapper {
        display: none;
    }
    .storetext h2 {
        font-size: 20px;
    }
    .storetext p {
        font-size: 14px;
    }
    .storetext a {
        padding: 8px 1em;
        font-size: 14px;
    }
    .footercontact {
        flex-direction: column;
    }
    .footerinfo li:nth-child(2) a {
        border-right: none;
    }
    .heading-left {
        margin-top: 1em;
    }
    .footerdetail2,
    .footerdetail3 {
        margin-bottom: 1em;
    }
}
@media (max-width: 575px) {
    .bottomheader .container {
        margin-bottom: 0;
        border-radius: 0;
    }
    .mobilemenu {
        width: 80%;
    }
    .footercenter {
        padding: 2em 1em 1em 1em;
    }
    .footerdetail2 {
        margin-bottom: 1em;
    }
    .footerinfo li a {
        padding: 0 .5em;
    }
    .playpausebtn i {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
    .playpausebtn i:before {
        font-size: 14px;
    }
    .mainwrapper {
        padding: 1em 0;
    }
    .abouttested li a {
        width: 40px;
        height: 40px;
        padding: 5px;
        margin: 1em 1px;
    }
    .promoslider a img {
        width: 100%;
    }
    .testedbox a {
        font-size: 11px;
    }
    .globaldro {
        padding: 0 2em;
    }
    .product-box {
        border-right: unset;
        text-align: center;
    }
}
@media (max-width: 425px) {
    .footerinfo li a p {
        font-size: 3.5vw;
    }
    .homeabout ul li i:before {
        font-size: 2em;
    }
    .homeabout ul li p {
        font-size: 10px;
    }
    .testedimages ul li a img {
        width: 40px;
    }
    .usefulbtn li {
        margin-right: 5px;
    }
    .testedbox a {
        padding: 5px;
        font-size: 10px;
    }
    .topleft {
        font-size: 8px;
    }
    .heading-left .shadowtext,
    .heading .shadowtext {
        font-size: 3em;
    }
    .homeabout h4 {
        font-size: 14px;
        padding: 12px 1em;
        line-height: 19px;
    }
    p {
        font-size: 14px;
    }
    .globaldro p span {
        font-size: 16px;
        text-align: center;
    }
    .globaldro p {
        text-align: justify;
        text-align-last: center;
    }
    .abouttested li a {
        width: 30px;
        height: 30px;
    }
} a {
    color: blue;
}


.promosliderImg img{
    width:100%;
}

.mainbanner .slick-prev {
    left: 15px;
}
.mainbanner .slick-next {
    right: 15px;
}
.mainbanner .slick-prev:before, .mainbanner .slick-next:before{
    font-size: 46px;
}
.mainbanner .slick-prev,  .mainbanner .slick-next{
    z-index:2;
    width:50px;
    height:50px;
}


.preloader{
  display:none !important;
}

.carousel-item{
    height: auto;
    width: 100%;
    
}



/*  */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }
  
  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      /* min-height: 450px; */
      height: 100vh;
    }
  
    #header-carousel .carousel-item img {
      /* position: absolute; */
      width: 100%;
      height: 100%;
      /* object-fit: cover; */
    }
    video {
      width: 100%;
      height: 100%;
    }
  }

  #header-carousel .carousel-item {
    position: relative;
    /* min-height: 450px; */
  }

  #header-carousel .carousel-item img {
    /* position: absolute; */
    width: 100%;
    height: 90vh;
    /* object-fit: cover; */
    margin-top: 2.5rem;
  }
  video {
    width: 100%;
    height: 90vh
  }
  
  .page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
  }
  
  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
  }
  
  .page-header .breadcrumb-item,
  .page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
  }
  

  