* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --webtri-primary: #ff8931;
    --webtri-white: #ffffff;
    --webtri-banner-opacity: 0%;
}
body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
}


/*----------------- Banner --------------------*/
.webtri-banner-wrapper {
    position: relative;
    background-color: var(--webtri-white);
    width: 100%;
    overflow: hidden;
    padding: 100px 0 70px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 90vh;
}
.webtri-banner-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--webtri-primary);
    opacity: .1;
}
.webtri-banner-wrapper .container, .webtri-banner-wrapper .container-fluid {
    position: relative;
    z-index: 1;
}
.webtri-banner-content h4 {
    display: inline-block;
    color: var(--webtri-primary);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin: 0 0 15px;
    position: relative;
}
.webtri-banner-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.4;
    text-transform: capitalize;
    color: #242424;
}
.webtri-banner-content p {
    margin: 0 0 10px;
    font-weight: 500;
    font-size: 18px;
}
.webtri-banner-content .webtri-btn {
    margin-top: 30px;
}
.webtri-banner-wrapper .row {
    align-items: center;
}
.webtri-banner-wrapper .row > div {
    margin-bottom: 30px;
}
.webtri-banner-image {
    position: relative;
}
.webtri-banner-image img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    position: relative;
}
/* BTN  */
.webtri-btn {
    display: inline-block;
    min-width: 170px;
    background: var(--webtri-primary);
    color: var(--webtri-white);
    text-transform: capitalize;
    outline: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    border: none;
    border-radius: 10px;
    max-width: max-content;
    line-height: normal;
    position: relative;
    text-decoration: none;
}
.webtri-btn:hover, .webtri-btn:focus {
    background: var(--webtri-primary);
    color: var(--webtri-white); 
    text-decoration: none;  
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    transform: translateY(-3px);
}
.webtri-btn,.webtri-btn:hover,.webtri-btn:focus {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/* Aligments  */
.webtri-banner-wrapper.text-left .webtri-banner-content {
    margin-right: auto;
}
.webtri-banner-wrapper.text-center .webtri-banner-content {
    margin: auto;
}
.webtri-banner-wrapper.text-right .webtri-banner-content {
    margin-left: auto;
}
/* Style 1 */
.banner1 {
    padding: 100px 0;
}
.banner1 .webtri-banner-image {
    padding: 10px;
}
.banner1.webtri-banner-wrapper:before {
    background: #000;
    opacity: 1;
}
.banner1.webtri-banner-wrapper:after {
    content: '';
    background-image: url(../images/front/banner/banner1.png);
    background-repeat: no-repeat;
    background-position: 100px center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    animation: zoom-in-zoom-out-less 8s ease-out infinite;
    left: 0;
}
.banner1 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    right: 0;
    background: var(--webtri-primary);
    height: 4px;
    border-radius: 10px;
}
@keyframes zoom-in-zoom-out-less {
    0% {
        transform: scale(.9, .9);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(.9, .9);
    }
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(.8, .8);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(.8, .8);
    }
}
.banner1 .row {
    flex-direction: row-reverse;
}
.banner1 .webtri-banner-content h2, .banner1 .webtri-banner-content p {
    color: var(--webtri-white);
}
.banner1 .webtri-banner-image img {
    height: 500px;
    max-width: 500px;
    border-radius: 50%;
    border: 8px solid #181818;
}
/* Style 2 */
.banner2 {
    background: url(../images/front/banner/banner-img2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner2.webtri-banner-wrapper:before {
    background: #000;
    opacity: .9;
}
.webtri-banner-wrapper.banner2 .webtri-banner-content {
    max-width: 720px;
}
.banner2 .webtri-banner-content h2 ,
.banner2 .webtri-banner-content p {
    color: var(--webtri-white);
}
.banner2 .webtri-banner-content h2 {
    font-size: 56px;
}
.banner2 .webtri-banner-content p {
    font-size: 20px;
}
.banner2 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(100% + 3px);
    right: 0;
    background: var(--webtri-primary);
    height: 2px;
    border-radius: 10px;
}
.banner2 .webtri-banner-content h4:after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 3px);
    right: 0;
    background: var(--webtri-primary);
    height: 2px;
    border-radius: 10px;
}
/* Style 3 */
.banner3 {

}
.banner3 {
    background: url(../images/front/banner/banner-img2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner3.webtri-banner-wrapper:before {
    background: #000;
}
.banner3 .container {
    max-width: 1740px;
}
.webtri-banner-wrapper.banner3 .webtri-banner-content {
    max-width: 540px;
    background: var(--webtri-white);
    padding: 40px 30px;
}
.webtri-banner-wrapper.banner3 .webtri-banner-content h4 {
    border-left: 3px solid;
    padding-left: 10px;
    font-weight: 700;
    line-height: 1.1;
}
.webtri-banner-wrapper.banner3 .webtri-banner-content h2 {
    line-height: 1.2;
    font-size: 36px;
}
.webtri-banner-wrapper.banner3 .webtri-banner-content .webtri-btn {
    margin-top: 10px;
}
/* Style 4 */
.banner4 {
    padding: 15px 0 0;
}
.banner4 .row > div {
    margin-bottom: 15px;
}
.banner4 .container {
    max-width: 100%;
}
.banner4 .container .webtri-banner-image {
    padding: 0;
}
.banner4 .webtri-banner-image img {
    max-height: 720px;
    min-height: auto;
}
.banner4  .webtri-banner-content {
    max-width: 640px;
}
.banner4 .webtri-banner-content h4 {
    color: var(--webtri-white);
    background: #000;
    padding: 15px 30px;
    margin: 0 0 15px;
    border-radius: 0px;
    position: relative;
}
.banner4 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    left: 10px;
    right: -10px;
    bottom: -10px;
    top: 10px;
    border: 4px solid #000;
}
.banner4 .webtri-banner-content p {
    padding: 0px 0px 0 10px;
    border-left: 3px solid;
    margin: 0;
}
/* Style 5 */
.banner5 {

}
.banner5 .webtri-banner-image {
    padding: 20px 0px 0px 20px;
}
.banner5 .webtri-banner-image:before {
    content: "";
    position: absolute;
    top: 0;
    width: 95%;
    border: 0;
    background: var(--webtri-primary);
    height: 95%;
    left: 0;
    margin: auto;
}
.banner5 .webtri-banner-image:after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 80px;
    border: 0;
    border: 3px solid var(--webtri-primary);
    height: 80px;
    right: -5px;
    border-left: 0;
    border-top: 0;
}
.banner5:before {
    background: #090b2e;
    opacity: 1;
}
.banner5 .webtri-banner-content h2 ,
.banner5 .webtri-banner-content p {
    color: var(--webtri-white);
}
.banner5 .webtri-banner-content h2 {
    font-size: 64px;
    line-height: 1.2;
}
/* Style 6 */
.banner6 {

}
.webtri-banner-wrapper.banner6 {
    padding-top: 120px;
}
.banner6:after {
    content: "";
    height: 40px;
    background-image: url(../images/front/banner/banner-shape-style6.png);
    background-position: bottom right;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: contain;
    background-repeat: repeat-x;
}
.banner6 .webtri-banner-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    bottom: -10px;
    right: 0;
    width: 90%;
    background: var(--webtri-primary);
    border: 0;
    border-radius: 10px;
    margin: auto;
    opacity: 1;
    height: auto;
}
.banner6 .webtri-banner-image img {
    max-width: 100%;
    border-radius: 20px;
}
.banner6 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    bottom: -10px;
    height: 2px;
    width: 80px;
    background: var(--webtri-primary);
}
.banner6 .webtri-banner-content h4:after {
    content: "";
    position: absolute;
    bottom: -13px;
    height: 8px;
    width: 8px;
    left: 0;
    background: var(--webtri-primary);
    border-radius: 50%;
}
/* Style 7 */
.banner7 {

}
.banner7.webtri-banner-wrapper:before {
    background: linear-gradient(120deg, var(--webtri-primary) 20.69%, transparent 79.69%);
    opacity: .3;
}
.banner7 img {
    position: relative;
    z-index: 1;
}
.banner7 .webtri-banner-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    width: 50%;
    height: 50%;
    border: 10px solid var(--webtri-primary);
    opacity: .1;
}
.banner7 .webtri-banner-image:after {
    content: "";
    position: absolute;
    left: 50px;
    bottom: 50px;
    width: 30%;
    height: 30%;
    border: 10px solid var(--webtri-primary);
    opacity: .1;
}
.banner7 .row {
    text-align: center;
}
.banner7 .webtri-banner-content h4 {
    font-style: italic;
    font-weight: 800;
    font-size: 20px;
}
.banner7 .webtri-banner-content h4 {
    font-weight: 800;
    font-size: 20px;
    background: var(--webtri-primary);
    color: var(--webtri-white);
    padding: 10px 20px;
    letter-spacing: 3px;
    border-radius: 15px 0 15px 0;
}
.banner7 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    bottom: -6px;
    height: 2px;
    width: 100px;
    left: 0;
    background: var(--webtri-primary);
}
.banner7 .webtri-banner-content h4:after {
    content: "";
    position: absolute;
    top: -6px;
    height: 2px;
    width: 100px;
    right: 0;
    background: var(--webtri-primary);
}
.banner7 .webtri-banner-content h2 {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(120deg, var(--webtri-primary) 20.69%, #222222 79.69%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner7 .webtri-banner-content p {
    font-size: 22px;
    max-width: 760px;
}
.banner7 {
    padding-bottom: 0;
}
.banner7:after {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(306deg, var(--webtri-primary) 20%, transparent 20%);
}
.banner7 .container {
    max-width: 1700px;
}
.banner7 .row > div {
    margin-bottom: 50px;
}
.banner7 .webtri-banner-content {
    text-align: left;
}
.banner7 .row { 
    flex-direction: row-reverse;
}
.banner7 {    
    text-align: right;
}
.banner7 img {    
    max-width: 500px;        
    border-radius: 20px;    
}
/* Style 8 */
.banner8 {
    background: url(../images/front/banner/banner-shape-style8.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    padding: 80px 0;
}
.banner8::before {
    background: transparent;
}
.banner8 .row {
    flex-direction: row-reverse;
}
.banner8 .container {
    max-width: 1540px;
}
.banner8 .webtri-banner-content h2 ,
.banner8 .webtri-banner-content p {
    color: var(--webtri-white);
}
.banner8 .webtri-banner-content h4 {
    padding: 0 15px;
}
.banner8 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 6px;
    width: 6px;
    left: 0;
    background: var(--webtri-primary);
    margin: auto;
    top: 0;
}
.banner8 .webtri-banner-content h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 6px;
    width: 6px;
    right: 0;
    background: var(--webtri-primary);
    margin: auto;
    top: 0;
}

