@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

:root {
	--primary-color:   #145857;
	--secondary-color: #FBA523;
}
@keyframes change-color-anim {
	0%,100%{
		background: red;
	}
	50%{
		background: #FBA523;
	}
}
[class^="box-"] {
	display: none;
}

[class^="box-"].showfirst {
	display: block;
}

html,
body {
	height: 100%;
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	display:     block;
	font-weight: 700;
	line-height: 1.12;
}

p {
	display: block;
}

*:hover,
*:focus,
* {
	outline: none !important;
}

img {
	max-width: 100%;
	height:    auto;
}

a,
input[type="submit"] {
	-webkit-transition: all 0.4s ease-In-out;
	-moz-transition:    all 0.4s ease-In-out;
	-o-transition:      all 0.4s ease-In-out;
	transition:         all 0.4s ease-In-out;
	display:            inline-block;
	cursor:             pointer;
}

p,
a {
	font-size:       15px;
	color:           #111111;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.slick-dots {
	display:  block;
	position: absolute;
	bottom:   -70px;
}

.slick-dots > li {
	display: inline-block;
	margin:  0 5px;
}

.slick-dots > li button {
	padding:          0;
	font-size:        0;
	width:            10px;
	height:           10px;
	background-color: #c7243b;
	border-radius:    25px;
	cursor:           pointer;
}

.slick-arrow {
	font-size: 0;
	cursor:    pointer;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}

textarea,
select,
input[type],
textarea,
select,
button {
	background:    transparent;
	border:        none;
	border-radius: 0px;
}

::-webkit-input-placeholder {
	color: #3B3B3B;
}

::-moz-placeholder {
	color: #3B3B3B;
}

:-ms-input-placeholder {
	color: #3B3B3B;
}

:-moz-placeholder {
	color: #3B3B3B;
}

/* Custom Radio Button */
.customradio {
	display:             inline-block;
	position:            relative;
	padding-left:        25px;
	margin-bottom:       0px;
	cursor:              pointer;
	font-size:           15px;
	-webkit-user-select: none;
	-moz-user-select:    none;
	-ms-user-select:     none;
	user-select:         none;
	vertical-align:      middle;
	font-weight:         400;
	color:               #FFFFFF;
}
  .girl__image{
    width: 45%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* left: 100%; */
    height: 83%;
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
  }
.customradio input {
	position: absolute;
	opacity:  0;
	cursor:   pointer;
}

.checkmark {
	position:         absolute;
	top:              4px;
	left:             0;
	height:           11px;
	width:            11px;
	border-radius:    3px;
	background-color: #E0E0E0;
}

.customradio input:checked ~ .checkmark {
	background: #FF6101;
}

/* Hamburger Menu */
.hamburger {
	width:    30px;
	height:   20px;
	cursor:   pointer;
	position: absolute;
	right:    15px;
	top:      0px;
	bottom:   0px;
	margin:   auto;
	z-index:  8;
	display:  none;
}

.hamburger span {
	display:       block;
	height:        4px;
	width:         100%;
	background:    #F94452;
	position:      absolute;
	transition:    0.6s all;
	border-radius: 100px;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top:              8px;
	transform-origin: left;
}

.hamburger span:nth-child(3) {
	top: 16px;
}

.hamburger.active span:nth-child(1) {
	transform:        rotate(45deg);
	top:              12px;
	transform-origin: right-center;
}

.hamburger.active span:nth-child(2) {
	width:   0;
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform:        rotate(-45deg);
	top:              12px;
	transform-origin: right-center;
}

/* Global Css */
.ovrer-hidden {
	overflow: hidden;
}

.overlay::after {
	content:    "";
	position:   fixed;
	width:      100%;
	height:     100%;
	left:       0;
	top:        0;
	background: rgb(3 19 43 / 90%);
	z-index:    4;
}

.overlay {
	display: none;
}

/* Dropdown CSS*/
ul.dropdown {
	position:      absolute;
	width:         200px;
	left:          -47px;
	margin:        auto;
	background:    #FFFFFF;
	padding:       20px 15px 10px;
	text-align:    left;
	border-radius: 5px;
	box-shadow:    0 0 10px 3px #00000014;
	opacity:       0;
	animation:     btotreverse 0.5s forwards;
}

ul.dropdown li a:before {
	display: none;
}

@keyframes btotreverse {
	0% {
		top:     75px;
		opacity: 1;
	}
	
	100% {
		top:     115px;
		opacity: 0;
	}
}

.dropdown-nav:hover ul.dropdown {
	animation: btot 0.5s forwards;
	z-index:   9;
}

@keyframes btot {
	0% {
		top:     115px;
		opacity: 0;
	}
	
	100% {
		top:     24px;
		opacity: 1;
	}
}

ul.dropdown li {
	width:          100%;
	display:        inline-block;
	vertical-align: middle;
}

ul.dropdown li a {
	padding:        0;
	font-size:      13px;
	text-transform: capitalize;
	color:          #000000 !important;
	display:        block;
	width:          100%;
	margin:         0px 0 10px;
	text-align:     center;
	font-weight:    500;
}

ul.dropdown li a:hover {
	color: rgba(0, 0, 0, 0.5) !important;
}

.dropdown-nav {
	position:       relative;
	overflow:       hidden;
	vertical-align: middle;
}

.dropdown-nav:hover {
	overflow: visible;
}

.mainSlider .slick-arrow {
	font-size:   2rem;
	border:      0;
	text-indent: 0;
	color:       var(--white);
}

.mainSlider .slick-arrow:before {
	content: none;
}

.mainSlider .slick-prev {
	left: 3rem;
}

