:root {
	--blue-color:#002637;
	--black-color: #222222;
	--yellow-color:#E99504;
	--white-color:#ffffff;
	--para-color:#797979;
}
body {
	  font-family: "DM Serif Display", serif;
	font-style: normal;
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 1.6;
	position: relative;
	color: var(--black-color);
	position: relative;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.img-fluid {
	max-width: 100%;
	height: auto;
	width: 100%;
}
.container {
	max-width: 1170px;
}
.row>* {
	padding-right: 15px;
	padding-left: 15px;
}
*,
*:before,
*:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a,
a:hover,
a:focus {
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "DM Serif Display", serif;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin: 0;
	padding: 0;
	word-break: break-word;
}
img {
	max-width: 100%;
}
input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
	outline: none !important;
	box-shadow: none;
}
ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
p {
	font-family: "DM Serif Display", serif;
	margin: 0px;
	padding: 0;
	word-break: break-word;
}
/* width */

::-webkit-scrollbar {
	width: 4px;
}
/* Track */

::-webkit-scrollbar-track {
	background: var(--blue-color);
}
/* Handle */

::-webkit-scrollbar-thumb {
	background: var(--white-color);
	width: 4px;
}

/*preloader css start*/
.tr-loader {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
}
.tr-loader img {
	width: 80px;
}
/*preloader css end*/
/* ============banner css start============= */
.tr-banner-wrapper{
	background-image: url(../images/banner-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 14px 40px 0;
}
.tr-banner-menu {
	position: relative;
    display: flex;
	align-items: center;
	justify-content: flex-end;
}
ul.tr-menu-ul {
    display: flex;
}
ul.tr-menu-ul > li {
	position: relative;
    padding: 9px 20px;
	transition: all 0.5s;
}
ul.tr-menu-ul > li:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background-color: transparent;
	transition: all 0.5s;
}
ul.tr-menu-ul > li:hover a{
	color: var(--yellow-color);
}
ul.tr-menu-ul > li:hover:after{
	background-color: var(--yellow-color);
}
ul.tr-menu-ul > li > a{
	font-size: 16px;
	font-weight: 400;
	color: var(--white-color);
	font-family: "DM Sans", sans-serif;
}
.tr-buy-now-btn > a {
    background-color: var(--yellow-color);
    width: 136px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin: 0 0 0 30px;
	text-transform: capitalize;
	color: var(--white-color);
	font-size: 16px;
	font-weight: 500;
	font-family: "DM Sans", sans-serif;
    transition: all 0.5s;
}
.tr-banner-inner {
    background-image: url(../images/banner-inner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius:30px 30px 0px 0px;
    background-size: cover;
	position: relative;
}
@keyframes floating {
    from {
        -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-5px) rotate(0deg);
        transform: rotate(0deg) translate(-5px) rotate(0deg);
        transition: 1s ease-in-out;
    }
    to {
        -webkit-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        transform: rotate(360deg) translate(-5px) rotate(-360deg);
        transition: 1s ease-in-out;
    }
}