.banner8 .webtri-banner-image {
    text-align: center;
    height: 600px;
    width: 600px;
    border-radius: 50%;
    border: 15px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.banner8 .webtri-banner-image img {
    height: 560px;
    width: 560px;
    border-radius: 50%;
    max-height: 560px;
    object-fit: cover;
}
.banner8 .webtri-banner-image:after {
    border: 3px dashed var(--webtri-primary);
    border-radius: 50%;
    background-color: rgb(42 42 42 / 0%);
    position: absolute;
    content: "";
    width: 101%;
    height: 101%;
    opacity: 1;
    -webkit-animation: linearrotation 9s linear infinite;
    -moz-animation: linearrotation 9s linear infinite;
    animation: linearrotation 9s linear infinite;
    animation-duration: 60s;
}
@-webkit-keyframes linearrotation {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes linearrotation {
    from {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(360deg);
    }
}
@keyframes linearrotation {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg);
    }
}
.banner8 .webtri-banner-content {
    max-width: 620px;
}

/* Style 9 */
.banner9 {
    padding: 100px 0 70px;
}
.banner9:after {
    content: "";
    background-image: url(../images/front/banner/banner9.png);
    background-position: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-size: contain;
    background-repeat: repeat;
}
.banner9 .row > div {
    margin: 0;
}
.banner9::before {
    opacity: 1;
    background: transparent;
}
.banner9 .webtri-banner-image img {
    -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    max-height: 500px;
}
.banner9 .webtri-banner-content h4 {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
}
.banner9 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--webtri-primary);
    opacity: .2;
    margin: auto;
}
.banner9 p {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 0px;
    box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px,rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
    border-left: 4px solid var(--webtri-primary);
}
.banner9 .webtri-btn {
    border-radius: 0;
}