.mainSlider .slick-next {
	right: 3rem;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

header .navbar img {
	width: 200px;
}

.mainSlider .slick-dots {
	bottom: 20px;
}

/* General CSS  */
.element {
	position: absolute;
}

.element-1 {
	bottom: 0;
	left:   15%;
}

ul {
	padding-left:  0;
	margin-bottom: 0;
	font-size:     0;
}

ul li {
	list-style: none;
	font-size:  15px;
}

ul.inline-block > li {
	display:      inline-block;
	margin-right: 10px;
}

ul.inline-block > li:last-child {
	margin-right: 10px;
}

.color-primary {
  color: #cc213f;
}

.color-secondary {
	color: var(--secondary-color);
}

.cust-bg-primary {
	background: linear-gradient(to bottom, #cc213f 0%, #A80D29 100%);
}

.over-hidden {
	overflow: hidden;
}

.spacing-x {
	padding: 70px 0;
}

.pb-150 {
	padding-bottom: 150px;
}

.bg-color-1 {
	background-color: #FFD1DA;
}

.bg-gradient-1 {
  /* background: #145857;
  background: -moz-linear-gradient(top, #145857 0%, #327870 100%);
  background: -webkit-linear-gradient(top, #145857 0%, #327870 100%);
  background: linear-gradient(to bottom, #155958 0%, #317770 100%); */
  background: #cc213f;
padding: 50px 25px;
  border-radius: 15px;
}
.styled__box{
  background-color: #FCA524;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  width: 45%;
}
.gap__custom {
	gap: 20px;
}
.btn-style-1,
.btn-style-icon {
	position:         relative;
	overflow:         hidden;
	border-radius:    50px;
	font-size:        20px;
	font-weight:      400;
	color:            #145857;
	background-color: #FDC033;
	border:           1px solid #FDC033;
	padding:          12px 25px;
	line-height:      normal;
}

.btn-style-icon {
	color:            #FFFFFF;
	background-color: transparent;
}

.btn-style-icon i {
	color:        #FFFFFF;
	margin-right: 4px;
	font-size:    18px;
}

.btn-1 {
	position:      relative;
	display:       block;
	font-size:     15px;
	border:        1px solid var(--primary-color);
	padding:       10px 20px;
	border-radius: 50px;
}

.btn-2 {
	position:      relative;
	display:       block;
	font-size:     15px;
	color:         #FFFFFF;
	border:        1px solid var(--primary-color);
	padding:       10px 20px;
	border-radius: 50px;
	line-height:   normal;
	background:    #145857;
	background:    -moz-linear-gradient(top, #145857 0%, #327870 100%);
	background:    -webkit-linear-gradient(top, #145857 0%, #327870 100%);
	background:    linear-gradient(to bottom, #145857 0%, #327870 100%);
	filter:        progid:DXImageTransform.Microsoft.gradient(startColorstr='#145857', endColorstr='#327870', GradientType=0);
}

.headingstyle-1 {
	text-align: center;
	position:   relative;
}

.headingstyle-1 h6 {
	position:       relative;
	margin:         0;
	font-size:      16px;
	font-weight:    400;
	text-transform: uppercase;
	letter-spacing: -0.5px;
	color:          #111111;
	display:        inline-block;
}

.headingstyle-1 h6::before {
	content:          "";
	position:         absolute;
	top:              0;
	bottom:           0;
	margin:           auto;
	width:            20px;
	height:           1px;
	left:             -30px;
	background-color: var(--secondary-color);
}

.headingstyle-1 h6::after {
	content:          "";
	position:         absolute;
	top:              0;
	bottom:           0;
	margin:           auto;
	width:            20px;
	height:           1px;
	right:            -28px;
	background-color: var(--secondary-color);
}

.headingstyle-1 h3 {
	margin:      15px 0 10px 0;
	font-size:   50px;
	font-weight: 600;
}

.headingstyle-1 p {
	margin:    0;
	font-size: 18px;
}

.fs-40 {
	font-size: 40px !important;
}

.fw-700 {
	font-weight: 700 !important;
}

/* Site CSS */
header {
	position: absolute;
	width:    100%;
	top:      0;
	z-index:  1;
	padding:  20px 0;
}

header .toll-free {
	/*text-align: right;*/
	max-width: 200px;
}

header .toll-free a {
	font-size:     20px;
	color:         #FFFFFF;
	font-weight:   500;
	border:        1px solid #FFFFFF;
	border-top:    0;
	padding:       5px 15px;
	border-radius: 0 0 6px 6px;
	position:      relative;
}

header .toll-free a:before,
header .toll-free a:after {
	content:    "";
	position:   absolute;
	border-top: 1px solid #FFFFFF;
}

header .toll-free a:before {
	width:                  12px;
	height:                 10px;
	border-left:            1px solid #FFFFFF;
	border-top-left-radius: 6px;
	top:                    -5px;
	left:                   -1px;
}

header .toll-free a:after {
	width:                   90px;
	height:                  10px;
	top:                     -5px;
	right:                   -1px;
	border-right:            1px solid #FFFFFF;
	border-top-right-radius: 6px;
}

header .toll-free a small {
	display:     block;
	font-size:   14px;
	font-weight: 200;
	margin-top:  -18px;
}

header .toll-free a span {
	color:       var(--white);
	font-weight: 400;
	font-size:   1.125rem;
}

header .navbar-nav .nav-link {
	color:          var(--white);
	text-transform: capitalize;
	font-weight:    300;
}

header .navbar-nav .dropdown:hover .dropdown-menu {
	display: block;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgb(0 0 0 / 95%);
    text-align: center;
    padding: 10px;
    margin-top: 10px;
  }
    .girl__image{
    /* width: 45%; */
    /* position: absolute; */
    /* right: 0; */
    /* bottom: 0; */
    /* z-index: 0; */
    /* left: 100%; */
    /* height: 85%; */
    display: none;
    /* object-fit: contain; */
    /* background-size: contain; */
    /* background-repeat: no-repeat; */
  }
  .styled__box{
    background-color: #FCA524;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
  }
  .gap__custom{
    gap: 20px;
  }
  header .navbar img {
    width: 10rem;
  }
}

header .navbar {
	padding: 0;
}

.banner-style-1 {
	position:          relative;
	height:            100%;
	min-height:        50rem;
	background-size:   cover;
	background-repeat: no-repeat;
	display:           flex !important;
	align-items:       center;
	padding-top:       6rem;
}

/*.banner-style-1::before {*/
/*    content: '';*/
/*    background: url(../images/elements/element-2.png) no-repeat;*/
/*    position: absolute;*/
/*    width: 573px;*/
/*    height: 658px;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*}*/

.banner-style-1.halloweenStyle::before {
	content: none;
}

/*.banner-style-1.halloweenStyle h1,*/
/*.halloweenStyle .content-style ul li{*/
/*    color: var(--white);*/
/*}*/
/*.banner-style-1.halloweenStyle h1 span,*/
/*.halloweenStyle .content-style ul li i{*/
/*    color: var(--secondary-color)*/
/*}*/
/* Begin: Thanks Giving Banner CSS */
.thanksGivingStyle::before {
	content: none;
}

.thanksGivingStyle .leaf {
	position:  absolute;
	top:       -2.5rem;
	left:      3rem;
	animation: moves 5s ease infinite;
}

.newBannerStyle h3 {
	font-weight: 100;
	color:       var(--white);
	font-size:   1.875rem;
}

.newBannerStyle .content-style p {
	background:    transparent;
	border-radius: 0;
	padding:       0;
	color:         var(--white);
	font-size:     1.125rem;
	font-weight:   200;
}

.newBannerStyle .form-group i {
	display: none;
}

.newBannerStyle .form-group .custom-input-style,
.newBannerStyle .form-group .custom-select-style {
	/* border: 0 !important; */
	border-radius: 1 !important;
	padding:       10px 15px;
	height:        46px;
}

.newBannerStyle .form-group .intl-tel-input.separate-dial-code .selected-flag {
	background:    none;
	border-radius: 0;
}

.newBannerStyle.formMobWrap {
	background: #FDC033;
	padding:    1rem;
}

.desireGrades {
	padding: 5rem 0 0;
}

.desirethumb {
	padding:         3rem;
	background:      #F5FCF8;
	margin-bottom:   2rem;
	min-height:      33rem;
	display:         flex;
	align-items:     flex-start;
	flex-direction:  column;
	justify-content: space-between;
}

.desirethumb.yellow {
	background: #FFF0CE;
}

.desirethumb h4 {
	margin:    0.8rem 0;
	color:     #303030;
	font-size: 1.5rem;
}

.desirethumb p {
	color:       #000000;
	font-size:   1rem;
	line-height: 1.6;
}

.desirethumb.big {
	justify-content: flex-start;
}

.desirethumb .btn-style-1 {
	background:   #FBA523;
	border-color: #FBA523;
	color:        #000000;
	font-size:    1.125rem;
	font-weight:  300;
}

.happyGirl {
	position: absolute;
	bottom:   -30%;
	left:     0;
	/* margin: -9rem 0 0 -7rem; */
}

.tab-content .img-box .top,
.tab-content .img-box .botom {
	margin:   0;
	position: relative;
}
.tab-content .img-box .botom {
  display: none;
}
.tab-content .img-box .top .net,
.tab-content .img-box .botom .net {
  position: absolute;
  top: 0;
  left: -5rem;
  z-index: 0;
  display: none;
}

.tab-content .img-box .botom {
	width:  21rem;
	margin: -6rem -1rem 0 auto;
}

.tab-content .img-box .top img,
.tab-content .img-box .botom {
	border-radius: 1rem;
	position:      relative;
}

.tab-content .img-box .top:before,
.tab-content .img-box .botom:before {
  /* content: ""; */
  width: 95%;
  height: 100%;
  /* border: 3px solid var(--secondary-color); */
  border-radius: 1rem;
  position: absolute;
  top: 2rem;
  left: -2rem;
}

.tab-content .img-box .botom:before {
  border-color: #fff;
  top: -1rem;
  left: -1rem;
  display: none;
  width: 100%;
}

.phd-professionals .tab-content .text-box ul.list {
	display:         flex;
	flex-flow:       row wrap;
	justify-content: space-between;
	align-items:     flex-start;
	margin:          1.5rem 0;
}

.phd-professionals .tab-content .text-box ul.list li {
	flex: 0 0 48%;
}

.phd-professionals .tab-content .text-box h5 {
	font-size:   1.5rem;
	color:       #FFFFFF;
	font-weight: 500;
}

.uniLogoCasrousel {
	background:    #FFFFFF;
	padding:       6px;
	border-radius: 6px;
}

@keyframes moves {
	0% {
		transform: rotate3d(0, 0, 1, 100deg);
	}
	
	50% {
		transform: rotate3d(0, 0, 1, 0deg);
	}
	
	100% {
		transform: rotate3d(0, 0, 1, 100deg);
	}
}

.thanksGivingStyle .hen {
	position: absolute;
	bottom:   -4.5rem;
	right:    -50%;
}

.thanksGivingStyle .content-style h1 {
	color: var(--white);
}

.thanksGivingStyle .content-style h1 .color-primary,
.thanksGivingStyle .content-style ul li i,
.thanksGivingStyle .content-style h4 {
	color: var(--secondary-color);
}

.thanksGivingStyle .content-style h4 {
	text-transform: uppercase;
	font-size:      1.5rem;
	margin:         0;
}

.thanksGivingStyle .content-style p {
	background:  #FFD1DA;
	color:       #145857;
	font-weight: 600;
}

.thanksGivingStyle .content-style ul li {
	color: var(--white);
}

.thanksGivingStyle .banner-form {
	background: #FFD1DA;
}

.thanksGivingStyle .banner-form h4 {
	color:       #145857;
	font-size:   2.25rem;
	font-weight: 800;
}

.thanksGivingStyle .banner-form h5 {
	font-size:   1rem;
	font-weight: 700;
	color:       #145857;
}

.thanksGivingStyle .banner-form .banner-middle p {
	text-transform: uppercase;
	font-weight:    600;
}

/* END: Thanks Giving Banner CSS */
.content-style p {
	background: #309290;
}

.content-style h1 {
	margin:      0;
	font-size:   44px;
	font-weight: 600;
	color:       #FFFFFF;
}

.content-style p {
	margin:           15px 0 20px 0;
	background-color: var(--secondary-color);
	color:            var(--black);
	font-size:        17px;
	font-weight:      600;
	display:          inline-block;
	padding:          5px 20px;
	border-radius:    50px;
}

.content-style ul li:not(.iti__country) {
	font-size: 15px;
	color:     #FFFFFF;
}

.content-style ul li:last-child {
	margin-bottom: 0;
}

.content-style ul li strong {
	font-weight: 600;
}

.content-style ul li i {
	color:        var(--secondary-color);
	font-size:    16px;
	margin-right: 5px;
}

.tab-style-1 {
	text-align:    center;
	margin-bottom: 70px;
	margin-top:    -160px;
}

.tab-style-1 ul li {
	width:        18%;
	display:      inline-block;
	margin-right: 15px;
}

.tab-style-1 ul li:last-child {
	margin-right: 0;
}

.tab-style-1 ul li a {
	padding:          30px 20px;
	border-radius:    10px;
	box-shadow:       0 0 15px 3px rgb(20 88 87 / 12%);
	display:          flex;
	flex-flow:        column;
	align-items:      center;
	justify-content:  center;
	background-color: #FFFFFF;
}

.tab-style-1 ul li a span {
	margin-top:  15px;
	display:     block;
	font-size:   19px;
	font-weight: 500;
	line-height: 1.1;
}

.tab-style-1 ul li a i {
	background:          url(../images/sprite.png) no-repeat;
	background-position: 0 0;
	width:               64px;
	height:              64px;
	display:             inline-block;
}

.tab-style-1 ul li a i.ic2 {
	background-position: -74px 0;
	width:               69px;
	height:              63px;
}

.tab-style-1 ul li a i.ic3 {
	background-position: -156px 0;
	width:               64px;
	height:              64px;
}

.tab-style-1 ul li a i.ic4 {
	background-position: -234px -2px;
	width:               62px;
	height:              62px;
}

.tab-style-1 ul li a i.ic5 {
	background-position: -314px -2px;
	width:               80px;
	height:              63px;
}

.tab-style-1 ul li.active a {
	background-color: var(--secondary-color);
}

.tab-style-1 ul li.active a span {
	color: var(--primary-color);
}

.tab-content .img-box {
	margin-bottom: 20px;
}

.tab-content .img-box img {
	border-radius: 10px;
}

/* .tab-content .text-box {
} */

.tab-content .text-box h4 {
	color:       #FFFFFF;
	font-weight: 600;
	font-size:   34px;
}

.tab-content .text-box p {
	margin:    25px 0;
	color:     #FFFFFF;
	font-size: 18px;
}

.tab-content .text-box ul.list {
	margin-bottom: 30px;
}

.tab-content .text-box ul.list li {
	font-size:     16px;
	color:         #FFFFFF;
	margin-bottom: 8px;
}

.tab-content .text-box ul.list i {
	color:        var(--secondary-color);
	font-size:    15px;
	margin-right: 5px;
}

.un-list ul {
	display:       flex;
	margin-bottom: 15px;
}

.un-list ul li {
	width:           31.3333%;
	display:         inline-flex;
	justify-content: space-around;
	margin-right:    15px;
}

.un-list ul li a {
	background-color: #E8D7AA;
	border:           1px solid var(--secondary-color);
	padding:          30px 25px;
	display:          flex;
	align-items:      center;
	border-radius:    10px;
	box-shadow:       0 0 15px 3px rgb(20 88 87 / 12%);
}

.un-list ul li a:hover {
	box-shadow: 0 0 25px 15px rgb(20 88 87 / 12%);
}

.cta-1 {
	padding:  40px 0;
	position: relative;
}

.cta-1 h5 {
	color:       #FFFFFF;
	font-size:   30px;
	font-weight: 600;
	margin:      0;
}

.cta-1 p {
	color:     #FFFFFF;
	font-size: 18px;
	margin:    5px 0 20px 0;
}

.stats-box {
	position:      relative;
	text-align:    center;
	margin-bottom: 15px;
	padding:       20px 20px;
}

.stats-box .circle {
	position:        relative;
	width:           151px;
	height:          151px;
	border-radius:   100px;
	margin:          auto;
	display:         flex;
	align-items:     center;
	justify-content: center;
	color:           #fff;
	font-size:       44px;
	font-weight:     700;
	border:          1px solid #FFFFFF;
	z-index:         1;
}

.stats-box .circle::before {
	content:          "";
	position:         absolute;
	right:            0;
	left:             0;
	top:              0;
	bottom:           0;
	margin:           auto;
	width:            95%;
	height:           95%;
	background-color: var(--secondary-color);
	border-radius:    inherit;
	z-index:          -1;
}

.stats-box h6 {
	color:       #FFFFFF;
	font-weight: 400;
	margin:      20px 0 0 0;
	font-size:   24px;
}

.w-line::before {
	content:    "";
	position:   absolute;
	right:      0;
	top:        40px;
	width:      0.1px;
	height:     146px;
	box-shadow: 1px 0 5px 1px rgb(44 9 16 / 89%);
}

.payment-modules .headingstyle-1 {
	margin-bottom: 40px;
}

.payment-method ul {
	display:         flex;
	align-items:     center;
	justify-content: center;
}

.payment-method ul li {
	text-align:   center;
	width:        16%;
	margin-right: 30px;
}

.payment-method ul li:last-child {
	margin-right: 0;
}

.payment-method ul li .img-box {
	background-color: #FFFFFF;
	height:           112px;
	display:          flex;
	align-items:      center;
	justify-content:  center;
	border-radius:    10px;
	box-shadow:       0 0 15px 3px rgb(20 88 87 / 12%);
	cursor:           pointer;
	transition:       all 0.4s ease-in-out;
}

.payment-method ul li span {
	font-weight: 400;
	font-size:   15px;
	margin:      10px 0 0 0;
	display:     inline-block;
}

.payment-method ul li .img-box:hover {
	box-shadow: 0 0 15px 10px rgb(20 88 87 / 12%);
}

footer {
	background:  #131313;
	padding-top: 2rem;
}

footer a img {
	width: 12rem;
}

footer h4 {
	font-size:   1.25rem;
	font-weight: 400;
	color:       var(--white);
	position:    relative;
}

footer h4:after {
	content:       "";
	width:         3.1875rem;
	height:        4px;
	background:    var(--secondary-color);
	display:       block;
	border-radius: 10px;
	margin:        15px 0;
}

footer .links a {
	padding:     5px 0;
	color:       #AEAEAE;
	font-size:   14px;
	font-weight: 400;
	position:    relative;
}

footer .links a:hover,
footer .links a:focus {
	color: var(--secondary-color);
}

footer .links a:before {
	content:      "\f105";
	font-family:  "Font Awesome 5";
	font-weight:  900;
	font-size:    14px;
	margin-right: 6px;
}

.copyright {
	background-color: #000000;
	padding:          15px 0;
	margin-top:       2rem;
}

.copyright p {
	margin: 0;
	color:  #FFFFFF;
}

.copyright p a {
	color: var(--secondary-color);
}

.copyright .img-box {
	text-align: right;
}

.disclaimer {
	padding: 15px 0;
}

.disclaimer p {
	margin:      0;
	font-size:   13px;
	line-height: 1.2;
}

.disclaimer p span {
	display: block;
}

.cta-2 .content-style p {
	background-color: #FFF4F5;
	color:            #222222;
}

.cta-2 .content-style h3 {
	margin:      0;
	font-size:   50px;
	font-weight: 600;
	color:       #FFFFFF;
}

.cta-2 .content-style h6 {
	font-weight: 400;
	color:       #FFFFFF;
	margin:      10px 0 15px 0;
	line-height: normal;
}

.cta-2 .content-style ul li {
	color: #FFFFFF;
}

.cta-2 .content-style ul li i {
	color: var(--secondary-color);
}

.cta-2 .content-style ul.list {
	padding-bottom: 0;
	border-bottom:  0;
}

.bb-0 {
	border-bottom: 0 !important;
}

.cta-2 .banner-form {
	background:       transparent;
	background-color: var(--secondary-color);
}

.cta-2 .banner-top h4,
.cta-2 .banner-top h5 {
	color: #222222;
}

.cta-2 .banner-middle,
.cta-2 .custom-submit-style {
	background: #c7243b ;
	color:            #FFFFFF;
}

.cta-2 .banner-middle p,
.cta-2 .banner-middle p span {
	color: #FFFFFF !important;
}

.cta-2 .banner-form .sprite-icon {
	filter: brightness(0) invert(1);
}

.sub-list {
	position: relative;
}

.sub-list ul li {
	display:       block;
	margin-bottom: 9px;
	font-size:     16px;
	color:         #FFFFFF;
}

.sub-list ul li:last-child {
	margin-bottom: 0;
}

.sub-list ul li i {
	margin-right: 5px;
	color:        var(--secondary-color);
	font-size:    14px;
}

.what-we-provide {
	position:      absolute;
	width:         295px;
	text-align:    center;
	padding:       40px 30px;
	border-radius: 20px;
	top:           -70px;
	left:          -40px;
	box-shadow:    0 0 15px 1px rgb(0 0 0 / 20%);
}

.what-we-provide ul {
	margin-top: 25px;
}

.what-we-provide ul li {
	margin-bottom: 10px;
}

.what-we-provide ul li:last-child {
	margin-bottom: 0;
}

.trusted-partners {
	background:    #FFFFFF;
	background:    -moz-linear-gradient(top, #FFFFFF 1%, #DDEAE3 100%);
	background:    -webkit-linear-gradient(top, #FFFFFF 1%, #DDEAE3 100%);
	background:    linear-gradient(to bottom, #FFFFFF 1%, #DDEAE3 100%);
	filter:        progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ddeae3', GradientType=0);
	box-shadow:    0 0 15px 4px rgb(20 88 87 / 28%);
	border-radius: 10px;
	overflow:      hidden;
	margin-bottom: 50px;
}

.trusted-partners ul {
	display:         flex;
	align-items:     center;
	justify-content: center;
}

.trusted-partners ul li {
	width:      16.6666%;
	text-align: center;
	padding:    25px 0;
	position:   relative;
}

.trusted-partners ul li.w-22 {
	width:      22%;
	background: #145857;
	background: -moz-linear-gradient(top, #145857 0%, #327870 100%);
	background: -webkit-linear-gradient(top, #145857 0%, #327870 100%);
	background: linear-gradient(to bottom, #145857 0%, #327870 100%);
	filter:     progid:DXImageTransform.Microsoft.gradient(startColorstr='#145857', endColorstr='#327870', GradientType=0);
}

.trusted-partners ul li a {
	font-size:   40px;
	font-weight: 600;
	line-height: 1;
	color:       #FFFFFF;
	text-align:  left;
	padding:     0 35px;
}

.trusted-partners ul li img {
	mix-blend-mode: multiply;
}

.trusted-partners ul li::before {
	content:    "";
	position:   absolute;
	right:      0;
	top:        0;
	bottom:     0;
	margin:     auto;
	background: #CCCCCC;
	box-shadow: 2px 0 5px 1px #CCCCCC;
	width:      0.1px;
	height:     60px;
}

.testimonial-box {
	position: relative;
}

.testimonial-box .review-by h5 {
	margin:    0;
	color:     var(--primary-color);
	font-size: 50px;
}

.testimonial-box .review-by h6 {
	font-size:      16px;
	text-transform: uppercase;
	font-weight:    400;
	margin:         20px 0 5px 0;
	position:       relative;
	padding-left:   40px;
}

.testimonial-box .review-by h6::before {
	content:          "";
	background-color: var(--secondary-color);
	width:            30px;
	height:           2px;
	position:         absolute;
	left:             0;
	top:              0;
	bottom:           0;
	margin:           auto;
}

.testimonial-box .review {
	position: relative;
}

.testimonial-box .review::before {
	content:    "";
	width:      275px;
	height:     268px;
	background: url(../images/elements/element-3.png) no-repeat;
	position:   absolute;
	right:      0;
	top:        -70px;
	z-index:    -1;
	opacity:    0.4;
}

.testimonial-box .review p {
	margin:    0 0 10px 0;
	font-size: 16px;
	color:     #111111;
}

.testimonial-box .review span {
	color:          var(--primary-color);
	text-transform: uppercase;
	font-weight:    500;
}

.form-top .banner-form {
	position: absolute;
	top:      -690px;
	right:    90px;
}

.banner-form {
	border:        1px solid #111111;
	border-radius: 20px;
	width:         457px;
	background:    #145857;
	background:    -moz-linear-gradient(top, #145857 0%, #327870 100%);
	background:    -webkit-linear-gradient(top, #145857 0%, #327870 100%);
	background:    linear-gradient(to bottom, #145857 0%, #327870 100%);
	filter:        progid:DXImageTransform.Microsoft.gradient(startColorstr='#145857', endColorstr='#327870', GradientType=0);
	z-index:       1;
	margin-left:   auto;
}

.banner-form .form-group {
	position: relative;
}

.banner-top {
	text-align: center;
	padding:    40px 0 25px 0;
}

.banner-top h4 {
	font-size:      44px;
	color:          #FFFFFF;
	margin:         0;
	text-transform: uppercase;
}

.banner-top h5 {
	margin:      0;
	font-size:   24px;
	color:       #FFFFFF;
	font-weight: 500;
}

.banner-middle {
	background-color:           var(--secondary-color);
	text-align:                 center;
	padding:                    8px 0 7px 0;
	border-top-right-radius:    25px;
	border-bottom-right-radius: 25px;
	display:                    inline-block;
	width:                      95%;
}

.banner-middle p {
	color:       #111111;
	margin:      0;
	line-height: normal;
	font-weight: 600;
}

.banner-middle p span {
	color:       var(--primary-color) !important;
	font-weight: 600;
}

.banner-last {
	padding: 35px 25px 45px 25px;
}

.banner-last .fas {
	position:  absolute;
	left:      25px;
	top:       20px;
	font-size: 15px;
}

.banner-form .sprite-icon {
	background:          url(../images/sprite.png) no-repeat;
	background-position: 0 -81px;
	width:               37px;
	height:              17px;
	position:            absolute;
	top:                 0;
	bottom:              0;
	margin:              auto;
	right:               30px;
}

.custom-input-style {
	width:            100%;
	font-size:        15px;
	color:            #666666;
	background-color: #FFFFFF !important;
	border:           1px solid rgb(204 204 204 / 70%) !important;
	border-radius:    8px !important;
	padding:          18px 25px 18px 45px;
	line-height:      normal;
}

.custom-submit-style {
	width:         100%;
	background:    var(--secondary-color) ;
	color:         #212529;
	font-size:     24px;
	font-weight:   600;
	/* border: 2px solid #ffffff !important; */
	border-radius: 8px !important;
	padding:       10px 10px 10px 10px;
	line-height:   normal;
	animation: change 10s ;
}
.animation{
	animation: change-color-anim 1s ease infinite !important;
}

.custom-select-style {
	width:            100%;
	background-color: #FFFFFF;
	border-radius:    30px;
	height:           53px;
	color:            #666666;
}

.tab-style-1 .slick-dots {
	display: none !important;
}

.amazon {
	position: relative;
	bottom:   -8px;
}

.accordionStyle {
	margin-bottom: 5rem;
}

.accordionStyle .card {
	border-color: #FFFFFF;
}

.accordionStyle .card .card-header {
	padding: 0;
}

.accordionStyle .card .card-header .btn.collapsed {
	background: #FFD1DA;
	color:      #2A2A2A;
}

.accordionStyle .card .card-header .btn {
  background-image: linear-gradient(
    to bottom,
    #c7243b,
    #c7243b,
    #c7243b,
    #c7243b,
    #c7243b
  );
  padding: 1rem 1.25rem;
}

.accordionStyle .card .card-header .que {
	display:       inline-block;
	background:    #514DBC;
	color:         var(--white);
	padding:       4px 10px;
	border-radius: 4px;
	font-family:   "Roboto", sans-serif;
	font-weight:   700;
	margin-right:  0.5rem;
}

.accordionStyle .card .card-header .btn {
	font-size: 1.1rem;
	color:     var(--white);
}

.accordionStyle .card .card-header .circle {
	float:           right;
	font-size:       10px;
	width:           15px;
	height:          15px;
	background:      #FFFFFF;
	display:         flex;
	align-items:     center;
	justify-content: center;
	color:           #c7243b;
	border-radius:   100px;
	margin-top:      9px;
}

.accordionStyle .card .card-header .btn[aria-expanded="true"] .circle i:before {
	content: "\f067";
}

.accordionStyle .card .card-body {
	background: #F9F9FD;
}

.incredibleCard {
  background: #091b38a1 url(../images/incredible-servbg.webp) center/cover
    no-repeat;
  padding: 2.5rem 1.5rem;
  border-radius: 0.8rem;
}

.incredibleCard h4 {
	font-size:   1.5rem;
	font-weight: 300;
	color:       var(--white);
}

.incredibleCard h2 {
	font-size:   3.125rem;
	font-weight: 700;
	color:       var(--white);
	line-height: 1;
}

.incredibleCard hr {
	border-top:    3px solid var(--secondary-color);
	margin-bottom: 1.5rem;
}

.incredibleCard .list li a {
	display:     flex;
	align-items: flex-start;
	gap:         10px;
	color:       var(--white);
	font-size:   1.125rem;
	line-height: 1.8;
}

.incredibleCard .list li a:before {
	content:     "\f058";
	font-family: "Font Awesome 5";
	font-weight: 900;
	color:       var(--secondary-color);
}

.professionalHelp {
	background: #FEF7E6;
}

.professionalHelp h3 {
	color:     #A30D25;
	font-size: 1.5rem;
}

.testimonialThumb {
	background:    #FFFFFF;
	box-shadow:    0 0 27px rgb(0 0 0 / 6%);
	margin:        3rem 0;
	border-radius: 10px;
	padding:       2rem;
}

.testimonialThumb > img {
	border-radius: 100px;
	border:        1px solid #FFFFFF;
	box-shadow:    0 0 30px rgb(0 0 0 / 20%);
	margin-top:    -4rem;
	margin-bottom: 2rem;
}

.testimonialThumb h3 {
	font-size: 1.25rem;
}

.testimonialThumb p,
.testimonialThumb ul span {
	font-size: 14px;
	color:     #666666;
}

.testimonialThumb ul {
	display:         flex;
	align-items:     center;
	justify-content: space-between;
	margin:          2rem 0 1rem;
}

.testimonialThumb ul i {
	color:     #F5A521;
	font-size: 12px;
}

.testimonialThumb .caption {
	padding:       1rem;
	margin:        0 -2rem -3rem;
	background:    #FEF7E6;
	text-align:    center;
	border-radius: 0 0 10px 10px;
}

.testimonialThumb .caption p {
	margin:      0;
	color:       var(--black);
	font-weight: 400;
}

.testimonialThumb .caption p img {
	display: inline;
}

.contactSec {
	padding: 6rem 0;
}

.contactSec h3 {
	font-size:      2rem;
	color:          var(--black);
	text-transform: capitalize;
	font-weight:    500;
	margin-bottom:  1.5rem;
}

.contactSec p {
	font-size:   14px;
	font-weight: 500;
}

.contactSec .info {
	margin-top: 2rem;
}

.contactSec .info li {
	display:       flex;
	align-items:   flex-start;
	gap:           10px;
	margin-bottom: 1.5rem;
}

.contactSec .info li i {
	margin-top:      6px;
	color:           #B10722;
	border:          1px solid #B10722;
	width:           3rem;
	height:          3rem;
	display:         flex;
	align-items:     center;
	justify-content: center;
	font-size:       1.2rem;
}

.contactSec .info li a {
	color:       var(--text-color);
	font-size:   1.125rem;
	font-weight: 500;
	line-height: 1.4;
}

.contactSec .info li span {
	display:     block;
	font-weight: 400;
}

.formStyle label {
	font-size:     1rem;
	font-weight:   400;
	color:         #464646;
	margin-bottom: 4px;
}

.formStyle .form-control {
	height:        3rem;
	border:        1px solid #D5D5D5;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.formStyle textarea.form-control {
	height: 5rem;
}

.formStyle .custom-submit-style {
	width:          100%;
	border-radius:  6px !important;
	font-weight:    600;
	color:          var(--black);
	text-transform: uppercase;
}

.listStyle {
	display:        flex;
	align-items:    flex-start;
	flex-direction: column;
	gap:            8px;
	line-height:    1.2;
}

.listStyle li {
	font-size:   1rem;
	color:       var(--white);
	font-weight: 300;
	display:     flex;
	align-items: flex-start;
	line-height: 1.4;
	gap:         0.8rem;
}

.listStyle li:before {
	content:    "";
	width:      1rem;
	height:     1rem;
	background: url(../images/mix/check.webp) top left/100% 100% no-repeat;
	position:   relative;
	top:        4px;
}

.content-style ul li span:not(.iti__country-name) {
	display: block;
	width:   calc(100% - 1.5rem);
}

.lpHeader .logo {
	width: 7rem;
}
@media (max-width:1636px) {
  .girl__image {
    width: 48%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* left: 100%; */
    height: 80%;
    /* display: none; */
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
}


}
@media (max-width: 1600px) {
	.banner-style-1::before {
		display: none;
	}
	
	.banner-top {
		padding: 30px 0 20px 0;
	}
	
	.content-style h1 {
		font-size: 42px;
	}
	
	.banner-top h4 {
		font-size: 40px;
	}
	
	.banner-top h5 {
		font-size: 20px;
	}
	
	.banner-last {
		padding: 30px 25px 40px 25px;
	}
	
	.headingstyle-1 h3,
	.cta-2 .content-style h3 {
		font-size: 42px;
	}
	
	.headingstyle-1 p,
	.content-style ul li {
		font-size: 16px;
	}
	
	.tab-style-1 ul li a span {
		font-size: 17px;
	}
	
	.tab-content .text-box h4 {
		font-size: 30px;
	}
	
	.tab-content .text-box p {
		font-size: 16px;
	}
	
	.element-1 {
		left: 0;
	}
	
	.custom-submit-style {
		font-size: 20px;
		padding:   10px 10px 10px 10px;
	}
	
	.banner-form .sprite-icon {
		display: none;
	}
}

@media (max-width:1780px) {
	.element-1 {
		left: 0;
	}
}

@media (max-width: 1226px) {
    .element-1 {
        left: -19px;
    }
}

@media (max-width:1442px) {
  .girl__image {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* left: 100%; */
    height: 80%;
    /* display: none; */
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
}



}
@media (max-width:1392px) {
  .girl__image {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* left: 100%; */
    height: 71%;
    /* display: none; */
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
}


}
@media (max-width:1226px) {
  .girl__image {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: -15%;
    z-index: 0;
    /* left: 100%; */
    height: 90%;
    /* display: none; */
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
}


}
@media (max-width: 1199px) {
	.element {
		display: none;
	}
	
	.tab-style-1 {
		margin-top: 0;
	}
	
	.w-line::before {
		display: none;
	}
	
	.banner-form {
		width: auto;
	}
	
	.content-style h1,
	.banner-top h4,
	.headingstyle-1 h3,
	.cta-2 .content-style h3 {
		font-size: 36px;
	}
	
	.content-style p,
	.headingstyle-1 p,
	.content-style ul li,
	.tab-style-1 ul li a span {
		font-size: 15px;
	}
	
	.btn-style-1,
	.btn-style-icon {
		font-size: 16px;
	}
	
	.what-we-provide {
		position:      unset;
		margin-bottom: 3rem;
		width:         100%;
	}
	
	.what-we-provide ul {
		display:         flex;
		align-items:     center;
		justify-content: center;
		gap:             2rem;
	}
	
	.what-we-provide {
		position:      unset;
		margin-bottom: 3rem;
		width:         100%;
	}
	
	.what-we-provide ul {
		display:         flex;
		align-items:     center;
		justify-content: center;
		gap:             2rem;
	}
	
	.stats-box {
		margin-bottom: 0;
		padding:       0 20px;
	}
	
	.stats-box h6 {
		font-size: 20px;
	}
	
	.stats-box h6 br {
		display: none;
	}
	
	.incredibleCard h2 {
		font-size: 2.5rem;
	}
	
	.trusted-partners ul li {
		margin: 0 10px;
	}
	
	.trusted-partners ul li::before {
		right: -10px;
	}
	
	.desirethumb {
		padding: 2rem;
	}
	
	.desirethumb p {
		font-size: 15px;
	}
	
	.happyGirl {
		position: unset;
		margin:   -8rem auto 2rem;
		display:  table;
	}
}
@media (max-width:1225px) {
  .banner-style-1{
    background-position: bottom;
  }
  
}
@media (max-width:1100px) {
  .girl__image {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: -25%;
    z-index: 0;
    /* left: 100%; */
    height: 95%;
    /* display: none; */
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
}


}
@media (max-width: 991px) {
  .spacing-x {
    padding: 40px 0;
  }

  header .toll-free {
    display: none;
  }

  header {
    padding: 10px 0;
  }

  .headingstyle-1 h3 br {
    display: none;
  }

  .headingstyle-1 h3,
  .cta-2 .content-style h3,
  .fs-40 {
    font-size: 26px !important;
  }

  .headingstyle-1 p {
    font-size: 14px;
  }

  .logo img {
    max-width: 85%;
  }

  .banner-style-1 {
    padding: 10rem 0 3rem;
    height: auto;
    min-height: auto;
    /* background: linear-gradient(to bottom, #9d1a2f 0%, #540714 100%) !important; */
    background: linear-gradient(180deg, #c7243b 0%, #c7243b 100%) !important;
  }

  .content-style h1 {
    font-size: 3rem;
  }

  .content-style p {
    font-size: 15px;
    padding: 0;
    background-color: transparent;
    color: #fdc033;
  }

  .newBannerStyle .content-style > span,
  .newBannerStyle .content-style p,
  .newBannerStyle .content-style .listStyle span {
    font-size: 1.25rem;
  }

  .form-top .banner-form {
    position: relative;
    top: auto;
    right: auto;
  }

  .banner-form {
    width: 100%;
  }

  .banner-top h4 {
    font-size: 34px;
  }

  .banner-top h5 {
    font-size: 20px;
  }

  .custom-input-style {
    padding: 11px 25px 11px 45px;
  }

  .banner-last .fas {
    top: 18px;
  }

  .tab-content .text-box h4 {
    font-size: 22px;
  }

  .tab-content .text-box p,
  .tab-content .text-box ul.list li {
    font-size: 14px;
  }

  .btn-style-1,
  .btn-style-2 {
    font-size: 16px;
  }

  .what-we-provide {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    margin-bottom: 20px;
  }

  .sub-list {
    margin-bottom: 9px;
  }

  .sub-list ul li {
    font-size: 15px;
  }

  .bg-gradient-1 {
    padding: 30px 25px 20px;
  }

  .cta-1 h5 {
    font-size: 28px;
  }

  .cta-1 p {
    font-size: 16px;
  }

  .stats-box h6 {
    font-size: 20px;
  }

  .stats-box .circle {
    width: 131px;
    height: 131px;
    font-size: 36px;
  }

  .payment-method ul {
    display: block;
    text-align: center;
  }

  .payment-method ul li {
    width: 45%;
    display: inline-flex;
    flex-flow: column;
    margin-right: 0;
    margin: 5px;
  }

  .trusted-partners ul {
    display: block;
  }

  .trusted-partners ul li {
    width: 100% !important;
  }

  .trusted-partners ul li a {
    text-align: center;
  }

  .banner-style-1 .banner-form {
    margin-bottom: 3rem;
  }

  .slick-dots {
    display: none;
  }

  .un-list ul li a {
    width: 100%;
    justify-content: center;
  }

  .trusted-partners {
    margin-top: 2rem;
  }

  .trusted-partners ul li {
    margin: 0;
  }

  .trusted-partners ul {
    display: flex;
    flex-flow: row wrap;
  }

  .trusted-partners ul li {
    width: auto !important;
    flex: 0 0 20%;
    padding: 15px 0;
  }

  .trusted-partners ul li:first-child {
    width: auto !important;
    flex: 0 0 100%;
  }

  .trusted-partners ul li::before {
    content: none;
  }

  .img-box {
    text-align: center;
  }

  .testimonial-box .img-box img {
    width: 200px;
  }

  .stats-box .circle {
    width: 100px;
    height: 100px;
    font-size: 24px;
  }

  .stats-box h6 {
    font-size: 18px;
  }

  .accordionStyle .card .card-header .btn {
    font-size: 1rem;
  }

  .desirethumb {
    min-height: 30rem;
  }

  .desirethumb.big {
    min-height: auto;
  }

  .happyGirl {
    margin: -4rem auto 2rem;
  }

  .tab-content .img-box .top:before {
    width: 50%;
    top: 2rem;
    left: 5%;
  }

  .uniLogoCasrousel .slick-slide img {
    margin: 0 auto;
  }

  .phoneIcon {
    color: var(--yellow);
    font-size: 1.25rem;
    margin-right: 1rem;
  }

  .phoneIcon:hover,
  .phoneIcon:focus {
    color: var(--yellow);
  }

  .dropdown .nav-link {
    display: inline-block !important;
  }

  .newBannerStyle.formMobWrap h5 {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #232323;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .newBannerStyle.formMobWrap .custom-submit-style {
    background: #FBA523 ;
    color: var(--white);
  }

  .blink {
    position: relative;
    animation: blink ease-in-out 1s infinite;
  }

  @keyframes blink {
    0% {
      color: #ff0000;
    }

    50% {
      color: #000;
    }

    100% {
      color: #ff0000;
    }
  }
  .print-overview .style-content {
	margin-top: 20px !important;
  }
}

@media (max-width: 767px) {
  .what-we-provide ul {
    gap: 1rem;
  }

  .what-we-provide {
    padding: 20px;
  }

  .what-we-provide ul .btn-1 {
    font-size: 14px;
    padding: 10px;
  }

  .desirethumb {
    min-height: auto;
  }

  .happyGirl img {
    width: 15rem;
  }

  .sub-list {
    text-align: start;
  }

  .testimonialThumb {
    padding: 1rem;
  }

  .testimonialThumb ul {
    margin: 1rem 0 0;
  }

  .banner-style-1 {
    min-height: auto;
    height: auto;
    padding: 7rem 0 2rem;
  }

  .newBannerStyle .content-style p,
  .newBannerStyle .content-style .listStyle span {
    font-size: 14px;
  }

  header .navbar img {
    width: 10rem;
  }

  .banner-style-1 {
    height: auto;
    padding: 5rem 0 2rem;
  }

  .lpHeader .logo {
    width: 6rem;
  }

  header .d-block {
    color: var(--white);
    font-size: 1.25rem;
    text-align: center;
  }

  footer {
    padding-top: 2rem;
  }

  footer a img {
    width: 6rem;
  }

  .copyright {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
	.tab-content .text-box .inline-block {
		display:         flex;
		justify-content: space-between;
	}
	
	.btn-style-1,
	.btn-style-icon {
		padding: 12px 20px;
	}
	
	.what-we-provide ul {
		flex-direction: column;
	}
	
	.what-we-provide ul li {
		width:  100%;
		margin: 0;
	}
  header .navbar img {
    width: 8rem;
  }
  .phoneIcon {
    color: var(--yellow);
    font-size: 15px;
    margin-right: 1rem;
}
	.un-list ul li a {
		padding: 20px 10px;
	}
	
	.stats-box {
		margin-bottom: 20px;
	}
	
	.testimonial-box .review-by h5 {
		font-size: 35px;
	}
	
	.review-by img {
		width: 40px;
	}
	
	.cta-2 .content-style p {
		padding:    0.5rem 3rem;
		width:      100%;
		text-align: center;
		font-size:  1.25rem;
	}
	
	.cta-2 .banner-form {
		margin-top: 1.5rem;
	}
	
	.newBannerStyle h3 {
		font-size: 1.25rem;
	}
	
	.content-style h1,
	.desireGrades h2 {
		font-size: 26px;
	}
	
	.phd-professionals .tab-content .text-box ul.list li {
		flex: 0 0 100%;
	}
	
	.incredibleCard h2 {
		font-size: 2rem;
	}
	
	.cta-2 .content-style p {
		font-size: 1.125rem;
	}
	
	.newBannerStyle .content-style p {
		font-size:   15px;
		font-weight: 300;
		margin:      8px 0 1rem;
	}
	
	.newBannerStyle .content-style h1 {
		font-size: 1.75rem;
	}
	
	.tab-content .img-box .botom {
		display: none;
	}
	
	.desireGrades {
		padding: 1.5rem 0 0;
	}
	
	.desireGrades h3 {
		font-size: 1.25rem;
	}
	
	.lpHeader .logo {
		width: 4rem;
	}
	.print-overview h3{
        font-size: 24px !important;
    }
}

p strong {
	font-weight: 500;
}

/* validation */
.iti {
	width: 100% !important;
}
.form-error {
	border: 2px solid red !important;
}
.form-error .vscomp-value {
	color: red !important;
}

.form-error::placeholder {
	color: red !important;
}
img.testimg {
	width:           80px;
	height:          60px;
	object-fit:      contain;
	object-position: center center;
}

.print-overview .style-content{
	background-color: #e9ecef;
	border: 1px solid orange;
	box-shadow: 0 0 27px rgb(0 0 0 / 6%);
	/* margin-top: 32px !important; */
	
	/* padding: 40px 50px; */
	padding-left: 20px;
	padding-right: 20px;
}
@media screen and (min-width: 992px) {
	.print-overview .style-content{
		height: 100%;
	}
}
.print-overview .style-content img{
	width: 65px;
}

.print-overview .style-content:hover {
	/* Apply a background image */
	background-image: url('../../assets/images/world.png') ;
	background-position: center center;
	background-repeat: no-repeat; /* Ensure the image does not repeat */
	background-size: 90%; /* Scale the image to cover the entire element */
  
	/* Fallback background color in case the image fails to load */
	background-color: #c7253e;
  
	/* Change text color on hover */
	color: white;
  }
  .print-overview .style-content:hover p {

	color: white;
  }