.tr-topImg {
    position: relative;
}
img.tr-img6 {
    position: absolute;
    top: -270px;
    left: 150px;
	animation: 3.4s floating linear infinite;
}
img.tr-img7 {
    position: absolute;
    top: -279px;
    right: 50px;
	animation: 3.4s floating linear infinite;
}
img.tr-img1 {
    position: relative;
    top: -30px;
    animation: 3.4s floating linear infinite;
    padding: 0px 0px 0px 170px;
}
img.tr-img2 {
    position: relative;
    left: 80px;
}
img.tr-img3 {
    position: relative;
    top: 80px;
}
img.tr-img4 {
    position: relative;
    top: -30px;
    right: -100px;
	animation: 3.4s floating linear infinite;
}
img.tr-img5{
	position: relative;
	top: 5px;
}
.tr-banner-inner-content {
    text-align: center;
    padding: 115px 0 0px 0;
	margin: 15px 0 0 0;
}
.tr-banner-inner-content h2{
	font-size: 60px;
	font-weight: 400;
	color: var(--black-color);
	padding:0px 0px 25px 0px;
}
.tr-banner-inner-content p{
	font-size: 16px;
	font-weight: 400;
	color: var(--para-color);
	font-family: "DM Sans", sans-serif;
	max-width: 650px;
    margin: 0 auto;
}
/* toggle css */
.tr-toggle {
    position: absolute;
    right: 0px;
    display: none;
}
.tr-toggle-span span {
    display: block;
    width: 28px;
    height: 2px;
    margin-bottom: 4px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: var(--yellow-color);
}
.tr-toggle-span span:nth-child(2) {
    width: 17px;
}
.tr-back-overlay{
	position: fixed;
    background: rgb(0 0 0 / 21%);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    cursor: zoom-in;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
/*============== index sections ================*/
.tr-index-wrapper {
    padding: 107px 90px 50px;
	background-image: url(../images/index-bg.png);
	position: relative;
	z-index: 1;
	
}
.tr-homeindex-box {
    position: relative;
}
.tr-homeindex-box:after {
    content: '';
    position: absolute;
    left: -20px;
    bottom: 65px;
    background-image: url(../images/circle1.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: -1;
	animation: 4s horizontalinstall infinite alternate;
}

.tr-homeindex-box:before {
    content: '';
    position: absolute;
    right: 10px;
    top: -20px;
    background-image: url(../images/circle2.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
	animation: 4s mqinstallation infinite alternate;
}
@keyframes mqinstallation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
@keyframes horizontalinstall {
	0%{
		transform: translateX(0px);
	}	
	50%{
		transform: translateX(-20px);
	}
}

.tr-new {
    position: absolute;
    left: 5px;
    top: 5px;
    background-color: red;
    padding: 5px 15px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}
.tr-new p{
	animation: zoom-in-zoom-out 2s ease-out infinite;
}
@keyframes zoom-in-zoom-out{
	0%{
		transform: scale(1,1);
	}
	50%{
		transform: scale(1.1, 1.1);
	}
	100%{
		transform: scale(1, 1);
	}
}
.tr-index-heading {
    text-align: center;
    padding: 0 0 54px;
}

.tr-index-heading h2{
	font-size: 34px;
	font-weight: 400;
	color: var(--black-color);
	position: relative;
	z-index: 1;
	text-transform: uppercase;
}

.tr-index-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fef0d5;
    width: 220px;
	max-width: 100%;
    height: 14px;
	margin: 0 auto 0;
	z-index: -1;
}
.tr-index-heading.tr-index-color h2{
	padding: 0 0 0 8px;
}
.tr-index-heading.tr-index-color h2::after{
	width: 280px;
}
.tr-index-heading.tr-index-feature h2::after{
	width: 250px;
}
.tr-index-btn > a, .home-btn, .tr-hover-viewbtn a {
    font-size: 20px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    background-color: var(--yellow-color);
    color: var(--white-color);
    width: 254px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 50px;
    height: 45px;
    border-radius: 10px;
	text-transform: capitalize;
	position: relative;
	
    z-index: 11;
	transition: all 0.5s;
}
.tr-index-btn a::before, .tr-hover-viewbtn a::before{
    position: absolute;
    content: '';
    border-radius: 10px;
    transition: 500ms all ease;
    transform: translateY(-50%);
    left: auto;
    right: 0;
    top: 22px;
    opacity: 0;
    background-color: var(--black-color);
    z-index: -1;
    width: 0%;
    height: 100%;
}
.tr-index-btn a:hover:before, .tr-hover-viewbtn a:hover::before{
	left: 0;
	right: auto;
	width: 100%;
	opacity: 1;
}
.tr-buy-now-btn a:hover, .tr-footer-wrapper a:hover {
	background-color:  var(--white-color);
	color: var(--yellow-color);
}

.tr-homeindex-box img{
	transition: all .8s ease-in-out;
}
.tr-homeindex-img{
	position: relative;
}
.tr-hover-btn {
    position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
	transition: all .8s;
}
.tr-hover-overlayimg {
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    /* right: 40px; */
    right: 42px;
    filter: blur(6px);
    border-radius: 10px;
    background-size: contain;
    transition: all .5s ease-in-out;
}
.tr-hover-viewbtn{
	min-width: 160px;
	max-width: 100%;
	transition: all .8s ease-in-out;
	margin: 0 auto;
	border-radius: 5px;
	min-height: 45px;
	display: inline-block;
	transform: perspective(1px)translateZ(0);
	-webkit-transform: perspective(1px)translateZ(0);
	-o-transform: perspective(1px)translateZ(0);
}
.tr-hover-viewbtn a {
	width: 160px;
	background-color: var(--black-color);
	margin: 0 auto;
	height: 46px;
}
.tr-hover-viewbtn a::before{
	background-color: var(--yellow-color);
	top: 23px;
}
.tr-homeindex-box:hover .tr-hover-btn{
	visibility: visible;
	opacity: 1;
	transition: all .5s ease-in-out;
}
/*  */
.tr-responsive-wrapper{
	background-image: url(../images/res-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	padding: 100px 0 0;
	position: relative;
	overflow: hidden;
}
.tr-responsive-wrapper::before{
	position: absolute;
	content: url('../images/res-bg-left.png');
	bottom: -10px;
	left: 0;
}
.tr-responsive-wrapper::after{
	position: absolute;
	content: url('../images/res-bg-right.png');
	bottom: -18px;
	right: 0;
	animation: 3s installation01 infinite alternate;
}
@keyframes installation01 {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}
.tr-responsive-heading h2 {
	color: var(--white-color);
	position: relative;
	text-transform: capitalize;
	font-size: 34px;
	font-weight: 400;
	margin: 0 0 50px 0;
	z-index: 1;
}

.tr-responsive-heading h2:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 272px;
	margin: 0 auto;
	background-color: #514931;
	height: 14px;
	z-index: -1;
}
.tr-res-img {
    position: relative;
    top: 13px;
	left: 30px;
	z-index: 999;
}
/*============ feature css start =========*/
.tr-feature-wrapper {
    padding: 120px 0px 80px;
    background-image: url(../images/feature-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.tr-feature-wrapper .tr-index-heading {
    padding: 0 0 54px;
}
.tr-feature-box {
    position: relative;
    margin: 0 0 30px;
	text-align: center;
	background-repeat: no-repeat;
    border-radius: 10px;
    padding: 40px 20px;
	background-size: cover;
	transition: all .5s ease-in-out;
}
.tr-feature-box.b1{
	background-image: url(../images/feature1.jpg);
}
.tr-feature-box.b2{
	background-image: url(../images/feature2.jpg);
}
.tr-feature-box.b3{
	background-image: url(../images/feature3.jpg);
}
.tr-feature-content img{
	transition: all .5s ease-in-out;
}
.tr-feature-content h2 {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    padding: 20px 0 10px;
}
.tr-feature-content p{
	color: var(--white-color);
	font-size: 16px;
	font-weight: 400;
	font-family: "DM Sans", sans-serif;
}
.tr-feature-box:hover{
	transform: translateY(-10px);
}
.tr-feature-box:hover .tr-feature-content img {
    transform: scale(1.2);
}
/*=========== color version css start ============*/
.tr-color-version-wrapper {
    background-image: url(../images/color-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	padding: 46px 0 0px;
}

.tr-color-version-left .tr-index-heading {
    text-align: left;
    padding: 30px 0 30px;
}
.tr-color-version-left .tr-index-heading h2:after{
	margin: 0;
}
.tr-color-version-left p{
	font-size: 16px;
	font-weight: 400;
	color:#797979;
	font-family: "DM Sans", sans-serif;
}
.tr-color-version-left img{
	animation: 5s box linear infinite;;
}
@keyframes box {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
.tr-color-template{
	position: relative;
}
.tr-color-template > img{
	margin-left: 55px;
	animation: 3.5s rotate linear infinite;
}
.tr-color-version-left{
	padding-top: 19%;
}
.rt-color-tempbg img{
	position: absolute;
	left: 0;
	top: 13%;
	right: 0;
	margin: auto;
}
@keyframes rotate {
	from {
		-webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-o-transform: rotate(0deg) translate(-5px) rotate(0deg);
		transform: rotate(0deg) translate(-5px) rotate(0deg);
		transition: 1s ease-in-out;
	}
	to {
		-webkit-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-moz-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-ms-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-o-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		transform: rotate(360deg) translate(-5px) rotate(-360deg);
		transition: 1s ease-in-out;
	}
}
/* footer css start */
.tr-footer-wrapper{
	background-image: url(../images/footer-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 110px 0px;
	text-align: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.tr-footer-wrapper h3{
	color: var(--white-color);
	font-family: "DM Sans", sans-serif;
	font-size: 36px;
	font-weight: 400;
	padding: 18px 0 10px;
}
.tr-footer-wrapper h2{
	color: var(--white-color);
	font-family: "DM Sans", sans-serif;
	font-size: 50px;
	font-weight: 700;
}
.tr-footer-wrapper a{
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	font-weight: 500;
	max-width: 150px;
	height: 50px;
	border-radius: 5px;
	background-color: var(--yellow-color);
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 150px;
	margin: 25px auto 0;
	color: var(--white-color);
	text-transform: capitalize;
}
.tr_footer_box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
	position: relative;
	z-index: 1;
}
.tr-footer-wrapper::before{
	position: absolute;
	content: url('../images/footer-left.png');
	left: 0;
	bottom: -8px;
	animation: 10s down-up-two infinite;
}
.tr-footer-wrapper::after{
	position: absolute;
	content: url(../images//footer-right.png);
	right: 80px;
	bottom: -7px;
	animation: 7s floating linear infinite;
}
@keyframes moveLeftRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes down-up-two {
    0% {
        -webkit-transform: rotateX(0deg) translate(0px);
        transform: rotateX(0deg) translate(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translate(10px, -10px);
        transform: rotateX(0deg) translate(10px, -10px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translate(0px);
        transform: rotateX(0deg) translasste(0px);
    }
}
/*======== copywrite css start ========*/
.tr-copywrite-wrapper{
	background-color: #161616;
	padding: 15px 0px;
	text-align: center;
}
.tr-copywrite-wrapper p{
	font-size: 16px;
	font-weight: 400;
	color: var(--white-color);
	font-family: "DM Sans", sans-serif;
}