/* Style 10 */
.banner10 {
    padding: 100px 0 200px;
}
.banner10::before {
    opacity: .2;
}
.banner10:after {
    content: "";
    background-image: url(../images/front/banner/banner10.png);
    background-position: bottom center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-size: cover;
    background-repeat: repeat;
}
.banner10 h2{
    color: var(--webtri-primary);
}
.banner10  .webtri-banner-content h4 {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--webtri-primary);
}
.banner10 .webtri-btn {
    margin-top: 20px;
    border-radius: 50px;
}
.banner10 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--webtri-primary);
    opacity: .05;
    border: 2px solid  var(--webtri-primary);
}
.banner10 .webtri-banner-image img {
    max-height: 500px;
    max-width: 100%;
    border-radius: 50%;
}
@-moz-keyframes morphing {
0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.2);
}
25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
}
50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    box-shadow: -10px -5px 50px rgba(0,0,0,0.2);
}
75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
}
}
@-webkit-keyframes morphing {
0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.2);
}
25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
}
50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    box-shadow: -10px -5px 50px rgba(0,0,0,0.2);
}
75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
}
}
@-o-keyframes morphing {
0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.2);
}
25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
}
50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    box-shadow: -10px -5px 50px rgba(0,0,0,0.2);
}
75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
}
}
@keyframes morphing {
0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.2);
}
25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
}
50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    box-shadow: -10px -5px 50px rgba(0,0,0,0.2);
}
75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
}
}
  
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.banner10 .container {
    max-width: 1700px;
}
.banner10 .webtri-banner-image {
    background-image: url(../images/front/banner/banner10shape.png);
    background-repeat: no-repeat;
    background-position: 38px 2px;
    background-size: contain;
}
.banner10 .webtri-banner-image {
    text-align: center;
    padding: 120px 0;
}
.banner10 .webtri-banner-image img {
    max-height: 480px;
    max-width: 480px;
    border-radius: 50%;
}
.banner10 .webtri-banner-content p {
    max-width: 700px;
}
.banner10 .webtri-banner-content h2{
    max-width: 700px;
    color: #000;
}
/* Style 11 */
.banner11 {
    background: #fdf8f4;
}
.banner11:after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 100%;
    top: -110px;
    right: -370px;
    opacity: 0.2;
    background: radial-gradient(ellipse at center, var(--webtri-primary) 0%, var(--webtri-primary) 0%, rgba(0,95,252, 0) 68%, rgba(0,95,252, 0) 100%);
    -webkit-background: radial-gradient(ellipse at center, var(--webtri-primary) 0%, var(--webtri-primary) 0%, rgba(0,95,252, 0) 68%, rgba(0,95,252, 0) 100%);
}
.banner11::before {
    opacity: 1;
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 100%;
    top: -110px;
    left: -370px;
    opacity: 0.2;
    background: radial-gradient(ellipse at center, var(--webtri-primary) 0%, var(--webtri-primary) 0%, rgba(0,95,252, 0) 68%, rgba(0,95,252, 0) 100%);
    -webkit-background: radial-gradient(ellipse at center, var(--webtri-primary) 0%, var(--webtri-primary) 0%, rgba(0,95,252, 0) 68%, rgba(0,95,252, 0) 100%);
}
.banner11 .webtri-banner-image {
    position: relative;
    padding: 20px 20px;
}
.banner11 .webtri-banner-image img {
    max-height: 400px;
    border-radius: 20px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}
.banner11 .webtri-banner-image:before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 5px;
    top: 0px;
    left: 0px;
    opacity: 0.9;
    background: var(--webtri-primary);
}
.banner11 .webtri-banner-image:after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 5px;
    bottom: 0px;
    right: 0px;
    opacity: 0.9;
    background: var(--webtri-primary);
}
.banner11 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    background: var(--webtri-primary);
    opacity: .1;
    width: 98%;
    margin: auto;
    height: 15px;
}


/* Style 12 */
.banner12 .row {
    flex-direction: row-reverse;
}
.banner12 .webtri-banner-image {
    padding: 10px;
}
.banner12 .webtri-banner-image img{
    border-radius: 100px 0;
}
.banner12 .webtri-banner-content h4 {
    padding: 10px 20px; 
    color: var(--webtri-white);
}
.banner12 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--webtri-primary);
    border: 2px solid var(--webtri-primary);
    z-index: -1;
}
.banner12 {
    padding: 0;
    min-height: initial;
}
.banner12 .container {
    max-width: 100%;
}
.banner12 .row > div { 
    margin: 0;
    padding: 0;
}
.banner12 .webtri-banner-content {
    background: var(--webtri-primary);
    padding: 50px 20px;
}
.banner12 .webtri-banner-content:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--webtri-primary);
    bottom: 0;
    left: 0;
}
.banner12 .webtri-banner-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.banner12 .webtri-banner-content > * {
    position: relative;
    z-index: 1;
}
.banner12 .row {
    align-items: unset;
}
.banner12 .webtri-banner-content::before{
    content: '';
    background-image: url(../images/front/banner/banner12shapes.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.15;
    z-index: 1;
}
.banner12 .webtri-banner-content .webtri-btn {
    background: var(--webtri-white);
    color: var(--webtri-primary);
}
.banner12 .webtri-banner-content h2, .banner12 .webtri-banner-content p {    
    max-width: 700px;
    color: var(--webtri-white);
}
.banner12 .webtri-banner-content h4 {    
    color: var(--webtri-primary);
    z-index: 1;
}
.banner12 .webtri-banner-content h4:before {
    background: var(--webtri-white);
    border: 2px solid var(--webtri-white);
    z-index: -1;
}
.banner12 .webtri-banner-image {
    padding: 0px;
}
.banner12 .webtri-banner-image img {
    border-radius: 0;
}
/* Style 13 */
.banner13 {    
    background-image: url(../images/front/banner/banner13-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;    
}
.banner13:after {
    content: '';
    background-image: url(../images/front/banner/banner13shape.png);
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.3;
}
.banner13:before{
    background: transparent;
}
.banner13 .row {    
    flex-direction: column-reverse;
    text-align: center;
}
.banner13 .webtri-banner-content h2 {
    position: relative;
    padding: 10px 22px;
    color: var(--webtri-white);
    font-size: 45px;
}
.banner13 .webtri-banner-content h2:before{
    content: '';    
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--webtri-primary);
    border: 2px solid var(--webtri-primary);
    z-index: -1;
    border-radius: 40px;
}
.banner13 .webtri-banner-content h4 {
    font-size: 22px;    
}
.banner13 .webtri-banner-image img {
    border-radius: 20px;
}
.banner13 .webtri-banner-content p {
    color:var(--webtri-white);
    font-size: 22px;
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.banner13 .webtri-banner-content h4::before, .banner13 .webtri-banner-content h4::after{
    content: '';
    width: 5px;
    height: 25px;
    background-color: var(--webtri-primary);
    position: absolute;
    top: 0;    
}
.banner13 .webtri-banner-content h4::before{
    left: -10px;
}
.banner13 .webtri-banner-content h4::after{
    right: -10px;
}
/* Style 14 */
.banner14 {
    padding-bottom: 150px;
    background-color: transparent;
}
.banner14:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/front/banner/banner14.png);
    background-repeat: no-repeat;
    background-position: top center;    
    transform: rotate(180deg);
    background-size: cover;
}
.banner14::before{
    background:transparent;
}
.banner14 .webtri-banner-image{
    background: var(--webtri-primary);
    border-radius: 250px 250px 10px 0px;
}
.banner14 .webtri-banner-image img {
    border-radius: 250px 250px 10px 0px;
}
.banner14 .webtri-banner-image::after {
    content: '';
    background-image: url(../images/front/banner/shap.svg);
    background-repeat: no-repeat;
    width: 200px;
    height: 150px;
    position: absolute;
    top: 0;
    left: -50px;
    z-index: -1;
}
.banner14 .webtri-banner-image::before {
    content: '';
    background-image: url(../images/front/banner/dot-b.svg);
    background-repeat: no-repeat;
    width: 254px;
    height: 254px;
    position: absolute;
    bottom: -50px;
    left: -50px;
    z-index: -1;
}
.banner14 .webtri-banner-content h2, .banner14 .webtri-banner-content p{
    color: var(--webtri-white);
}
.banner14 .webtri-banner-content h4{
    color: var(--webtri-white);
    padding: 10px 0 10px 15px;
    z-index: 1;
}
.banner14 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--webtri-primary);
    margin: auto;
    z-index: -1;
}
/* Style 15 */
.banner15 {
    margin-bottom: 30px;
}
.banner15::before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, var(--webtri-primary) 0%, rgba(210, 220, 251, 0) 100%);
    border-radius: 0px 0px 50px 50px;
    opacity: .18;
    left: auto;
}
.banner15 .webtri-banner-content h4 {
    padding: 15px 20px;
}
.banner15 .webtri-banner-image {
    background: transparent;
    padding: 0;
}
.banner15 .webtri-banner-image img {
    border-radius: 0;
}
.banner15 .container {
    max-width: 100%;
}
.banner15 .webtri-banner-content h4 {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    padding: 15px 40px;
    width: fit-content;
    text-align: center;
    border-radius: 10px;
    background: var(--webtri-primary);
    color: #ffffff;
    position: relative;
    
}
.banner15 .webtri-banner-content h4:before {
    content: "";
    position: absolute;
    top: 0;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: 10px 10px 0 0 var(--webtri-primary);
    opacity: .2;
}
.banner15 .webtri-banner-content h4:after {
    content: "";
    position: absolute;
    top: 0;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: 20px 20px 0 0 var(--webtri-primary);
    opacity: .1;
}
.banner15 .webtri-banner-image {
    text-align: center;
}
.banner15 .webtri-banner-image img {
    animation: updown 3s ease-out infinite;
    max-height: 800px;
    border-radius: 100px 100px;
    max-width: 680px;
}
@keyframes updown {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}
.banner15 .webtri-banner-content {
    max-width: 760px;
    margin: auto;
}


/*----------------------------------------------------------- CAll To Action Styling CTA --------------------------------------------------------------*/

.webtri-cta-wrapper {
    padding: 50px 0;
    background: #f2f2f3;
    position: relative;
}
.webtri-cta-wrapper .container {
    position: relative;
    z-index: 1;
}
.webtri-cta-box {
    max-width: 640px;
}
.text-left .webtri-cta-box {
    margin: 0 auto 0 0 ;
}
.text-center .webtri-cta-box {
    margin: auto;
}
.text-right .webtri-cta-box {
    margin: 0 0 0 auto;
}
.webtri-cta-wrapper h2 {
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
    position: relative;
    text-transform: capitalize;
}
.webtri-cta-wrapper p {
    font-size: 24px;
    margin: 0;
    font-weight: 400;
}
.webtri-cta-wrapper .webtri-btn {
    margin: 20px 0 0;
}
/* Style 1 */
.webtri-cta-style1 {
    padding: 47px 0 53px;
    background-image: linear-gradient(to right, #e9e9e9 1px, transparent 1px), linear-gradient(to bottom, #e9e9e9 1px, transparent 1px);
    background-size: 25px 25px;
}
.webtri-cta-style1 .webtri-cta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    justify-content: space-between;
}
.webtri-cta-style1 .webtri-cta-content {
    max-width: calc(100% - 170px);
    padding-right: 50px;
}
.webtri-cta-style1 .webtri-cta-content h2, .webtri-cta-style1 .webtri-cta-content p {
    max-width: 680px;
}
/* Style 2 */
.webtri-cta-style2 {
    background: url(../images/front/cta/02.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 120px 0;
}
.webtri-cta-style2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 0;
    background: #000;
    opacity: .8;
}
.webtri-cta-style2 h2 , .webtri-cta-style2 p {
    color: var(--webtri-white);
}
.webtri-cta-style2 .webtri-cta-box {
    max-width: 560px;
}
/* Style 3 */
.webtri-cta-style3 {
    background: #09090a;
    padding: 100px 0;
    text-align: center;
}
.webtri-cta-style3:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    background-image: url(../images/front/cta/03.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .06;
}
.webtri-cta-style3 h2 , .webtri-cta-style3 p {
    color: var(--webtri-white);
}
.webtri-cta-style3 .webtri-cta-box {
    max-width: 600px;
    margin: auto;
}
.webtri-cta-style3 h2 {
    margin: 0 0 20px;
    padding-bottom: 20px;
}
.webtri-cta-style3 h2:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--webtri-primary);
    width: 50%;
    margin: auto;
    border-radius: 30px;
}
/* Style 4 */

.webtri-cta-style4 {
    background: #09090a;
    padding: 100px 0;
    text-align: center;
}
.webtri-cta-style4:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: url(../images/front/cta/04.png);
    animation: snow 20s linear infinite;
    opacity: .6;
    content: "";
    background-size: 10%;
    background-repeat: repeat;
}
.webtri-cta-style4 h2 {
    text-transform: uppercase;
}
@keyframes snow {
    0% {
        background-position: 0 0,0 0,0 0
    }

    to {
        background-position: 500px 1000px,400px 400px,300px 300px
    }
}
.webtri-cta-style4 h2 , .webtri-cta-style4 p {
    color: var(--webtri-white);
}
.webtri-cta-style4 p {
    font-size: 24px;
    font-weight: 400;
}
.webtri-cta-style4 .webtri-cta-box {
    max-width: 920px;
    margin: auto;
}
/* Style 5 */
.webtri-cta-style5 {
    background: url(../images/front/cta/05.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
}
.webtri-cta-style5 .webtri-cta-box {
    max-width: 720px;
    margin: auto;
}
.webtri-cta-style5:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 0;
    background: #000;
    opacity: .8;
}
.webtri-cta-style5 h2 , .webtri-cta-style5 p {
    color: var(--webtri-white);
}
.webtri-cta-style5 h2 {
    font-size: 15px;
    color: var(--webtri-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 0 0 20px;
}
.webtri-cta-style5 p {
    font-size: 26px;
    line-height: 1.5;
    border: 2px solid rgb(255 255 255 / 30%);
    padding: 20px 20px;
    margin: 0 0 20px;
    border-radius: 10px;
    background: rgb(255 255 255 / 10%);
}
/* Style 6*/
.webtri-cta-style6 {
    background: var(--webtri-primary);
    padding: 100px 0;
    text-align: center;
}
.webtri-cta-style6:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    background-image: url(../images/front/cta/06.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .1;
    filter: invert(1);
}
.webtri-cta-style6 h2 , .webtri-cta-style6 p {
    color: var(--webtri-white);
}
.webtri-cta-style6 h2 {
    padding-top: 10px;
}
.webtri-cta-style6 h2:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: var(--webtri-white);
    width: 50%;
    margin: auto;
    border-radius: 30px;
}
.webtri-cta-style6 .webtri-btn {
    color: var(--webtri-primary);
    background: var(--webtri-white);
}
.webtri-cta-style6 .webtri-cta-box {
    max-width: 800px;
    margin: auto;
}

/* Style 7 */
.webtri-cta-style7 {
    background: url(../images/front/cta/07.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
}
.webtri-cta-style7:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 0;
    background: #000;
    opacity: .8;
}
.webtri-cta-style7 h2 {
    font-size: 28px;
}
.webtri-cta-style7 p {
    font-size: 20px;
}
.webtri-cta-style7 .webtri-cta-box {
    max-width: 680px;
    background: var(--webtri-white);
    border-left: 4px solid var(--webtri-primary);
    padding: 50px 50px;
}

/* Style 8 */
.webtri-cta-style8 {
    padding: 30px 0;
}
.webtri-cta-style8 .webtri-cta-box {
    max-width: 1170px;
    padding: 80px 50px;
    border-radius: 3px 50px 3px 50px;
    background: var(--webtri-primary);
    margin: auto;
}
.webtri-cta-style8 .webtri-cta-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .1;
    background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff  1px, transparent 1px);
    background-size: 50px;
}
.webtri-cta-style8 h2 , .webtri-cta-style8 p {
    color: var(--webtri-white);
}
.webtri-cta-style8 h2 {
    font-size: 62px;
}
.webtri-cta-style8 .webtri-btn {
    color: var(--webtri-primary);
    background: var(--webtri-white);
}
/* Style 9 */
.webtri-cta-style9 {
    padding: 120px 0;
    background: #ffffff;
}
.webtri-cta-style9:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .06;
    left: 0;
    background-image: linear-gradient(135deg, var(--webtri-primary) 25%, transparent 25%), linear-gradient(225deg, var(--webtri-primary) 25%, transparent 25%), linear-gradient(45deg, var(--webtri-primary) 25%, transparent 25%), linear-gradient(315deg, var(--webtri-primary) 25%, #e5e5f7 25%);
    background-position: 10px 0, 10px 0, 0 0, 0 0;
    background-size: 100px 100px;
    background-repeat: repeat;
}
.webtri-cta-style9:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .01;
    left: 0;
    background: var(--webtri-primary);
}
.webtri-cta-style9 h2 {
    color: var(--webtri-primary);
}
.webtri-cta-wrapper.webtri-cta-style9 {
    background: #ffffff;
}
/* Style 10 */
.webtri-cta-style10 {
    background: #040624;
    padding: 100px 0 130px 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
.webtri-cta-style10:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    background-image: url(../images/front/cta/10.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
}
.webtri-cta-style10 h2, .webtri-cta-style10 p {
    color: var(--webtri-white);
}
.webtri-cta-style10 h2 {
    padding-left: 30px;
}
.webtri-cta-style10 h2::before {
    content: '';
    width: 5px;
    height: 90%;
    background: var(--webtri-primary);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border-radius: 70px;
}
/* Style 11 */
.webtri-cta-style11 {
    background: var(--webtri-white);
    padding: 100px 10px;
}
.webtri-cta-style11:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    background-image: radial-gradient(var(--webtri-primary) 2px, transparent 2px), radial-gradient(var(--webtri-primary) 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: .08;
}
.webtri-cta-style11 h2 {
    font-size: 24px;
    background: var(--webtri-white);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 6%);
    padding: 20px 30px;
    border-left: 3px solid;
    margin: 0 0 20px;
    max-width: fit-content;
}
.webtri-cta-style11 .webtri-cta-box {
    max-width: 100%;
}
.webtri-cta-style11 p {
    font-weight: 600;
    font-size: 32px;
    max-width: 800px;
}
/* Style 12 */
.webtri-cta-style12 {
    padding: 150px 0;
    background: var(--webtri-white);
}
.webtri-cta-style12:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: -webkit-linear-gradient(350deg, #f9e8fa, #fdbd55, #f983ff, #62e2ef, #ffecde, #ff7113, #2ef462, #aee71c);
    background: -o-linear-gradient(350deg, #f9e8fa, #fdbd55, #f983ff, #62e2ef, #ffecde, #ff7113, #2ef462, #aee71c);
    background: linear-gradient(100deg, #f9e8fa, #fdbd55, #f983ff, #62e2ef, #ffecde, #ff7113, #2ef462, #aee71c);
    opacity: .11;
    background-size: 600% 600%;
    -webkit-animation: gradient 15s ease infinite alternate;
    animation: gradient 15s ease infinite alternate;
}
.webtri-cta-style12:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .06;
    background-size: 80px 80px;
    background-image: linear-gradient(to right, var(--webtri-primary) 1px, transparent 1px), linear-gradient(to bottom, var(--webtri-primary)  1px, transparent 1px);
}
.webtri-cta-style12 .webtri-cta-box {
    max-width: 100%;
    text-align: center;
}
@-webkit-keyframes gradient {
    0% {
      background-position: 0 0; }
    25% {
      background-position: 50% 0; }
    50% {
      background-position: 90% 0; }
    60% {
      background-position: 60%; }
    75% {
      background-position: 40%; }
    100% {
      background-position: 0 0; }
}
@keyframes gradient {
    0% {
      background-position: 0 0; }
    25% {
      background-position: 50% 0; }
    50% {
      background-position: 90% 0; }
    60% {
      background-position: 60%; }
    75% {
      background-position: 40%; }
    100% {
      background-position: 0 0; } 
}
/* Style 13 */

.webtri-cta-style13 {
   padding: 80px 0;
}
.webtri-cta-style13:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(45deg,#0000 calc(25%/3), var(--webtri-primary) 0 calc(50%/3),
      #0000 0 calc(250%/3), var(--webtri-primary) 0 calc(275%/3),
      #0000 0),linear-gradient( 45deg,var(--webtri-primary) calc(25%/3), #0000 0 calc(50%/3),
      var(--webtri-primary) 0 25%, #0000 0 75%,
      var(--webtri-primary) 0 calc(250%/3), #0000 0 calc(275%/3),
      var(--webtri-primary) 0),
      linear-gradient(-45deg,#0000 calc(25%/3), var(--webtri-primary) 0 calc(50%/3),
      #0000 0 calc(250%/3), var(--webtri-primary) 0 calc(275%/3),
      #0000 0),linear-gradient(-45deg,var(--webtri-primary) calc(25%/3), #0000 0 calc(50%/3),
      var(--webtri-primary) 0 25%, #0000 0 75%,
      var(--webtri-primary) 0 calc(250%/3), #0000 0 calc(275%/3),
      var(--webtri-primary) 0)
      #ffffff;
    background-size: 40px 40px;
    background-position: 0 0, 20px  20px;
    opacity: .06;
}
.webtri-cta-style13 .webtri-cta-box {
    margin-left: auto;
    text-align: right;
}
/* Style 14 */
.webtri-cta-style14 {
    padding: 100px 0;
}
.webtri-cta-style14:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    background-image: url(../images/front/cta/14.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.webtri-cta-style14 .webtri-cta-box {
    max-width: 740px;
}
/* Style 15  */
.webtri-cta-style15 {
    background: url(../images/front/cta/15.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0 100px;
}
.webtri-cta-style15 h2, .webtri-cta-style15 p {
    color: var(--webtri-white);
}
.webtri-cta-style15 .webtri-cta-box {
    max-width: 800px;
    text-align: center;
    margin: auto;
}



/* Global  */
body .mt-btn,
body input.search-submit,
body .wp-block-search__button,
body input[type="submit"],
body input[type="button"],
body .mt-widget .woocommerce-product-search button,
body .lp-profile-content button,
body .course-tabs button, 
body .mt-wh-banner-search #wdc-style button,
body .submit-dwqa-question .wp-core-ui .button-primary,
body #wdc-style .btn-info:active,
body .sln-btn button, #foodstore .fs-btn,
body .wfs-proceed-to-checkout, .review-actions .submit-review {
    background: var(--webtri-primary);
}


/*------------------------------------------ Contact Section Styles  ------------------------------------------*/
body .webtri-forms .input-wrap {
    margin: 0 0 20px;
}
/* Style 2 */
.webtri-forms.style2 {

}
body .webtri-forms.style2 .input-wrap {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 5px;
}
body .webtri-forms.style2 .input-wrap label {
    margin: 0 0 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
body .webtri-forms.style2 .input-wrap input, body .webtri-forms.style2 .input-wrap textarea {
    border-radius: 4px;
}
.webtri-forms.style2 .webtri-submit-btn .webtri-btn {
    border-radius: 5px;
}

/* Style 3 */
.webtri-forms.style3 .input-wrap input, .webtri-forms.style3 .input-wrap textarea {
    border-radius: 0;
    border: 0;
    background: #f5f5f5;
    min-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    border-left: 2px solid #e1dddd;
}
body .style3.webtri-forms .input-wrap label {
    font-size: 16px;
    margin: 0 0 10px;
}
.webtri-forms.style3 .webtri-submit-btn .webtri-btn {
    border-radius: 0px;
}
/* Style 4 */
.webtri-forms.style4 .input-wrap input, .webtri-forms.style4 .input-wrap textarea {
    border-radius: 0;
}
body .webtri-forms.style4 .input-wrap label {
    margin: 0 ;
    font-size: 14px;
}
.webtri-forms.style4 .webtri-submit-btn .webtri-btn {
    border-radius: 0px;
}
.webtri-forms.style4 .input-wrap input, .webtri-forms.style4 .input-wrap textarea {
    box-shadow: 5px 5px 0 0 #f3f3f3;
}
.webtri-forms.style4 .input-wrap input:focus, .webtri-forms.style4 .input-wrap textarea:focus {
    box-shadow: 5px 5px 0 0 var(--webtri-primary);
}
/* Style 5 */
.webtri-forms.style5 .input-wrap input, .webtri-forms.style5 .input-wrap textarea {
    border-radius: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom-width: 2px;
    padding: 0;
}
.webtri-forms.style5 .input-wrap input:focus, .webtri-forms.style5 .input-wrap textarea:focus {
    border-bottom-color: var(--webtri-primary);
}
body .webtri-forms.style5 .input-wrap label {
    margin: 0 ;
    font-size: 14px;
}
.webtri-forms.style5 .webtri-submit-btn .webtri-btn {
    border-radius: 0px;
}
/* Style 6 */
.webtri-forms.style6 .input-wrap input, .webtri-forms.style6 .input-wrap textarea {
    border-radius: 0;
    background: #f7f7f9;
    border: 0;
    min-height: 60px;
    padding: 16px 15px 0;
    font-size: 14px;
}
.webtri-forms.style6 .input-wrap input:focus, .webtri-forms.style6 .input-wrap textarea:focus {
    border-color: var(--webtri-primary);
}
body .webtri-forms.style6 .input-wrap label {
    margin: 00 0 0 15px;
    font-size: 14px;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
}
.webtri-forms.style6 .input-wrap input:focus, .webtri-forms.style6 .input-wrap textarea:focus {
    background: #edebeb;
}
.webtri-forms.style6 .webtri-submit-btn .webtri-btn {
    border-radius: 0px;
}
/* Style 7 */
.webtri-forms.style7 .input-wrap input, .webtri-forms.style7 .input-wrap textarea {
    border-radius: 0;
    background: #f7f7f9;
    border: 0;
    min-height: 60px;
}
.webtri-forms.style7 .webtri-submit-btn .webtri-btn {
    border-radius: 0px;
}
/* Style 8 */
.webtri-forms.style8 .input-wrap input, .webtri-forms.style8 .input-wrap textarea {
    border-radius: 0;
    background: #f7f7f9;
    border: 0;
    min-height: 60px;
}
.webtri-forms.style8 .webtri-submit-btn .webtri-btn {
    border-radius: 0px;
}
body .webtri-forms.style8 .input-wrap label {
    margin: 0 0 5px;
    font-size: 14px;
}
/* Style 9 */
.webtri-forms.style9 .input-wrap input, .webtri-forms.style9 .input-wrap textarea {
    background: #f7f7f9;
    border: 0;
    min-height: 60px;
    padding: 8px 30px;
    box-shadow: 1px 5px 0 #eeeef5;
}
.webtri-forms.style9 .input-wrap input:focus, .webtri-forms.style9 .input-wrap textarea:focus {
    box-shadow: 1px 5px 0 var(--webtri-primary);
}
.webtri-forms.style9 .webtri-submit-btn .webtri-btn {
}
.webtri-forms.style9 .input-wrap textarea {
    border-radius: 20px;
    padding: 20px 20px;
}
body .webtri-forms.style9 .input-wrap label {
    margin: 0 0 5px;
    font-size: 14px;
}
/* Style 10 */
.webtri-forms.style10 .input-wrap input, .webtri-forms.style10 .input-wrap textarea {
    background: #f7f7f7;
    border: 0;
    min-height: 60px;
    padding: 8px 30px;
    border-radius: 6px;
    box-shadow: -6px 5px 0 #f1f0f0;
}
.webtri-forms.style10 .input-wrap input:focus, .webtri-forms.style10 .input-wrap textarea:focus {
    box-shadow: -6px 5px 0 #dbd9d9;
}
.webtri-forms.style10 .webtri-submit-btn .webtri-btn {
    border-radius: 6px;
}
.webtri-forms.style10 .input-wrap textarea {
    border-radius: 6px;
    padding: 20px 20px;
}
body .webtri-forms.style10 .input-wrap label {
    margin: 0 0 5px;
    font-size: 14px;
}
/* Style 11 */
.webtri-forms.style11 .input-wrap input, .webtri-forms.style11 .input-wrap textarea {
    padding: 8px 30px;
    border-radius: 6px;
    box-shadow: inset 5px 0 0 #f1f0f0, inset -5px 0 0 #f1f0f0;
}
.webtri-forms.style11 .input-wrap input:focus, .webtri-forms.style11 .input-wrap textarea:focus {
    box-shadow: inset 5px 0 0 #dbd9d9, inset -5px 0 0 #dbd9d9;
}
.webtri-forms.style11 .webtri-submit-btn .webtri-btn {
    border-radius: 6px;
}
body .webtri-forms.style11 .input-wrap label {
    margin: 0 0 5px;
    font-size: 14px;
}
/* Style 12 */
.webtri-forms.style12 .input-wrap input, .webtri-forms.style12 .input-wrap textarea {
    padding: 8px 30px;
    border-radius: 6px;
}
.webtri-forms.style12 .input-wrap input:focus, .webtri-forms.style12 .input-wrap textarea:focus {
    border-color: var(--webtri-primary);
}
.webtri-forms.style12 .webtri-submit-btn .webtri-btn {
    border-radius: 6px;
}
body .webtri-forms.style12 .input-wrap label {
    margin: 0 0 5px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Style 13 */
.webtri-forms.style13 .input-wrap input, .webtri-forms.style13 .input-wrap textarea {
    padding: 8px 30px;
    border-radius: 6px;
}
.webtri-forms.style13 .input-wrap input:focus, .webtri-forms.style13 .input-wrap textarea:focus {
    border-color: var(--webtri-primary);
}
.webtri-forms.style13 .webtri-submit-btn .webtri-btn {
    border-radius: 6px;
}
body .webtri-forms.style13 .input-wrap label {
    margin: 0 0 5px;
    font-size: 14px;
}
/* Style 14 */
.webtri-forms.style14 .input-wrap input, .webtri-forms.style14 .input-wrap textarea {
    padding: 8px 30px;
}
.webtri-forms.style14 .input-wrap input:focus, .webtri-forms.style14 .input-wrap textarea:focus {
    border-color: var(--webtri-primary);
}
.webtri-forms.style14 .webtri-submit-btn .webtri-btn {
}
body .webtri-forms.style14 .input-wrap label {
    margin: 0 0 5px;
    font-size: 14px;
}
/* Style 15 */
.webtri-forms.style15 .input-wrap input, .webtri-forms.style15 .input-wrap textarea {
    border-radius: 8px;
    padding: 8px 30px;
}
.webtri-forms.style15 .input-wrap input:focus, .webtri-forms.style15 .input-wrap textarea:focus {
    border-color: var(--webtri-primary);
}
.webtri-forms.style15 .webtri-submit-btn .webtri-btn {
    border-radius: 8px;
}
body .webtri-forms.style15 .input-wrap label {
    margin: 0;
    font-size: 14px;
    min-width: 100px;
}
body .webtri-forms.style15 .input-wrap p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
}
body .webtri-forms.style15 .input-wrap p .wpcf7-form-control-wrap {
    width: calc(100% - 120px);
}

/* Fixes */
.mt-testibox-img:after {
    height: 106px;
}
.mt-rs-testi-box {
    align-items: center;
}
.mt-job-serv-box {
    padding: 20px;
}
.mt-job-ser-icon img {
    max-height: 150px;
    width: 100%;
    object-fit: cover;
    min-height: 150px;
}
.mt-blog-title-two,
.mt-blog-title,
.mt-blog-two-title,
.mt-lb-feat-title,
.mt-nm-blog-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mt-copyright {
    background: #131416;
}
/* Footer */
body a:hover {
    color: var(--webtri-primary);
}
.mt-foot-contact {
    color: var(--webtri-primary);
}
.mt-social-icons.mt-social-height li a i {
    color: var(--webtri-primary);
    border-color: var(--webtri-primary);
}
/* Corrections */
.mt-job-ser-icon img {
    margin: 0 0 20px;
}
body .mt-job-search-title {
    margin-top: 0;
}
.mt-blog-title-two, .mt-blog-title, .mt-blog-two-title, .mt-lb-feat-title, .mt-nm-blog-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




/* ============== Responsive css start ============= */
@media(min-width:1820px){
    .banner15 .container {
        max-width: 1820px;
    }
}
@media(max-width:1650px){
    .banner10 .webtri-banner-image {             
        background-position: center;
    }
}
@media(max-width:1550px){
    .banner1.webtri-banner-wrapper:after {
        opacity: 0.2;
    }
}
@media(max-width:1500px){  
    .banner10 .webtri-banner-image img {
        max-height: 350px;
        max-width: 350px;     
    }
    .banner10 .webtri-banner-image::before {
        background-size: contain;
        top: 10px;
        left: 80px;
        width: 550px;
        height: 550px;
    }
}
@media(max-width:1250px){
    .banner8 .webtri-banner-image {        
        height: 540px;
        width: 540px;
        border:10px solid;
    }
    .banner8 .webtri-banner-image img {
        height: 500px;
        width: 500px;
    }
}
@media(max-width:1199px){
    .banner14 .webtri-banner-image::after {
        left: 0;
    }
    .banner14 .webtri-banner-image::before {
        bottom: -20px;
        left: -20px;
    }
    .banner14 {
        padding-bottom: 80px;
    }
    .banner1 .webtri-banner-image img {
        height: 400px;
        max-width: 400px; 
    }
    body .webtri-cta-wrapper h2 {
        font-size: 36px;
    }
    body .webtri-cta-wrapper p {
        font-size: 18px;
    }
}
@media(max-width:1130px){
    .banner8 .webtri-banner-image {
        height: 450px;
        width: 450px; 
    }
    .banner8 .webtri-banner-image img {
        height: 430px;
        width: 430px;
    }
}
@media(max-width:991px){
    .banner8 .webtri-banner-image {     
        margin: auto;
    }
    .banner8 .webtri-banner-content {     
        margin: auto;
        text-align: center;
    }
    .banner9 .webtri-banner-content {
        margin-top: 30px;
    }
    .banner14 .webtri-banner-image {     
        border-radius: 320px 320px 10px 0px;
    }
    .banner14 .webtri-banner-image img {
        border-radius: 320px 320px 10px 0px;
    }
    .banner14 .webtri-banner-content {
        margin-top: 30px;
    }
    .banner1 .webtri-banner-image {     
        text-align: center;
    }
    .banner1 .webtri-banner-content {
        text-align: center;
    }
    .banner7 .row {
        flex-direction: column-reverse;
    }
    .banner7 .webtri-banner-content {     
        margin-bottom: 30px;
    }
    .banner8 {
        padding: 50px 0 30px;
    }
    .banner15 .row{
        flex-direction: column-reverse;
    }
}
@media(max-width:767px){
    .webtri-banner-content h2, .banner2 .webtri-banner-content h2, .webtri-banner-wrapper.banner3 .webtri-banner-content h2, .banner5 .webtri-banner-content h2, .banner7 .webtri-banner-content h2, .banner13 .webtri-banner-content h2 {
        font-size: 30px;
    }
    .banner2 .webtri-banner-content p, .banner7 .webtri-banner-content p, .banner13 .webtri-banner-content p {
        font-size: 18px;
    }
}
@media(max-width:575px){
    .banner10 .webtri-banner-image img {
        max-height: 300px;
        max-width: 300px;
    }
    body .webtri-cta-wrapper h2 {
        font-size: 32px;
    }
    body .webtri-cta-wrapper p {
        font-size: 16px;
    }
    .webtri-cta-style1 .webtri-cta-content {
        max-width: 100%;
        padding-right: 0;
    }
}
@media(max-width:480px){
    .banner8 .webtri-banner-image {
        height: 350px;
        width: 350px;
    }
    .banner8 .webtri-banner-image img {
        height: 330px;
        width: 330px;
    }
    .banner1 .webtri-banner-image img {
        height: 300px;
        max-width: 300px;
    }
    .banner7:after{
        display: none;
    }
}
@media(max-width:425px){
    .banner10 .webtri-banner-image img {
        max-height: 250px;
        max-width: 250px;
    }
    .banner10 .webtri-banner-image {     
        padding: 60px 0;
    }
}
@media(max-width:375px){
    .banner8 .webtri-banner-image {
        height: 300px;
        width: 300px;
    }
    .banner8 .webtri-banner-image img {
        height: 280px;
        width: 280px;
    }
    .banner9 .webtri-banner-content h4 {        
        font-size: 15px;
    }
    .banner13 .webtri-banner-content h4 {
        font-size: 18px;
    }
    .banner1 .webtri-banner-image img {
        height: 250px;
        max-width: 250px;
        border: 5px solid #ebe6e6;
    }
    .banner10 .webtri-banner-image img {
        max-height: 200px;
        max-width: 200px;
    }
}